phd/src/main.tex

63 lines
1.2 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-06-17 17:15:12 +02:00
\makeflyleaf{}
2019-09-13 17:47:40 +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-03 17:52:40 +02:00
\node at (current page.south) [%
draw=red,
inner sep=15pt,
fill=white,
above=5cm,
font=\sffamily\bfseries\Huge
] {The book title};
\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}
\bibliography{src/bib.bib}
2019-06-17 17:15:12 +02:00
\end{document}