如何使用函数调用将以下内容编织为PDF?
---
title: '`r params$college` report'
params:
college: 'Art & Business'
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, message = F)
```
```{r}
library(tidyverse)
library(knitr)
library(kableExtra)
```
```{r}
mtcars %>%
kable( format = 'latex', longtable = T, booktabs = T) %>%
kable_styling(latex_options = "condensed", font_size = 8) %>%
landscape(margin = c('1cm'))
```
我认为rmarkdown::render('filename.Rmd')
会起作用,但是我在使用RStudio中的编织按钮时会出错。因此,我想知道按下编织按钮和使用render
之间是否存在任何差异。
当我使用render()
时,收到此错误消息:
/Applications/RStudio.app/Contents/MacOS/pandoc/pandoc + RTS -K512m -RTS test.utf8.md - to latex --from markdown + autolink_bare_uris + ascii_identifiers + tex_math_single_backslash --output test.tex --template /Library/Frameworks/R.framework/Versions/3.4/Resources/library/rmarkdown/rmd/latex/default-1.17.0.2.tex - 高亮式探戈--latex-engine pdflatex - 变量图形=是 - 变量'几何:margin = 1in'!乳胶错误: 环境景观未定义。
错误:无法编译test.tex。有关详细信息,请参阅test.log。