如何在降价中更改数字的标题标题?

时间:2017-08-19 10:05:44

标签: r latex markdown pandoc

我目前正用德语撰写一份小报告。因此,我希望我的数字标题标题从图1 更改为 Abbildung 1 ,依此类推。

---
title: "Untitled"
author: "me"
date: '`r format(Sys.time(), "%d %B, %Y")`'
output:
  pdf_document: default
---


```{r iris, fig.cap='Iris sepal lengths'}
hist(iris$Sepal.Length)
```

问题:如何更改R Markdown中的默认数字标题(不确定它是否实际上是这样称呼的?)

2 个答案:

答案 0 :(得分:3)

根据this question的示例,您可以定义自己的var foo = Array.from({length:2}, v => 'foo'); var bar = Array.from({length:3}, v => 'bar'); var arr = [1,2,3] arr.push(...bar); arr.unshift(...foo); console.log(arr);文件,您可以在其中更改图标题默认值。

header.tex:

tex

这是主要的.Rmd文件:

\usepackage{caption}
\captionsetup[figure]{name=Abbildung}

enter image description here

答案 1 :(得分:2)

如果您使用英语以外的任何其他语言书写,则可以使用lang YAML选项更改输出的pdf的语言选项。这将覆盖所有标题,标签,目录等。

---
output: pdf_document
lang: de
---

```{r iris, fig.cap='Iris sepal lengths'}
hist(iris$Sepal.Length)
```

enter image description here

  

其他语言选项包括fr(法语),it(意大利语)等。有关更多详细信息,请参见http://pandoc.org/MANUAL.html#language-variables