We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f2b62 commit 2c3fb21Copy full SHA for 2c3fb21
readthedocs/doc_builder/backends/sphinx.py
@@ -196,6 +196,8 @@ def build(self, **kwargs):
196
# Run LaTeX -> PDF conversions
197
pdflatex_cmds = [('pdflatex -interaction=nonstopmode %s'
198
% tex_file) for tex_file in tex_files]
199
+ # Run twice because of https://github.com/rtfd/readthedocs.org/issues/749
200
+ pdf_results = run(*pdflatex_cmds)
201
pdf_results = run(*pdflatex_cmds)
202
else:
203
pdf_results = (0, "No tex files found", "No tex files found")
0 commit comments