From 68339702fcf94b21ba37cc0a8e745c07aabb6ef0 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 21 Sep 2021 17:03:34 +0200 Subject: Create thesis with latex template --- doc/thesis/Fading.tex | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 doc/thesis/Fading.tex (limited to 'doc/thesis/Fading.tex') diff --git a/doc/thesis/Fading.tex b/doc/thesis/Fading.tex new file mode 100644 index 0000000..fcbdc51 --- /dev/null +++ b/doc/thesis/Fading.tex @@ -0,0 +1,25 @@ +% !TeX program = xelatex +% !TeX encoding = utf8 +% !TeX root = Fading.tex +% vim: set ts=2 sw=2 noet: + +\RequirePackage{silence} % :-\ +\WarningFilter{scrreprt}{Usage of package `tocloft'} +%\WarningFilter{scrreprt}{Activating an ugly workaround} +\WarningFilter{titlesec}{Non standard sectioning command} + +\documentclass[ + twoside, openright, titlepage, numbers = noenddot, + headinclude, footinclude, cleardoblepage = empty, abstract = on, + BCOR = 5mm, paper = a4, fontsize = 11pt +]{scrreprt} + +\input{tex/classicthesis-config} +\usepackage{tex/classicthesis} + +\begin{document} + +\cleardoublepage +\chapter{Intro} + +\end{document} -- cgit v1.2.1 From fff1b3a7fe3fe5e0d1efc19ded62768582533693 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 21 Sep 2021 18:27:44 +0200 Subject: Adjust template --- doc/thesis/Fading.tex | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'doc/thesis/Fading.tex') diff --git a/doc/thesis/Fading.tex b/doc/thesis/Fading.tex index fcbdc51..2cf6da4 100644 --- a/doc/thesis/Fading.tex +++ b/doc/thesis/Fading.tex @@ -5,13 +5,12 @@ \RequirePackage{silence} % :-\ \WarningFilter{scrreprt}{Usage of package `tocloft'} -%\WarningFilter{scrreprt}{Activating an ugly workaround} \WarningFilter{titlesec}{Non standard sectioning command} \documentclass[ - twoside, openright, titlepage, numbers = noenddot, - headinclude, footinclude, cleardoblepage = empty, abstract = on, - BCOR = 5mm, paper = a4, fontsize = 11pt + twoside, openright, titlepage, numbers=noenddot, + headinclude, footinclude, cleardoublepage=empty, abstract=on, + BCOR=5mm, paper=a4, fontsize=11pt ]{scrreprt} \input{tex/classicthesis-config} @@ -19,7 +18,16 @@ \begin{document} -\cleardoublepage -\chapter{Intro} +%% Table of contents, List of figures, etc. +\begingroup + \let\clearpage\relax + \let\cleardoublepage\relax + + \pagestyle{scrheadings} + \tableofcontents + \listoffigures + \listoftables + \lstlistoflistings +\endgroup \end{document} -- cgit v1.2.1 From 7c35963f286418a7fde2fe53f350ce6f75a020ad Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 21 Sep 2021 19:11:18 +0200 Subject: Create thesis skeleton --- doc/thesis/Fading.tex | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) (limited to 'doc/thesis/Fading.tex') diff --git a/doc/thesis/Fading.tex b/doc/thesis/Fading.tex index 2cf6da4..31e0b90 100644 --- a/doc/thesis/Fading.tex +++ b/doc/thesis/Fading.tex @@ -17,17 +17,28 @@ \usepackage{tex/classicthesis} \begin{document} + % stuff before + \hypersetup{pageanchor = false} + \include{tex/titlepage} -%% Table of contents, List of figures, etc. -\begingroup - \let\clearpage\relax - \let\cleardoublepage\relax - - \pagestyle{scrheadings} - \tableofcontents - \listoffigures - \listoftables - \lstlistoflistings -\endgroup + \pdfbookmark[1]{Abstract}{Abstract} + \begin{abstract} + %% TODO + \end{abstract} + \cleardoublepage + + \pagenumbering{roman} + \include{tex/preamble} + + % actual content + \hypersetup{pageanchor = true} + \pagenumbering{arabic} + \setcounter{page}{1} + \include{chapters/introduction} + \include{chapters/theory} + \include{chapters/implementation} + \include{chapters/conclusions} + + % TODO: stuff after \end{document} -- cgit v1.2.1