有没有办法为Rmarkdown选择语言?例如,我用葡萄牙语撰写作业,但表格标题将以Table 1: something.
在乳胶文件中,您只需添加\usepackage[brazil]{babel}
即可。是否有rmarkdown
的等效选项?
答案 0 :(得分:0)
我在TeX SE网站上找到了答案:https://tex.stackexchange.com/questions/171711/how-to-include-latex-package-in-r-markdown。
您可以只包含带有header-includes参数的包。
---
title: "Title"
author: "Me"
header-includes:
- \usepackage[brazil]{babel}
output:
pdf_document
---