elp@r-project.org
> Subject: [R] rmarkdown and font size
>
> Suppose I have a file (named "tmp.rmd") containing:
>
>
> ---
> title: Test
> ---
>
> ```{r example, echo=FALSE, results='asis'}
> tmp <- data.frame(a=1:5, b=letters[1:5])
> pri
Suppose I have a file (named "tmp.rmd") containing:
---
title: Test
---
```{r example, echo=FALSE, results='asis'}
tmp <- data.frame(a=1:5, b=letters[1:5])
print( knitr::kable(tmp, row.names=FALSE))
```
And I render it with:
rmarkdown::render('tmp.rmd', output_format=c('html_document','pdf_d
2 matches
Mail list logo