Skip to content

Releases: mikemahoney218/quarto-arxiv

Quarto arXiv template v0.2.3

05 Dec 22:09
Compare
Choose a tag to compare

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

11 Sep 19:05
Compare
Choose a tag to compare

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

22 Nov 12:30
Compare
Choose a tag to compare

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

17 Oct 15:33
Compare
Choose a tag to compare

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

27 Sep 01:20
4e8b3f7
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: v0.1.5...v0.1.6

Quarto arXiv template v0.1.5

08 Sep 15:42
aa48d07
Compare
Choose a tag to compare

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

07 Sep 23:27
Compare
Choose a tag to compare

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

02 Aug 16:11
Compare
Choose a tag to compare
  • 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

01 Aug 22:34
Compare
Choose a tag to compare
  • Fixes math rendering (now uses mathfont: "Latin Modern Math" for PDF outputs)

Automatically generated release notes:

What's Changed

  • fix(README): use proper code block to get copy button by @mcanouil in #1

New Contributors

Full Changelog: v0.1.1...v0.1.2

Quarto arXiv template v0.1.1

01 Aug 21:40
Compare
Choose a tag to compare
  • 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}