4 级和 5 headers 未包含在 officedown 的 Table 目录中

Level 4 and 5 headers not included in the Table of Contents for officedown

我正在使用带有 Rmarkdown 的 officedown 编写 word 文档,目前它没有阅读目录 Table 中的第 4 级和第 5 级 headers(尽管它正确地添加了 header 1-3 级)。我的 YAML 是:

date: XX
author: XX
title: XX
output: 
  officedown::rdocx_document:
    reference_docx: reference_style_01.docx
bibliography: Thesis.bib
csl: apa
editor_options: 
  markdown: 
    wrap: 72

这是 YAML 之后的代码块:

knitr::opts_chunk$set(echo = FALSE, fig.cap = TRUE)
library(officedown)
library(officer)
install.packages("knitr", repo = "http://cran.rstudio.com")
library(knitr)

fp <- fp_par(
  text.align = "center", 
  padding.bottom = 20, padding.top = 120, 
  border.bottom = fp_border())

ft <- fp_text(shading.color='#EFEFEF', bold = TRUE)

我使用 # 来识别 header。 # header 1、## header 2 和### header 3 被 officedown 正确识别并放入目录中。但是#### header 4 和##### header 5 不是。我是否需要更改我的风格指南或 YAML 或其他东西?感谢所有帮助。

正在更改内容块的 table 来自

block_toc(level = 5)

已修复。感谢 David Gohel 的帮助。