使用预部件在 newtheorem 环境中进行编号

使用预部件在 newtheorem 环境中进行编号

在新定理环境中,我希望计数器开始时有两位稳定的数字。

例如

\newtheorem{example}{Example}[section]
.
.
.
\begin{document}
\begin{example}[15]
...
\end{example}
\end{document}

结果应该是: 示例 15[示例计数器]

答案1

这是一个解决方案

\documentclass{article}
\newtheorem{example}{Example\Mytwodigits}[section]
\newcommand{\Mytwodigits}{}
\newcommand{\mytwodigits}[1]{\renewcommand{\Mytwodigits}{\space#1}}

\begin{document}
\mytwodigits{[15]}
\begin{example}
...
\end{example}
...

\mytwodigits{[14]}
\begin{example}
...
\end{example}
\end{document}

相关内容