如何以 0.0 开始一个部分?

如何以 0.0 开始一个部分?

我该如何添加“简短前言”部分?我知道这样做\section*{0.0 A Short Preface}可能没问题,但 TeX 很棒,一定有更好的方法。

这正是我所寻找的(在 Google Docs 中完成):

在此处输入图片描述

谢谢!

答案1

最简单的情况是,将部分计数器设置为-1将导致下一部分为0

\documentclass{book}
\begin{document}
\setcounter{section}{-1}
\section{text}
\end{document}

要改变分段的外观,例如默认添加小节编号,\thesection也需要重新定义。

\documentclass{article}
\usepackage{lipsum}
\renewcommand\thesection{\arabic{section}.\arabic{subsection}}
\begin{document}
\setcounter{section}{-1}
\section{A Short Preface}
\lipsum[1]
\section{Introduction}
\lipsum[2]
\end{document}

在此处输入图片描述

答案2

编辑:更新xassoccnt v.0.8——使用计数器的级联暂停,即计数器重置列表内的所有计数器都将被暂停:

\documentclass{book}

\usepackage{xassoccnt}
\usepackage{blindtext}


\setcounter{secnumdepth}{4}
\begin{document}
\tableofcontents
\listoffigures
\listoftables


\CascadeSuspendCounters{chapter}
\chapter{The first chapter}
\section{Foo}


\begin{figure}

\caption{A foo figure}
\end{figure}

\begin{table}
\caption{A foo table}
\end{table}



\subsection{My First subsection}
\blindtext
\section{Foobar}
\subsection{Foobar subsection}
\blindtext
\subsubsection{Foobar Again}
\blindtext


\ResumeAllSuspendedCounters

\chapter{Another chapter}


\begin{figure}
\caption{Another figure}
\end{figure}



\SuspendCounters{chapter,section}

\chapter{Yet another chapter}

\section{Foo section in yet another chapter}

\begin{figure}
\caption{Another figure}
\end{figure}



\end{document}

使用\SuspendCountersfromxassoccnt来保持计数器固定并在稍后恢复它们。

\documentclass{article}

\usepackage{xassoccnt}
\usepackage{blindtext}
\begin{document}

\SuspendCounters{section}
\SuspendCounters{subsection}
\section{Foo}
\subsection{My First subsection}
\blindtext
\ResumeSuspendedCounters{section}
\ResumeSuspendedCounters{subsection}
\section{Foobar}
\blindtext
\end{document}

在此处输入图片描述

相关内容