我想在使用命令时隐藏论文中每一章的编号\chapter
。但问题是当我输入*
这样的\chapter*
命令时,小节将从 0.1 开始。因此,我想隐藏单词章节前面的编号,但下面章节的编号仍然从 1.1 开始,依此类推。这是我的 latex 命令;
\documentclass[12pt]{thesis}
\usepackage{amssymb,amsmath,latexsym}
\usepackage[top=2cm, bottom=2.5cm, footskip=1.2cm, left=4cm, right=2.2cm]{geometry}
\usepackage{setspace}
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\cfoot{\thepage}%set page numbering at bottom
\renewcommand{\headrulewidth}{0pt}
\begin{document}
\chapter{chapter 1}
I want hide the number at front of word chapter but still the number at section below start with 1
\section{bab 1}
blah
\chapter{ chapter 2}
\section{sub chapter 2}
\end{document}
这里是输出:
答案1
我的建议是添加\chapter
一些\chapter*
计数器和目录更新。为此,添加
\let\oldchapter\chapter% Store \chapter in \oldchapter
\renewcommand{\chapter}[1]{% Update \chapter
\cleardoublepage
\refstepcounter{chapter}% Step chapter counter
\oldchapter*{#1}% Regular \chapter*
\chaptermark{#1}% Set chapter mark (typically for header)
\addcontentsline{toc}{chapter}{#1}% Add chapter to ToC
}
你的序言。