我正在使用this论文模板。它包括table of contents中的摘要,致谢,数字列表......根据大学的指导原则,我的TOC应该从第1章引言开始,而不是列出摘要,确认......。
在乳胶中你可以使用\section*
但是在pandoc中使用.unnumbered
导致该部分仍被包含在内。
在TOC的介绍章节之前排除这些部分的最简洁方法是什么?
答案 0 :(得分:2)
在pandoc中有一个open issue。
要从LaTeX TOC中删除{.unnumbered}
标题,您可以同时使用pandoc-latex-unlisted filter。
$ pip install pandoc-latex-unlisted
$ pandoc --filter pandoc-latex-unlisted input.md -o output.pdf
答案 1 :(得分:1)
我使用-H header.tex
作为Pandoc选项。
我的解决方法是追加:
\let\oldaddcontentsline\addcontentsline
直接header.tex
。
我在GitHub上写了同样的问题:https://github.com/chdemko/pandoc-latex-unlisted/issues/1