我正在尝试使用Rmarkdown为word文档设置样式。通过在YAML下提供参考词文档,我已经成功地应用了基本样式。
但是,我正在研究一些高级样式,例如将不同的字体大小或颜色应用于同一文档中的段落/标题。
现在,如果我将任何一个段落的颜色更改为蓝色,则所有段落的颜色都将更改为蓝色,而我只想更改某些段落的颜色。
当前rmarkdown:
---
title: "`r params$report_title`"
params:
report_title: NA
absolute_application_path: NA
output:
word_document:
md_extensions: +styles
reference_docx: "mmr_tec_report_reference-file.docx"
---
```{r setup, include=FALSE, echo=FALSE}
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
library(pander)
```
```{r echo = FALSE}
application_path = params$absolute_application_path
signature_note <- ""
summary_note <- ""
```
## Template Instructions:
::: {custom-style="MMR_BodyText"}
The blue text are instructions or guidance for preparing the Sample or examples. Delete the blue highlighted instructions as the document is being drafted.
:::
我在那里做错了吗?
我想知道是否有任何方法可以使它工作?