All Projects → illinois-r → uiucthemes

illinois-r / uiucthemes

Licence: other
RMarkdown Templates for UIUC Theme-Oriented Documents

Programming Languages

TeX
3793 projects
r
7636 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to uiucthemes

Summarytools
R Package to Quickly and Neatly Summarize Data
Stars: ✭ 390 (+766.67%)
Mutual labels:  rstudio, pandoc, rmarkdown
Posterdown
Use RMarkdown to generate PDF Conference Posters via HTML
Stars: ✭ 602 (+1237.78%)
Mutual labels:  rstudio, rmarkdown
Rmdformats
HTML output formats for RMarkdown documents
Stars: ✭ 492 (+993.33%)
Mutual labels:  rstudio, rmarkdown
R Course
Una introduccion al analisis de datos con R y R Studio
Stars: ✭ 93 (+106.67%)
Mutual labels:  rstudio, rmarkdown
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+13440%)
Mutual labels:  rstudio, rmarkdown
Jupytext
Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts
Stars: ✭ 4,969 (+10942.22%)
Mutual labels:  rstudio, rmarkdown
Wraprmd
RStudio addin for wrapping RMarkdown paragraphs
Stars: ✭ 87 (+93.33%)
Mutual labels:  rstudio, rmarkdown
Rmarkdown
Dynamic Documents for R
Stars: ✭ 2,319 (+5053.33%)
Mutual labels:  pandoc, rmarkdown
Postcards
💌 Create simple, beautiful personal websites and landing pages using only R Markdown.
Stars: ✭ 208 (+362.22%)
Mutual labels:  rstudio, rmarkdown
reportmd
Create multi-page HTML reports in R
Stars: ✭ 23 (-48.89%)
Mutual labels:  rstudio, rmarkdown
youngmetro
R Markdown Beamer Theme Based on sthlm, HSRM, and Metropolis themes
Stars: ✭ 14 (-68.89%)
Mutual labels:  rstudio, rmarkdown
learning R
List of resources for learning R
Stars: ✭ 32 (-28.89%)
Mutual labels:  rstudio, rmarkdown
rmdTemplates
Rmarkdown templates for reproducible science
Stars: ✭ 112 (+148.89%)
Mutual labels:  rstudio, rmarkdown
armcompanion
Companion materials for the rstudio::conf 2019 Advanced R Markdown workshop
Stars: ✭ 15 (-66.67%)
Mutual labels:  rstudio, rmarkdown
wowchemy-hugo-themes
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience
Stars: ✭ 6,891 (+15213.33%)
Mutual labels:  rstudio, rmarkdown
Xaringan
Presentation Ninja 幻灯忍者 · 写轮眼
Stars: ✭ 1,129 (+2408.89%)
Mutual labels:  rstudio, rmarkdown
Rmarkdown Cookbook
R Markdown Cookbook. A range of tips and tricks to make better use of R Markdown.
Stars: ✭ 324 (+620%)
Mutual labels:  pandoc, rmarkdown
Crisscross
A Markdown-centric template engine for batch offline document generation.
Stars: ✭ 18 (-60%)
Mutual labels:  pandoc, rmarkdown
Blogdown
Create Blogs and Websites with R Markdown
Stars: ✭ 1,327 (+2848.89%)
Mutual labels:  rstudio, rmarkdown
my-writing-workflow
Tutorial for converting markdown files in to APA-formatted docs, based on my workflow.
Stars: ✭ 35 (-22.22%)
Mutual labels:  pandoc, rmarkdown

UIUC Themes for R Markdown (uiucthemes)

R build status Package-License CRAN Version Badge CRAN Status CRAN RStudio mirror downloads CRAN status

The uiucthemes package includes a collection of UIUC-themed templates for presentations, journal articles, and exam templates.

Included in the package are:

  • beamer_illinois: Illinois colored header boxes
  • beamer_orange: Minimialist slides with a color preference to orange.
  • beamer_mil: Beamer Market Information Lab (MIL)
  • beamer_imetropolis: Metropolis Theme with Illinois colors for Beamer.
  • html_imetropolis: xaringan-powered Metropolis Theme for Illinois.
  • latex_journal_report: initial implementation of a journal entry for a class.

Screenshots of each template are included in package overview vignette.

beamer_illinois - Example

Within an RMarkdown file, add the following:

---
title: '"Illinois" UIUC Beamer Theme'
short-title: "Beamer Slides"
author: "John and Mary Doe"
short-author: "J & M Doe"
date: 'August 19, 2021'      # Month DD, YYYY (Main Slide)
short-date: '08/19/2021' # MM/DD/YYYY (Lower Right)
institute: "University of Illinois at Urbana-Champaign"
short-institute: "UIUC"
department: "Department of Magic"                # Institute must be defined
license: "Did you license this slide deck? "
section-titles: false                            # Provides slide headings
safe-columns: true                               # Enables special latex macros for columns.
output: 
   uiucthemes::beamer_illinois
---

# Section title     
## Subsection title 

### Frame Title

Frame content 

**Unordered List**

- [University of Illinois at Urbana-Champaign (UIUC)](http://illinois.edu)
- [Department of Statistics](http://www.stat.illinois.edu/)
- [Illinois Informatics Institute](http://www.informatics.illinois.edu/)

*Ordered List*

1. <http://thecoatlessprofessor.com>
2. <https://github.com/coatless>


#### Title for block box

Content inside of a box 

### \LaTeX

\begin{exampleblock}{Binomial Theorem}
\begin{equation} 
  f\left(k\right) = \binom{n}{k} p^k\left(1-p\right)^{n-k}
  \label{eq:binom}
\end{equation} 
\end{exampleblock}

Hello Equation \ref{eq:binom}

This generates:

Materials Referenced

Prerequisites

Using uiucthemes from RStudio

To use uiucthemes from RStudio:

  1. Install the latest RStudio.

  2. Install the uiucthemes package:

install.packages(c("rmarkdown","uiucthemes"))
  1. Use the New R Markdown dialog to create an article from one of the templates:

New R Markdown

Using uiucthemes outside of RStudio

  1. Install pandoc using the instructions for your platform.

  2. Install the rmarkdown and uiucthemes packages:

install.packages(c("rmarkdown","uiucthemes"))
  1. Use the rmarkdown::draft function to create articles:
rmarkdown::draft("slide_deck.Rmd", template = "beamer_illinois", package = "uiucthemes")

Using a development version of uiucthemes

To access the development version of uiucthemes, e.g. not on CRAN, please use:

if(!requireNamespace("remotes")) { install.packages("remotes") }
remotes::install_github("coatless/uiucthemes")

Authors

James Joseph Balamuta with contributions from Steven Andrew Culpepper, David Dalpiaz, and Jose Luis Rodriguez.

Citing the uiucthemes package

To ensure future development of the package, please cite uiucthemes package if used for a presentation. Citation information for the package may be acquired by using in R:

citation("uiucthemes")

License

MIT - James Joseph Balamuta

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].