Files
tldr/pages.zh/common/lualatex.md

20 lines
457 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# lualatex
> 一种扩展版本的 TeX使用 Lua 进行编译。
> 更多信息:<https://manned.org/lualatex.1>。
- 启动 `texlua` 作为 Lua 解释器:
`lualatex`
- 将 Tex 文件编译为 PDF
`lualatex {{path/to/file.tex}}`
- 编译 Tex 文件而不发生错误中断:
`lualatex -interaction nonstopmode {{path/to/file.tex}}`
- 使用特定的输出文件名编译 Tex 文件:
`lualatex -jobname={{filename}} {{path/to/file.tex}}`