我是Bookdown的新手。我正在设置一本测试书。当我要呈现这本书时,第一页(index.Rmd)呈现正确,并在左侧构建了正确的目录。但是,单击TOC中的任何链接只会显示一个空白页面。在_book文件夹中,所有内部页面都是0字节的HTML文件。
我找到了其他几个had this problem on the RStudio forums,但没有发布任何解决方案。
以防万一,下面是我的index.html YAML:
---
title: "Test Title"
author: "My Name"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib]
biblio-style: apalike
link-citations: yes
github-repo: acircleda/RESMHandbook
description: "descirption"
---注意:我克隆了bookdown minimal example,也遇到了同样的问题
发布于 2020-04-21 22:12:29
你必须使用bookdown::render_book("index.Rmd")而不是编织按钮。
https://stackoverflow.com/questions/61344460
复制相似问题