I use classic-thesis, and I would like to do the following: each chapter should begin on an odd page (right on a dual-page view), and on the left page should be displayed a picture I choose.
would that be possible?
thank you
EDIT:
with classicthesis, this will put title pages on the right pages instead of the left :
\documentclass[10pt, a4paper,twoside,openright,titlepage]{scrreprt}
\makeatletter
\newcommand\ChapImage{\huge image page -- should be on the left!}
\newcommand*\Invcleardoublepage{
\clearpage\if@twoside
\ifodd\c@page \null\newpage\if@twocolumn\null%
\newpage\fi\fi\fi
}
\renewcommand\chapter{%
\if@openright
\ifodd\c@page{\clearpage}\else{\Invcleardoublepage}\fi
{
\pagestyle{empty}
\ChapImage
\clearpage
}
\else
\clearpage
\fi
\thispagestyle{\chapterpagestyle}%
\global\@topnum\z@
\@afterindentfalse
\secdef\@chapter\@schapter
}
\makeatother
\usepackage[T1]{fontenc} % la codifica dei font
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{changepage,calc} % per impostare i margini del frontespizio
\usepackage{lipsum} % genera testo fittizio
\usepackage{classicthesis-ldpkg} % carica molti pacchetti utili a ClassicThesis
\usepackage[eulerchapternumbers,% % numeri dei capitoli in Euler
subfig,% % compatibilità con subfig
beramono,% % Bera Mono come font a spaziatura fissa
eulermath,% % AMS Euler come font per la matematica
pdfspacing% % migliora il riempimento di riga con PDFLaTeX
]{classicthesis} % lo stile ClassicThesis
%\usepackage[english]{arsclassica} % modifica alcuni aspetti di ClassicThesis
\begin{document}
\pagestyle{plain}
\begin{titlepage}
\changetext{}{}{}{((\paperwidth - \textwidth) / 2) - \oddsidemargin - \hoffset - 1in}{}
\null\vfill
\large
\sffamily
{Title page}
\vfill
\end{titlepage}
\pagenumbering{roman}
\pagestyle{scrheadings}
\clearpage
\lipsum[1-4]
\clearpage
\setcounter{tocdepth}{2}
\thispagestyle{empty}
\tableofcontents
\markboth{\spacedlowsmallcaps{\contentsname}}{\spacedlowsmallcaps{\contentsname}}
\pagenumbering{arabic}
\chapter{First chapter}
\lipsum[1-10]
\chapter{Second chapter}
\lipsum[1-8]
\chapter{Third chapter}
\lipsum[1-10]
\chapter{Fourth chapter}
\lipsum[1-8]
\end{document}

\chapterto, instead of doing a\cleardoublepage, do a\clearpage\thispagestyle{empty}\includegraphics[<options>]{path/to/image}, but this is just a long shot – henrique Jun 15 '11 at 1:00