I am trying to reference labeled equations in a document but I am unsure if how to compile twice. Upon the first compilation I get (??) where all my references are. I followed this link: How to link an equation in LaTeX. I am using TeXworks on a MAC.
Asked
Active
Viewed 696 times
1 Answers
1
All that compiling twice means is that you basically need to run
latex latex_source_code.tex
latex latex_source_code.tex
or
pdflatex latex_source_code.tex
pdflatex latex_source_code.tex
in the shell somehow.
If you ever get into bibliographies you will need to run something like
pdflatex latex_source_code.tex
bibtex latex_source_code.aux
pdflatex latex_source_code.tex
pdflatex latex_source_code.tex
This is all that running twice (or four times) means. How you place these commands into the shell depends on your editor/IDE. For TeXworks, this means you'll either have to manually click on the typeset button multiple times, sometimes switching processing tools in the dropdown menu, or use some kind of automation tool like arara (my favorite) or latexmk or rubber.
No matter what you choose, this should eliminate the ??
Mark Mendoza
- 303
??? – Werner Oct 23 '13 at 01:38latexmkif you don't want to worry about compiling twice, or even thrice. – logo_writer Mar 02 '16 at 17:10