如何创建带有节和小节编号但没有章节编号的文档?

如何创建带有节和小节编号但没有章节编号的文档?

我正在尝试创建一个使用章节和小节但没有章节的研究协议文档。例如,如果我使用代码

\documentclass[12pt]{report}
\allsectionsfont{\normalsize}
\renewcommand{\baselinestretch}{2}

\begin{document}

\thispagestyle{empty}
\begin{center}
\vspace{1.5in}
\textbf{Introducing a Bayesian Nonparametric Beta-Mixture Item Response Model}\\
\end{center}
\pagebreak

\thispagestyle{empty}
\tableofcontents

\thispagestyle{empty}

\pagebreak

\section{Synopsis}

\section{Abbreviations and Acronyms}

\section{Background}

\end{document}

章节号设置为0,我的章节编号为0.1、0.2等。

我想要做的是将我的部分编号为 1.0、2.0 等,将我的子部分编号为 1.1、1.2 等。我知道一定有办法做到这一点。我只是不知道是什么方法。

在此先感谢您的帮助。

答案1

您可能想使用该类article。您还可以更新打印出节计数器的命令:

\documentclass{article}
\usepackage{lipsum}
\renewcommand{\thesection}{\arabic{section}.0}
\renewcommand{\thesubsection}{\arabic{section}.\arabic{subsection}}
\begin{document}
\section{a}
\subsection{b}
\section{c}
\subsection{d}

\end{document}

在此处输入图片描述

相关内容