跳过章节编号但获取章节布局

跳过章节编号但获取章节布局

我想按如下方式设置我的报告结构。

不同的章节应该有一个漂亮的大标题,就像 Chapter 环境的标题一样,并且也应该在目录中分开。然后每个章节可以包含一些节和小节。

我对这个环境唯一的问题是编号:章节编号应该不因我们从一个章节转到另一个章节而改变。换句话说,总编号中不应该有章节计数器。

情况是这样的:

\documentclass[11pt]{report}
\usepackage{geometry}                 
\geometry{letterpaper}                  
\usepackage[all]{xy}
\usepackage{mdframed}
\usepackage{amsthm}
\usepackage{makeidx}

\numberwithin{equation}{section}
\makeindex

\begin{document}
\maketitle

\chapter{First chapter}
\section{Section1}
\section{section2}

\chapter{Second chapter}
\section{section3}
\section{section4}

\end{document}

基本上,我喜欢零件环境的离散编号功能,但喜欢章节环境的图形布局。

答案1

在回答时,我删除了导致错误的命令和与问题无关的软件包。

如果您根本不想对章节进行编号,但希望它们显示在目录中,则如下内容可能合适:

\documentclass[11pt]{report}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{remreset}

\makeatletter
  \renewcommand \thesection {\@arabic\c@section}
  \@removefromreset{section}{chapter}
\makeatother

\begin{document}

\tableofcontents

\chapter*{First chapter}
\addcontentsline{toc}{chapter}{First chapter}
\section{Section1}
\section{section2}

\chapter*{Second chapter}
\addcontentsline{toc}{chapter}{Second chapter}
\section{section3}
\section{section4}

\end{document}

未编号章节

无编号的章节

如果您希望对章节进行编号,可以这样做:

\documentclass[11pt]{report}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{remreset}

\makeatletter
  \renewcommand \thesection {\@arabic\c@section}
  \@removefromreset{section}{chapter}
\makeatother

\begin{document}

\tableofcontents

\chapter{First chapter}
\section{Section1}
\section{section2}

\chapter{Second chapter}
\section{section3}
\section{section4}

\end{document}

编号章节

带编号的章节

相关内容