Questions tagged [latexmk]
37 questions
0
votes
0 answers
How to use / find a Latex compiler in python
I am trying to run the following code:
import numpy as np
from pylatex import Document, Section, Subsection, Tabular, Math, TikZ, Axis, \
Plot, Figure, Matrix, Alignat
from pylatex.utils import italic
import os
if __name__ == '__main__':
…

Harry Tieman
- 1
- 1
0
votes
1 answer
Table label reference breaks when using \addbibresource in Latex export in orgmode
When I export to latex the following simple file:
#+Title: Example
#+OPTIONS: H:2 ^:{} f:t toc:nil author:nil
#+LATEX_HEADER: \usepackage[backend=bibtex]{biblatex}
#+LATEX_HEADER: \addbibresource{$HOME/Bibliographies/bibliography}
#+LATEX_HEADER:…

Adam Oudad
- 337
- 1
- 9
0
votes
0 answers
PowerShell script does not return
I write a PDF generator that is implemented in Java and uses PowerShell scripts to compile TEX files with latexmk.
An example for a generated command is powershell.exe -NoProfile -NoLogo "&'C:\path\to\scripts\compileTex.ps1' 'C:\path\to\workingDir'…

TrackerSB
- 317
- 6
- 19
0
votes
1 answer
Can I build multiple PDFs from the same source in readthedocs?
I have a lot of documentation in a readthedocs site, and I'd like to be able to serve it as two separate PDF files. I've separated the contents for each into two top-level *.rst files (formal.rst and informal.rst), specified them both in the…

user2662404
- 59
- 6
0
votes
0 answers
Subprocess No such file or directory error
As part of larger code, I am trying to make a function that calls to a latexmk compiler using subprocess, but I consistently get FileNotFoundError: [Errno 2] No such file or directory: 'latexmk': 'latexmk'
However, If I write the command directly in…

XJiang
- 13
- 5
0
votes
1 answer
Compile .tex file with latexmk with www-data user (opencpu)
i run opencpu 1.5 [1] on ubuntu 14.04 server. My R-Package create an .tex file an trigger a system call to compile the pdf file with latexmk.
system("latexmk -xelatex -interaction=batchmode mylatex.tex")
On ubuntu 12.04 LTS it works fine.…

corium
- 11
- 1
- 2
-1
votes
1 answer
Make sphinx build latex PDF in nonstopmode
i am using sphinx to build my latex document but everytime i run the make latexpdf command, latex stops the build and asks for user input -- latex is not running with nonstopmode. In the past i was able to put the nonstopmode in a makefile and use…

Austin Benny
- 15
- 3