我正在写一篇论文,并试图写下我的电子邮件地址,其中包含下划线。我的问题是如何在电子邮件地址中写下划线?
我的 MWE:
\documentclass{aip-cp}
\begin{document}
\title{This is title}
\author{my name}
\eaddress{my\[email protected]}
\affil{My Department}
\maketitle
\end{document}
答案1
您必须添加\usepackage[T1]{fontenc}
下划线,然后将其输入为\_
\documentclass{aip-cp}
\usepackage[T1]{fontenc}
\begin{document}
\title{This is title}
\author{my name}
\eaddress{my\[email protected]}
\affil{My Department}
\maketitle
\end{document}