Latex:如何创建看起来像 1.1、1.1.1、1.1.2、1.2 的嵌套列表
如何创建看起来像这样的列表:
1. Topic 1.1 First Subtopic 1.2 Second Subtopic
我尝试使用枚举列表
\begin{enumerate}
\item Topic
\begin{enumerate}
\item First Subtopic
\item Second Subtopic
\end{enumerate}
\end{enumerate}
但输出看起来像:
1. Topic (a) First Subtopic (b) Second Subtopic
那么我如何获取列表?是否有另一个列表环境或者可能是一个额外的包?
How can I create lists which look this:
1. Topic 1.1 First Subtopic 1.2 Second Subtopic
I tried using the enumeration list
\begin{enumerate}
\item Topic
\begin{enumerate}
\item First Subtopic
\item Second Subtopic
\end{enumerate}
\end{enumerate}
But the output looks like:
1. Topic (a) First Subtopic (b) Second Subtopic
So how can I get the list? Is there another list evironment or maybe an extra package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
enumitem
包:请参阅 enumitem 的目录条目了解更多信息。
You can use
enumitem
package:See the catalog entry for enumitem for more.
请参阅:http://www.giss.nasa.gov/tools/latex /ltx-222.html
此处: http://www.mackichan.com/index.html?techtalk/484.htm~mainFrame
...具体命令是
或者,如果您认为您的内容符合条件作为部分,使用类似以下内容:
See: http://www.giss.nasa.gov/tools/latex/ltx-222.html
And here: http://www.mackichan.com/index.html?techtalk/484.htm~mainFrame
... The concrete commands would be
Or, if you think your content qualifies as sections, use something like:
无需使用任何额外的包
No need to use any additional package