将电子邮件添加到 LaTeX 文件

将电子邮件添加到 LaTeX 文件

是否可以在此代码中的作者下方添加电子邮件?

\documentclass[11pt,oneside,a4paper]{article}
\usepackage{hyperref}


\title{Hello}
\author{User1 \and User2}



\begin{document}
\maketitle

\section{Introduction}
A1
\section{Literature Review}
A2

\section{Conclusion}
A2

\end{document} 

答案1

只需使用\\下拉到下一行即可。

\documentclass[11pt,oneside,a4paper]{article}
\usepackage{hyperref}

\title{Hello}
\author{User1 \\ email \href{mailto:[email protected]}{[email protected]} 
   \and User2 \\ email \href{mailto:[email protected]}{[email protected]} }

\begin{document}
\maketitle
\section{Introduction}
A1
\section{Literature Review}
A2
\section{Conclusion}
A2
\end{document}

电子邮件

您可能需要调整hyperref 包改善外观。

答案2

是的,它可以包含在 \author{} 标签中。如下所示:

\author{User1 \\ [email protected] \and User2 \\ [email protected]}

但是,请注意,这不是规范的做法。通常,作者标签中的第二行是作者的地址和所属机构,其中可能包括电子邮件地址。有时,电子邮件地址会被放入脚注中(例如,在 \author{} 标签内使用 \thanks{} 标签)。但可以(并且偶尔会)这样做,只将不带所属机构的电子邮件地址放在作者姓名下。您可能希望将电子邮件地址设置为等宽字体,也可以通过像这样应用 \texttt{} 标签来实现。

\author{User1 \\ \texttt{[email protected]} \and User2 \\ \texttt{[email protected]}}

答案3

\documentclass{article}您可能更喜欢 而不是。\documentclass{amsart}使用
amsart 类,您可以包含几个不错的作者信息命令,例如电子邮件,这些信息将在文档中正确排序。
您可以编写以下命令:

   \author{User Guy}  
   \email{[email protected]}  

   \author{Another Guy}
   \email{[email protected]}

相关内容