Skip to content

Commit 0e82b78

Browse files
authored
Merge pull request #1687 from quarto-dev/pdf/lualatex-new-defaults
LuaLaTeX is the new default pdf engine
2 parents c7c20e7 + fe8f932 commit 0e82b78

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/extensions/lua-api.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ For LaTeX output, you may need to additionally detect which citation utility and
9999

100100
| Function | Description |
101101
|----------------------|--------------------------------------------------|
102-
| `quarto.doc.cite_method()` | Returns a string (`citeproc`, `natbib`, or `biblatex)` indicating the cite method in use. |
102+
| `quarto.doc.cite_method()` | Returns a string (`citeproc`, `natbib`, or `biblatex`) indicating the cite method in use. |
103103
| `quarto.doc.pdf_engine()` | Returns a string (`pdflatex`, `xelatex`, `lualatex`, or `tectonic`) indicating the PDF engine being used to render the document. |
104104

105105
### Includes

docs/output-formats/pdf-basics.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ See the Pandoc documentation on metadata [variables for LaTeX](https://pandoc.or
9696

9797
## Fonts
9898

99-
Using `xelatex`, the default engine, or the `lualatex` engine, you can specify fonts with the YAML options:
99+
Using `lualatex`, the default engine, or the `xelatex` engine, you can specify fonts with the YAML options:
100100

101101
| Option | Document Element |
102102
|----------------|--------------------------|
@@ -146,7 +146,7 @@ format:
146146

147147
## Unicode Characters
148148

149-
By default, Quarto uses the `xelatex` engine to produce PDFs from LaTeX. `xelatex` has native support for unicode characters, but it is possible some customization will be required in order to properly typeset specific unicode characters. In particular, it is important that you use a font that supports the characters that you using in your document. To identify fonts on your system that support specific language characters, you can use the following command:
149+
By default, Quarto uses the `lualatex` engine to produce PDFs from LaTeX. `lualatex` has native support for unicode characters, but it is possible some customization will be required in order to properly typeset specific unicode characters. In particular, it is important that you use a font that supports the characters that you using in your document. To identify fonts on your system that support specific language characters, you can use the following command:
150150

151151
``` {.bash filename="Terminal"}
152152
fc-list :lang=<lang> family

docs/output-formats/pdf-engine.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ You can use the `pdf-engine` and `pdf-engine-opts` to control the PDF engine tha
103103

104104
``` yaml
105105
title: "My Document"
106-
pdf-engine: lualatex
106+
pdf-engine: xelatex
107107
pdf-engine-opts:
108108
- '--no-shell-escape'
109109
- '--halt-on-error'
110110
```
111111
112-
The above example will use the `lualatex` PDF engine with some specific options, rather than the default `xelatex`.
112+
The above example will use the `xelatex` PDF engine with some specific options, rather than the default `lualatex`.
113113

114114
## Latexmk
115115

0 commit comments

Comments
 (0)