Quarto arXiv template v0.2.0
This release adds three new YAML options to control PDF output:
- Set
linenumbers: true
to add line numbers to your PDF - Set
doublespacing: true
to double-space the generated PDF
Both default to false
; the default output has not changed.
Both options are implemented as straightforwardly as possible -- linenumbers
adds the following to the TeX output:
\usepackage{lineno}
\linenumbers
While doublespacing
adds:
\usepackage{setspace}
\doublespacing
This is likely sufficient for 80% of use cases, but for some documents you may need to ignore these options and write your own TeX in header-includes
.
This is a minor release which should not change any pre-existing documents; upgrading should be safe (but isn't necessary if earlier versions work for you).
Full Changelog: v0.1.6...v0.2.0