Renamed files of the thesis example.
This commit is contained in:
102
my-thesis.tex
Normal file
102
my-thesis.tex
Normal file
@@ -0,0 +1,102 @@
|
||||
% **************************************************
|
||||
% 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=full, % 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
|
||||
draft=false, % value for draft version
|
||||
]{scrreprt}%
|
||||
|
||||
|
||||
% **************************************************
|
||||
% Setup YOUR thesis document in this file !
|
||||
% **************************************************
|
||||
\input{my-thesis-setup}
|
||||
|
||||
|
||||
% **************************************************
|
||||
% Document CONTENT
|
||||
% **************************************************
|
||||
\begin{document}
|
||||
|
||||
% --------------------------
|
||||
% 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
|
||||
%
|
||||
\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{maincontentstyle} % fancy header and footer
|
||||
|
||||
\input{content/chapter-introduction} % INCLUDE: introduction
|
||||
\input{content/chapter-related-work} % INCLUDE: related work
|
||||
\input{content/chapter-system} % INCLUDE: system
|
||||
\input{content/chapter-concepts} % INCLUDE: concepts
|
||||
\input{content/chapter-conclusion} % INCLUDE: conclusion
|
||||
\cleardoublepage
|
||||
|
||||
% --------------------------
|
||||
% Back matter
|
||||
% --------------------------
|
||||
{%
|
||||
\setstretch{1.1}
|
||||
\renewcommand{\bibfont}{\normalfont\small}
|
||||
\setlength{\biblabelsep}{0pt}
|
||||
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
|
||||
\printbibliography[nottype=online]
|
||||
\printbibliography[heading=subbibliography,title={Webseiten},type=online,prefixnumbers={@}]
|
||||
}
|
||||
\cleardoublepage
|
||||
|
||||
\listoffigures
|
||||
\cleardoublepage
|
||||
|
||||
\listoftables
|
||||
\cleardoublepage
|
||||
|
||||
\input{content/colophon}
|
||||
\cleardoublepage
|
||||
|
||||
\input{content/declaration}
|
||||
\clearpage
|
||||
\newpage
|
||||
\mbox{}
|
||||
|
||||
% **************************************************
|
||||
% End of Document CONTENT
|
||||
% **************************************************
|
||||
\end{document}
|
Reference in New Issue
Block a user