如何让标题随章节重置*

如何让标题随章节重置*

标题应从“图表列表”更改为“序言”。

梅威瑟:

\documentclass[a4paper,oneside,12pt]{extbook}
\usepackage[UKenglish]{babel}
\usepackage{lipsum}

\begin{document}
\renewcommand{\listfigurename}{List of figures}
\frontmatter
\listoffigures
\mainmatter

\chapter*{Preface}
\section*{Acknowledgements}
\lipsum[1-30]

\chapter{First chapter}
\section{First Section}
\subsection{Subsection}
\lipsum[1-30]
\end{document}

我在其他课程中也遇到了同样的问题book

答案1

这是我在https://en.wikibooks.org/wiki/LaTeX/Customizing_Page_Headers_and_Footers

为了实现最大的灵活性,该\chapter命令及其朋友不会重新定义\rightmark\leftmark自身。它们会调用另一个命令(\chaptermark\sectionmark\subsectionmark)来负责重新定义\rightmark\leftmark除非它们带有星号--在这种情况下,\markboth{Chapter/Section name}{}如果要更新页眉和页脚行,则必须在分段命令内使用。

关于\markbothhttp://texblog.net/help/latex/markboth.html

为了得到你想要的,请按如下方式更改你的例子

    \chapter*{Preface}
    \markboth{}{Preface}

相关内容