如何隐藏 KOMA 脚本中章节的标题?

如何隐藏 KOMA 脚本中章节的标题?

在 KOMA 脚本报告中,如何在章节开头隐藏未编号章节的标题,但在目录中显示该章节的标题?

梅威瑟:

\documentclass{scrreprt}

\begin{document}

\tableofcontents

\addchap{CV}

I want to hide the title above.

\end{document}

MWE 第 1 页 MWE 第 2 页

在这个特定的例子中,我希望章节“CV”的标题不要出现在章节开始的第二页。

由于 KOMA 脚本和titlesec包存在兼容性问题,我需要一种无需使用的方法titlesec

答案1

\documentclass{scrreprt}

\begin{document}

\tableofcontents

\clearpage
\addcontentsline{toc}{chapter}{CV}

I want to hide the title above.

\end{document}

相关内容