-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
46 lines (32 loc) · 899 Bytes
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
%%%%%%%%%% SETTINGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
paper=a4,%
pagesize,%
8pt, fleqn,%
headings=small,%
notitlepage,%
parskip=never]%
{scrreprt}
% TODO: Edit metadata!
\newcommand{\mytitle}{Summary}
\newcommand{\myauthor}{John Doe}
\newcommand{\myprofessor}{Prof.\ Hans Muster}
\newcommand{\mydate}{SS 2019}
\input{options}
\begin{document}
\begin{multicols*}{3}
% Title
{\bfseries\sffamily\LARGE\mytitle} \vspace{0.35em} \\ \myprofessor, \mydate \hfill \myauthor, \today \vspace{0.5em}
\tableofcontents
%%%%%%%%%% INPUT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TODO: Add content!
\input{test} % some cool tests
%\input{graph}
\appendix
%%%%%%%%%% REFERENCES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\newpage
%\columnbreak
\nocite{*}
\printbibliography
\end{multicols*}
\end{document}