许多章节的摘要样式消失了

许多章节的摘要样式消失了

晚上好,我怎样才能为多个章节做这种摘要样式

这是我对其他文件进行包含的主要方法

\documentclass[12pt]{report}
    \usepackage{minitoc}
    \usepackage[french]{babel}
    \usepackage[T1]{fontenc}
    \usepackage[utf8]{inputenc}
    \usepackage[Lenny]{fncychap}
    \usepackage{fancyhdr}
    \pagestyle{fancy}
    \rhead{}
    \usepackage{graphicx, type1cm, lettrine, blindtext}
    \usepackage{setspace}
    \onehalfspacing

    \begin{document}


    \include{Resume}
    \include{IntroductionGenerale}

    \dominitoc
    \tableofcontents


    \include{Chapitre1}
    \include{Chapitre2}




    \end{document}

以及其他文件

针对“IntroductionGenerale”

 \chapter*{\textbf{Introduction générale}}
    \addcontentsline{toc}{chapter}{Introduction générale}

    \lettrine[lines=3,slope=-4pt,nindent=-4pt]{A}{}u file des temps.

针对“简历”

\chapter*{\textbf{Résumé}}
\addcontentsline{toc}{chapter}{Résumé}

对于“第 1 章”

   \chapter{A chapter}
    \minitoc
    \newpage
    \section{A section}
    \subsection{A subsection}
    \subsection{Another subsection}
    \section{Another section}
    \subsection{A subsection}
    \subsection{Another subsection}

对于“第 2 章”

  \chapter{Another chapter}
    \minitoc
    \newpage
    \section{A section}
    \subsection{A subsection}
    \subsection{Another subsection}
    \section{Another section}
    \subsection{A subsection}
    \subsection{Another subsection}

为什么摘要消失了

我看到问题出现在“简历”和“简介”中,我该如何保存“简历”,“简介”和摘要

答案1

您可以使用minitoc包。这是一个小例子。

\documentclass{report}
\usepackage{minitoc}
\begin{document}
\dominitoc
\tableofcontents
\chapter{A chapter}
\minitoc
\section{A section}
\subsection{A subsection}
\subsection{Another subsection}
\section{Another section}
\subsection{A subsection}
\subsection{Another subsection}
\chapter{Another chapter}
\minitoc
\section{A section}
\subsection{A subsection}
\subsection{Another subsection}
\section{Another section}
\subsection{A subsection}
\subsection{Another subsection}
\end{document}

这将生成一个文档,其开头有一个目录,以及两个章节及其各自的目录。这是输出的第一章。

如果正如您在问题中添加的图片所示,您的文档是法语的,则可以minitoc使用选项加载french。它将在章节目录中用“Sommaire”替换“Contents”一词。

相关内容