如何在 RMarkdown 和 LaTeX 中将标题居中并加粗?

如何在 RMarkdown 和 LaTeX 中将标题居中并加粗?

我是 LaTeX 和 RMarkdown 的新用户。我目前正在使用 RMarkdown(在 RStudio 中)编写报告,但不确定如何将其中一个标题居中并加粗?例如,我的文档如下所示:

---
title: <center> <h1>Call Centre Report</h1> </center>
mainfont: Arial
output:
  pdf_document:
    latex_engine: xelatex
sansfont: Arial
fig_crop: false
toc: true
classoption: landscape
fontsize: 14pt
geometry: margin=0.5in
header-includes:
- \usepackage{booktabs}
---
<style>
  .main-container {
    max-width: 1200px !important;
  }
</style>

```{r global_options, R.options=knitr::opts_chunk$set(warning=FALSE, message=FALSE)}
```
\newpage

# Iris 

```{r fig.width=18, fig.height=7, echo=FALSE, comment=" "}
library(ggplot2)
ggplot(data = iris, aes(x = Sepal.Length, y = Sepal.Width, colour = Species)) +
   geom_point() +
   theme_classic()
```

我希望将“Iris”标题居中并加粗,同时保留其作为标题出现在目录中的格式,但不确定如何做到这一点?

任何帮助将不胜感激。

答案1

一个不与pandoc default.latex 模板sectsty

在yaml的末尾,直接header-includes添加包

...
header-includes:
- \usepackage{booktabs}
- \usepackage{sectsty} \sectionfont{\centering \emph}
---

更多选项请参阅包装手册

相关内容