RMarkdown PDF 部分和小节颜色

RMarkdown PDF section and subsection color

我在 rmarkdown 文档中的部分和子部分使用了不同的颜色,但在 reader 部分(书签)窗格中的名称现在是空白的。

\textcolor{mycolor}{My section}

看起来即使我将 mycolor 恢复为黑色 ({RGB}{0,0,0}),问题仍然存在,所以我假设我错误地使用了 \textcolor{mycolor}{Section text to color}

还有别的办法吗?另外,有没有办法将相同的颜色应用于所有 sections/subsections?

可以说这是实现彩色章节标题目标的更好方法:

---
title: "Untitled"
output: pdf_document
header-includes:
  - \usepackage{sectsty}
  - \sectionfont{\color{red}}
  - \subsectionfont{\color{green}}
  - \subsubsectionfont{\color{blue}}
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

# Section

This section header should be red.

## Subsection

This subsection header should be green.

### Subsubsection

This subsubsection header should be blue.