\chapter*{} 偶数页缺少页眉

\chapter*{} 偶数页缺少页眉

我已经设置了序言,使得章节标题(包含 的章节\chapter{})在偶数页上显示章节本身的标题,在奇数页上显示章节的标题。但是当我使用 时\chapter*{},例如用于介绍或结论,有些页面(有时是奇数,有时是偶数)的标题显示正确,而有些页面的标题缺失,但我希望在偶数页和奇数页上都显示“介绍”或“结论”等。

\documentclass[12 pt, a4paper]{book}
\usepackage[a4paper,top=3.0cm,bottom=3.0cm,left=2.0cm,right=1.75cm,%
heightrounded,bindingoffset=5mm]{geometry} 

\usepackage{fancyhdr}
\pagestyle{fancy}   
\fancyhead{}
\fancyfoot{}
\fancyfoot[RO,LE]{\thepage}
\fancyhead[LE]{{\small \leftmark}} % even pages!
\fancyhead[RO]{{\small \rightmark}} % odd pages!
\usepackage{kantlipsum}


\begin{document} 
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\markboth{\uppercase {Introduction}}
\kant
\kant
\kant

\end{document}

谢谢!

答案1

\markboth需要参数---没有一个:

\markboth{\uppercase {Introduction}}{\uppercase {Introduction}}

相关内容