latexrun
latexrun copied to clipboard
A 21st century LaTeX wrapper
I am using biblatex with the biber backend. The first generation of a document perfectly if passing `--bibtex-cmd biber` in the command line. However, all subsequent generations of the document...
# Problem The content of the PDF file in the root directory is incorrect, it is missing references. The PDF file in `latex.out` is correct. # Minimum working example Compile...
Exit with a non-zero status code if Werrors occur. e.g. to exit with non-zero failure status code when there are overfull lines/boxes: ```bash latexrun -E "overfull" report.tex -o report.pdf ```...
When running ```latexrun --latex-cmd lualatex --latex-args '-shell-escape -interaction=nonstopmode -synctex=1' --bibtex-cmd biber main.tex``` latexrun is not able to find the log file and outputs ```failed to extract job name from latex...
When I specify `--max-iterations N`, my sense is that, if the document compiles without error over the `N` iterations, then `latexrun` should exit with process exit code 0, regardless of...
Here goes minimal example. *blah.tex*: ``` \documentclass{article} \usepackage[backend=biber]{biblatex} \addbibresource{refs.bib} \begin{document} Hello world. \nocite{*} \printbibliography \end{document} ``` *refs.bib*: ``` @inproceedings{ref01, author={M. Pie}, title={A Bug in Latexrun}, booktitle={Github}, year={2018} } ``` I...
#### Bug: If not stdout, program will auto-detect terminfo capabilities despite the choice regarding the `--color` command line argument. Because of this, terminfo terminal is never initialized and the program...
Fixes #58
When latex gives the warning "Unused global option(s):", latexrun doesn't show which options are unused. Compare the output of latexrun and pdflatex below: Test file (`foo.tex`): ``` \documentclass[english]{article} \begin{document} Foo...
With pdflatex, lualatex etc. I am able to do something like `echo "test.tex" | pdflatex`. This doesn't work with latexrun: ``` usage: latexrun [-h] [-o FILE] [--latex-cmd CMD] [--latex-args ARGS]...