init.d
This commit is contained in:
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.class
|
||||||
|
src/bin/
|
||||||
|
*.aux
|
||||||
|
*.bbl
|
||||||
|
*.bcf
|
||||||
|
*.blg
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.fls
|
||||||
|
*.log
|
||||||
|
*.out
|
||||||
|
*.run.xml
|
||||||
|
*.synctex.gz
|
||||||
|
*.toc
|
||||||
119
Praxisbericht.tex
Normal file
119
Praxisbericht.tex
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
\documentclass[paper=a4,fontsize=12pt,ngerman]{scrartcl}
|
||||||
|
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[autostyle=true]{csquotes} %biblatex german quoting
|
||||||
|
\usepackage{amsmath}
|
||||||
|
\usepackage{pifont} % ding55
|
||||||
|
\usepackage[a4paper,left=25mm,right=35mm,top=25mm,bottom=30mm]{geometry}
|
||||||
|
\usepackage{parskip}
|
||||||
|
\usepackage{comment} %dies ist ein kommentar
|
||||||
|
% tableau
|
||||||
|
\usepackage{booktabs}
|
||||||
|
\usepackage{multirow} % table stuff
|
||||||
|
\usepackage{tablefootnote} % table
|
||||||
|
\usepackage{diagbox}
|
||||||
|
\usepackage{caption}
|
||||||
|
\usepackage{url} %damit urls richtig formatted werden dürfen, müss \url{URL} usen
|
||||||
|
\usepackage{tikz}
|
||||||
|
\usetikzlibrary{shapes.geometric, arrows, positioning}
|
||||||
|
%\usepackage[colorlinks=false, hidelinks]{hyperref} % keine hyperrefs
|
||||||
|
|
||||||
|
\usepackage{listings} % code blocks
|
||||||
|
\usepackage{listings-rust} % rust ist keine latex listing language
|
||||||
|
\usepackage{xcolor}
|
||||||
|
|
||||||
|
\usepackage[backend=biber, style=numeric, url=true]{biblatex} %URL in biblatex
|
||||||
|
\addbibresource{literatur.bib}
|
||||||
|
%\bibliography{literatur} %bibtex
|
||||||
|
|
||||||
|
\graphicspath{{graphics}}
|
||||||
|
|
||||||
|
\definecolor{codegreen}{rgb}{0,0.6,0}
|
||||||
|
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
|
||||||
|
\definecolor{codepurple}{rgb}{0.58,0,0.82}
|
||||||
|
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
|
||||||
|
|
||||||
|
\lstdefinestyle{mystyle}{
|
||||||
|
backgroundcolor=\color{backcolour},
|
||||||
|
commentstyle=\color{codegreen},
|
||||||
|
keywordstyle=\color{magenta},
|
||||||
|
numberstyle=\tiny\color{codegray},
|
||||||
|
stringstyle=\color{codepurple},
|
||||||
|
basicstyle=\ttfamily\footnotesize,
|
||||||
|
breakatwhitespace=false,
|
||||||
|
breaklines=true,
|
||||||
|
captionpos=b,
|
||||||
|
keepspaces=true,
|
||||||
|
numbers=left,
|
||||||
|
numbersep=5pt,
|
||||||
|
showspaces=false,
|
||||||
|
showstringspaces=false,
|
||||||
|
showtabs=false,
|
||||||
|
tabsize=2
|
||||||
|
}
|
||||||
|
\lstset{style=mystyle}
|
||||||
|
|
||||||
|
\newcommand{\cmark}{\ding{51}}
|
||||||
|
\newcommand{\xmark}{\ding{55}}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\pagenumbering{roman}
|
||||||
|
\pagestyle{plain}
|
||||||
|
|
||||||
|
% Einbinden der Titelseite
|
||||||
|
\begin{titlepage}
|
||||||
|
|
||||||
|
\linespread{1.5}
|
||||||
|
|
||||||
|
\includegraphics[width=\linewidth]{htw_logo}
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
\large
|
||||||
|
\hfill
|
||||||
|
\vfill
|
||||||
|
\Large{\bfseries{Praxisphase: Bericht}}
|
||||||
|
|
||||||
|
von \\
|
||||||
|
Tim Wall\\
|
||||||
|
Mat. Nr. 5014365
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
TODO: wechseln?
|
||||||
|
Ein wissenschaftlicher Bericht im Rahmen der Vorlesung\\
|
||||||
|
\glqq Wissenschaftliches Arbeiten\grqq\\
|
||||||
|
an der htw saar im Studiengang Praktische Informatik\\
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
Pirmasens, den \today
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\end{titlepage}
|
||||||
|
|
||||||
|
\clearpage
|
||||||
|
\tableofcontents
|
||||||
|
|
||||||
|
\clearpage
|
||||||
|
\pagenumbering{arabic}
|
||||||
|
|
||||||
|
\section{Betrieb}
|
||||||
|
|
||||||
|
\section{Arbeitsplatz}
|
||||||
|
|
||||||
|
\section{Aufgabenbereich}
|
||||||
|
|
||||||
|
\section{Methodik}
|
||||||
|
|
||||||
|
\section{Erkenntnisse}
|
||||||
|
|
||||||
|
\section{Evaluation}
|
||||||
|
|
||||||
|
\section{Fazit}
|
||||||
|
|
||||||
|
\end{document}
|
||||||
BIN
graphics/htw_logo.pdf
Normal file
BIN
graphics/htw_logo.pdf
Normal file
Binary file not shown.
52
literatur.bib
Normal file
52
literatur.bib
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
@misc{rsFaq,
|
||||||
|
author = {Rust Community},
|
||||||
|
title = {\glqq Frequently Asked Questions\grqq},
|
||||||
|
year = {2020},
|
||||||
|
url = {https://prev.rust-lang.org/en-US/faq.html},
|
||||||
|
urldate = {2025-07-10},
|
||||||
|
note = {Git: https://github.com/rust-lang/prev.rust-lang.org.git; Commit SHA: 3c8d24f62264c5dd1bd8cb4acc29c2fa2bbc678e}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{rsLogo,
|
||||||
|
author = {Mara Bos},
|
||||||
|
date = {2022-01-02},
|
||||||
|
title = {\glqq Rust Logo SVG\grqq},
|
||||||
|
url = {https://raw.githubusercontent.com/rust-lang/rust-artwork/refs/heads/master/logo/rust-logo-blk.svg},
|
||||||
|
urldate = {2025-08-27}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{MITREnewtocwe,
|
||||||
|
author = {{MITRE (Inst.)}},
|
||||||
|
date = {2023-06-05},
|
||||||
|
title = {\glqq New to CWE\grqq},
|
||||||
|
url = {https://cwe.mitre.org/about/new_to_cwe.html},
|
||||||
|
urldate = {2025-07-10},
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{MITREvulntheory,
|
||||||
|
author = {Steve Christey and Conor Harris},
|
||||||
|
date = {2009-10-29},
|
||||||
|
journaltitle = {MITRE CWE Document Archive},
|
||||||
|
title = {Introduction to Vulnerability Theory},
|
||||||
|
url = {https://cwe.mitre.org/documents/vulnerability_theory/intro.html},
|
||||||
|
urldate = {2025-08-24},
|
||||||
|
note = {Document version: 1.0.1},
|
||||||
|
}
|
||||||
|
|
||||||
|
@book{Euclidean,
|
||||||
|
author = {Meighan I. Dillon},
|
||||||
|
title = {\glqq Geometry Through History : Euclidean, Hyperbolic, and Projective Geometries\grqq},
|
||||||
|
year = {2018-03-21},
|
||||||
|
edition = {1},
|
||||||
|
publisher = {Springer International Publishing AG},
|
||||||
|
isbn = {978-3319741345},
|
||||||
|
}
|
||||||
|
|
||||||
|
@book{vegeta,
|
||||||
|
author = {Kurt Gieck and Reiner Gieck},
|
||||||
|
publisher = {McGraw-Hill School Education Group},
|
||||||
|
title = {Engineering Formulas},
|
||||||
|
edition = {7},
|
||||||
|
year = {1997},
|
||||||
|
isbn = {978-0070245723}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user