我正在尝试为我的报告添加一个概述。好吧,我把它添加到了目录中,没有编号。使用此代码:
\addcontentsline{toc}{chapter}{\protect\numberline{}Introduction générale}
\chapter*{Introduction générale}
\label{sec:IntroductionGénérale}
但问题是:我已经在章节开头添加了一个迷你目录。因此,当我添加星号以隐藏标题时,迷你目录就会消失。而当我删除它时,我会在一般介绍中看到一个标题。这是我使用的代码:
\documentclass[12pt,french]{report}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage[utf8]{inputenc}
\usepackage[a4paper]{geometry}
\usepackage{minitoc}
\geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=3cm,rmargin=3cm}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\setlength{\parskip}{\smallskipamount}
\setlength{\parindent}{0pt}
\usepackage{float}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{nomencl}
\usepackage{enumitem}%pou les puces
% the following is useful when we have the old nomencl.sty package
\providecommand{\printnomenclature}{\printglossary}
\providecommand{\makenomenclature}{\makeglossary}
\makenomenclature
\onehalfspacing
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
%/usepackage{t1enc}% un second package
\usepackage[francais]{babel}
% un troisième package
\usepackage{layout}
\usepackage[Lenny]{fncychap}
\usepackage{fancyhdr}
\usepackage[section]{placeins}
\usepackage{lettrine}
\floatstyle{boxed}
\title{Rapport de Projet De Fin D'Études}
\author{Amina GHABRI}
\usepackage{palatino}%police
\renewcommand{\baselinestretch}{1.5}
\AtBeginDocument{
\def\labelitemi{\normalfont\bfseries{--}}
}
\usepackage{babel}
\addto\extrasfrench{%
\providecommand{\og}{\leavevmode\flqq~}%
\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}%
}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\leftmark}
\fancyhead[RE,LO]{\ }
\fancyfoot[CE,CO]{\thepage}
\fancyfoot[RE,LO]{\ }
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
%\usepackage{babel}
\addto\extrasfrench{%
\providecommand{\og}{\leavevmode\flqq~}%
\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}%
}
\makeatother
%\usepackage{babel}
\makeatletter
\addto\extrasfrench{%
\providecommand{\og}{\leavevmode\flqq~}%
\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}%
}
\rmfamily
\makeatother
\makeatletter
\renewcommand\paragraph{%
\@startsection{paragraph}{4}{0mm}%
{-\baselineskip}%
{.5\baselineskip}%
{\normalfont\normalsize\bfseries}}
\makeatother
\makeatletter
\renewcommand\subparagraph{%
\@startsection{subparagraph}{4}{0mm}%
{-\baselineskip}%
{.5\baselineskip}%
{\normalfont\normalsize\bfseries}}
\makeatother
\begin{document}
\maketitle
\dominitoc\tableofcontents{}\listoffigures
\listoftables
\addcontentsline{toc}{chapter}{\protect\numberline{}Introduction générale}
\chapter{Introduction générale}
\label{sec:IntroductionGénérale}
Conçu originellement comme un système d’exploitation réservé pour les terminaux mobiles (Smartphones, Tablettes etc.), Android a bouleversé plusieurs domaines d’utilisation comme les téléviseurs, les autoradios et même les voitures. Il a changé automatiquement le fonctionnement des entreprises et leurs environnements professionnels.
\chapter{Présenation du projet}
\label{sec:PrésenationDuProjet}
\minitoc \newpage
\addcontentsline{toc}{section}{\protect\numberline{}Introduction}% Add title to ToC
\section*{Introduction}
\label{sec:Introduction}
\lettrine[lines=2,loversize=0.08]{L}{}e succès retentissant des Smartphones sous Android a entrainé l'émergence quotidienne de nouvelles applications et services qui reposent sur la technologie Wi-Fi.
La première partie du chapitre est consacrée à la présentation du projet et à la spécification des besoins.
这是带有 * 的结果:
如果没有 * :迷你目录就会消失:
答案1
该minitoc
软件包提供了\mtcaddchapter[...]
在目录中添加星号章节的功能。这将保留添加星号章节的功能minitoc
——请参阅当前minitoc
文档的第 72 页,并确保使用\mtcaddchapter
后 \chapter*
!
\documentclass[12pt,french]{report}
\usepackage[T1]{fontenc}
\usepackage{times}
\usepackage[utf8]{inputenc}
\usepackage[a4paper]{geometry}
\usepackage[Lenny]{fncychap}
\usepackage{minitoc}
\geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=3cm,rmargin=3cm,headheight=16pt}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\setlength{\parskip}{\smallskipamount}
\setlength{\parindent}{0pt}
\usepackage{float}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{nomencl}
\usepackage{enumitem}%pou les puces
% the following is useful when we have the old nomencl.sty package
\providecommand{\printnomenclature}{\printglossary}
\providecommand{\makenomenclature}{\makeglossary}
\makenomenclature
\onehalfspacing
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
%/usepackage{t1enc}% un second package
\usepackage[francais]{babel}
% un troisième package
%\usepackage{layout}
\usepackage{fancyhdr}
\usepackage[section]{placeins}
\usepackage{lettrine}
\usepackage{blindtext}
\usepackage{chngcntr}
\floatstyle{boxed}
\title{Rapport de Projet De Fin D'Études}
\author{Amina GHABRI}
\usepackage{palatino}%police
\renewcommand{\baselinestretch}{1.5}
\AtBeginDocument{%
\def\labelitemi{\normalfont\bfseries{--}}
}
\addto\extrasfrench{%
\providecommand{\og}{\leavevmode\flqq~}%
\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}%
}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\leftmark}
\fancyhead[RE,LO]{\ }
\fancyfoot[CE,CO]{\thepage}
\fancyfoot[RE,LO]{\ }
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
\rmfamily
\makeatletter
\addto\extrasfrench{%
\providecommand{\og}{\leavevmode\flqq~}%
\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}%
}
\renewcommand\paragraph{%
\@startsection{paragraph}{4}{0mm}%
{-\baselineskip}%
{.5\baselineskip}%
{\normalfont\normalsize\bfseries}}
\renewcommand\subparagraph{%
\@startsection{subparagraph}{4}{0mm}%
{-\baselineskip}%
{.5\baselineskip}%
{\normalfont\normalsize\bfseries}}
\makeatother
\dominitoc
\begin{document}
\maketitle
\tableofcontents{}\listoffigures
\listoftables
\chapter*{Introduction générale}
\mtcaddchapter[Introduction générale]
\markboth{}{}
\minitoc
\label{sec:IntroductionGénérale}
\counterwithout{section}{chapter}
\section{Some content in this starred chapter}
Conçu originellement comme un système d’exploitation réservé pour les terminaux mobiles (Smartphones, Tablettes etc.), Android a bouleversé plusieurs domaines d’utilisation comme les téléviseurs, les autoradios et même les voitures. Il a changé automatiquement le fonctionnement des entreprises et leurs environnements professionnels.
\blindtext[5]
\counterwithin{section}{chapter}
\chapter{Présenation du projet}
\label{sec:PrésenationDuProjet}
\minitoc\clearpage
\addcontentsline{toc}{section}{\protect\numberline{}Introduction}% Add title to ToC
\section*{Introduction}
\label{sec:Introduction}
\lettrine[lines=2,loversize=0.08]{L}{}e succès retentissant des Smartphones sous Android a entrainé l'émergence quotidienne de nouvelles applications et services qui reposent sur la technologie Wi-Fi.
La première partie du chapitre est consacrée à la présentation du projet et à la spécification des besoins.
\end{document}
答案2
好吧,我解决了这个问题,我只是在目录中将章节改为部分:
\addcontentsline{toc}{section}{\protect\numberline{}Introduction générale}
\chapter*{Introduction générale}
\label{sec:IntroductionGénérale}