如何将数字参数传递给 Latex 环境

发布于 2024-08-04 04:17:36 字数 299 浏览 3 评论 0原文

我已经定义了一个环境,因为

\newenvironment{question}[1]
{Question (#1 points):}{}

我正在使用它,因为

\begin{question}[10]
...
\end{question}

我收到以下错误:

Missing number, treated as zero
\begin{question}[
                 10]

I have defined an environment as

\newenvironment{question}[1]
{Question (#1 points):}{}

I am using it as

\begin{question}[10]
...
\end{question}

I get the following error:

Missing number, treated as zero
\begin{question}[
                 10]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯淡〆 2024-08-11 04:17:36

正确的语法是使用花括号,而不是方括号:

\begin{question}{10}
What is the airspeed velocity of an unladen swallow?
\end{question}

The proper syntax is with a curly brace, not a square brace:

\begin{question}{10}
What is the airspeed velocity of an unladen swallow?
\end{question}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文