-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.Rmd
99 lines (60 loc) · 1.47 KB
/
paper.Rmd
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
title: "TITLE"
date: '`r Sys.Date()`'
bibliography: references.bib
link-citations: true
output:
bookdown::pdf_document2:
includes:
in_header: preamble.tex
before_body: head.tex
fig_caption: true
number_sections: false
toc: false
github_document:
html_preview: false
csl: mbio.csl
fontsize: 12pt
geometry: margin=1.0in
---
```{r knitr_settings, eval=TRUE, echo=FALSE, cache=FALSE}
schtools::set_knitr_opts()
knitr::opts_knit$set(
base.dir = here::here(),
# base.url = "../",
fig.path = "figures/",
dpi = 300
)
```
```{r deps, include=FALSE, message=FALSE}
library(here)
library(knitr)
library(schtools)
library(tidyverse)
```
## Abstract
### Importance
\newpage
## Introduction
## Results
Example of referencing a figure in the text (Figure \@ref(fig:alpha-diversity)).
## Discussion
## Materials and Methods
### Data Processing Steps
### Data and Code Availability
List all software and version numbers used and cite the corresponding papers or manuals.
mothur vX.X [@schloss_introducing_2009]
## Acknowledgements
## Author Contributions
## References
\setlength{\parindent}{-0.25in}
\setlength{\leftskip}{0.25in}
\noindent
<div id="refs"></div>
\setlength{\parindent}{0in}
\setlength{\leftskip}{0in}
\newpage
## Figures
```{r alpha-diversity, fig.cap="**Alpha diversity.** The distribution of Shannon and Inverse Simpson indices for all mice."}
include_graphics(here("figures/stability_alpha-diversity.pdf"))
```