我如何才能\subsubsection
只在本节中执行此操作,因为我只会在本节中执行此操作,而不会在报告的其他部分中执行此操作。可以这样做吗?
这就是我想要做的:
\documentclass[12pt]{report}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
\section{Les étapes }
\subsubsection{1) un}
texte........
\subsubsection{2) deux}
texte........
\subsubsection{3) trois}
texte........
\end{document}
答案1
这是一个解决方案,使用titlesec
和fmtcount
:
\documentclass[12pt, french]{report}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{fmtcount}
\usepackage{titlesec}
\setcounter{secnumdepth}{4}
\titleformat{\subsubsection}{\normalfont\normalsize\bfseries}{\arabic{subsubsection})}{0.5em}{\numberstring{subsubsection}\enspace}
\begin{document}
\setcounter{chapter}{1}
\section{Les étapes }
\subsubsection{}
texte........
\subsubsection{}
texte........
\subsubsection{}
texte........
\end{document}
无关:如果您有最新版本的 LaTeX,则无需加载inputenc
,因为[utf8]
这是默认设置。此外,最好使用文档类加载语言选项,以确保所有依赖语言的包都知道当前语言。