Created
June 10, 2021 13:42
-
-
Save svmiller/3c15669b44dee45ab354b1e9ef43f1dc to your computer and use it in GitHub Desktop.
A reprex of the article template in {stevetemplates}
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
--- | |
output: | |
stevetemplates::article: | |
fig_caption: true | |
keep_tex: TRUE | |
#bibliography: master.bib | |
biblio-style: apsr | |
title: "A Pandoc Markdown Article Starter and Template" | |
thanks: "Replication files are available on the author's Github account (http://github.com/svmiller). **Current version**: `r format(Sys.time(), '%B %d, %Y')`; **Corresponding author**: svmille@clemson.edu." | |
author: | |
- name: Steven V. Miller | |
affiliation: Clemson University | |
abstract: "This document provides an introduction to R Markdown, argues for its benefits, and presents a sample manuscript template intended for an academic audience. I include basic syntax to R Markdown and a minimal working example of how the analysis itself can be conducted within R with the `knitr` package." | |
keywords: "pandoc, r markdown, knitr" | |
date: "`r format(Sys.time(), '%B %d, %Y')`" | |
geometry: margin=1in | |
fontfamily: mathpazo | |
fontsize: 11pt | |
# spacing: double | |
endnote: no | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(cache=TRUE, | |
message=FALSE, warning=FALSE, | |
fig.path='figs/', | |
cache.path = '_cache/', | |
fig.process = function(x) { | |
x2 = sub('-\\d+([.][a-z]+)$', '\\1', x) | |
if (file.rename(x, x2)) x2 else x | |
}) | |
``` | |
# This is the Part That May Not Work | |
$$s_i = \sum_{j}^n w_i$$ | |
## R Markdown | |
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>. | |
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this: | |
```{r cars} | |
summary(cars) | |
``` | |
## Including Plots | |
You can also embed plots, for example: | |
```{r pressure, echo=FALSE} | |
plot(pressure) | |
``` | |
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot. | |
<!-- | |
# References | |
\setlength{\parindent}{-0.2in} | |
\setlength{\leftskip}{0.2in} | |
\setlength{\parskip}{8pt} | |
\vspace*{-0.2in} | |
\noindent | |
--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment