2025-03-14 21:59:59 -06:00
|
|
|
# lualatex
|
|
|
|
|
|
|
|
|
|
> An extended version of TeX using Lua to compile.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://texdoc.org/serve/tex.man1.pdf/0>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Start `texlua` to act as a Lua interpreter:
|
|
|
|
|
|
|
|
|
|
`lualatex`
|
|
|
|
|
|
|
|
|
|
- Compile a Tex file to PDF:
|
|
|
|
|
|
|
|
|
|
`lualatex {{path/to/file.tex}}`
|
|
|
|
|
|
|
|
|
|
- Compile a Tex file without error interruption:
|
|
|
|
|
|
|
|
|
|
`lualatex -interaction nonstopmode {{path/to/file.tex}}`
|
|
|
|
|
|
|
|
|
|
- Compile a Tex file with a specific output file name:
|
|
|
|
|
|
|
|
|
|
`lualatex -jobname={{filename}} {{path/to/file.tex}}`
|