“更正列表”被设置为 `\section` 而不是 `\chapter`

“更正列表”被设置为 `\section` 而不是 `\chapter`

以下是 MWE:

\documentclass[draft]{memoir}
\usepackage{fixme}
\begin{document}

\chapter{test}
Oops?\fxwarning{Hello world!}

\listoffixmes

\end{document}

我想将标题(更正列表)排版为我的章节\backmatter。当我将类更改为scrbook它时排版为章节。有简单的解决方法吗?

欢迎在评论中提出使用比此更好的软件包的建议fixme(如果有的话)。我刚刚发现这个软件包,但我并不执着于使用这个特定的软件包。

答案1

该包不支持该类memoir

您可以fixme通过做出适当的选择来解决(双关语):

\documentclass[draft]{memoir}
\usepackage{fixme}

% pretend we're in book.cls
\makeatletter
\let\@lox@prtc\@lox@prtc@book
\makeatother

\begin{document}

\chapter{test}
Oops?\fxwarning{Hello world!}

\listoffixmes

\end{document}

相关内容