Bookdown 仅呈现空白页

Bookdown rendering only blank pages

我是 Bookdown 的新手。我正在设置一个试卷。当我去渲染这本书时,第一页 (index.Rmd) 正确渲染并在左侧构建正确的目录。但是,单击 TOC 中的任何 link 只会显示一个空白页。在_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 并遇到了同样的问题

你必须使用 bookdown::render_book("index.Rmd") 而不是编织按钮。