Skip to content

This repository is forked from ismayc/reedtemplates. It currently provides an option for Reed students to create their senior theses using R Markdown. Implementations of languages other than R would be great as well. Additionally, the creation of other suitable templates (in formats like epub, html, etc.) would be a great way to collaborate.

Notifications You must be signed in to change notification settings

Reedies/reedtemplates

 
 

Repository files navigation

Overview

The reedtemplates package (formerly named rticles but changed due to ambiguity with the package at rstudio/rticles) includes a set of R Markdown templates that enable authoring of journal and conference submissions, e-books, class projects, and a variety of other reports. Currently, this package only includes a template for creating a senior thesis at Reed College. If you'd like to see the PDF document the template produces, it can be found here.

Under the hood, LaTeX templates are used to ensure that documents conform precisely to submission standards. At the same time, composition and formatting can be done using lightweight markdown syntax, and R code and its output can be seamlessly included using knitr.

Using reedtemplates has some prerequisites which are described below. To compile PDF documents using R, you are going to need to have LaTeX installed. It can be downloaded for Windows at http://http://miktex.org/download and for Mac at http://tug.org/mactex/mactex-download.html. Follow the instructions to install the necessary packages after downloading the (somewhat large) installer files. You may need to install a few extra LaTeX packages on your first attempt to knit as well.

Using reedtemplates from Chester's GitHub

To use reedtemplates from RStudio:

  1. Install the latest RStudio.

  2. Install the reedtemplates package:

install.packages("devtools")
devtools::install_github("ismayc/reedtemplates")
  1. Use the New R Markdown dialog to create an article from one of the templates:

New R Markdown

Using reedtemplates outside of RStudio

  1. Install pandoc using the instructions for your platform.

  2. Install the rmarkdown and reedtemplates packages:

install.packages("rmarkdown")
devtools::install_github("ismayc/reedtemplates")
  1. Use the rmarkdown::draft function to create articles:
rmarkdown::draft("MyThesis.Rmd", template = "reed_thesis", package = "reedtemplates")

About

This repository is forked from ismayc/reedtemplates. It currently provides an option for Reed students to create their senior theses using R Markdown. Implementations of languages other than R would be great as well. Additionally, the creation of other suitable templates (in formats like epub, html, etc.) would be a great way to collaborate.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TeX 80.0%
  • R 20.0%