63 lines
1.2 KiB
TeX
63 lines
1.2 KiB
TeX
\RequirePackage{fix-cm}
|
|
\documentclass[
|
|
fontsize=11pt,
|
|
paper=a4,
|
|
pagesize,
|
|
bibliography=totoc,
|
|
headings=big,
|
|
captions=tableheading,
|
|
chapterprefix=true,% like in standard class "report"
|
|
BCOR=1cm,
|
|
DIV=12,
|
|
headsepline=true,
|
|
footsepline=true,
|
|
]{scrbook}
|
|
|
|
\usepackage{listings}
|
|
\usepackage{config}
|
|
\usepackage{listing-config}
|
|
\usepackage{commands}
|
|
|
|
\begin{document}
|
|
\let\rawref\ref%
|
|
\renewcommand{\ref}[1]{\rawref{#1} (page~\pageref{#1})}
|
|
|
|
\frontmatter
|
|
|
|
\listoftodos{}
|
|
|
|
\vspace{2cm}
|
|
|
|
\copied{}
|
|
\noindent Text copied from other articles will be in this color
|
|
|
|
\fresh{}
|
|
\noindent Text that was freshly written will be in this color
|
|
|
|
\resetstyle{}
|
|
\quad\\
|
|
This version was compiled on \today{} at \currenttime{}.
|
|
|
|
\makeflyleaf{}
|
|
|
|
\begin{titlepage}
|
|
\begin{tikzpicture}[overlay,remember picture,line width=5pt]
|
|
\node at (current page.center) {\includegraphics[width=\pagewidth]{assets/background.png}};
|
|
\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}
|
|
|
|
\tableofcontents
|
|
|
|
\input{plan}
|
|
|
|
\bibliography{src/bib.bib}
|
|
|
|
\end{document}
|