Effettivamente mi rendo conto ora leggendo il tuo post, che avrei dovuto postare anche questa parte di codice che ho inserito nel mio file sempre seguendo l’esempio di cui nel mio primo post:
`
\pagestyle{fancy}\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\rightmark}
\fancyhead[RE]{\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancypagestyle{plain}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
}
`Dove devo modificare per ottenere quello che vorrei?
Ciao e grazie ancora
Davide
Se usi la classe report, l’opzione “oneside” è implicita; quindi non ha molto senso specificare testatine diverse tra pagine destre e sinistre.
`\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
\fancyhf{}
\fancyhead[R]{\small\bfseries\thepage}
\fancyhead[L]{\small\bfseries\thechapter\ \leftmark}
\setlength{\headheight}{13.6pt}
\fancypagestyle{plain}{%
\fancyhead{}\fancyfoot[C]{\thepage}%
\renewcommand{\headrulewidth}{0pt}%
}`
Le testatine a corpo 12 in nero sono sicuramente esagerate, meglio \small.
Ciao
Enrico