禁止将 apa7 文档的标题设置为第一部分

禁止将 apa7 文档的标题设置为第一部分

我目前正在尝试提交一篇心理学论文。为此,我使用 apa7 文档类别。但是,该期刊要求章节编号以及“简介”作为第一节。

  1. 我知道我可以通过\setcounter{secnumdepth}{3}在该\maketitle命令后写入来启用章节编号

  2. 但是我不知道如何抑制这样一个事实:在使用时,make title我会将我的手稿标题作为文档启动时的第一个标题。

以下是我目前得到的信息:

%% SETTINGS
\documentclass[man]{apa7}
\usepackage[american]{babel}


%% Title page information
\title{GGG}
\shorttitle{GGGG}

\authorsnames[1,2,1]{One name , scecond name, third name}
\authorsaffiliations{{asdas} ,
                     {basdsad}}


\authornote{\flushleft \vspace{-1.5cm}
\addORCIDlink{blub}{0000-0000-000}
\qquad Correspondence concerning this article should be addressed .....}

%% Abstract page
\abstract{an abstract}

\keywords{BLI, BLA, BLUB}


%% Main document: Start

\begin{document}
\maketitle
% Modifications necessary for Journal 
\setcounter{secnumdepth}{3}

\section{Introduction}


\end{document}

这就是我想要消失的东西:)

答案1

文档apa7类提供了选项donotrepeattitle,我想您已经猜到它的作用了……——告诉 LaTeX 不要重复论文的标题。

因此,你需要改变

\documentclass[man]{apa7}

\documentclass[man,donotrepeattitle]{apa7}

以实现您的格式化目标。

有关被识别的选项的更多信息apa7文档类识别的选项的更多信息,请参阅该类的第 3 页和第 4 页用户指南

顺便说一句,用户指南还说这\maketitle应该是之后的第一个指令\begin{document};请参阅用户指南第 7 页。

相关内容