GeneralNot compiling anymore

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
mihoma
Posts: 1
Joined: Mon Dec 31, 2018 9:01 am

Not compiling anymore

Post by mihoma »

Hello everyone!
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}
Attachments
MA_main.tex
(988 Bytes) Downloaded 164 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Not compiling anymore

Post by Johannes_B »

Welcome to the forum.

Unfortunately, what you have given us tells us nothing about what could go on. There might be a simple error in one of your chapters, or maybe something is hidden in an auxiliary file (delete them). A minimal working example would be needed.

What I can say though, which is off-topic, is that going back to roman numbering in the appendix is bad style. Unfortunately, someone at a german university had this "great" idea and that nonsense is dragged forward.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10340
Joined: Mon Mar 10, 2008 9:44 pm

Not compiling anymore

Post by Stefan Kottwitz »

Hi Mihoma,

welcome to the forum!

Perhaps post the .log file of such a LaTeX run, when it goes wrong. You can post it as attachment, like you did with the .tex file. I think that information could be useful.

Stefan
LaTeX.org admin
Post Reply