APA6 中的编号部分

APA6 中的编号部分

我尝试在使用该APA6格式时自动获取编号的章节、子章节和子子章节。即使章节编号已被停用,是否可以对章节进行编号APA6?我更愿意保留 apa6,因为除了章节编号外,我还需要遵守 APA。我使用 overleaf,但它也不适用于 TeXMaker(Windows 10 x64)。

如下所示,我尝试使用编号列表来解决问题(请参阅注释中的错误消息)。有没有办法操作 APA6 包来恢复章节编号?

\documentclass[a4paper,man,natbib,12pt]{apa6}

\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}

\title{Paper}
\shorttitle{Paper}
\author{James Bond}
\affiliation{XXX}

\begin{document}

\maketitle

\begin{enumerate}

\section{\item{1. <- I don't want to do it manually}} % ! LaTeX Error: Something's wrong--perhaps a missing \item.

\section{2. <- I don't want to do it manually} 

\end{enumerate}

\bibliography{References}

\end{document}

答案1

使用计数器变量来打开和关闭节号secnumdepth,此处将其设置为 3,表示sectionsubsection并且subsubsections应该被编号。

显然从一开始secnumdepth就设置正确!0

\documentclass[a4paper,man,natbib,12pt]{apa6}

\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}

\title{Paper}
\shorttitle{Paper}
\author{James Bond}
\affiliation{XXX}

\setcounter{secnumdepth}{3}

\begin{document}

\maketitle


\section{Dr. No}

\subsection{Honey Ryder}
\subsubsection{Dr. No again}
\section{Goldfinger} 

\subsection{Thunderball}


%\bibliography{References}

\end{document}

相关内容