Hi everyone
I have a Latex internship reports containing : main.tex, acknowledgements.tex, abstract.tex, listofsymbols.tex, Chapter1.tex, Chapter2
tex, references.bib and aappendix.tex
I know this document works but I can't get it to work. What order do I compile them ?
Theses, Books, Title pages ⇒ Order to compile a Latex document
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
Order to compile a Latex document
This should be explained in eveery introduction to LaTeX. You have to compile the main file by calling
pdflatex main
or hit the button in your editor.The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Order to compile a Latex document
The usual order is this:Colin93 wrote:What order do I compile them?
-
pdflatex
- any auxiliary program:
biber
(orbibtex
, depending on how the bibliography is built),makeindex
(if an index is used),makeglossaries
(if glossaries is used), … -
pdflatex
(at least twice)
site moderator & package author
Re: Order to compile a Latex document
Thankyou !
Re: Order to compile a Latex document
Keep in mind that you need to repeat this if changes like new index entries or new citations are added. So when you've finished your document you should repeat the whole compilation process.
You should also take a look at the log file every now and then because it often contains messages telling to recompile.
Regards
You should also take a look at the log file every now and then because it often contains messages telling to recompile.
Regards
site moderator & package author