从 0 开始计数器

从 0 开始计数器

我正在使用 LaTeX 制作一张练习表。我已将各个部分设置为如下所示Exercise # | <title>

我怎样才能强制部分计数器从 0 开始,以便我可以进行练习 0 来解释如何设置工作环境。

我正在使用 titlesec 包来格式化我的章节标题。我已将 \documentclass 设置为 以article避免出现类似 的编号Exercise 0.x

这是我当前的格式:

\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\section}
  [hang]
  {\huge\bfseries}
  {Exercice \thesection\hsp\textcolor{gray}{|}\hsp}
  {0pt}
  {\large\bfseries}

答案1

您可以使用命令将计数器设置为您想要的任何值\setcounter{}{}

% arara: pdflatex

\documentclass{article}
\usepackage{titlesec}
\usepackage{xcolor}
\usepackage{blindtext}
\newcommand{\hsp}{\hspace{20pt}}
%%% option 1
%\usepackage[T1]{fontenc}
%\usepackage{lmodern}
%\titleformat{\section}[hang]{\huge\bfseries}{Exercice \thesection\hsp\textcolor{gray}{|}\hsp}{0pt}{\large\bfseries}
%%% option 2
\titleformat{\section}[hang]{\huge\bfseries}{Exercice \thesection\hsp\textcolor{gray}{\textbar}\hsp}{0pt}{\large\bfseries}

\begin{document}
    \setcounter{section}{-1}
    \Blinddocument
\end{document}

在此处输入图片描述

相关内容