I am currently writing my thesis and my table of contents suddenly disappeared. I can still see the header on the page "Contents", but no sections, subsection or pages are shown - the contents page is blank...
Thank you in advance

Main.tex:
Code: Select all
\documentclass[a4paper]{report} %openright
\input{Setup/Statics.tex}
\input{Setup/Preamble.tex}
\input{Setup/Settings.tex}
% change number for line spacing
\renewcommand{\baselinestretch}{1.25}
\begin{document}
\pagenumbering{roman}
\input{Frontmatter/Frontpage.tex}
\pagecolor{white}
\newgeometry{top=2.75cm, bottom=2.75cm, outer=2.5cm, inner=2.5cm}
\pagestyle{empty}
\cleardoublepage
\input{Frontmatter/Copyright.tex}
\clearpage
\pagestyle{main}
\input{Frontmatter/Approval.tex}
\clearpage
\input{Frontmatter/Abstract.tex}
\clearpage
\input{Frontmatter/Sammenfatning.tex}
\clearpage
\input{Frontmatter/Acknowledgements.tex}
\clearpage
\tableofcontents
\clearpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PAGE HEADING
\renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
\fancyhead[R]{National Department Aquatic Resources}
\fancyhead[L]{\chaptername\ \thechapter\ --\ \leftmark}
\renewcommand{\headrulewidth}{0.4pt}
\pagenumbering{arabic}
\input{Chapters/00_Abbreviation}
\cleardoublepage
\input{Chapters/01_Introduction}
\cleardoublepage
\input{Chapters/02_Theory}
\cleardoublepage
\input{Chapters/03_Method}
\cleardoublepage
\input{Chapters/04_Results}
\cleardoublepage
\input{Chapters/05_Discussion}
\cleardoublepage
\input{Chapters/06_Conclusion}
\cleardoublepage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\printbibliography[heading=bibintoc,title={Bibliography}]
\cleardoublepage
\appendix
\input{Backmatter/Appendix.tex}
\cleartoleftpage
\input{Backmatter/Backpage.tex}
\end{document}