apa6 包“man”文档模式产生不需要的第 3 页

apa6 包“man”文档模式产生不需要的第 3 页

我试图尽可能合理地遵循 APA6 格式撰写论文。我从本页的答案中拼凑出了一个序言,虽然有些混乱,但效果很好。

唯一的问题是,此代码在摘要第 2 页和目录第 4 页之间生成了不需要的第 3 页(违反了 APA 指南)。第 3 页上只有论文标题,我似乎无法将其删除。它也出现在目录中。

如果我将文档模式切换为doc,此页面就会消失,因此man模式似乎是问题所在。但是man模式与 APA6 指南规定的模式最为接近(页眉和页码在第 1 页,摘要在第 2 页,等等),所以我不想切换到doc

那么我该如何摆脱man模式中这个令人厌烦的第 3 页呢?

\documentclass[12pt,a4paper,man,notimes,draftfirst,noextraspace]{apa6}

\usepackage[american]{babel}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{upgreek}
\usepackage{paralist}
\usepackage{csquotes}
\usepackage{lscape}
\usepackage[doublespacing]{setspace}

\usepackage{authblk}
\usepackage{nextpage}

\usepackage{calc}

\usepackage{epstopdf}

\usepackage{rotating}

\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black
}

\setlength{\oddsidemargin}{0cm}   % A4-paper format
\setlength{\evensidemargin}{0cm}  % A4-paper format
\setlength{\topmargin}{-\headheight-\headsep}        % A4-paper format
\setlength{\voffset}{0cm}       % A4-paper format
\setlength{\hoffset}{0cm}       % A4-paper format
\setlength{\textwidth}{15.92cm}        % A4-paper format
\setlength{\textheight}{24.62cm}       % A4-paper format
\setlength{\headwidth}{\textwidth}  % Set running head to textwidth

\clubpenalty = 10000
\widowpenalty = 10000
\displaywidowpenalty = 10000
\hyphenpenalty = 10000
\exhyphenpenalty = 10000


\raggedright
\setlength\parindent{.5in}
\bibindent=.5in
\setlength{\itemindent}{.5in}
\parskip 0pt



\captionsetup{justification=justified,font=singlespacing}

\DeclareLanguageMapping{american}{american-apa}
%\addbibresource{bibliography.bib}

\DefineBibliographyStrings{american}{
   andothers = {{et\,al\adddot}},            
}

\linespread{2}



\title{The effects of intervention on dependent variable}
\shorttitle{Effect of intervention}
\author{Yours Truly}
\affiliation{LaTeX University}
\date{}

\abstract{placeholder abstract}


\begin{document}

\maketitle

\clearpage

\tableofcontents

\clearpage

\addcontentsline{toc}{section}{Introduction}
Theory 

\clearpage

\section{Method}
Method

\clearpage

\section{Results}
Results

\clearpage

\section{Discussion}
Discussion text

\clearpage
\section{References}
\printbibliography[heading=none]


\end{document}

答案1

添加donotrepeattitle\documentclass选项:

\documentclass[
  12pt,
  a4paper,
  man,
  notimes,
  draftfirst,
  noextraspace,
  donotrepeattitle
]{apa6}

相关内容