There are several packages that allow the output of data structures in form of HTML or LaTeX tables. They mostly differ in flexibility.
Here I use the packages:
knitr
xtable
pander
For HTML documents
---
title: "Printing Tables"
author: "Martin Schmelzer"
date: "...
There are two possible ways of including LaTeX preamble commands (e.g. \usepackage) in a RMarkdown document.
1. Using the YAML option header-includes:
---
title: "Including LaTeX Preample Commands in RMarkdown"
header-includes:
- \renewcommand{\familydefault}{cmss}
- \usepacka...
A bibtex catalogue cna easily be included with the YAML option bibliography:. A certain style for the bibliography can be added with biblio-style:.
The references are added at the end of the document.
---
title: "Including Bibliography"
author: "John Doe"
output: pdf_documen...
R-markdown code chunks
R-markdown is a markdown file with embedded blocks of R code called chunks. There are two types of R code chunks: inline and block.
Inline chunks are added using the following syntax:
`r 2*2`
They are evaluated and inserted their output answer in place.
Block chunks hav...