Skip to content
This repository was archived by the owner on Dec 20, 2022. It is now read-only.

Commit 6cb544f

Browse files
authored
Merge branch 'master' into master
2 parents 5e9087e + d6158c4 commit 6cb544f

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

Makefile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
FILE := main
22
OUT := build
33

4+
.PHONY: pdf
45
pdf:
5-
# Also see .latexmkrc
6-
latexmk -outdir=$(OUT) -pdf $(FILE)
6+
latexmk -interaction=nonstopmode -outdir=$(OUT) -pdf -halt-on-error $(FILE)
77

8+
.PHONY: watch
9+
watch:
10+
latexmk -interaction=nonstopmode -outdir=$(OUT) -pdf -pvc -halt-on-error $(FILE)
11+
12+
.PHONY: clean
813
clean:
914
rm -rf $(filter-out $(OUT)/$(FILE).pdf, $(wildcard $(OUT)/*))
1015

16+
.PHONY: purge
1117
purge:
1218
rm -rf $(OUT)
13-
14-
.PHONY: latexmk clean purge

build/main.pdf

-59 Bytes
Binary file not shown.

pages/cover.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{\LARGE \getAuthor{}}
3232

3333
\IfFileExists{logos/faculty.pdf}{%
34-
\vspace{20mm}
34+
\vfill{}
3535
\includegraphics[height=20mm]{logos/faculty.pdf}
3636
}{}
3737
\end{titlepage}

pages/title.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
\vspace{15mm}
2626
\begin{tabular}{l l}
27-
Author: & \getAuthor{} \\
28-
Supervisor: & \getSupervisor{} \\
29-
Advisor: & \getAdvisor{} \\
27+
Author: & \getAuthor{} \\
28+
Supervisor: & \getSupervisor{} \\
29+
Advisor: & \getAdvisor{} \\
3030
Submission Date: & \getSubmissionDate{} \\
3131
\end{tabular}
3232

settings.tex

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@
2626
\usepackage{caption}
2727
\usepackage[hidelinks]{hyperref} % hidelinks removes colored boxes around references and links
2828

29-
3029
\bibliography{bibliography}
3130

3231
\setkomafont{disposition}{\normalfont\bfseries} % use serif font for headings
3332
\linespread{1.05} % adjust line spread for mathpazo font
3433

34+
% Add table of contents to PDF bookmarks
35+
\BeforeTOCHead[toc]{{\cleardoublepage\pdfbookmark[0]{\contentsname}{toc}}}
36+
3537
% Define TUM corporate design colors
3638
% Taken from http://portal.mytum.de/corporatedesign/index_print/vorlagen/index_farben
3739
\definecolor{TUMBlue}{HTML}{0065BD}
@@ -49,7 +51,7 @@
4951
\definecolor{TUMAccentBlue}{HTML}{64A0C8}
5052

5153
% Settings for pgfplots
52-
\pgfplotsset{compat=1.9} % TODO: adjust to your installed version
54+
\pgfplotsset{compat=newest}
5355
\pgfplotsset{
5456
% For available color names, see http://www.latextemplates.com/svgnames-colors
5557
cycle list={TUMBlue\\TUMAccentOrange\\TUMAccentGreen\\TUMSecondaryBlue2\\TUMDarkGray\\},

0 commit comments

Comments
 (0)