Latex 列出乳胶中的子弹问题

Latex 列出乳胶中的子弹问题,latex,Latex,我想要效果: 第一阶段xxxx 第2阶段xxxx 第三阶段xxxx 但是乳胶设置代码 \begin{enumerate}[Stage 1] 产生 第一阶段xxxx Stbge 2 xxxx Stcge 3 xxxx 显然,latex将舞台上的角色“a”作为子弹头。那么如何在参数中设置静态字符呢?您必须隐藏不可枚举的内容。实现这一点的方法有很多: 提供了一种更明确的方法来标识枚举: \documentclass{article} \usepackage{enumitem} \begin{d

我想要效果:

第一阶段xxxx
第2阶段xxxx
第三阶段xxxx

但是乳胶设置代码

\begin{enumerate}[Stage 1]
产生

第一阶段xxxx
Stbge 2 xxxx
Stcge 3 xxxx


显然,latex将舞台上的角色“a”作为子弹头。那么如何在参数中设置静态字符呢?

您必须隐藏不可枚举的内容。实现这一点的方法有很多:

提供了一种更明确的方法来标识枚举:

\documentclass{article}

\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label={Stage \arabic*}]
  \item First
  \item Second
  \item Last
\end{enumerate}

\end{document}

您必须隐藏不可枚举的内容。实现这一点的方法有很多:

提供了一种更明确的方法来标识枚举:

\documentclass{article}

\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label={Stage \arabic*}]
  \item First
  \item Second
  \item Last
\end{enumerate}

\end{document}