我想创建一个列表,其中每个项目都有自己的标题。例如,
第一项:这是第一项具有自定义标题的项目
标题不同:第二项的标题不同
备用标题:这是我的第三件物品
ETC...
我怎样才能制作这样的清单?
提前致谢
答案1
非常基础,这里能做的不多。否则,使用包自定义itemize
列表enumitem
以提供其他排版功能。
\documentclass{article}
\begin{document}
\begin{description}
\item Foo
We have something to say here
\item Foobar
We have to say something differently here
\end{description}
\end{document}