我正在起草一个需要目录并且需要编入 Word 的 rmd。我正在使用 officedown 包,虽然我可以获得目录,但我需要让表格不包含目录的部分标题。我有这个:
---
output:
officedown::rdocx_document:
reference_docx: word_styles_ref_01.docx
---
{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, fig.cap = TRUE)
library(officedown)
library(officer)
<!---CHUNK_PAGEBREAK--->
# Table of Contents
<!---BLOCK_TOC--->
<!---CHUNK_PAGEBREAK--->
My report starts here.
# Heading 1
My report starts here.
## Heading 2
And I have this next subsection.
但我不希望在实际目录中重复“目录”。在上面的代码中,它在 word doc 中以页码重复。有没有办法不将其包含在 TOC 中?