建议使用 latex 命令进行重现,如附图所示

建议使用 latex 命令进行重现,如附图所示

如何让文本位于顶部边缘以上,具体像下面附图所示的那样?

enter image description here

提前致谢。

答案1

一个简单的解决方案就是将此信息手动添加到您的文档中:

\documentclass{article}

\title{text}
\author{names}
\date{text}

\begin{document}

\textbf{Name:}

\textbf{Program:}

\textbf{University:}

\hrulefill

{
\let\newpage\relax
\maketitle
}
text

\end{document}

enter image description here

相关内容