为 easylist 添加标题/标签

为 easylist 添加标题/标签

我想给列表添加标题(或标签)。我发现可以用数字来实现,但真的很乱

\documentclass{article}

\usepackage[ampersand]{easylist}
\usepackage[labelformat=empty]{caption}

\begin{document}

\begin{figure}[h!]

    \vspace{-2em} %label format leaves empty space above the caption when empty

    \hspace\caption{\textbf{This is the caption...}}
    \begin{easylist}
        & first item
        & second item
        & ...
    \end{easylist}
\end{figure}

\end{document}

我以前用过\paragraph{...}\subparagraph{...}但编译后的 pdf 格式不太好

答案1

所以我发现你可以这样做:

\begin{easylist}
    \noindent\textbf{Some caption}
    & First item
    & Second item
    & ...
\end{easylist}

它运行完美……但我没有看到任何地方提到它

相关内容