番号付き 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}

ここに画像の説明を入力してください

関連情報