Latex - 获取特定问题编号
我想做以下...问题3.
在乳胶中我使用以下
\newtheorem{prob}{Problem}
\begin{prob}
...
\end{prob}
它开始如下问题1.,是否可以解决问题3.相反,...你能告诉我怎么做吗?多谢!
i wanted to do the following... Problem 3.
in latex i use the following
\newtheorem{prob}{Problem}
\begin{prob}
...
\end{prob}
it starts as follows Problem 1., is it possible to to Problem 3. instead,... can you show me how? thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
\setcounter
宏:请注意 value 是从零开始的,因此问题 1 对应的计数器值为 0。
例如,从问题 3 开始:
Use the
\setcounter
macro:Be careful that the value is zero-based, so Problem 1 corresponds to a counter value of 0.
For example, to start with Problem 3: