如何在 LaTeX 中将其列为 [1],[2]?

如何在 LaTeX 中将其列为 [1],[2]?

我想将其列为
[1]句
[2]句....

但如果我输入

\begin{description} \itemsep -2pt % Reduce space between items
\item[[1]] sentences
\end{description}

在乳胶中,它出现

[1 ] 句子

如果我输入

\begin{description} \itemsep -2pt % Reduce space between items
\item[$[1]$] sentences
\end{description}

在乳胶中,它给了我错误。

我该怎么做?

答案1

使用description是有问题的。为什么不使用enumerateitemize?但是,无论如何,您都应该放入[1]一个组,例如\item[{[1]}]。如果 LaTeX 在此上下文中寻找结束],它只会从 开始关闭所有内容[。因此从\item[[1]]开始[1,并且下一个]不是参数,而是紧随其后的文本的开头。

答案2

\usepackage{enumitem}并在文档正文中:

\begin{enumerate}[label={[\arabic*]}, noitemsep]
\item First item
\item Second item
................
\end{enumerate}

应该可以解决问题。

答案3

\documentclass{article}

\usepackage{paralist, blindtext}

\begin{document}

Let us start. And 
\begin{inparaenum}[(1)]
  \item whatever goes below
  \item and up again
\end{inparaenum}
will be treated as nonsense that it is...
\end{document}

但我没有得到编号为 [1] 的项目。

相关内容