我在用
\documentclass[man, donotrepeattitle, floatsintext]{apa7}
写我的论文。我知道,这不是写论文的最佳课程,但到目前为止,一切都按预期进行。
我尝试在摘要后的单独页面上添加致谢,但没有任何效果。
\begin{acknowledgements}
,我也没有尝试过其他东西。
答案1
如果没有一个最小的工作示例,我们在这里几乎无能为力。您也可以提及您迄今为止尝试过的方法。这样我们就不会建议您已经不起作用的方法。
编辑
我查看了软件包文档。显然,您应该使用 -command\authornote
来执行所有额外操作。
\authornote{〈author-note〉}
:作者备注,包含联系信息、致谢等。
会出现在前但是摘要是这样的。我不太了解 APA 格式和文档惯例,但我高度怀疑它应该是这样的。
所以我的最终答案将是:使用\authornote
。如果你不想使用它,请查看下面的示例,它似乎完全符合你的要求:
\documentclass[man, donotrepeattitle, floatsintext]{apa7}
\usepackage[utf8]{inputenc}
\usepackage{paratype}
\usepackage{blindtext}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\addbibresource{bibliography.bib}
\title{Sample APA-Style Document Using the \textsf{apa7} Package}
\author{Daniel A. Weiss}
\affiliation{A University Somewhere}
\leftheader{Weiss}
\abstract{This demonstration paper uses the \textsf{apa7} \LaTeX\ class to format the document in compliance with the 7th Edition ofthe American Psychological Assocation’s \textit{Publication Manual.} The references are managed using \textsf{biblatex}.}
\keywords{APA style, demonstration}
\begin{document}
\maketitle
\newpage
\section{Aknowledgements}
\blindtext
\newpage
We begin with \textcite{Shotton1989}.
We can also cite this work inparenthesis, like this: \parencite{Shotton1989}.
A three-author paper \parencite[e.g.,][]{Lassen2006} lists allthree authors for the first citation, then only the first authoron all subsequent citations \parencite{Lassen2006}.
Note the use of five heading levels throughout this demonstrationMethod section.
\section{Method}
\subsection{Participants}
We had a lot of people in this study.
\subsection{Materials}
Several materials were used for this project.
Some of them werealready created for prior research.
\end{document}