排版时,标题页之前的开头有一个空白页。有没有办法可以删除它,同时仍然使用 \usepackage[affil-it]{authblk}?如果没有,我该如何将我的机构和电子邮件插入到文章文档类的标题页中?
\documentclass[11pt]{article}
\usepackage{setspace}\onehalfspacing
\usepackage[affil-it]{authblk}
\begin{document}
\title{Experiment 3.2: Dimensional Analysis of a Pump}
\author{Sophie Parsons}
\thanks{CRSid: \texttt{bb45}}
\affil{university}
\date{Dated: \today}
\maketitle
\begin{abstract}
insert abstract
\end{abstract}
\section{Introduction}
\end{document}
出现此问题的原因是我使用了以下包
\usepackage[affil-it]{authblk}
但是,我需要这个包,这样我就可以将我的机构和电子邮件地址插入文章文档类中。
答案1
宏\thanks
在之前发出\maketitle
并创建自己的页面。也许您希望\thanks
成为该\author
字段的一部分?
\documentclass[11pt]{article}
\usepackage{setspace}\onehalfspacing
\usepackage[affil-it]{authblk}
\begin{document}
\title{Experiment 3.2: Dimensional Analysis of a Pump}
\author{Sophie Parsons%
\thanks{CRSid: \texttt{bb45}}}
\affil{university}
\date{Dated: \today}
\maketitle
\begin{abstract}
insert abstract
\end{abstract}
\section{Introduction}
\end{document}