diff options
author | Nao Pross <np@0hm.ch> | 2021-09-21 19:11:18 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2021-09-21 19:24:38 +0200 |
commit | 7c35963f286418a7fde2fe53f350ce6f75a020ad (patch) | |
tree | 16a9bd56ebc0f64dba898e5ce06f35b5c82cc081 /doc/thesis/tex | |
parent | Adjust template (diff) | |
download | Fading-7c35963f286418a7fde2fe53f350ce6f75a020ad.tar.gz Fading-7c35963f286418a7fde2fe53f350ce6f75a020ad.zip |
Create thesis skeleton
Diffstat (limited to 'doc/thesis/tex')
-rw-r--r-- | doc/thesis/tex/classicthesis-config.tex | 8 | ||||
-rw-r--r-- | doc/thesis/tex/preamble.tex | 29 | ||||
-rw-r--r-- | doc/thesis/tex/titlepage.tex | 35 |
3 files changed, 68 insertions, 4 deletions
diff --git a/doc/thesis/tex/classicthesis-config.tex b/doc/thesis/tex/classicthesis-config.tex index de761d7..424d7c2 100644 --- a/doc/thesis/tex/classicthesis-config.tex +++ b/doc/thesis/tex/classicthesis-config.tex @@ -29,7 +29,7 @@ \PassOptionsToPackage{ drafting=true, % print version information on the bottom of the pages tocaligned=false, % the left column of the toc will be aligned (no indentation) - dottedtoc=false, % page numbers in ToC flushed right + dottedtoc=true, % page numbers in ToC flushed right eulerchapternumbers=true, % use AMS Euler for chapter font (otherwise Palatino) linedheaders=false, % chaper headers will have line above and beneath floatperchapter=true, % numbering per chapter for all floats (i.e., Figure 1.1) @@ -50,12 +50,12 @@ \newcommand{\myProf}{Prof. Dr. Heinz Mathis\xspace} \newcommand{\myOtherProf}{\xspace} \newcommand{\mySupervisor}{Michel Nyffenegger\xspace} -\newcommand{\myFaculty}{University of Applied Sciences of East Switzerland\xspace} +\newcommand{\myFaculty}{Faculty of Electrical Engineeering\xspace} \newcommand{\myDepartment}{Institute for Communication Systems ICOM\xspace} -\newcommand{\myUni}{OST Fachhochschule\xspace} +\newcommand{\myUni}{University of Applied Sciences of East Switzerland OST\xspace} \newcommand{\myLocation}{Rapperswil\xspace} \newcommand{\myTime}{December 2021\xspace} -\newcommand{\myVersion}{\classicthesis} +\newcommand{\myVersion}{Draft 1} % Setup, finetuning, and useful commands \newcommand{\ie}{i.\,e.} diff --git a/doc/thesis/tex/preamble.tex b/doc/thesis/tex/preamble.tex new file mode 100644 index 0000000..0d42fe5 --- /dev/null +++ b/doc/thesis/tex/preamble.tex @@ -0,0 +1,29 @@ +% vim: set ts=2 sw=2 noet: + +% Table of contents +\pdfbookmark[1]{\contentsname}{tableofcontents} +\tableofcontents + +\clearpage + +% List of figures, tables and listings +\begingroup + \let\clearpage\relax + \let\cleardoublepage\relax + + \automark[section]{chapter} + \renewcommand{\chaptermark}[1]{\markboth{\spacedlowsmallcaps{#1}}{\spacedlowsmallcaps{#1}}} + \renewcommand{\sectionmark}[1]{\markright{\textsc{\thesection}\enspace\spacedlowsmallcaps{#1}}} + + \pagestyle{scrheadings} + + \pdfbookmark[1]{\listfigurename}{lof} + \listoffigures + + \pdfbookmark[1]{\listtablename}{lot} + \listoftables + + \pdfbookmark[1]{\lstlistlistingname}{lol} + \lstlistoflistings +\endgroup + diff --git a/doc/thesis/tex/titlepage.tex b/doc/thesis/tex/titlepage.tex new file mode 100644 index 0000000..9bcd127 --- /dev/null +++ b/doc/thesis/tex/titlepage.tex @@ -0,0 +1,35 @@ +% vim: set ts=2 sw=2 noet: + +\begin{titlepage} + \pdfbookmark[1]{\myTitle}{titlepage} + \begin{addmargin}[-1cm]{-3cm} + \begin{center} + \large + + \hfill + + \vfill + + \begingroup + \color{CTtitle}\spacedallcaps{\myTitle} \\ \bigskip + \endgroup + + \spacedlowsmallcaps{\myName} + + \vfill + + % \includegraphics[width=6cm]{gfx/TFZsuperellipse_bw} \\ \medskip + + % \mySubtitle \\ \medskip + % \myDegree \\ + \myDepartment \\ + \myFaculty \\ + \myUni \\ \bigskip + + \myTime\ -- \myVersion + + \vfill + + \end{center} + \end{addmargin} +\end{titlepage} |