我正在使用article
带有 的文档类amsthm
。我想按如下顺序对定理/推论/例子等进行编号:
1.1 定理
1.2 示例
1.3 示例
1.4 命题
然而,我的 LaTeX 渲染的是
定理 1.1
例 1.2
例 1.3
命题 1.4
我如何获得像第一个一样的编号?
答案1
使用
\swapnumbers
在声明你的定理结构之前。举个小例子:
\documentclass[11pt]{article}
\usepackage{amsthm}
\swapnumbers
\newtheorem{theo}{Theorem}[section]
\newtheorem{exam}[theo]{Example}
\begin{document}
\section{Test}
\begin{theo}
test
\end{theo}
\begin{exam}
test
\end{exam}
\end{document}