我的短文档中只有定理和引理,将它们与章节和小节一起列出是没有意义的。我也没有推论(要清楚的是,这是一项家庭作业,因此它主要是“问题”、“证明”,我只需要陈述我在证明中使用的定理和引理。)
有没有办法让定理 1......引理 2 保持数字排序,没有小节?
编辑:
我已添加所请求的示例文档。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{enumitem}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\usepackage{mathrsfs}
\usetikzlibrary{arrows}
\newtheorem{theorem}{Theorem}
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}{Lemma}
\newtheorem{question}{Question}
\theoremstyle{remark}
\newtheorem*{claim}{Claim}
\title{Zero}
\author{The Hero}
\date{December 2171}
\begin{document}
\begin{question}
...
\end{question}
\begin{proof}
...
\end{proof}
\begin{theorem}{Einstein's special theorem of relativity}
$E^2 = m^2c^4+p^2c^2$.
\end{theorem}
\begin{question}
...
\end{question}
\begin{proof}
...
\end{proof}
\begin{lemma}{Euclid's Lemma}
If a prime p divides the product ab of two integers a and b, then p must divide at least one of those integers a and b.
\end{lemma}
\begin{question}
...
\end{question}
\begin{proof}
...
\end{proof}
\end{document}
我没有意识到我在定理和引理环境中错误地使用了第二组 {}。它没有以这种方式为定理提供标题:?