LaTeX中的定理编号存在问题。它将第1节中的定理1编号为定理11而不是定理1.1。
如何让它发挥作用?
答案 0 :(得分:9)
如果您正在使用AMS-LaTeX包中的定理环境,请将以下代码放在文档的前言中:
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}[section]
\renewcommand{\thetheorem}{\arabic{section}.\arabic{theorem}}
这是一个示例文档及其输出:
\documentclass{article}
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}[section]
\renewcommand{\thetheorem}{\arabic{section}.\arabic{theorem}}
\begin{document}
\section{Lorem}
\begin{theorem}
Ipsum
\end{theorem}
\end{document}
Sample output http://img12.imageshack.us/img12/8938/theorem.png