-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ab2633
commit 5246121
Showing
13 changed files
with
343 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## Text formatting | ||
|
||
*italic* **bold** ~~strikeout~~ `code` | ||
|
||
superscript^2^ subscript~2~ | ||
|
||
[underline]{.underline} [small caps]{.smallcaps} | ||
|
||
## Headings | ||
|
||
# 1st Level Header | ||
|
||
## 2nd Level Header | ||
|
||
### 3rd Level Header | ||
|
||
## Lists | ||
|
||
- Bulleted list item 1 | ||
|
||
- Item 2 | ||
|
||
- Item 2a | ||
|
||
- Item 2b | ||
|
||
1. Numbered list item 1 | ||
|
||
2. Item 2. | ||
The numbers are incremented automatically in the output. | ||
|
||
## Links and images | ||
|
||
<http://example.com> | ||
|
||
[linked phrase](http://example.com) | ||
|
||
![optional caption text](quarto.png){fig-alt="Quarto logo and the word quarto spelled in small case letters"} | ||
|
||
## Tables | ||
|
||
| First Header | Second Header | | ||
|--------------|---------------| | ||
| Content Cell | Content Cell | | ||
| Content Cell | Content Cell | |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
@article{abrahms2016, | ||
title = {Lessons from integrating behaviour and resource selection: activity-specific responses of A frican wild dogs to roads}, | ||
author = {Abrahms, B and Jordan, NR and Golabek, KA and McNutt, JW and Wilson, AM and Brashares, JS}, | ||
year = {2016}, | ||
date = {2016}, | ||
journal = {Animal Conservation}, | ||
pages = {247{\textendash}255}, | ||
volume = {19}, | ||
number = {3}, | ||
note = {Publisher: Wiley Online Library} | ||
} | ||
|
||
@article{abrahms2016, | ||
title = {Lessons from integrating behaviour and resource selection: activity-specific responses of A frican wild dogs to roads}, | ||
author = {Abrahms, B and Jordan, NR and Golabek, KA and McNutt, JW and Wilson, AM and Brashares, JS}, | ||
year = {2016}, | ||
date = {2016}, | ||
journal = {Animal Conservation}, | ||
pages = {247{\textendash}255}, | ||
volume = {19}, | ||
number = {3}, | ||
note = {Publisher: Wiley Online Library} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
title: "Untitled" | ||
format: html | ||
editor: visual | ||
bibliography: references.bib | ||
--- | ||
|
||
###### 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 [@abrahms2016] | ||
|
||
```{r} | ||
#| echo: false | ||
2 * 2 | ||
``` | ||
|
||
The `echo: false` option disables the printing of code (only output is displayed) . | ||
|
||
```{r} | ||
2+2 | ||
i = 1 | ||
print (i) | ||
``` |