如何使用函数调用将以下内容编入 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 中使用 knit 按钮时它可以工作。因此,我想知道按下 knit 按钮和使用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 --highlight-style tango --latex-engine pdflatex --variable graphics=yes --variable '几何:边距=1in'!LaTeX 错误:环境景观未定义。
错误:无法编译 test.tex。有关更多信息,请参阅 test.log。