scrartcl 类中的作者单位和电子邮件地址

scrartcl 类中的作者单位和电子邮件地址

scrartcl课堂上,如何包含作者的单位、地址和电子邮件地址?


代码:

\documentclass[11pt]{scrartcl} 
\usepackage[utf8]{inputenc}
\begin{document}
\title{Title}
\author{My name}
\maketitle
How do you add author affiliation, address and email address?
\end{document}

答案1

取决于你期望打印的位置,你可以使用,例如,

\documentclass[11pt]{scrartcl}% Note: 11pt is the default and therefore not needed.
\usepackage[utf8]{inputenc}% Note: utf8 us the default of LaTeX >= 2018/04/01.
\begin{document}
\title{Title}
\author{My name\\affiliation\\address\\email}
\maketitle
How do you add author affiliation, address and email address?
\end{document}

或者

\documentclass{scrartcl}
\begin{document}
\title{Title}
\author{My name\thanks{affiliation\\address\\email}}
\maketitle
How do you add author affiliation, address and email address?
\end{document}

或者你可以自由设计你的标题而不使用\maketitle,或者你可以使用附加包

相关内容