标题和页眉中不得出现断词

标题和页眉中不得出现断词

如果我的文档中有很长的标题,我不希望它们显示不完整的单词。我在如何手动换行我的论文标题——使用缅因大学包,但在使用该提案后,我意识到在文档的标题上,行也分为两行,如下所述

\section{This is a very long \protect\\ title that I divide into two}

有人知道如何让标题在页眉中只占一行吗?当然是一行。

答案1

您可以使用\section[short]{long}如以下 MWE 所示的方式来获取在实际章节中手动分成两行的章节标题以及在目录和标题中未断开的标题。

\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}


\begin{document}

\tableofcontents
\newpage
\section[This is a very long title that I divide into two]{This is a very long \protect\\ title that I divide into two}

\end{document}

在此处输入图片描述

答案2

我不认为这是你所追求的,但这是另一种方法。

\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}

\tableofcontents
\newpage
\section{\mbox{This is a very long title that I do not divide into two}}

\end{document}

在此处输入图片描述

相关内容