turabian-researchpaper 中的章节编号

turabian-researchpaper 中的章节编号

我正在尝试找到一种方法,让 turabian-researchpaper 环境中的 \section{} 命令以罗马数字显示章节编号。我该怎么做?

答案1

article原则上,该方法与基于的类的方法相同turabian-researchpaper,例如章节和小节使用罗马数字。该问题的答案重新定义了\section\subsection计数器显示宏(分别为\thesection\thesubsection),如下所示:

\renewcommand{\thesection}{\Roman{section}} 
\renewcommand{\thesubsection}{\thesection.\Roman{subsection}}

但是,turabian-researchpaper将节编号深度设置为 0,这意味着节及其下面的所有内容(小节、小节、段落)均未编号。因此,您也需要对其进行修改,例如将其设置为 2,以便根据上述重新定义对节和小节进行编号。

梅威瑟:

\documentclass{turabian-researchpaper}
\setcounter{secnumdepth}{2}
\renewcommand{\thesection}{\Roman{section}} 
\renewcommand{\thesubsection}{\thesection.\Roman{subsection}}
\begin{document}
\section{First section}
\subsection{First subsection}
\subsection{Second subsection}
\section{Second section}
\subsection{First subsection}
\subsection{Second subsection}
\end{document}

结果:

在此处输入图片描述

相关内容