使用 APA6 包减少作者注释标题和正文之间的间距

使用 APA6 包减少作者注释标题和正文之间的间距

我希望作者注释标题和其余文本之间有真正的双倍行距(例如,以下示例中的*通讯作者)。

这是我的 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}

代码输出

相关内容