diff options
author | Karl Berry <karl@freefriends.org> | 2019-06-26 20:40:49 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-06-26 20:40:49 +0000 |
commit | 970e8d821f0fe59d5e72a40a483d3c7460499bc2 (patch) | |
tree | 9e8f52c4c999d4f92c5c174e11177458b99c5c3a /Master/texmf-dist/doc/latex/cleanthesis/my-thesis.tex | |
parent | 4bd24a7528ce2b7078296217539f9030c8995f46 (diff) |
cleanthesis (26jun19)
git-svn-id: svn://tug.org/texlive/trunk@51472 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/cleanthesis/my-thesis.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/cleanthesis/my-thesis.tex | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/cleanthesis/my-thesis.tex b/Master/texmf-dist/doc/latex/cleanthesis/my-thesis.tex new file mode 100644 index 00000000000..eedba725b57 --- /dev/null +++ b/Master/texmf-dist/doc/latex/cleanthesis/my-thesis.tex @@ -0,0 +1,124 @@ +% ************************************************** +% Document Class Definition +% ************************************************** +\documentclass[% + paper=A4, % paper size --> A4 is default in Germany + twoside=true, % onesite or twoside printing + openright, % doublepage cleaning ends up right side + parskip=half, % spacing value / method for paragraphs + chapterprefix=true, % prefix for chapter marks + 11pt, % font size + headings=normal, % size of headings + bibliography=totoc, % include bib in toc + listof=totoc, % include listof entries in toc + titlepage=on, % own page for each title page + captions=tableabove, % display table captions above the float env + chapterprefix=false, % do not display a prefix for chapters + appendixprefix=false, % but display a prefix for appendix chapter + draft=false, % value for draft version +]{scrreprt}% + + +% ************************************************** +% Setup YOUR thesis document in this file ! +% ************************************************** +\input{my-thesis-setup} + + +% ************************************************** +% Document CONTENT +% ************************************************** +\begin{document} + +% uncomment the following command to fill up pages with +% whitespace instead of aligning the first and last lines +% of a page (see \raggedbottom vs. \flushbottom) +%\raggedbottom + +% -------------------------- +% rename document parts +% -------------------------- +%\renewcaptionname{ngerman}{\figurename}{Abb.} +%\renewcaptionname{ngerman}{\tablename}{Tab.} +\renewcaptionname{english}{\figurename}{Fig.} +\renewcaptionname{english}{\tablename}{Tab.} + +% -------------------------- +% Front matter +% -------------------------- +\pagenumbering{roman} % roman page numbing (invisible for empty page style) +\pagestyle{empty} % no header or footers +\input{content/titlepages} % INCLUDE: all titlepages +\cleardoublepage + +\pagestyle{plain} % display just page numbers +\input{content/abstract} % INCLUDE: the abstracts (english and german) +\cleardoublepage +% +\input{content/acknowledgement} % INCLUDE: acknowledgement +\cleardoublepage +% +\currentpdfbookmark{\contentsname}{toc} +\setcounter{tocdepth}{2} % define depth of toc +\tableofcontents % display table of contents +\cleardoublepage + +% -------------------------- +% Body matter +% -------------------------- +\pagenumbering{arabic} % arabic page numbering +\setcounter{page}{1} % set page counter +\pagestyle{scrheadings} % header and footer style + +%% Uncomment the following lines using the \part command +%% to add part sections +%\part{Example Part} +\input{content/chapter-introduction} % INCLUDE: introduction +\input{content/chapter-related-work} % INCLUDE: related work + +%\part{Additional Example Part} +\input{content/chapter-system} % INCLUDE: system +\input{content/chapter-concepts} % INCLUDE: concepts +\input{content/chapter-conclusion} % INCLUDE: conclusion + +% -------------------------- +% Back matter +% -------------------------- +% +{% +\setstretch{1.1} +\renewcommand{\bibfont}{\normalfont\small} +\setlength{\biblabelsep}{0pt} +\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip} +\printbibliography[nottype=online] +\newrefcontext[labelprefix={@}] +\printbibliography[heading=subbibliography,title={Webpages},type=online] +} +\cleardoublepage + +\listoffigures +\cleardoublepage + +\listoftables +\cleardoublepage + +\lstlistoflistings +\cleardoublepage + +\appendix\cleardoublepage +\input{content/chapter-appendix} % INCLUDE: appendix + +\cleardoublepage +\input{content/colophon} + +\cleardoublepage +\input{content/declaration} +\clearpage + +\newpage +\mbox{} + +% ************************************************** +% End of Document CONTENT +% ************************************************** +\end{document} |