论文中定理、引理、定义、例子等的编号

论文中定理、引理、定义、例子等的编号

我正在尝试对定理/定义/引理等进行编号,但在编号方面遇到了一些问题。

我希望定理、命题、推论、定义、猜想、例子采用相同的编号,并减少编号。例如,在下面的代码中,内容如下:

第1章

添加

1.1 基础知识(部分)

定义1.1

定理 1.2

定理 1.3

例 1.4

1.1.1. 一些提示(小节)

定义1.5

1.2 高级内容(部分)

定义1.6

但是我怎样才能让它变成下面这样呢?

第1章

添加

1.1 基础知识(部分)

定义1.1.1。

定理 1.1.1。

定理 1.1.2。

例 1.1.1.

1.1.1. 一些提示(小节)

定义1.1.2。

1.2 高级内容(部分)

定义1.2.1。

我们使用了以下环境:

\documentclass[12pt,a4paper,oneside]{mnnit}
%\documentclass[a4paper,12pt,oneside]{thesis}
%\chapapp{Chapter}
\usepackage{titlesec}
%\renewcommand{\thechapter}{\arabic{chapter}}
%\titleformat{\chapter}[display] {\Large} {{Chapter~}\Large\thechapter}
%{2ex}
%{}
%[]

\usepackage{amssymb}
\usepackage{anysize}
\usepackage{epstopdf}
\usepackage{epsfig}
%\usepackage{graphicx}
\usepackage{float}
\usepackage{longtable}
\usepackage{lscape}
\usepackage{llncsdoc}
\usepackage{mmm}
\usepackage{multirow}
\usepackage[toc,page]{appendix}
%\usepackage{pxfonts}
\usepackage{rotating}
\usepackage{tabularx}
\usepackage{epsfig,float}
\usepackage{cases,textcomp, amssymb, amsmath}
%\usepackage{wrapfig}
%\usepackage{pifont}
\usepackage{psfrag}
\usepackage{color}
\usepackage{url}
\usepackage{enumitem}
\usepackage{mciteplus}
\usepackage{amsfonts}
\usepackage{enumitem}

%\usepackage{hyperref}
\usepackage[colorlinks,allcolors=blue]{hyperref}
\usepackage{amsmath,amssymb,array,longtable,wallpaper,graphicx,epsfig,subfigure,float,booktabs, pdfpages}
%\usepackage{rotating,setspace,enumerate,morefloats,xcolor,threeparttable}
\usepackage[left=1.3in,right=1.2in,top=1.4in,bottom=1.35in]{geometry}
%\usepackage{amsthm}
\usepackage{lipsum}
\usepackage{tikz-cd}
%\usepackage{tocloft}
%\usepackage{tocbasic}
%\usepackage[subnum]{cases}
\usepackage{imakeidx}
\makeindex
\usepackage[nottoc]{tocbibind}
%\numberwithin{equation}{section}
%\usepackage{makeidx} 
%\usepackage{fancyhdr,multirow,lscape,chngpage,calligra,float}
\usepackage[round]{natbib}
\counterwithin{equation}{chapter}
%\usepackage{titletoc}
%\usepackage{watermark}
%\usepackage[nottoc]{tocbibind}
%\usepackage{afterpage}
%\usepackage[T1]{fontenc}
%\setcounter{tocdepth}{1}
%\usepackage{indentfirst}
%\usepackage{multirow,lscape,chngpage,calligra,float}
%\usepackage[authoryear]{natbib}
%\usepackage[utf8]{inputenc}

%\newtheorem{thm}{Theorem}[section]
%\newtheorem{dfn}[thm]{Definition}
%\newtheorem{rem}[thm]{Remark}
%newtheorem{ex}[thm]{Example}
%\newtheorem{remex}[thm]{Remarks and Examples}
%\newtheorem{pro}[thm]{Proposition}
%\newtheorem{cor}[thm]{Corollary}
%\newtheorem{lem}[thm]{Lemma}
%\newtheorem{no}[thm]{Note}
%\newtheorem{ope}[thm]{Open Problem}
%\newtheorem{que}[thm]{Question}

%\newenvironment{proof}[1][Proof] {\begin{trivialist}
%\item[\hskip \labelsep {\bfseries #1}] } {\end{trivialist}}

\makeindex

%\setcitestyle{square}
\def\tableshortname{Table}
\def\figureshortname{Figure}

%\def\bibname{Bibliography}
%\includeonly{titlepage}
\linespread{1.5}
\begin{document}
%
%\newpage
%\include{Symbols}
%\include{Abstract}
%\include{Publication}
%\include{References}

%\include{presentations}

\newpage
\include{title}

\newpage
\include{Certificate}

\pagenumbering{roman}
\newpage
\include{Acknowledgments}

\pagenumbering{arabic}
\newpage
\tableofcontents

    \mainmatter 
    \include{Symbols}
    \include{Introduction}
    \include{Chapter2}
    \include{Chapter3}
    \include{Chapter4}
    \include{Chapter5}
    \include{Chapter6}
%   \include{Chapter7}
%   \include{conclusion}    
    \include{References}
    \printindex
\include{Publication}

\end{document}

相关内容