在项目标题中使用] 和数学模式时出错

在项目标题中使用] 和数学模式时出错

我收到了错误

! Extra }, or forgotten $. \sbox ...hbox {\color@setgroup #2\color@endgroup }
l.6  \item[$]
        $]

! LaTeX Error: Something's wrong--perhaps a missing \item.

使用手动白平衡

\documentclass{article}

\begin{document}

\begin{description}
  \item[$]$]
\end{description}

\end{document}

使用时也会失败\(]\)。显然,包含的括号被匹配为关闭可选参数的括号,那么我该如何防止这种情况发生呢?

答案1

]可选参数中的A[]必须组合成一{}对(除非宏是用\NewDocumentCommandetc. from定义的xparse,但这里不是这种情况)

在我看来,$]$根本没有必要这么做。

\documentclass{article}

\begin{document}

\begin{description}
  \item[{]}]
\end{description}

\end{document}

相关内容