如何限制副标题的宽度?

如何限制副标题的宽度?

论文格式手册有以下要求:

副标题宽度:

较长的副标题应分为两行或多行。每行宽度不得超过 4 英寸。论文中的副标题可以全部采用单倍行距或双倍行距。

但是我有几个章节和部分的名字很长。我查看了软件包,titlesec但目前还没有解决方案。

答案1

输出

\documentclass{article}
\usepackage[DIV9]{typearea}
\usepackage{lipsum}

\usepackage{letltxmacro}
\makeatletter
\LetLtxMacro{\ltx@subsection}{\subsection}
\renewcommand{\subsection}[2][]{\ltx@subsection[#1]{\protect\parbox[t]{4in}{#2}}}
\makeatother

\begin{document}
\section{Heading}
\subsection{Very very very very very very long subheading with no single line wider than 4 inches}
\lipsum
\end{document}

相关内容