私は LaTeX と RMarkdown の初心者です。現在、RMarkdown (RStudio 内) を使用してレポートを作成していますが、見出しの 1 つを中央揃えにして太字にする方法がわかりません。たとえば、私のドキュメントは次のようになります。
---
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}
---
詳しいオプションについてはパッケージマニュアルをご覧ください