如何重新创建这个标题?

如何重新创建这个标题?

https://journals.sagepub.com/doi/pdf/10.1177/0956797617714579

制作标题上的线条需要什么包装?在此处输入图片描述

答案1

有两个选项:

如果您只想要一条与文本宽度一样宽的线,那么您可以使用一条水平线,例如:

\hrule

或者您可以使用自定义的长度和宽度\rule命令:

\rule{\textwidth}{0.4pt} 

此行输出与上一行相同的输出。这里,\textwidth是线的长度,0.4pt是线的宽度。

您可以自定义它:

\rule{5cm}{0.4pt}

完整示例:

\documentclass{article}

\begin{document}
Some text goes here. It needs some gap

\vspace{10pt} % <-- gap between line and text
\hrule

\vspace{10pt}
Some text goes here.

\noindent
\rule{\textwidth}{0.4pt}

\vspace{10pt}
Some text goes here

\rule{5cm}{0.4pt} 

\end{document}

相关内容