我需要我的电子邮件地址作为脚注出现在标题页上。我尝试使用,authblk.sty
但脚注出现在标题页中间的日期后面。我的文件如下所示:
\usepackage[affil-it]{authblk}
\begin{document}
\author{First Last
\thanks{E-mail: \textttt{[email protected]}}}
\affil{Department, College}
\date{\today}
\maketitle
\pagebreak
\tableofcontents
\pagebreak
\end{document}
我从这里. 怎样才能最好地满足我的需要?
答案1
您可以尝试类似\vfill
方法:
\documentclass[a4paper]{article}
\usepackage[affil-it]{authblk}
\usepackage{blindtext}
\begin{document}
\title{Aggregation According to Classical Kinetics---From Nucleation to
Coarsening}
\author{First Last%
\thanks{E-mail: \texttt{[email protected]}}}
\affil{Department, College}
\date{\today}
\maketitle
\vfill
\pagebreak
\tableofcontents
\pagebreak
\section{Test 1st section}
\blindtext
\section{Second section}
\blindtext
\subsection{test subsection}
\blindtext
\end{document}