使用唯一标识符创建列表

使用唯一标识符创建列表

我尝试创建具有唯一标识符的列表,但无法做到。我所说的唯一标识符是指以下格式的列表:

问1.(...)

问2. (...)

问3. (...)

等等。通过使用 enumerate 或 itemize,我无法将列表显示为:

  1. (...)

  2. (...)

  3. (...)

或者类似,只使用方块或点而不是数字。有什么想法可以有效地做到这一点?到目前为止,我正在使用 \hspace{12p} 来达到所需的效果,但效果并不完美。我的问题是缩进不像枚举那样有效。

\hspace{12pt} C1. 问题 1 的示例文本

 hspace produces this: Some random gibberish to show how the text doesn't indent in the same way that the title of the list item does.

\begin{enumerate} \item C1. 问题 1 的示例文本

enumerate produces this: Some random gibberish to show how the text doesn't indent in the same way that the title of the list item does.

\end{枚举} 文本中包含图像的代码

答案1

在此处输入图片描述

我认为你的要求可以通过enumitem包裹:

\documentclass{article}
\usepackage{enumitem}
\begin{document}
    \begin{enumerate}[label=Q\arabic{*}.]
        \item The first thing in the list
        \item The second thing in the list.
        This item is really long and so the text wraps over multiple lines but is still properly indented.
        \item The third thing in the list
    \end{enumerate}
\end{document}

或使用enumerate包裹:

\documentclass{article}
\usepackage{enumerate}
\begin{document}
    \begin{enumerate}[Q1.]
        \item The first thing in the list
        \item The second thing in the list.
        This item is really long and so the text wraps over multiple lines but is still properly indented.
        \item The third thing in the list
    \end{enumerate}
\end{document}

相关内容