Last active
October 25, 2024 14:04
-
-
Save kyleGrealis/693e5d0df41576247900c3bef788d475 to your computer and use it in GitHub Desktop.
Quarto header 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: Your Title Here | |
author: | |
name: "First Last" | |
url: https://github.com/ # add your GitHub username | |
email: [email protected] | |
orcid: "0000-0000-0000-0000" # add your ORCID | |
roles: "aut" | |
affiliations: "your company" | |
abstract: "" | |
keywords: datascience, R | |
number-sections: false | |
format: | |
html: | |
embed-resources: true | |
theme: | |
- default | |
- custom.scss | |
toc: true | |
toc-title: "Table of Contents" | |
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
added
embed-resources: true
to YAML