Comment utiliser \thanks dans chaque titre de chapitre ?

Pour associer des remerciements dans chaque chapitre d'une thèse, par exemple, il faut définir sa propre macro à base de \footnote. Exemple (R. Fairbairns) : \documentclass{report} \usepackage{french} \newcommand\thankschapter[2]{% % arg 1 is chapter title % arg 2 is `thanks' text \edef\savefootnote{\thefootnote} \renewcommand\thefootnote{\fnsymbol{footnote}} \chapter[#1]{#1\footnote[1]{#2}} \renewcommand\thefootnote{\arabic{footnote}} \setcounter{footnote}{\savefootnote} } \begin{document} \thankschapter{Préface.}{\textit{Un grand merci à M. Nigaudon pour avoir accepter de préfacer ce livre.\\}} Ce livre traitant de \LaTeX,~\ldots \end{document} %%%% fin exemple %%%%