我有一个rmarkdown文档(.Rmd),我想编成一个pdf文档.number_sections已设置为"yes",toc设置为"true".如何添加出现在目录中但没有节号的附录部分?
这是一个示例.Rmd代码.如何让附录A和附录B成为无数段,并让它们同时出现在目录中?
--- title: "Test" author: "test test" geometry: margin=1in output: pdf_document: keep_tex: yes latex_engine: xelatex number_sections: yes toc: yes toc_depth: 3 header-includes: - \usepackage[dutch]{babel} - \usepackage{fancyhdr} - \pagestyle{fancy} - \fancyfoot[LE,RO]{this is a fancy foot} - \usepackage{dcolumn} - \usepackage{here} - \usepackage{longtable} - \usepackage{caption} - \captionsetup{skip=2pt,labelsep=space,justification=justified,singlelinecheck=off} subtitle: test test test fontsize: 12pt --- # start # second ```{r results="asis",eval=TRUE,echo=FALSE,message=FALSE, error=FALSE, warning=FALSE, comment = NA,fig.height=4} cat("and here some R") ``` # appendix A # appandix B
A5C1D2H2I1M1.. 21
只需{-}
在部分名称后添加.因此,对于您的附录,您应该执行以下操作:
# appendix A {-} # appendix B {-}
有关更多详细信息,请参阅文档的此部分.
结果:
只需{-}
在部分名称后添加.因此,对于您的附录,您应该执行以下操作:
# appendix A {-} # appendix B {-}
有关更多详细信息,请参阅文档的此部分.
结果: