<p>Bonjour.</p>
<p>Effectivement les deux solutions proposées génèrent une page au format A4 paysage.</p>
<p>Cela ne fonctionne qu'avec PDFTex?</p>
<p>Ou est en lien avec l'impossibilité de modifier le layout due à l'oversize?</p>
<p>Car lorsque j'intègre ces propositions à mon document, j'obtiens des bizzareries comme par exemple les entêtes et pieds de pages qui ne suivent pas ou des résultats différents selon la manière qu'on les introduit.
En effet si on les introduit directement dans le document principale ou dans un document secondaire (\include{})</p>
<p>Je joint ici un exemple qui reproduit le problème</p>
ECM
<pre> <code>\documentclass[a5paper, twoside,openright, 8pt]{extbook}
\usepackage[french]{babel} %Option lingistique
\usepackage [T1]{fontenc} %Mode d'encodage
\usepackage[latin1]{inputenc} %Type d'encodage
\usepackage{geometry}
\usepackage{fancyhdr} %en-tete et pied de page
\usepackage[thumblink=none,height={8mm},minheight={20pt},width={10mm},distance={1mm},topthumbmargin={40pt},bottomthumbmargin={40pt},nophantomsection=false,ignorehoffset=true,ignorevoffset=true,final=true,hidethumbs=false,verbose=true]{thumbs}
\usepackage{pdfpages}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{pdflscape}
\usepackage{lipsum}
\geometry{
includehead,
inner=20mm,
outer=14mm,
top=5mm,
bottom=5mm,
\geometry{includehead,inner=20mm,outer=14mm,top=5mm,bottom=5mm}
\setlength{\headheight}{5mm}
\setlength{\headsep}{2mm}
\setlength{\marginparsep}{2mm}
\setlength{\marginparwidth}{13mm}
\setlength{\footskip}{5mm}
\fancypagestyle{plain}{%
\fancyhf{}%
\fancyhead[ro,le]{\bfseries\thepage}%
\fancyhead[c]{\leftmark}%
}
\setlength{\headheight}{5mm} %
\setlength{\headsep}{2mm} %
\setlength{\marginparsep}{2mm} %
\setlength{\marginparwidth}{13mm} %
\setlength{\footskip}{5mm} %
\fancypagestyle{plain}{%
\fancyhf{}% C'est plus prudent
\fancypagestyle{MonStyleAMoi}{%
\fancyhf{}%
\fancyhead[ro,le]{\bfseries\thepage}%
\fancyhead[c]{\leftmark}%
}
\fancypagestyle{MonStyleAMoi}{%
\fancyhf{}% C'est plus prudent
\fancyhead[ro,le]{\bfseries\thepage}%
\fancyhead[c]{\leftmark}%
}
\pagestyle{MonStyleAMoi}
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{#1}}{}}
%
\begin{document}
\pagenumbering{arabic}
%
\chapter{XXX}
\addthumb{XXX}{\Huge{\textbf{\arabic{chapter}}}}{white}{gray}
\lipsum[1-5]
\chapter{YYY}
\addthumb{YYY}{\Huge{\textbf{\arabic{chapter}}}}{white}{gray}
\newpage
\pdfpagewidth=845pt \pdfpageheight=597pt
\newgeometry{margin=1in,right=-350pt}
\lipsum[1-9]
\newpage
\pdfpagewidth=421pt \pdfpageheight=597pt
\restoregeometry
\chapter{ZZZ}
\addthumb{ZZZ}{\Huge{\textbf{\arabic{chapter}}}}{white}{gray}
\lipsum[1-5]
\chapter{MMM}
\addthumb{MMM}{\Huge{\textbf{\arabic{chapter}}}}{white}{gray}
\lipsum[1-5]
\include{ECMCHAP}
\tableofcontents
\end{document}
</code></pre>
ECMCHAP
<pre><code>\chapter{ECMCHAP}
\addthumb{ECMCHAP}{\Huge{\textbf{\Alph{chapter}}}}{white}{gray}
%Pour faire une page blanche apres le titre
\newpage
\begingroup
\thispagestyle{empty}% other \pagestyle{empty}
\null
\endgroup
\newpage
%
\lipsum[1-9]
\newpage
\pdfpagewidth=845pt \pdfpageheight=597pt
\newgeometry{margin=1in,right=-350pt}
\lipsum[1-9]
\newpage
\begingroup
\thispagestyle{empty}%
\null
\endgroup
\newpage
\pdfpagewidth=421pt \pdfpageheight=597pt
\restoregeometry
</code></pre>
Ou devrais-je plutôt utiliser Koma-Script et m'inspirer de [cette solution][1]?
[1]: https://texnique.fr/osqa/questions/8738/changement-de-format-de-papier-au-sein-dun-document