我正在尝试制定一个可能需要深入 5 层的大纲。在进行研究时,我发现这这使得列表显然可以达到 9 层深度。
在测试中,我发现这是可行的,但是我想使用如下简写形式
\1 first label
\2 second
\3 third
...
我该如何设置才能使用这种简短的书写方式?谢谢!
答案1
该easylist
软件包提供了接近此功能的功能。以下是文档中的一个示例:
\documentclass{article}
\usepackage{easylist}
\begin{document}
\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}