I've got a problem with the formatting of the table of contents, using xetex and the package polyglossia (language : french). I don' manage to get the number of parts before the title ...
Here is an ECM to understand this :
\documentclass[a4paper,12pt]{book} \XeTeXinputencoding iso-8859-1 \usepackage{polyglossia} \setmainlanguage{french} \setotherlanguage{latin} \setotherlanguage[variant=ancient]{greek} \begin{document} \tableofcontents \part{Part title} \chapter{Chapter title} \section{section title} \part{another part} \end{document}
With this code here is the appearance of the toc :
Part title (without number ...)
1 chapter title
1.1. Section
...
And I would like this formatting :
I. Title
1 Chapter title
1.1 Section title ...
What should I do to have the "I" enabled in the toc ? Can somebody help me ?
Thanks.