Last active
November 6, 2024 15:36
-
-
Save kyleGrealis/60487135cff714dcb8312b8312df9fc7 to your computer and use it in GitHub Desktop.
froggeR quarto template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Title" | |
author: | |
name: "{{< var author >}}" | |
url: "{{< var url >}}" | |
email: "{{< var email >}}" | |
orcid: "{{< var orcid >}}" | |
roles: "{{< var roles >}}" | |
affiliations: "{{< var affiliations >}}" | |
abstract: "" | |
keywords: "" # add keywords like "research" or "public health" | |
number-sections: false | |
format: | |
html: | |
embed-resources: true | |
theme: | |
- default | |
- custom.scss | |
toc: true | |
toc-title: "{{< var toc >}}" | |
toc-location: left | |
code-tools: true | |
code-copy: true | |
code-fold: true | |
code-summary: "Show code" | |
page-layout: full | |
grid: | |
margin-width: 0px | |
editor: source | |
--- | |
<!-- create a horizontal line to separate the header from the content --> | |
--- | |
## Section 1 | |
Content... | |
```{r} | |
# some code | |
``` | |
--- | |
## Section 2 | |
More content... | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment