章节标题中的换行符

章节标题中的换行符

如果我的标题很长\chapter,我该如何使用两行?

例如:

\chapter{Apêndice A - Massa e frações das~amostras~separadas}

答案1

您应该允许乳胶自动对附录进行编号,如果章节标题太长,将会换行:

在此处输入图片描述

\documentclass[openany,11pt,fleqn]{book}

\usepackage[portuguese]{babel}

\begin{document}

\chapter{Zzzz}
aabbcc

\appendix

\chapter{Massa e frações das amostras separadas}
aaabbcc

\end{document}

答案2

如果章节标题太长,则应自动换行。但是,您可以使用 手动创建换行符\\

\documentclass[openany,11pt,fleqn]{book}
\begin{document}
\chapter{Chapter title\\with a line break}
\end{document}

渲染后的 LaTeX

如果您不想包含“第 1 章”文本,请使用以下\chapter*命令:

\documentclass[openany,11pt,fleqn]{book}
\begin{document}
\chapter*{Chapter without\\additional text}
\end{document}

渲染后的 LaTeX

相关内容