我放弃。在我的R Markdown文档中找不到更改字体类型的有效解决方案。我尝试了很多东西,例如:

---
output: word_document
sansfont: Calibri Light
---

但是RStudio只是忽略了它。你能帮助我吗?我的pdf/word文件中需要Times New Roman字体。

问候

最佳答案

这对我有用。尝试使用mainfont而不是sansfont
并将latex_engine设置为xelatexlualatex

---
output:
  pdf_document:
    latex_engine: xelatex
mainfont: Times New Roman
---

关于fonts - R markdown-如何将字体切换到Times New Roman?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36960600/

10-08 23:52