方程式枚举的问题

方程式枚举的问题

我正在使用 LaTeX 撰写论文,在方程式枚举方面遇到了一些问题。特别是在第一章中,我写了一个定理(按照我的意愿将其编号为 2),但定理中的方程式的编号为 0.1,尽管我在第一章中写了它。所以我得到了这个: 在此处输入图片描述

我希望方程式的编号为 1.1,因为这是第一章。我尝试用 来解决问题,\renewcommand{\thechapter}{\thechapter.\arabic{equation}}但没有解决。我也尝试使用,\setcounter但我收到错误“未定义计数器 0.0”。我希望你能帮助我,提前谢谢。


首先我要非常感谢你!我试过使用,\counterwithin{chapter}{equation}但没有用。我用了\chapter{Introduction}\chapter{Chapter 1}\setcounter{\theequation}{1}。这是我的代码:

\documentclass[oneside,noexaminfo,Lau,binding=0.6cm]{sapthesis}

\usepackage{microtype}
\usepackage[english]{babel}
\usepackage[utf8]{inputenx}
\usepackage{hyperref}
\usepackage{curve2e}
\usepackage{amssymb}
\usepackage{setspace}
\onehalfspacing

\usepackage{mathtools}
\usepackage{bbold}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{braket}
\usepackage{mathrsfs}
\usepackage{csquotes}
\usepackage{comment}
\usepackage[backend=bibtex,style=numeric]{biblatex}
\usepackage{indentfirst}
\usepackage{microtype}
\usepackage{showkeys}
\usepackage{lmodern,pgfplots}
\pgfplotsset{/tikz/>=stealth,/pgf/number format/use comma,compat=newest}
\bibliography{bibliography}

\theoremstyle{definition}
\newtheorem{definition}{Definition}
\newtheorem{observation}{Observation}
\newtheorem{example}{Example}

\theoremstyle{plain}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{corollary}{Corollary}
\newtheorem{proposition}{Proposition}

\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
\DeclarePairedDelimiter{\norma}{\lVert}{\rVert}


\hypersetup{pdftitle={Applications of coding theory to $t$-designs and projective geometry},pdfauthor={}}

\setlength\parindent{24pt}

\title{Applications of coding theory to $t$-designs \\ and projective geometry}
\author{}
\IDnumber{}
\course{}
\courseorganizer{}
\AcademicYear{}
\copyyear{}
\advisor{}
\authoremail{}
\versiondate{\today}

\begin{document}

\frontmatter
\maketitle

\tableofcontents

\input{introduction}
\input{chap_1}
\input{chap_2}
\input{chap_3}

\backmatter
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\bibname}
\printbibliography

\end{document}

好的,我解决了!有一个\mainmatter缺失,所以所有内容都写在了简介中,实际上是第一章。非常感谢!

相关内容