-
Please help me configure the microtype package in the YAML headerI am writing a thesis, and really find Quarto to be great. I am getting to the point where I am fine-tuning the typesetting. The I often find this with the YAML stuff; the documentation on the Quarto site doesn't make clear what I literally need to write to configure the commands correctly. In most cases I can figure it out but this one has stumped me. If anyone could advise I'd me most grateful. I have tried putting options separated by commas, with and without quotation marks, inside square brackets or not, and have added `/usepackage{microtype}' to the relevant part of the YAML in case it needed it. I am unsure why I can't get this. I am running Quarto through Rstudio version 2023.06.0+421 on a M1 Macbook Air, with Tinytex installed |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
This comment has been hidden.
This comment has been hidden.
-
quarto-cli/src/resources/formats/pdf/pandoc/template.tex Lines 192 to 195 in d4f620e It means that if microtype is installed on the LaTeX installation, it will be used , and if Did you look into your produced I would suggest to look into the .tex file that you produce by rendering Quarto document and check what is inside. It is possible that everything is inserted as it should but this is not working as you expect for some reason (LaTeX conflict ?) |
Beta Was this translation helpful? Give feedback.
-
The microtypeoptions:
- protrusion=true
- verbose=true Footnotes
|
Beta Was this translation helpful? Give feedback.
The
microtypeoptions
is to be defined as follow1:Footnotes
See https://ctan.tetaneutral.net/macros/latex/contrib/microtype/microtype.pdf. Also note that all options are not available to all PDF engines, i.e., some only works for
pdflatex
for example. ↩