Skip to content

Commit fe8f932

Browse files
committed
Lualatex is now the default engine
1 parent 6dcb739 commit fe8f932

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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)