将节号添加到编号 easylist

将节号添加到编号 easylist

有没有办法将章节编号添加到编号的 easylist 列表的前面?

我发现链接但似乎将其添加到枚举列表中。

谢谢!

答案1

阅读手册建议Style*

\documentclass{article}
\usepackage[at]{easylist}

\ListProperties(Style*=\thesection.)

\begin{document}

\section{First}

\begin{easylist}
@ First proposition.
@@ Interesting comment.
@@@ A note on the comment.
@@@ Another note.
@@@@ By the way...
@@@@@ This is a subsub...-proposition.
@ Let’s start something new...
\end{easylist}

\section{Second}

\begin{easylist}
@ First proposition.
@@ Interesting comment.
@@@ A note on the comment.
@@@ Another note.
@@@@ By the way...
@@@@@ This is a subsub...-proposition.
@ Let’s start something new...
\end{easylist}

\end{document}

在此处输入图片描述

相关内容