我在Windows 10 PC上使用R 3.6.0和RStudio 1.2.1335(最新版本),并且无法使用RMarkdown在我的投影仪演示上打印目录。这个问题是几天前开始的,我似乎找不到问题。我的代码可以在RStudio Cloud上完美运行。但是,当我尝试在已安装的RStudio版本上运行相同的代码时,没有收到任何错误消息,但TOC页面为空白。我确定我仅使用一个#即可正确创建板块标题,但是,系统似乎没有将它们作为板块。
我尝试了一切,重新安装了R和RStudio,甚至使用以前的版本,重新安装了MikTex,卸载了一些PC更新,甚至卸载了我最近安装的程序,以查看是否存在冲突。他们都没有工作。同样,我的代码可以在RStudio Cloud上完美地打印TOC,所以问题出在我的PC上。
---
title: "Test"
author: "Guillermo"
date: "21/5/2019"
output: beamer_presentation
toc: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
# R Markdown
## R Markdown
This is an R Markdown presentation. Markdown is a simple
formatting syntax for authoring HTML, PDF, and MS Word
documents. For more details on using R Markdown see
<http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be
generated that includes both content as well as the output
of any embedded R code chunks within the document.
我没有收到任何错误消息。这让我发疯。