带有“mwbk”的双栏书籍会弄乱目录

带有“mwbk”的双栏书籍会弄乱目录

如果我删除下面的重新定义\chapter@toc,目录条目最终将没有数字,并且会出现其他错误消息。

\documentclass[twocolumn]{mwbk}

\usepackage{blindtext}

\makeatletter

\renewcommand*\chapter@toc{%
    \ifHeadingNumbered\typeout{\thechapter}\fi
    \addcontentsline{toc}{chapter}{%
        \ifHeadingNumbered
        \mw@seccntformat{\thechapter}%
        \fi
        \HeadingTOCText}}%

\makeatother


\begin{document}
\tableofcontents
\Blinddocument
\addtocounter{chapter}{10}
\Blinddocument
\Blinddocument

\end{document}

相关内容