snippetbashTip
lualatex — An extended version of TeX using Lua to compile. More information: <https://texdoc.org/serve/tex.man
Viewed 0 times
commandextendedtexluacliusinglualatexversion
Problem
How to use the
lualatex command: An extended version of TeX using Lua to compile. More information: <https://texdoc.org/serve/tex.man1.pdf/0>.Solution
lualatex — An extended version of TeX using Lua to compile. More information: <https://texdoc.org/serve/tex.man1.pdf/0>.Start
texlua to act as a Lua interpreter:lualatexCompile 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}}Code Snippets
Start `texlua` to act as a Lua interpreter
lualatexCompile 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}}Context
tldr-pages: common/lualatex
Revisions (0)
No revisions yet.