答案1
当然,你也可以只改变尺寸。但除此之外,在我看来,你还有两个选择:
1.) 您可以使用可选参数\section
,它允许您输入将在标题和目录中使用的不同字符串:
\section[Tensor, Symmetric, and Universal
Algebras]{Tensor, Symmetric Algebras,
and the Universal Enveloping Algebras}
那将会实现你想要的效果。
2.) 使用另一个包自动截断字符串。Donald Arsenau 的truncate
包(在我看来)最适合这个。使用fancyhdr
设计您自己的页面样式,其中将包括\truncate
用于您的部分标记的;这将缩短字符串。类似这样(伪造以进行演示;不是严肃的页面样式定义):
\documentclass{book}
\usepackage{lipsum}
\usepackage{truncate}
\usepackage{fancyhdr}
\fancyhead{}\fancyfoot{}
\fancyhead[LO]{\truncate{3in}\rightmark}
\fancyhead[RO]{\thepage}
\begin{document}
\setcounter{chapter}{6}
\pagestyle{fancy}
\section{Tensor, Symmetric Algebras, and the Universal Enveloping Algebras}
\lipsum
\end{document}
这将产生:
我希望其中一个可以解决您的问题。