Releases: mikemahoney218/quarto-arxiv
Quarto arXiv template v0.2.3
This release changes the template so that authors with multiple affiliations now have all affiliations listed under their names.
Full Changelog: v0.2.2...v0.2.3
Quarto arXiv template v0.2.2
This release adds a new argument, authorcols
, which (when true
) causes author names to use multiple columns, if their affiliations and names are short enough to allow multiple authors on the same line. The default of false
preserves the old behavior, where all authors are listed in a single column. Fixes #12.
Full Changelog: v0.2.1...v0.2.2
v0.2.1
This release adds a new argument, runninghead
, which sets the running head on the top of every page after the first.
It also specifies the main body font as Latin Modern Roman, which means \mathbf{}
now correctly bolds symbols (#5)
Full Changelog: v0.2.0...v0.2.1
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
Quarto arXiv template v0.1.6
This release updates the template so that the date:
YAML option now is used (without any transformation or interpretation) on the title page and running head. Previously this date always reflected the current day.
What's Changed
- Respect the date YAML option by @mikemahoney218 in #4
New Contributors
- @mikemahoney218 made their first contribution in #4
Full Changelog: v0.1.5...v0.1.6
Quarto arXiv template v0.1.5
Authors are now vertically stacked by default, irrespective of the amount of horizontal space their entry requires. Fixes #2.
Full Changelog: v0.1.4...v0.1.5
Quarto arXiv template v0.1.4
All author names are now bolded, rather than just the first author.
Full Changelog: v0.1.3...v0.1.4
Quarto arXiv template v0.1.3
- Flesh out the template document a bit more
- Fix typo in extension name
Full Changelog: v0.1.2...v0.1.3
Quarto arXiv template v0.1.2
- Fixes math rendering (now uses
mathfont: "Latin Modern Math"
for PDF outputs)
Automatically generated release notes:
What's Changed
New Contributors
Full Changelog: v0.1.1...v0.1.2
Quarto arXiv template v0.1.1
- The generated .tex can now be submitted to arxiv -- the example template passes all submission checks
- Adds
orcidlink.sty
as an extension file - Adds
\usepackage{hyperref}