How can i change the font size of PDF output in RMarkdown? The font to be changed is not in the chunk. Example:
---
title: "Example"
author: "Tales Martins"
output:
pdf_document:
toc: TRUE
number_sections: TRUE
---
\newpage
```{r, include=FALSE, echo=FALSE}
library(knitr)
```
# Introduction
This is my introduction
How can I change the font size of "This is my introduction"? Default font is little in PDF output.
Thanks in advance