2

#参照セクションで特定されている、Rmarkdown ドキュメントからシンボルを削除する必要があります。私はbiblio.bibという外部.bibアーカイブを使用しています。

私のYAMLヘッダーは次のとおりです。

---
output: 
    pdf_document:
      number_sections: true
header-includes:
  - \usepackage[spanish]{babel}     
  - \usepackage{cite}
bibliography: biblio.bib
---

参照セクションでは、knitcitationsパッケージを使用します:

# Referencias {-}




```{r generateBibliography, echo=FALSE, eval=TRUE, message=FALSE, warning=FALSE}
require("knitcitations")
cleanbib()
read.bibtex(file = "biblio.bib")
```

私のpdf_document出力:

ここに画像の説明を入力

4

2 に答える 2