我想以某种方式格式化论文的从属关系 - 因此它看起来像下面这样
我已经尝试过以下代码
\title{TITLE}
\author[1]{Author1}
\affil[1]{School \\ University \\ Email: [email protected]}
\author[2]{Author 2}
\affil[2]{School \\ University \\ Email: [email protected]}
并且
\title{TITLE}
\author{Author1}
\affil{School \\ University
\\ Email: [email protected]}
\author{Author 2}
\affil{School \\ University
\\ Email: [email protected]}
但这两种方法都得出了错误的结果。有什么建议吗?
以下是迄今为止我所用到的代码:
是的,我正在使用 authblk。
\documentclass{article}
\usepackage[]{authblk}
\begin{document}
\title{TITLE}
\author[1]{Author1}
\affil[1]{School \\ University
\\ Email: [email protected]}
\maketitle
\end{document}
答案1
\protect
换行符:
\documentclass{article}
\usepackage{authblk}
\begin{document}
\title{TITLE}
\author[1]{Author1}
\affil[1]{School \protect\\ University \protect\\ Email: [email protected]}
\maketitle
\end{document}
答案2
该软件包提供了换行命令\authorcr
。文档说这是在 内使用的\author
,但它也可以在 中使用\affil
:
\documentclass{article}
\usepackage{authblk}
\begin{document}
\title{TITLE}
\author[1]{Author1}
\affil[1]{School, University \authorcr
Email: [email protected]}
\author[2]{Author2}
\affil[2]{School, University \authorcr
Email: [email protected]}
\maketitle
\end{document}