# h1 ```{r knitr_options, include=FALSE} opts_chunk$set(fig.path='figures/') ``` ## font style **bold** _italics_ *emph* `code` ## list ### unordered - a - b ### numbered 1. a 2. b ## code ```cpp int main() { return 0; } ``` ## quote > quote ## links [Fabian Peter Hammerle](http://fabian.hammerle.me/) [Repository][1] [//]: references [1]: https://git.hammerle.me/fphammerle/template-markdown ## R ```{r} 1+1 ``` Pi is `r pi`. ### plot ```{r} plot(1:10) ``` ## R session info ```{r session_info} sessionInfo() ```