如何在 HTML 版本中列出 Bookdown 中的所有参考书目条目而不引用和更改标题?

MYa*_*208 5 html latex r knitr bookdown

我正在使用bookdown 一个最小的书籍示例。我想根据我的要求对此进行一些更改。我想知道如何列出所有参考书目条目而不引用它们。

我尝试\nocite{*}preamble.tex(附带一个最小的书籍示例)但没有效果。我也不知道如何更改版本A Minimal Book Example中的左上角标题html

Kei*_*itt 5

要包含引用而不在文本nocite引用它们,您可以在.index.Rmd

nocite: | 
  @R-bookdown, @xie2015
Run Code Online (Sandbox Code Playgroud)

您还可以在 YAML 标头块中调整书名,例如:

title: "Some new title here"
author: "Yihui Xie"
...
nocite: | 
  @R-bookdown, @xie2015
Run Code Online (Sandbox Code Playgroud)

  • 感谢@Keith的回答。我尝试了`nocite:| @R-bookdown,@xie2015`,但不起作用。我知道如何更改文档的标题,并且还尝试了给定的代码。但它仍然在 html 版本的目录书签上方左上角给出了相同的标题“A Minimal Book Examples”。有什么想法吗。谢谢 (2认同)