On Wed, Oct 09, 2002 at 11:55:31AM +0200, J.Lauffenburger wrote:
>
> Chapter X "The main title of the chapter"
> Part 1 (numbering here is not necessary, the title is enough) - "The
> first part of the work"
> 1.1 Introduction
> 1.2 Work done
> 1.3 Conclusion
>
> Part 2 "Second part of the work"
> 2.1 Introduction
> 2.2....
>
> How should I define each part in order to have this scheme?
In the preamble:
\newcounter{mypart}
\renewcommand{\themypart}{\arabic{mypart}}
\@addtoreset{section}{mypart}
\newcommand{\mypart}[1]{
\refstepcounter{mypart}
\renewcommand{\thesection}{\themypart.\arabic{section}}
{\centering\huge\bfseries #1\par}}
You might need to add some vertical space above/below the title.
If the chapter is not the last chapter, you will need to add
\renewcommand{\thesection}{\thechapter.\arabic{section}}
at the end of the chapter.