MYa*_*208 5 html latex r knitr bookdown
我正在使用bookdown 一个最小的书籍示例。我想根据我的要求对此进行一些更改。我想知道如何列出所有参考书目条目而不引用它们。
我尝试\nocite{*}过preamble.tex(附带一个最小的书籍示例)但没有效果。我也不知道如何更改版本A Minimal Book Example中的左上角标题html。
要包含引用而不在文本中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)