From e77ab729a5b643e799f5507184de80b3bd6c4fa7 Mon Sep 17 00:00:00 2001 From: Vikrom Narula Date: Sun, 11 Sep 2022 06:10:24 +0700 Subject: [PATCH] lualatex: add page (#8473) --- pages/common/lualatex.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/lualatex.md diff --git a/pages/common/lualatex.md b/pages/common/lualatex.md new file mode 100644 index 000000000..e26d2dc77 --- /dev/null +++ b/pages/common/lualatex.md @@ -0,0 +1,20 @@ +# lualatex + +> An extended version of TeX using Lua to compile. +> More information: . + +- 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}}`