如果我的标题很长\chapter
,我该如何使用两行?
例如:
\chapter{Apêndice A - Massa e frações das~amostras~separadas}
答案1
答案2
如果章节标题太长,则应自动换行。但是,您可以使用 手动创建换行符\\
。
\documentclass[openany,11pt,fleqn]{book}
\begin{document}
\chapter{Chapter title\\with a line break}
\end{document}
如果您不想包含“第 1 章”文本,请使用以下\chapter*
命令:
\documentclass[openany,11pt,fleqn]{book}
\begin{document}
\chapter*{Chapter without\\additional text}
\end{document}