我正在用 Class 写我的硕士论文APA 6
。我想使用从大学获得的 PDF 作为标题页。我可以用 读取它\includpdf
,但如果我这样做并删除\maketitle
文件中的命令,摘要将无法编译。您知道如何摆脱 Class 的“官方”标题页APA 6
,使用我自己的标题页\includpdf
,然后是摘要吗?或者有其他方法可以获得相同的结果?
以下是整篇论文的 MWE:
\input{02-preambel}
\begin{document}
% \includepdf{Deckblatt}
\maketitle
\tableofcontents
\newpage
\input{03-EinleitungForschungshintergrund}
\input{04-FragestellungHypothesen}
\input{05-Methode}
\input{06-Ergebnisse}
\input{07-Diskussion}
\newpage
\printbibliography[heading=bibintoc]
\end{document}
以及我在序言中的相关信息:
\documentclass[man,a4paper,floatsintext,donotrepeattitle]{apa6}
\usepackage{pdfpages}
\title{Title}
\shorttitle{Shorttitle}
\author{Author Name}
\affiliation{University}
\abstract{\input{Abstract}}
\keywords{Keywords}
答案1
您可以重新定义\maketitle
删除摘要排版之前的所有内容。
\documentclass[man,a4paper,floatsintext,donotrepeattitle]{apa6}
\usepackage{pdfpages}
\title{Title}
\shorttitle{Shorttitle}
\author{Author Name}
\affiliation{University}
\abstract{Whatever goes in the abstract}
\keywords{Keywords}
\makeatletter
\renewcommand{\maketitle}{%
\fussy
\@ifundefined{@abstract}{}{%
\section{\normalfont\normalsize\abstractname}% BDB
\noindent\@abstract\par% BDB
\@ifundefined{@keywords}{}{%
\setlength{\parindent}{0.4in}% BDB
\indent\textit{\keywordname:} \@keywords%
}%
\newpage
}
\@ifundefined{def@donotrepeattitle}{
\section{\protect\normalfont{\@title}}
}{}%
\raggedright%
\setlength{\parindent}{0.4in}%
}
\makeatother
\begin{document}
\includepdf{example-image-9x16}
\maketitle
\tableofcontents
\end{document}