这可能是一个简单的问题,但我对 Latex 还不熟悉,我不知道如何将作者信息置于文章封面标题下方。
我正在使用以下内容:
\documentclass{article}
\title{TITLE}
\date{June 2021}
\begin{document}
\maketitle
\bigbreak
\textbf{Name Surname}
\\*Institution
\\*Address Line 1
\\*Address Line 1
\\*Contact No:
\\*Email:
\end{document}
有人知道如何修改它以使作者信息位于标题下方的中心吗?
答案1
推荐更符合 LaTeX 风格的方式:
\documentclass{article}
\title{Title}
\author{%
John Doe\thanks{%
\TeX-\LaTeX\ Stack Exchange Institution\\
The world wide web\\
Contact number: 1234567890\\
Email: [email protected]%
}%
}
% \date{June 2021}% Uncomment this line to set the date.
\begin{document}
\maketitle
\end{document}
但如果您仍然希望作者信息居中:
\documentclass{article}
\title{Title}
\author{%
John Doe\\[2em]
\TeX-\LaTeX\ Stack Exchange Institution\\
The world wide web\\
Contact number: 1234567890\\
Email: [email protected]%
}
% \date{June 2021}% Uncomment this line to set the date.
\begin{document}
\maketitle
\end{document}