答案1
出现此问题是因为您选择的页面宽度b5paper
不足以容纳章节长标题,从而导致标题非常接近页眉中的页码。
您可以通过\chaptermark{short version of the chapter title}
在 chapter 命令后添加来解决这个问题。因此完整的代码可以是:
\documentclass[b5paper, 11pt, titlepage]{book}
\begin{document}
\tableofcontents
\chapter{Guided Wave Based Guided Wave Based Structural Health Monitoring}
\chaptermark{Guided Wave Based ...} % Short version of your chapter title that will appear in the header only.
\newpage
\textbf{My name}
\end{document}
输出