I am using a LaTeX template given by my university. So far, everthing has been working but suddenly all chapters were included anymore. Furthermore, the bibliography is not printed anymore when compiling. I really do not know why. The funny thing is, when the order of the chapters in the main file (which defines the document class etc) is changed, the chapters get included. But in this case, another is excluded.
If you would be able to help me, I would be super thankful!
All the best
Mihoma
Code: Select all
\input{chapters/header}
\newcounter{PageForAppendix} % Um den Anhang durchgehend mit Verzeichnissen vor dem ersten Kapitel nummerieren zu können
%usepackage{bibtex}
\begin{document}
\pagenumbering{roman}
\include{chapters/titlepage}
\include{chapters/assertation}
%\include{chapters/acknowledgements}
%\include{chapters/abstract}
\tableofcontents
%\include{chapters/nomenclature}
\listoffigures
\listoftables
\cleardoublepage
\pagestyle{scrheadings}
\setcounter{PageForAppendix}{\value{page}} % Zähler setzen
\pagenumbering{arabic}
\include{chapters/introduction}
\include{chapters/theory}
%\include{chapters/numericalSetup}
%\include{chapters/results}
\include{chapters/conclusion}
\Blinddocument
\cleardoublepage
\pagenumbering{roman}
\setcounter{page}{\value{PageForAppendix}} % Zähler setzen
\printbibliography
\appendix
\include{chapters/appendixA}
%\printglossary
\end{document}