We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
toolkit/vot/document/latex.py
Line 133 in 0c61b32
There is an error if I want to generate a pdf format report.
Command '['latexmk', '--pdf', '--interaction=nonstopmode', '/tmp/tmpuqx_mb9_.tex']' returned non-zero exit status 12.
I think the reason is latexmk can not find some files generated before. So I have to change to like this
if build: # temp = tempfile.mktemp() import os temp = os.path.join(storage.base, "report") logger.debug("Generating to tempourary output %s", temp) doc.generate_pdf(temp, clean_tex=True) # storage.copy(temp + ".pdf", "report.pdf")
The text was updated successfully, but these errors were encountered:
lukacu
No branches or pull requests
toolkit/vot/document/latex.py
Line 133 in 0c61b32
There is an error if I want to generate a pdf format report.
I think the reason is latexmk can not find some files generated before. So I have to change to like this
The text was updated successfully, but these errors were encountered: