手动设置定理环境

手动设置定理环境

我正在根据教科书写一些问题解决方案。

对于第 1 章,我想从问题 1.36 开始,而不是从 1.1 开始

我如何实现这个目标?

下面是我的代码

\documentclass{article}
\usepackage{amsmath,amsfonts,amssymb,amsthm,epsfig,epstopdf,titling,url,array}


\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem*{cor}{Corollary}
\newtheorem{prob}[thm]{Problem}

\theoremstyle{definition}
\newtheorem{defn}{Definition}[section]
\newtheorem{conj}{Conjecture}[section]
\newtheorem{exmp}{Example}[section]

\theoremstyle{remark}
\newtheorem*{rem}{Remark}
\newtheorem*{note}{Note}

\begin{document}

\section{Chapter 1}

\begin{prob}

This should Read Problem 1.36, rather than 1.1

\end{prob}



\end{document}

编辑:我希望能够继续使用 1.37 和 1.38,而不是 1.2 和 1.3。有办法吗?

答案1

theoremstyle{定义}

并添加

\新定理*{概率*}

在序言中。希望这能有所帮助。我附上了相同的屏幕截图。另外,请确保您使用该{amsthm}软件包。

\documentclass{article}
\usepackage{amsmath,amssymb,epsfig,epstopdf,titling,url,array,amsthm}
\theoremstyle{Definition}
\newtheorem*{prob*}{Problem 1.36}
\begin{document}

\section{Chapter 1}

\begin{prob*}

This should Read Problem 1.36, rather than 1.1

\end{prob*}



\end{document}

在此处输入图片描述

相关内容