forked from nrennie/PrettyPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.qmd
41 lines (33 loc) · 1003 Bytes
/
template.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: "IUCN Red List of Ecosystems assessment with Quarto"
format: RLEpdf-pdf
author:
- name: Author Name
affiliations:
- name: An Organization
department: The Department
address: 1 First St
city: Boston
country: USA
postal-code: 02210-1022
- A second affilication
orcid: 0000-0000-0000-0000
email: [email protected]
url: https://example.org/
- name: A.N. Author
affiliations:
- Another Affiliation
---
## Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
### Running Code
When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
```{r}
1 + 1
```
You can add options to executable code like this
```{r}
#| echo: false
2 * 2
```
The `echo: false` option disables the printing of code (only output is displayed).