如何指定RMarkdown到powerpoint的目录级别?

6tdlim6h  于 2022-12-30  发布在  其他
关注(0)|答案(1)|浏览(104)

我只想在目录幻灯片中显示顶部标题级别。当我添加toc_depth: 1时,我得到下面的错误。我如何自定义它?

title: "Test Site Report"
subtitle: "Supplement to the Provincial Report"

output: 
  powerpoint_presentation:
    reference_doc: template.pptx
    toc: true
       toc_depth: 1

产生错误Error in yaml::yaml.load(..., eval.expr = TRUE) : Scanner error: mapping values are not allowed in this context at line 9, column 17 Calls: <Anonymous> ... parse_yaml_front_matter -> yaml_load -> <Anonymous> Execution halted

ndasle7k

ndasle7k1#

在YAML中,缩进表示缩进的条目是它前面缩进较少的条目的一部分。R Markdown使用它来设置函数的参数。
因此output:条目表示powerpoint_presentation是定义输出格式的函数。toctoc_depth都是powerpoint_presentation的参数,因此它们应该具有相同的缩进。
出现语法错误是因为toc_depth: 1看起来像是toc: true的一部分,但toc: true的形式不适合容器。

相关问题