left margin: 4.0cm
right margin: 2.0cm
top margin: 2.5cm
bottom margin: 1.0cm
Finally I got it working but with totally different values in the definition. Can somebody explain why this is and give a proper solution so that I can put the values from above into the definition and the outputs really is like that?
Here is my document:
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{microtype}
\usepackage[printonlyused]{acronym}
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage[nottoc,numbib]{tocbibind}
\usepackage{geometry}
\geometry
{
top=15.5mm,
bottom=30mm,
left=35mm,
right=25mm,
headsep=5.5mm,
footskip=10mm
}
% include metadata
\input{srkssa_meta}
% header definition
\setlength{\headheight}{15.5mm}
\pagestyle{fancy}
\fancyhf{}
\lhead{\fontsize{10}{10} \selectfont \ThesisTitle}
\rfoot{\fontsize{10}{10} \selectfont \thepage}
\begin{document}
% start trailer
\thispagestyle{empty}
\input{srkssa_titlepage} % titlepage
\newpage
\pagenumbering{roman}
\setcounter{page}{2}
\addcontentsline{toc}{section}{Eidesstattliche Erklärung}
\input{srkssa_auo} % assertion under oath
\newpage
\tableofcontents % table of content
\newpage
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures % list of figures
\newpage
\addcontentsline{toc}{section}{Abkürzungsverzeichnis}
\section*{Abkürzungsverzeichnis}
\input{srkssa_acronyms} % list of acronyms
\newpage
% start main
\pagenumbering{arabic}
\setcounter{page}{1}
\input{srkssa_intro} % introduction
\newpage
\input{srkssa_sor} % stage of research
\newpage
\input{srkssa_gws} % gpu-warp sort
\newpage
\input{srkssa_summary} % summary
\newpage
\input{__temp} % temp
\newpage
\include{lipsum} % lipsum
\newpage
\renewcommand\refname{Literaturverzeichnis}
\bibliographystyle{plain}
\bibliography{srkssa_literature}
\end{document}
Sebastian