Re: Bibliografia in grassetto come titolo

#10771
lorenzo.pantieri
Partecipante
    Up
    0
    Down
    ::


    Ciao, prova il seguente “scheletro”:
    `\documentclass[a4paper,11pt,italian]{book}

    \usepackage{fancyhdr}

    \pagestyle{fancy}
    \renewcommand{\chaptermark}[1]{\markboth{#1}{}}
    \renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
    \fancyhf{}
    \fancyhead[LE,RO]{\bfseries\thepage}
    \fancyhead[LO]{\bfseries\footnotesize\nouppercase{\rightmark}}
    \fancyhead[RE]{\bfseries\footnotesize\nouppercase{\leftmark}}

    \begin{document}

    \include{biblio}
    \end{document}`
    dove biblio.tex è del tipo:
    `\addcontentsline{toc}{chapter}{Bibliografia}
    \bibliographystyle{plain}
    \bibliography{biblio}`L.

    Go to top