My upper parameters of rmarkdown raport (.pdf) are:
---
title: "yyyyyyyyy"
author: "xxxxxxx"
output: pdf_document
classoption: landscape
---
I have some global options
```{r global_options, include=FALSE, echo=FALSE}
knitr::opts_chunk$set(echo=FALSE, warning=FALSE, message=FALSE, fig.width = 14, cache = T)
```
### chunk number 1
```{r}
some r code
```
### chunk number 2
```{r}
some r code
```
### chunk number 3
```{r}
some r code
```
I want to control output and have each chunk output on seperate pages in pdf report. How i can get it?