我正在使用 Claudio Beccari 的 documentclasstoptesi
来撰写我的硕士论文。
此类会自动生成页眉,偶数页上有章节标题,奇数页上有节标题。
我的问题是,当我必须编写附录时,我只有章节的标题,而没有节的标题(不需要节),因此结果是一个空的页眉。这是拼写错误还是正确?
如果不正确,我可以使用什么解决方案来修复它?比如在两页上打印相同的标题(或不打印)。以下是代码示例:
\documentclass[ 12pt, twoside]{toptesi}
\usepackage{lipsum}
\usepackage[toc,page]{appendix}
\begin{document}
\english
\indici
\chapter{First chapter}
\lipsum[1-13]
\begin{appendices}
\chapter{First appendix}
\lipsum[1-12]
\end{appendices}
\end{document}
答案1
\chaptermark
在环境中重新定义appendices
以设置左和右的标记。
\documentclass[12pt,twoside]{toptesi}
\usepackage{kantlipsum}
\usepackage[toc,page]{appendix}
\begin{document}
\english
\indici
\chapter{First chapter}
\section{First section}
\kant
\begin{appendices}
\renewcommand\chaptermark[1]{%
\markboth{\thechapter\ -- #1}{\thechapter\ -- #1}%
}
\chapter{First appendix}
\kant
\end{appendices}
\end{document}
我使用是kantlipsum
因为英语连字符比 更好lipsum
。