页码和章节标题之间的间距

页码和章节标题之间的间距

我正在用 Latex 写论文的一章,页码位于左上角,并与章节标题一起调整,如下图所示:

在此处输入图片描述

2 是页码,我需要 2 和第 1 章之间有一个空格。我的代码只是

\documentclass[b5paper,11pt, titlepage]{book} 
\chapter{Guided Wave Based Structural Health Monitoring}
\textbf{My name}
\tableofcontents
\newpage

当我将章节名称缩短时,它工作正常,但当我写出章节的完整名称/标题时,就会出现这个问题。我是 Latex 的新手,请帮助我解决这个问题。谢谢。

答案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}

输出

在此处输入图片描述

相关内容