列表的多编号系统

列表的多编号系统

我对 Latex 还不太熟悉,我一直在尝试为我的项目列表创建多级编号,但结果对我来说太“复杂”了。我已经尝试了几种方法,但都没有好结果。

我想象过这样一个系统(不要介意文本所说的内容):

在此处输入图片描述

但是,我并没有再次从“DN 1.1”开始计数,而是尝试获取“DN 1.3”,然后是“DN 1.4”等等。(我认为)问题是我想同时激活 2 个编号“级别”。

再次强调,我是新手,所以对于你们中的一些人(如果不是全部的话)来说,如何做到这一点可能很明显。如果有人能给我指明正确的方向,我将不胜感激。

提前致谢 :)

答案1

最好能看到您现在正在使用的代码,以便知道我们的建议是否与它兼容。

但是,您应该能够使用该enumitem包设置列表样式,并使其在同一部分内恢复列表;然后在该titlesec包的帮助下,发出命令在每个部分重置编号。

但我甚至不知道您是否将这些内容视为“部分”,或列表中的列表等。

\documentclass[12pt]{article}

\usepackage{enumitem}
\usepackage{titlesec}
\titleformat{\section}{\normalfont\Large\bfseries}{\thesection}{1em}{}

\setlist{label={DN \thesection.\arabic*\ :},ref={\thesection.\arabic*},leftmargin=*,resume}

\begin{document}

\section{First section}

\subsection{First subsection}

\begin{enumerate}
\item First item
\item Second item
\end{enumerate}

\subsection{Next subsection}

\begin{enumerate}
\item Third item in section 1\label{here}
\item Fourth item in section 1
\end{enumerate}

\section{Second section}
\restartlist{enumerate}

\subsection{Another subsection}

\begin{enumerate}
\item Another section's item
\item Yet another item
\end{enumerate}

\end{document}

输出图像

相关内容