章节编号采用类似 1.11 的编号

章节编号采用类似 1.11 的编号

我如何设置我的部分编号,如给定的格式?我需要下面给出的格式。

我正在使用gsm-l.cls。我只是使用如下标签:

\chapter{name}
\section{sectionname}
\begin{theorem}
\end{theorem}

例子:

第 1 章
1.1. 章节名称
定理: 1.1.1.
定理: 1.1.2.
备注: 1.1.3.

答案1

您可以按照以下方式操作:

\documentclass{gsm-l}

% section numbers preceded by chapter number
\renewcommand{\thesection}{\thechapter.\arabic{section}}

% define the theorem environments
\newtheorem{theorem}{Theorem}[section] % theorems are numbered by section

\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark} % remarks share the theorem counter

\begin{document}
\chapter{Chapter title}
\section{Section title}
\begin{theorem}
$1+1=2$
\end{theorem}
\begin{remark}
The above theorem is hard.
\end{remark}
\end{document}

在此处输入图片描述

答案2

对于 ams 文档类(其中之一)的通常建议gsm-l.cls是包含命令

\numberwithin{section}{chapter}

在序言中。

相关内容