CVPR 2024 latex complate problems on local windows tex live
LWShowTime opened this issue · 2 comments
LWShowTime commented
cr333 commented
This is not a problem with the template.
If you want to manually compile any LaTeX document with BibTeX citations, you will need to call the latex
and bibtex
commands in an interleaved fashion:
latex main
bibtex main
latex main
latex main
How does this work?
- The first run of
latex
creates a filemain.aux
that contains the citations found in the document. - The next call, to
bibtex
, then reads this in to produce a filemain.bbl
containing the bibliographic information for these citations. - The next run of
latex
includes this bibliography information in the document, and makes the warnings you see go away. - The final run of
latex
updates page numbers and references that may have changed due to the previous run.
Overleaf and some LaTeX editors, such as TeXstudio, automatically run all these steps for you.
LWShowTime commented
@cr333
Thank you for your detailed explanation! I follow these four steps and everything is OK on my windows environment now! I highly appreciate your help!