phd/src/main.tex

77 lines
1.6 KiB
TeX
Raw Normal View History

2019-09-27 12:03:11 +02:00
\RequirePackage{fix-cm}
2019-09-13 17:47:40 +02:00
\documentclass[
2019-10-01 17:34:05 +02:00
fontsize=11pt,
2019-09-25 17:18:35 +02:00
paper=a4,
pagesize,
bibliography=totoc,
headings=big,
captions=tableheading,
chapterprefix=true,% like in standard class "report"
2019-09-27 12:03:11 +02:00
BCOR=1cm,
DIV=12,
headsepline=true,
2019-10-01 11:59:47 +02:00
footsepline=true,
2019-09-13 17:47:40 +02:00
]{scrbook}
2019-06-17 17:15:12 +02:00
2019-08-27 10:46:00 +02:00
\usepackage{listings}
2019-06-17 17:15:12 +02:00
\usepackage{config}
2019-08-27 10:46:00 +02:00
\usepackage{listing-config}
2019-10-07 10:32:32 +02:00
\usepackage{commands}
2019-06-17 17:15:12 +02:00
\begin{document}
2019-09-17 10:57:10 +02:00
\let\rawref\ref%
\renewcommand{\ref}[1]{\rawref{#1} (page~\pageref{#1})}
2019-06-17 17:15:12 +02:00
2019-09-13 17:47:40 +02:00
\frontmatter
2019-06-17 17:15:12 +02:00
\listoftodos{}
2019-08-29 16:51:42 +02:00
\vspace{2cm}
\copied{}
2019-09-26 15:51:20 +02:00
\noindent Text copied from other articles will be in this color
2019-08-29 16:51:42 +02:00
\fresh{}
2019-09-26 15:51:20 +02:00
\noindent Text that was freshly written will be in this color
2019-08-29 16:51:42 +02:00
\resetstyle{}
2019-09-26 15:51:20 +02:00
\quad\\
This version was compiled on \today{} at \currenttime{}.
2019-08-29 16:51:42 +02:00
2019-10-03 17:52:40 +02:00
\begin{titlepage}
\begin{tikzpicture}[overlay,remember picture,line width=5pt]
\node at (current page.center) {\includegraphics[width=\pagewidth]{assets/background.png}};
2019-10-08 16:04:12 +02:00
\node at (12, -22) [%
2019-10-03 17:52:40 +02:00
inner sep=15pt,
2019-10-08 17:26:37 +02:00
ultra thick,
2019-10-08 16:04:12 +02:00
draw=MidnightBlue,
fill=black,
font=\sffamily\bfseries\Huge,
align=left,
fill opacity=0.7,
text opacity=1,
] {\color{white}\thetitle\\\color{white}\LARGE\theauthor};
2019-10-03 17:52:40 +02:00
\end{tikzpicture}
\end{titlepage}
2019-06-17 17:15:12 +02:00
\tableofcontents
2019-09-13 17:47:40 +02:00
2019-06-17 17:15:12 +02:00
\input{plan}
2019-10-09 16:12:11 +02:00
\newpage
\let\LaTeXStandardClearpage\clearpage
\let\clearpage\relax
2019-10-09 16:12:11 +02:00
\listoffigures%
\listoftables%
\listofalgorithms%
\lstlistoflistings%
\let\clearpage\LaTeXStandardClearpage%
2019-10-09 16:12:11 +02:00
\bibliography{src/bib.bib}
2019-10-10 16:14:41 +02:00
\chaptermark{Abstracts}
2019-10-10 12:03:42 +02:00
\input{abstracts/main}
2019-06-17 17:15:12 +02:00
\end{document}
2019-10-09 17:05:30 +02:00