R Markdown 和 Latex:更改目录的字体系列和大小

R Markdown 和 Latex:更改目录的字体系列和大小

我正在尝试为业务合作伙伴创建一份自动报告rmarkdown,但对于如何修改目录我有点困惑。

本质上,我希望目录具有与主文档字体(Gotham Book)不同的字体系列(Gotham Light),并且我还希望使其小于默认字体大小。

在 R Markdown 文件顶部的 YAML 设置中是否有一个简单快捷的方法可以执行此操作?

以下是 YAML 设置:

title: "Report Title"
author: "Authors"
date: 'Date'
output: 
  pdf_document:
    latex_engine: xelatex
    toc: true
    toc_depth: 1
header-includes:
  - \usepackage{fontspec}
  - \setmainfont{Gotham Book}
  - \usepackage{booktabs}
  - \usepackage[tocflat]{tocstyle}
  - \usetocstyle{standard}
---

相关内容