Rmarkdown to Word -如何在引用中更改Word的样式?

tkclm6bt  于 2023-09-27  发布在  其他
关注(0)|答案(1)|浏览(97)

我试图在rmarkdown生成的文档中应用Word的“引用”样式。我在输出中看到,References部分默认设置了某种样式。我的rmarkdown代码是这样的:

---
output: officedown::rdocx_document
params:
  data_manager: NULL
bibliography: bibliography.bib
link-citations: yes
---

Some content goes here...

# References
<!-- this is where bibliography will appear by default -->

我试过这个:

# References

:::{custom-style="Citation"}
<div id="refs"></div>
:::

但不管用在这种情况下,如何通过编程设置样式?有没有一个我应该设置的pandoc选项?

brc7rcf0

brc7rcf01#

这应该是可行的:

# References
<div id="refs" custom-style="Citation"></div>

相关问题