我正在用書本課寫論文。除一章外,所有章節都有小節。對於沒有小節的特定章節,第一個定義編號為 2.0.1。 0 代表小節。如何將其變為 2.1 而不是 2.0.1?這是我所擁有的:
\documentclass[oneside, openany,12pt]{book}
\usepackage{amsthm,amsmath,latexsym,amsfonts,mathrsfs,graphics,graphicx,amssymb}
\usepackage[mathcal]{eucal}
\usepackage{setspace,titlesec,float,indentfirst,tocloft}
\usepackage[top=1in, left=1in, bottom=1in, right=1in]{geometry}
\usepackage{etoolbox}
\titleformat{\chapter}[display] {\normalfont\LARGE\bfseries\centering}{\chaptertitlename\ \thechapter}{20pt}{\LARGE}
\renewcommand\contentsname{Table of Contents}
\renewcommand{\cftchapleader}{\cftdotfill{\cftsecdotsep}}
\renewcommand{\cftchappresnum}{\MakeUppercase{\chaptername}~}
\renewcommand{\cftchapaftersnumb}{\qquad}
\renewcommand{\cftchapfont}{\bfseries}
\renewcommand{\cftchappagefont}{\bfseries}
\renewcommand{\cftchapaftersnum}{:}
\setlength{\cftchapnumwidth}{5.8em}
\renewcommand{\cftsecindent}{6.1em}
\setlength{\cftsecnumwidth}{2.1em}
\renewcommand{\cftsubsecindent}{6.1em}
\setlength{\cftsubsecnumwidth}{2.1em}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{mthm}[thm]{Main Theorem}
\newtheorem{clm}[thm]{Claim}
\newtheorem{lem}[thm]{Lemma}
\newtheorem{cor}[thm]{Corollary}
\newtheorem{rmk}[thm]{Remark}\theoremstyle{remark}
\newtheorem{exm}[thm]{Example}\theoremstyle{definition}
\newtheorem{case}[thm]{Case}\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\begin{document}
\chapter{CHAPTER WITH NO SUBSECTION}
\defn blah blah blah
謝謝。
答案1
重新定義\thethm
為如果節號為 0,則不新增節號。
\documentclass[oneside, openany,12pt]{book}
\usepackage{amsthm}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\renewcommand{\thethm}{%
\ifnum\value{section}=0
\thechapter.%
\else
\thesection.%
\fi
\arabic{thm}%
}
\begin{document}
\chapter{Title}
\begin{defn}
blah blah blah
\end{defn}
\chapter{Another}
\section{Title}
\begin{thm}
Blah blah
\end{thm}
\end{document}
請注意,您應該使用\begin{defn}
and \end{defn}
,而不是\defn
。
我只留下了相關的程式碼,剩下的你需要的再加回來。
答案2
我在圖像標題編號方面也遇到類似的問題。也許這個包chngcntr
可以幫助你。
\usepackage{chngcntr}
...
\chapter{CHAPTER WITH NO SUBSECTION}
\counterwithout{defn}{section}
\defn blah blah blah