给示例编号的更好方法

给示例编号的更好方法

还有其他方法可以在数学中用编号写例子吗?我正在使用智能类。

\textbf{Example 1 }

答案1

不确定这种风格是否是您想要实现的,但这里有一个 MWE,展示了如何使用它来获取可以使用通常的/方法参考的\newtheorem编号环境:examplelabelref

\documentclass{amsart}
\theoremstyle{definition}
\newtheorem{thm}{Theorem}[section]
\newtheorem{example}[thm]{Example}

\begin{document}

\begin{example}
some example
\label{test example}
\end{example}
Reference the above example: \ref{test example}
\end{document}

在此处输入图片描述

正如 barbara beeton 在评论中所说,上述示例将使用相同的计数器对示例和定理进行编号。如果您想单独对示例进行编号,请使用\newtheorem{example}{Example}[section]

答案2

如果您想要自动编号,根据上下文正确垂直间距,请使用以下命令:

\newtheorem{example}{Example}
......
\begin{document}
......
\begin{example}
......
\end{example}
......
\end{document}

布局细节可通过专用包(例如amsthm或 )进行定制ntheorem,使用其预定义 之一。与两者配合使用的styles包(例如)可提供进一步的定制可能性。thmtools

相关内容