如何增加标题的行距?

如何增加标题的行距?

我想增加论文标题的行距。

示例标题

以下是 Latex 代码:

{\fontsize{25}{25}\usefont{OT1}{phv}{bc}{n}\selectfont\par
This is a very long title and I want to increase the spacing beetween the two lines}
\par    

我尝试使用\linespread{1.5},但是没有作用。

提前致谢。

答案1

您需要(a)增加行距(您的设置有零前导) 并将\par指令放在最后的花括号之前而不是之后}

以下屏幕截图显示了 0pt、5pt 和 10pt 行距之间的差异。(水平线只是为了指示标题材料的垂直范围。)只有您才能决定您的文档的“正确”行距量。

顺便问一下,为什么要强制使用OT1字体编码?我衷心建议使用该T1编码。

在此处输入图片描述

\documentclass{article}
\begin{document}
\centering

% OP's code (zero leading)
\hrule
{\fontsize{25}{25}\usefont{T1}{phv}{bc}{n}\selectfont\par
This is a very long title and I want to increase the spacing between the two lines}\par
\hrule

% 5pt leading
\bigskip  
\hrule 
{\fontsize{25}{30}\usefont{T1}{phv}{bc}{n}\selectfont\par
This is a very long title and I want to increase the spacing between the two lines\par}
\hrule

% 10pt leading
\bigskip
\hrule
{\fontsize{25}{35}\usefont{T1}{phv}{bc}{n}\selectfont\par
This is a very long title and I want to increase the spacing between the two lines\par}
\hrule
\end{document}

相关内容