我只想在目录幻灯片中显示顶部标题级别。当我添加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
1条答案
按热度按时间ndasle7k1#
在YAML中,缩进表示缩进的条目是它前面缩进较少的条目的一部分。R Markdown使用它来设置函数的参数。
因此
output:
条目表示powerpoint_presentation
是定义输出格式的函数。toc
和toc_depth
都是powerpoint_presentation
的参数,因此它们应该具有相同的缩进。出现语法错误是因为
toc_depth: 1
看起来像是toc: true
的一部分,但toc: true
的形式不适合容器。