Indenting #4097
-
How can I control the indentation of paragraphs for an entire document? I see that there is a yaml header option In R Markdown, I would use:
Is the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You can include latex snippets in quarto as well: https://quarto.org/docs/output-formats/pdf-basics.html#latex-includes |
Beta Was this translation helpful? Give feedback.
-
Pandoc defines the variables for the template and we use them: It seems there is a quarto-cli/src/resources/formats/pdf/pandoc/template.tex Lines 179 to 191 in 91fd145 Pandoc's doc says (https://pandoc.org/MANUAL.html#layout)
If you think the default template could benefit more feature, I would open a feature request in Pandoc directly to make your case. |
Beta Was this translation helpful? Give feedback.
Pandoc defines the variables for the template and we use them:
https://pandoc.org/MANUAL.html#variables-for-latex
It seems there is a
indent
parameter that can be set totrue
to avoid default Pandoc adjustmenthttps://github.com/jgm/pandoc/blob/main/data/templates/default.latex#L204-L216
and we use the same
quarto-cli/src/resources/formats/pdf/pandoc/template.tex
Lines 179 to 191 in 91fd145