Sui book o report oneside, tipo tesine, metterei solo il titolo del capitolo corrente, senza differenziare pari e dispari…
Concordo. Sapresti dirmi come modificare il codice per avere questo risultato con fancyhdr?
Ciao, andando per tentativi 😳 (la doc di fancyhdr l’ho sempre trovata ostica…) ho visto che mettendo la riga
`\fancyhead[LO]{\scshape\footnotesize\nouppercase{\leftmark}} `
al posto della
`\fancyhead[LO]{\scshape\footnotesize\nouppercase{\rightmark}} `
si ottiene il risultato desiderato. Quindi:
`
\documentclass[a4paper,oneside]{book} %o anche \documentclass[a4paper,oneside]{report}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\scshape\thepage}
\fancyhead[LO]{\scshape\footnotesize\nouppercase{\leftmark}}
\fancyhead[RE]{\scshape\footnotesize\nouppercase{\leftmark}}
`
Chissà… 🙄
L.