diff --git a/CA-DOC-Master.tex b/CA-DOC-Master.tex index efe7dac..b4c79ea 100644 --- a/CA-DOC-Master.tex +++ b/CA-DOC-Master.tex @@ -1,89 +1,7 @@ \documentclass[12pt,a4paper,twoside,parskip=half-,headsepline,headinclude]{scrreprt} % Grundgröße 12pt, zweiseitig -% Packages from template -\usepackage[headsepline,automark]{scrlayer-scrpage} % Seitenköpfe automatisch -\KOMAoptions{headinclude} % Fix -\usepackage[german]{babel} % Sprachpaket für Deutsch (Umlaute, Trennung,deutsche Überschriften) -\usepackage{graphicx} % Graphikeinbindung -\usepackage[hidelinks]{hyperref} % Hyperref (alles klickbar, Bookmarks) -\usepackage{amssymb} % Math. Symbole aus AmsTeX -\usepackage[utf8]{inputenc} % Umlaute -% Custom packages -\usepackage[autostyle=true,german=quotes]{csquotes} % Anführungszeichen mit \enquote{} -\usepackage{textcomp} % Zusätzliches Package für °C -\usepackage{listings} % Codesnippets -\usepackage{scrhack} % Hack for lstlisting i suspect :-/ -\usepackage{xcolor} -\usepackage{float} -\usepackage{soul} -\usepackage{verbatim} % für comment-environment -\usepackage{amsmath} -\usepackage{enumitem} % enumerate mit benutzerdefinierten Labels -\usepackage{caption} -%\captionsetup[table]{skip=8pt} -\usepackage[numbers,round]{natbib} % Let's try alphadin bibliography style -% Setup für Codeblocks -\lstset{ - % Optionen - breaklines=true, - breakatwhitespace=true, - breakautoindent=true, - frame=single, - %framexleftmargin=19pt, - inputencoding=utf8, - %language=awk, - %numbers=left, - %numbersep=8pt, - showspaces=false, - showstringspaces=false, - tabsize=1, - %xleftmargin=19pt, - captionpos=b, - % Styling - basicstyle=\footnotesize\ttfamily, - commentstyle=\footnotesize, - keywordstyle=\footnotesize\ttfamily, - numberstyle=\footnotesize, - stringstyle=\footnotesize\ttfamily, -} -% Hack für Sonderzeichen in Codeblocks -\lstset{literate=% - {Ö}{{\"O}}1 - {Ä}{{\"A}}1 - {Ü}{{\"U}}1 - {ß}{{\ss}}1 - {ü}{{\"u}}1 - {ä}{{\"a}}1 - {ö}{{\"o}}1 - {°}{{${^\circ}$}}1 -} -% Befehl für TODO-Markierungen -\newcommand{\todo}[1]{\textcolor{blue}{\emph{TODO: #1}}} - -% Befehl für Entwürfe und grobe Pläne -%\newenvironment{draft}{\par\color{orange}\begin{center}Entwurf / Konzept\end{center}\hrule}{\hrule\par} - -% Broken citation needs broken command -\newcommand\mathplus{+} - -% Festlegung Kopf- und Fußzeile -\defpagestyle{meinstil}{% - {\headmark \hfill} - {\hfill \headmark} - {\hfill \headmark\hfill} - (\textwidth,.4pt) -}{% - (\textwidth,.4pt) - {\pagemark\hfill Jan Philipp Timme} - {Version 1.0 vom \today \hfill \pagemark} - {Version 1.0 vom \today \hfill \pagemark} -} -\pagestyle{meinstil} - -\raggedbottom - -\renewcommand{\topfraction}{1} -\renewcommand{\bottomfraction}{1} +\input{COMMON-Config.tex} +\input{COMMON-Style.tex} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Beginn des Dokuments (Titelseite und der ganze Krempel) diff --git a/COMMON-Config.tex b/COMMON-Config.tex new file mode 100644 index 0000000..d3882fe --- /dev/null +++ b/COMMON-Config.tex @@ -0,0 +1,66 @@ +% Packages from template +\usepackage[headsepline,automark]{scrlayer-scrpage} % Seitenköpfe automatisch +\KOMAoptions{headinclude} % Fix +\usepackage[german]{babel} % Sprachpaket für Deutsch (Umlaute, Trennung,deutsche Überschriften) +\usepackage{graphicx} % Graphikeinbindung +\usepackage[hidelinks]{hyperref} % Hyperref (alles klickbar, Bookmarks) +\usepackage{amssymb} % Math. Symbole aus AmsTeX +\usepackage[utf8]{inputenc} % Umlaute +% Custom packages +\usepackage[autostyle=true,german=quotes]{csquotes} % Anführungszeichen mit \enquote{} +\usepackage{textcomp} % Zusätzliches Package für °C +\usepackage{listings} % Codesnippets +\usepackage{scrhack} % Hack for lstlisting i suspect :-/ +\usepackage{xcolor} +\usepackage{float} +\usepackage{soul} +\usepackage{verbatim} % für comment-environment +\usepackage{amsmath} +\usepackage{enumitem} % enumerate mit benutzerdefinierten Labels +\usepackage{caption} +%\captionsetup[table]{skip=8pt} +\usepackage[numbers,round]{natbib} % Let's try alphadin bibliography style +% Setup für Codeblocks +\lstset{ + % Optionen + breaklines=true, + breakatwhitespace=true, + breakautoindent=true, + frame=single, + %framexleftmargin=19pt, + inputencoding=utf8, + %language=awk, + %numbers=left, + %numbersep=8pt, + showspaces=false, + showstringspaces=false, + tabsize=1, + %xleftmargin=19pt, + captionpos=b, + % Styling + basicstyle=\footnotesize\ttfamily, + commentstyle=\footnotesize, + keywordstyle=\footnotesize\ttfamily, + numberstyle=\footnotesize, + stringstyle=\footnotesize\ttfamily, +} +% Hack für Sonderzeichen in Codeblocks +\lstset{literate=% + {Ö}{{\"O}}1 + {Ä}{{\"A}}1 + {Ü}{{\"U}}1 + {ß}{{\ss}}1 + {ü}{{\"u}}1 + {ä}{{\"a}}1 + {ö}{{\"o}}1 + {°}{{${^\circ}$}}1 +} + +% Befehl für TODO-Markierungen +\newcommand{\todo}[1]{\textcolor{blue}{\emph{TODO: #1}}} + +% Befehl für Entwürfe und grobe Pläne +%\newenvironment{draft}{\par\color{orange}\begin{center}Entwurf / Konzept\end{center}\hrule}{\hrule\par} + +% Broken citation needs broken command +\newcommand\mathplus{+} \ No newline at end of file diff --git a/COMMON-Style.tex b/COMMON-Style.tex new file mode 100644 index 0000000..c2d7b24 --- /dev/null +++ b/COMMON-Style.tex @@ -0,0 +1,18 @@ +% Festlegung Kopf- und Fußzeile +\defpagestyle{meinstil}{% + {\headmark \hfill} + {\hfill \headmark} + {\hfill \headmark\hfill} + (\textwidth,.4pt) +}{% + (\textwidth,.4pt) + {\pagemark\hfill Jan Philipp Timme} + {Version 1.0 vom \today \hfill \pagemark} + {Version 1.0 vom \today \hfill \pagemark} +} +\pagestyle{meinstil} + +\raggedbottom + +\renewcommand{\topfraction}{1} +\renewcommand{\bottomfraction}{1} \ No newline at end of file diff --git a/MA-Master.tex b/MA-Master.tex index c791190..faf0f60 100644 --- a/MA-Master.tex +++ b/MA-Master.tex @@ -1,89 +1,7 @@ \documentclass[12pt,a4paper,twoside,parskip=half-,headsepline,headinclude]{scrreprt} % Grundgröße 12pt, zweiseitig -% Packages from template -\usepackage[headsepline,automark]{scrlayer-scrpage} % Seitenköpfe automatisch -\KOMAoptions{headinclude} % Fix -\usepackage[german]{babel} % Sprachpaket für Deutsch (Umlaute, Trennung,deutsche Überschriften) -\usepackage{graphicx} % Graphikeinbindung -\usepackage[hidelinks]{hyperref} % Hyperref (alles klickbar, Bookmarks) -\usepackage{amssymb} % Math. Symbole aus AmsTeX -\usepackage[utf8]{inputenc} % Umlaute -% Custom packages -\usepackage[autostyle=true,german=quotes]{csquotes} % Anführungszeichen mit \enquote{} -\usepackage{textcomp} % Zusätzliches Package für °C -\usepackage{listings} % Codesnippets -\usepackage{scrhack} % Hack for lstlisting i suspect :-/ -\usepackage{xcolor} -\usepackage{float} -\usepackage{soul} -\usepackage{verbatim} % für comment-environment -\usepackage{amsmath} -\usepackage{enumitem} % enumerate mit benutzerdefinierten Labels -\usepackage{caption} -\captionsetup[table]{skip=8pt} -\usepackage[numbers,round]{natbib} % Let's try alphadin bibliography style -% Setup für Codeblocks -\lstset{ - % Optionen - breaklines=true, - breakatwhitespace=true, - breakautoindent=true, - frame=single, - %framexleftmargin=19pt, - inputencoding=utf8, - %language=awk, - %numbers=left, - %numbersep=8pt, - showspaces=false, - showstringspaces=false, - tabsize=1, - %xleftmargin=19pt, - captionpos=b, - % Styling - basicstyle=\footnotesize\ttfamily, - commentstyle=\footnotesize, - keywordstyle=\footnotesize\ttfamily, - numberstyle=\footnotesize, - stringstyle=\footnotesize\ttfamily, -} -% Hack für Sonderzeichen in Codeblocks -\lstset{literate=% - {Ö}{{\"O}}1 - {Ä}{{\"A}}1 - {Ü}{{\"U}}1 - {ß}{{\ss}}1 - {ü}{{\"u}}1 - {ä}{{\"a}}1 - {ö}{{\"o}}1 - {°}{{${^\circ}$}}1 -} -% Befehl für TODO-Markierungen -\newcommand{\todo}[1]{\textcolor{blue}{\emph{TODO: #1}}} - -% Befehl für Entwürfe und grobe Pläne -%\newenvironment{draft}{\par\color{orange}\begin{center}Entwurf / Konzept\end{center}\hrule}{\hrule\par} - -% Broken citation needs broken command -\newcommand\mathplus{+} - -% Festlegung Kopf- und Fußzeile -\defpagestyle{meinstil}{% - {\headmark \hfill} - {\hfill \headmark} - {\hfill \headmark\hfill} - (\textwidth,.4pt) -}{% - (\textwidth,.4pt) - {\pagemark\hfill Jan Philipp Timme} - {Version 1.0 vom \today \hfill \pagemark} - {Version 1.0 vom \today \hfill \pagemark} -} -\pagestyle{meinstil} - -\raggedbottom - -\renewcommand{\topfraction}{1} -\renewcommand{\bottomfraction}{1} +\input{COMMON-Config.tex} +\input{COMMON-Style.tex} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Beginn des Dokuments (Titelseite und der ganze Krempel) diff --git a/SRV-DOC-Master.tex b/SRV-DOC-Master.tex index c44c259..938717f 100644 --- a/SRV-DOC-Master.tex +++ b/SRV-DOC-Master.tex @@ -1,89 +1,7 @@ \documentclass[12pt,a4paper,twoside,parskip=half-,headsepline,headinclude]{scrreprt} % Grundgröße 12pt, zweiseitig -% Packages from template -\usepackage[headsepline,automark]{scrlayer-scrpage} % Seitenköpfe automatisch -\KOMAoptions{headinclude} % Fix -\usepackage[german]{babel} % Sprachpaket für Deutsch (Umlaute, Trennung,deutsche Überschriften) -\usepackage{graphicx} % Graphikeinbindung -\usepackage[hidelinks]{hyperref} % Hyperref (alles klickbar, Bookmarks) -\usepackage{amssymb} % Math. Symbole aus AmsTeX -\usepackage[utf8]{inputenc} % Umlaute -% Custom packages -\usepackage[autostyle=true,german=quotes]{csquotes} % Anführungszeichen mit \enquote{} -\usepackage{textcomp} % Zusätzliches Package für °C -\usepackage{listings} % Codesnippets -\usepackage{scrhack} % Hack for lstlisting i suspect :-/ -\usepackage{xcolor} -\usepackage{float} -\usepackage{soul} -\usepackage{verbatim} % für comment-environment -\usepackage{amsmath} -\usepackage{enumitem} % enumerate mit benutzerdefinierten Labels -\usepackage{caption} -%\captionsetup[table]{skip=8pt} -\usepackage[numbers,round]{natbib} % Let's try alphadin bibliography style -% Setup für Codeblocks -\lstset{ - % Optionen - breaklines=true, - breakatwhitespace=true, - breakautoindent=true, - frame=single, - %framexleftmargin=19pt, - inputencoding=utf8, - %language=awk, - %numbers=left, - %numbersep=8pt, - showspaces=false, - showstringspaces=false, - tabsize=1, - %xleftmargin=19pt, - captionpos=b, - % Styling - basicstyle=\footnotesize\ttfamily, - commentstyle=\footnotesize, - keywordstyle=\footnotesize\ttfamily, - numberstyle=\footnotesize, - stringstyle=\footnotesize\ttfamily, -} -% Hack für Sonderzeichen in Codeblocks -\lstset{literate=% - {Ö}{{\"O}}1 - {Ä}{{\"A}}1 - {Ü}{{\"U}}1 - {ß}{{\ss}}1 - {ü}{{\"u}}1 - {ä}{{\"a}}1 - {ö}{{\"o}}1 - {°}{{${^\circ}$}}1 -} -% Befehl für TODO-Markierungen -\newcommand{\todo}[1]{\textcolor{blue}{\emph{TODO: #1}}} - -% Befehl für Entwürfe und grobe Pläne -%\newenvironment{draft}{\par\color{orange}\begin{center}Entwurf / Konzept\end{center}\hrule}{\hrule\par} - -% Broken citation needs broken command -\newcommand\mathplus{+} - -% Festlegung Kopf- und Fußzeile -\defpagestyle{meinstil}{% - {\headmark \hfill} - {\hfill \headmark} - {\hfill \headmark\hfill} - (\textwidth,.4pt) -}{% - (\textwidth,.4pt) - {\pagemark\hfill Jan Philipp Timme} - {Version 1.0 vom \today \hfill \pagemark} - {Version 1.0 vom \today \hfill \pagemark} -} -\pagestyle{meinstil} - -\raggedbottom - -\renewcommand{\topfraction}{1} -\renewcommand{\bottomfraction}{1} +\input{COMMON-Config.tex} +\input{COMMON-Style.tex} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Beginn des Dokuments (Titelseite und der ganze Krempel)