You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-2
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,17 @@
2
2
3
3
This is a Quarto template that assists you in creating PDF outputs which closely match those published on arXiv. If you are intending to publish your article on arXiv, it is highly recommended you upload your TeX files (and supporting files, including generated `.bbl` and figure files) directly. However, this template supports rendering PDFs which resemble arXiv preprints for upload to other repositories either before or instead of submission to arXiv itself.
4
4
5
-
Please note this template should be considered an early alpha as I work out a few mismatches between the current output and the arXiv style.
5
+
There are currently a few differences between the PDFs generated by this template and those generated by arXiv:
6
+
7
+
1. The fonts and spacings are not a perfect match. PRs to fix this are more than welcome.
8
+
2. ORCiD IDs will be rendered as clickable logos next to author names.
9
+
3. Emails will be displayed as hyperlinks, not in monospaced fonts.
10
+
11
+
Any other differences are unintentional bugs -- please open an issue about anything you encounter!
6
12
7
13
## Creating a New Article
8
14
9
-
You can use this as a template to create a preprint for ArXiV. To do this, use the following command:
15
+
You can use this as a template to create a preprint for ArXiv. To do this, use the following command:
10
16
11
17
```quarto use template mikemahoney218/quarto-arxiv```
Copy file name to clipboardExpand all lines: template.qmd
+25-13
Original file line number
Diff line number
Diff line change
@@ -4,25 +4,37 @@ format:
4
4
arxiv-pdf:
5
5
keep-tex: true
6
6
arxiv-html: default
7
-
institute:
8
-
- gpes: Graduate Program in Environmental Science, State University of New York College of Environmental Science and Forestry, 1 Forestry Drive, Syracuse, NY, 13210
9
-
- srm: Department of Sustainable Resources Management, State University of New York College of Environmental Science and Forestry, 1 Forestry Drive, Syracuse, NY, 13210
- name: State University of New York College of Environmental Science and Forestry
22
+
department: Department of Sustainable Resources Management
23
+
address: 1 Forestry Drive
24
+
city: Syracuse, NY
25
+
country: USA
26
+
postal-code: 13210
17
27
abstract: |
18
28
This document is only a demo explaining how to use the template.
19
-
keywords: [template, demo]
29
+
keywords:
30
+
- template
31
+
- demo
20
32
bibliography: bibliography.bib
21
33
---
22
34
23
35
# Introduction {#sec-intro}
24
36
25
-
This is an example of how to use this template to render articles in the standard arXiv format. Please note that this template is still in alpha as I work out some of the mismatches between PDF output and the arXiv style.
37
+
This is an example of how to use this template to render articles in the standard arXiv format.
26
38
27
39
This quarto extension format supports PDF and HTML outputs. `quarto-journals` is aiming at porting existing {{< latex >}} template from journals to be used with quarto. PDF format is what require the most work to fit the journals guideline, but Quarto offer a nice rendering for HTML output too. This template only uses basic HTML format without any customization for now.
28
40
@@ -56,9 +68,9 @@ m_pois <- glm(Days ~ (Eth + Sex + Age + Lrn)^2, data = quine, family = poisson)
56
68
kableExtra::kbl(broom::tidy(m_pois))
57
69
```
58
70
59
-
## Using references {.unnumbered}
71
+
## Using references
60
72
61
-
I did not read this book [@CameronTrivedi2013] but it must be interesting
73
+
I did not read this book [@CameronTrivedi2013] but it must be interesting.
0 commit comments