更改RMarkdown PDF中的字体大小

时间:2019-08-16 20:39:04

标签: r pdf r-markdown

如何在RMarkdown中更改PDF输出的字体大小? 要更改的字体不在块中。 示例:

---
title: "Example"
author: "Tales Martins"
output:
   pdf_document:
    toc: TRUE
    number_sections: TRUE
---
\newpage

```{r, include=FALSE, echo=FALSE}
library(knitr)

```
# Introduction
This is my introduction

如何更改“这是我的简介”的字体大小? PDF输出中默认字体很少。

预先感谢

1 个答案:

答案 0 :(得分:1)

你试过了吗:

---
title: "Example"
author: "Tales Martins"
output:
   pdf_document:
    toc: true
    number_sections: yes
linestretch: 1.5
---

在 YAML linestretch: 1.5 中添加,然后 将此 toc: TRUE 更改为此 toc: true 并将 number_sections: TRUE 更改为 number_sections: yes

这里有一个例子

https://i.stack.imgur.com/VEdLL.png

也可以选择 linestretch: 2 等