这是我在 Latex 项目中遇到的问题的代码。我使用的是 sharelatex。
\documentclass[man,floatsintext,apacite]{apa6}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\title{Problem}
\author{Lisa Lustig}
\date{\today}
\shorttitle{Problem}
\begin{document}
\maketitle
\tableofcontents
\newpage
\section{Introduction}
\section{Methods}
\end{document}
我没有收到任何错误,但我仍然认为标记的部分不属于那里 ^^ 似乎我\title
之前定义的被视为某种部分。即使我保留\title
未定义,空间仍会“保留”:
我花了相当多的时间来开发一种解决这个问题的非常规方法,使用白色框放置在不需要的文本的精确坐标上,但它仍然困扰着我,因为我无法理解为什么会发生这种情况,即使你看不到文本,仍然有不需要的空间。
整个文档必须按照 apa6 手稿指南进行格式化,并且引用也必须采用 apa6 格式。还有其他方法可以实现这一点吗包括正常工作的目录?
答案1
默认情况下apa6
重复标题作为部分。您可以使用选项避免这种情况donotrepeattitle
:
\documentclass[man,floatsintext,apacite,donotrepeattitle]{apa6}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\title{Problem}
\author{Lisa Lustig}
\date{\today}
\shorttitle{Problem}
\begin{document}
\maketitle
\tableofcontents
\newpage
\section{Introduction}
\section{Methods}
\end{document}