我怎样才能删除章节前面的“第 9 章”文本和编号。请参见下图中的“第 9 章”。我想保留文本和目录中各节和小节的编号。
我见过删除章节编号的方法,但是章节计数会从上一章继续。例如,9.1 章节概述将更改为“8.12 章节概述”
\documentclass[12pt,twoside]{report}
%\documentclass[draft]{article}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{textcomp}
\usepackage{gensymb}
\usepackage[utf8]{inputenc}
\usepackage{nomencl}
\makenomenclature
\begin{document}
\addcontentsline{toc}{chapter}{List of Tables}
\chapter{Results section overview \& Reservoir Characteristic}
\input{chapters/Reservoir_Characteristic.tex}
答案1
这种格式可以通过titlesec
包来完成。使用此包,章节标题的标准格式由命令定义
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
该参数{\chaptertitlename\ \thechapter}
要求输入您想要删除的大量“第 9 章”文本,因此您可以将该参数留空,这样就不会出现任何内容。有关更多详细信息,请参阅包装文档。
下面的代码应该可以工作。
\documentclass[12pt,twoside]{report}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{}{20pt}{\Huge}
\begin{document}
\setcounter{chapter}{8}
\chapter{Results section overview \& Reservoir Characteristic}
\section{Chapter overview}
This chapter present...
\section{Results Static and Dynamic Model Characteristic}
\subsection{Permeability and Porosity L14 \& L25}
\end{document}