我需要知道rmarkdown::render
函数是否创建了任何变量,以便识别是否已创建pdf doc或html doc。我的想法是在一个chuck中编写代码,该代码的行为取决于创建的doc类型,例如,假设这样的变量存在并且它被称为.output_format
(就像选项一样),我想用它像这样:
{r}```
if (.outputformat=='html') print('This is a HTML doc')
else if (.outputformat=='pdf') print('This is a PDF doc')
```
提前致谢。