未编号章节的图号

未编号章节的图号

我正在用我大学的模板(文档类“书”)写一篇博士论文。我有一些未编号的章节(简介、背景……),在这些未编号的章节上我有插图。编号章节的标题如下:

“图 I.1:[...]” “图 II.1:[...]”等等

但未编号的章节中的标题是:

“图。1: [...]”

这就是我的问题。我找不到任何宏可以让编号的章节保持原样,并更改未编号的章节...

感谢您的帮助。

\documentclass[a4paper,11pt,diffusion]{book}
\usepackage[utf8]{inputenc}

% Configuration fichier
\include{0-configuration/configuration}

% Include user's macros
\include{0-configuration/macros}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CUSTOM PACKAGES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%fabrication automatique des pages première et quatrième  couverture
\usepackage{1-openingAndClosing/thcover}
\usepackage{1-openingAndClosing/versionswitch}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%
\begin{document}
%%%%%%%%%% les pages liminaires %%%%%%%%%%%%%%%%%%
\frontcover
\frontmatter

% Include the acknowledgements page
%\include{1-openingAndClosing/remerciements}

% Build the general table of contents
\setcounter{tocdepth}{2}
\tableofcontents

% Build the list of figures
\listoffigures

% Build the list of tables
\listoftables

% Nomenclature
\input{1-openingAndClosing/acronyms.tex}
\printnomenclature

%%%%%%%%% le corps du texte %%%%%%%%%%%%%%%%%%

%Introduction 
\include{2-chapters/0/MainChapter}
\phantomsection
\clearpage
%\addcontentsline{toc}{chapter}{Introduction}

\mainmatter
%Chapter 1
\include{2-chapters/1/MainChapter}

%Chapter 2
\include{2-chapters/2/MainChapter}

% Chapter 3
\include{2-chapters/3/MainChapter}

% Chapter 4
\include{2-chapters/4/MainChapter}

% Chapter 5
\include{2-chapters/5/MainChapter}

% Chapter 6
\include{2-chapters/6/MainChapter}

\clearpage
\appendix 
%Appendix 1
\include{3-appendices/1/MainAppendix}

%Appendix 2
\include{3-appendices/2/MainAppendix}


%%%%%%%%%%%%%% les pages finales %%%%%%%%%%%%%%%%
\backmatter
\nocite{*} %%% pour les test mais à proscire !!

%%%%%%%%%%%%%%% Bbliographie %%%%%%%%%%%%%%%%%%%%

%%% utilisation de BiBTeX
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliographie}

\bibliographystyle{thesefr-href}   % ne pas mettre l'extension .bst

\bibliography{4-bibliography/references_2}

%\usepackage{biblatex}
%\addbibresource{4-bibliography/references}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\backcover
\end{document}

相关内容