我希望作者注释标题和其余文本之间有真正的双倍行距(例如,以下示例中的*通讯作者)。
这是我的 MWE:
\documentclass[a4paper,man,noextraspace,apacite]{apa6}
\usepackage[utf8]{inputenc}
\usepackage[utf8]{inputenc}
\title{Title of the Study}
\authornote{*Corresponding author:
Funding sources:
Conflict of interest:
Ethics approval: }
\begin{document}
\maketitle
\end{document}
太感谢了!
答案1
下面的操作可以实现你想要的效果:
\documentclass[a4paper,man,noextraspace,apacite]{apa6}
\usepackage[utf8]{inputenc}
\shorttitle{Title}
\title{Title of the Study}
\author{An author}
\makeatletter
\renewcommand\authornote[1]{\long\def\@acks{\vspace*{-\topskip}#1}}
\makeatother
\authornote{*Corresponding author:
Funding sources:
Conflict of interest:
Ethics approval: }
\begin{document}
\maketitle
\end{document}