Re: Inserimento pagina formato A3

#8825
DMW
    Up
    0
    Down
    ::

    \documentclass[a4paper,11pt,twoside]{book}

    \textheight=220mm
    \textwidth=145mm
    \topmargin=0pt%

    \oddsidemargin=10mm
    \evensidemargin=5mm
    \footskip = 40pt%
    \headsep=30p

    \usepackage{fancyhdr}

    \renewcommand{\headrulewidth}{.4pt}
    \renewcommand{\footrulewidth}{0pt}

    \fancypagestyle{plain}{
    \fancyhf{}
    \fancyfoot[RO]{\thepage}
    \fancyfoot[LE]{\thepage}
    \renewcommand{\headrulewidth}{0pt}
    \renewcommand{\footrulewidth}{0pt}}

    \renewcommand{\headwidth}{155mm}

    \pagestyle{fancy}{% ridefinizione stile fancy
    \fancyhf{}
    \fancyfoot[RO]{\thepage}
    \fancyfoot[LE]{\thepage}

    \fancyfoot[C]{\helv — \thepage~–}

    \fancyhead[LE]{\textit{\nouppercase{\leftmark}}}
    \fancyhead[RO]{\textit{\nouppercase{\rightmark}}}}

    \usepackage{setspace}
    \linespread{1.1}
    \usepackage{nextpage}

    Devo inserire un’immagine che non può stare sull’A4 perchè troppo grande.
    Come faccio ad inserire una sola pagina A3 orizzontale (fronte e retro)?

    Ciao, grazie

    Un po’ di ignoranza non ti manca. A posto di questo codice
    ` \textheight=220mm
    \textwidth=145mm
    \topmargin=0pt%

    \oddsidemargin=10mm
    \evensidemargin=5mm
    \footskip = 40pt%
    \headsep=30pt`meglio usare il pacchetto geometry.

    Go to top