从 apa6 文档类的页面中删除标题名称

从 apa6 文档类的页面中删除标题名称

在下面的代码中,我想从 apa6-document 类模板中的论文正文(文档第 2 页的标题)中删除论文“作业 1”的标题。

在正文第一页的页眉下方,应首先出现章节标题(“简介”)。

以下是代码:

\documentclass[man,12pt,floatsintext,longtable,noextraspace,natbib,letterpaper]{apa6}
\usepackage{layouts}

\geometry{reset, letterpaper, height=9in, width=6.1in, hmarginratio=1:1, vmarginratio=1:1, marginparsep=0pt, marginparwidth=0pt, headheight=15pt}

\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage[hidelinks]{hyperref}
\PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}
\usepackage{lipsum}
\hypersetup{breaklinks=true}

\usepackage{mathptmx}
\urlstyle{rm}
\hypersetup{
     colorlinks   = true,
     urlcolor    = black,
     citecolor = black,
}

\title{\vspace{-5.5cm}Assignment 1 \protect\\ Name of Paper\vspace{6.5cm}}
\shorttitle{Short Title of Paper}
\author{by\\Author Name\\EEE XXXX\\Name of Class\vspace{8.7cm}}
\affiliation{Name of University\\ June 5th, 2016}

\setcounter{page}{0}
\abstract{\lipsum[1].}

\begin{document}
\thispagestyle{empty}
\maketitle

\section{Introduction}

\lipsum[1-3]
\end{document} 

答案1

添加选项

donotrepeattitle

到您的文档类加载:

\documentclass[...,donotrepeattitle,...]{apa6}

相关内容