如何删除目录中的悬挂缩进 - 回忆录

如何删除目录中的悬挂缩进 - 回忆录

如何在回忆录类中不缩进大型目录条目的第二行?

我发现了一个解决方案使用 toсloft,但我找不到如何在回忆录中做到这一点。

谢谢!

答案1

这实际上不支持开箱即用,但可以通过以下方式实现

\usepackage{xpatch}
\makeatletter
\xpatchcmd{\l@chapapp}{\advance\memRTLleftskip\@tempdima}%
 {}%                       replace with nothing
 {\typeout{patched ok}}%   went ok
 {\typeout{patch failed}}% went bad
\makeatother

(仅针对章节进行测试)

相关内容