嘗試修復錯誤,該錯誤會給出錯誤的數字

嘗試修復錯誤,該錯誤會給出錯誤的數字

我正在處理的一些 LaTeX 程式碼中有一個錯誤,它給出了錯誤的數字。這是重現問題的一小段程式碼,如果程式碼有點過長,抱歉。在我下面給出的程式碼中,問題採用的形式是猜想顯示為 Conjecture 2.0.2 而不是 Conjecture 2.0.1。

\documentclass[12pt]{amsart}
\usepackage[alphabetic]{amsrefs}
\usepackage{amssymb,amsmath,amsthm,mathrsfs,ulem,tikz, caption}
\usepackage[alphabetic]{amsrefs}
\usepackage{amsmath,amssymb,amsthm,enumerate,tikz,graphicx}
%\usepackage{MnSymbol}
\usepackage[all,cmtip]{xy}
\usepackage[applemac]{inputenc}
\usepackage{color}

\textheight 20cm

\parindent 0pt
\parskip 7pt

\newtheorem{thm}{Theorem}[subsection]
\newtheorem{theorem}[thm]{Theorem}
\newtheorem{conj}[thm]{Conjecture}

\begin{document}

\title{Poincar\'e Series and Zeta functions}
\author{Anton Deitmar,  Ming-Hsuan Kang, \& Rupert    
  M\MakeLowercase{c}Callum}
\date{}
\maketitle

\section{Gallery zeta functions}
\subsection{Zeta function of closed walks}

We summarize the above discussion as the following theorem.
\begin{theorem}

Let $\Gamma$ be a discrete cocompact subgroup of $G$ and $\pi$ be the 
representation of the Hecke algebra $H(W,S)$ 

Then 
\end{theorem}

\section{Alternating products of Poincar\'{e} series}
Note that one can generalize the definition of straight strips to higher   
rank cases and study their stabilizers. We expect that there exists an 
analogue of Theorem [blank] for the cases of higher rank. More precisely, 

\begin{conj}
the following two identities holds.
\begin{enumerate}
\item $w_i$ is the generator of the stabilizer of some straight tube.
\item For any representation $\rho$ of $H_q(W,S)$, 
there exists certain ordering of 

such that their product under this ordering is equal to $W(\rho,u)$.
\end{enumerate}
\end{conj} 

\end{document}

答案1

您可能使用的是較舊的 LaTeX 核心(2015 年之前)。在這種情況下,與步進相關的計數器subsection不會重設。section他們使用 2015/01/01 版本的 LaTeX。

最好的當然是升級。否則你必須手動添加重置,例如

\usepackage{chngcntr}

然後,在定義計數器後,添加

\counterwithin*{thm}{section}

以下程式碼檢查 LaTeX 核心日期,如果其發布日期在 2015 年之前,則進行修補;否則它什麼都不做。

\documentclass[12pt]{amsart}

\newtheorem{thm}{Theorem}[subsection]
\newtheorem{theorem}[thm]{Theorem}
\newtheorem{conj}[thm]{Conjecture}

%%% Patching code
\begingroup\makeatletter
\def\eky#1/#2/#3#4{%
  #1
    \expandafter\endgroup\expandafter\@firstofone
  \else
    \expandafter\endgroup\expandafter\@gobble
  \fi
}
\ifnum2015>\expandafter\eky\fmtversion
 {
  \usepackage{chngcntr}
  \counterwithin*{thm}{section}
  % add also other counters depending on subsection
 }
%%% end of patching code

\begin{document}

\section{Gallery zeta functions}
\subsection{Zeta function of closed walks}

Some text

\begin{theorem}
A theorem
\end{theorem}

\section{Alternating products of Poincar\'{e} series}

Some text

\begin{conj}
A conjecture
\end{conj} 

\end{document}

在此輸入影像描述

相關內容