-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
128 lines (102 loc) · 3.25 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
% Created on Oct 2023 by Mohammad Bashiri
\documentclass[twoside, 12pt, a4paper]{report}
% If you want to print the document set the argument to "print", otherwise to "online". Default: "online"
% - "print": adjusts the margins such that when printed the two side-by-side pages have similar outer margin
% - "online": same margin for all pages
\usepackage[print]{preambles}
%% If this is a draft, you can specifically show that by uncommenting the lines below
% \usepackage{draftwatermark}
% \SetWatermarkText{DRAFT}
% \SetWatermarkScale{5}
% \SetWatermarkAngle{60}
% \SetWatermarkColor[gray]{0.95}
% font sizes:
% \tiny
% \scriptsize
% \footnotesize
% \small
% \normalsize
% \large
% \Large
% \LARGE
% \huge
% \Huge
\begin{document}
\def\biblio{}
\pagenumbering{gobble}
\input{titlepage}
\newpage
\ % The empty page
\newpage
\vspace*{\fill}
Gedruckt mit Genehmigung der Mathematisch-Naturwissenschaftlichen Fakultät der Eberhard Karls Universität Tübingen. \\ \\ \\
Tag der mündlichen Qualifikation: \tab TBD \\ \\%01.12.2023 \\ \\
Dekan: \tab Prof. Dr. First Last \\
1. Berichterstatter: \tab Prof. Dr. First Last \\
2. Berichterstatter: \tab Prof. Dr. First Last
\newpage
\ % The empty page
\newpage
\vspace*{\fill}
Ich erkläre, dass ich die zur Promotion eingereichte Arbeit mit dem Titel “Latent Variable and Implicit Models for Neural System Identification” selbstständig verfasst, nur die angegebenen Quellen und Hilfsmittel benutzt und wörtlich oder inhaltlich übernommene Stellen als solche gekennzeichnet habe. Ich versichere an Eides statt, dass diese Angaben wahr sind und dass ich nichts verschwiegen habe. Mir ist bekannt, dass die falsche Abgabe einer Versicherung an Eides statt mit Freiheitsstrafe bis zu drei Jahren oder mit Geldstrafe bestraft wird.
\begingroup
\centering
\wildcard{Ort/Place, Datum/Date}
\hspace{1cm}
\wildcard{Unterschrift/Signature}
\par
\endgroup
\newpage
\ % The empty page
\chapter*{Acknowledgements}
\label{ch:ack}
% \addcontentsline{toc}{chapter}{\nameref{ch:ack}}
\lipsum[2-4]
\newpage
\ % The empty page
\chapter*{Abstract}
\label{ch:abstract}
% \addcontentsline{toc}{chapter}{\nameref{ch:abstract}}
\lipsum[2-4]
\newpage
\ % The empty page
\chapter*{Zusammenfassung}
\label{ch:zusammenfassung}
% \addcontentsline{toc}{chapter}{\nameref{ch:zusammenfassung}}
\lipsum[2-4]
\newpage
\ % The empty page
\newpage
\pagenumbering{arabic}
\setcounter{page}{6}
\tableofcontents
\subfile{chapters/1.introduction}
\subfile{chapters/2.background}
\subfile{chapters/3.paper}
\subfile{chapters/6.discussion}
\newpage
\bibliographystyle{unsrtnat}
\bibliography{references}
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}
% From this point on, only show up to \chapters in the ToC
\chapter*{Appendix}
\addcontentsline{toc}{chapter}{Appendices}
\renewcommand{\thesection}{Manuscript \arabic{section}}
This chapter contains the publications discussed in chapters X-Y.
\includepdf[
pages=1,
trim=18mm 12mm 18mm 20mm, % left bottom right top
scale=.82,
frame,
pagecommand={\section{}\label{paper:paper}},
linktodoc=true]
{manuscripts/paper.pdf}
\includepdf[
pages=2-,
trim=18mm 12mm 18mm 20mm,
scale=.82,
frame,
pagecommand={},
linktodoc=true]
{manuscripts/paper.pdf}
\end{document}