在我的书中,我有自动编号的章节和部分,但当我输入
\chapter{CHAP 1}
\section{SEC 1}
\subsection{SUBSEC 1}
\subsection{SUBSEC 2}
我收到了编号为 1 的章节、编号为 1 的部分以及编号为 和 的小节,1.1
但1.2
我希望章节编号为1
、小节编号为1.1
,子集编号为1.1.1
和1.1.2
。请问有人能帮助我吗?
我的代码如下:
\documentclass[envcountresetchap]{svmult}
\usepackage{polski}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathptmx}
\usepackage{helvet}
\usepackage{courier}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{footmisc}
\usepackage{subeqnarray}
\usepackage[T1]{fontenc}
\usepackage[latin2]{inputenc}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{rotating}
\usepackage{tikz}
\usepackage{float} %pakiet do obsługi obrazków
\usepackage{graphicx} %pakiet do dodawania obrazków
\usepackage{tabularx}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage{tikz}
\usepackage{float}
\usepackage{hyperref}
\hypersetup{colorlinks=true,
linkcolor=blue,
citecolor=blue,
urlcolor=blue}
\title*{Title}
\begin{document}
\frontmatter
\maketitle
\preface
\lipsum
\tableofcontents
\mainmatter
\chapter{CHAP 1}
\section{SEC 1}
\subsection{SUBSEC 1}
\subsection{SUBSEC 2}
\end{document}
答案1
添加
\renewcommand\thesection{\thechapter.\arabic{section}}
到序言部分,标题信息之后。完整的示例:
\documentclass[envcountresetchap]{svmult}
\title*{Title}
\renewcommand\thesection{\thechapter.\arabic{section}}
\begin{document}
\chapter{Test chapter}
\section{Test section}
\subsection{Test subsection}
\subsection{Another test subsection}
\section{Another test section}
\subsection{Yet another test subsection}
\end{document}