I can't remove the header of the bibliography. With this code, it deletes also the header of the previous chapter, which I wouldn't like to happen. Not using special packages such as hyperref.
MWE:
\documentclass[a4paper,11pt]{book}
\pdfpagewidth
\paperwidth
\pdfpageheight
\paperheight
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\makeindex
\usepackage{url}
\usepackage{fancyhdr}
\usepackage{geometry}
\usepackage{rotating}
\usepackage{caption}
\geometry{a4paper,tmargin=3cm,bmargin=4cm, lmargin=3.7cm,rmargin=3.7cm}
\usepackage{multirow}
\usepackage{splitbib}
\begin{document}
Text,
previous chapter
\pagestyle{plain}
\sloppy
\begin{category}[]{Fonti delle figure}
\SBentries{example}
\end{category}
\bibliographystyle{plain}
\addtocounter{chapter}{1}
\cleardoublepage
\addcontentsline{toc}{chapter}{\protect\numberline{\thechapter}\bibname}
\bibliography{Bibname}
\end{document}
\renewcommand{\bibname}{}where you put\addcontentsline.... See http://tex.stackexchange.com/questions/22645/hiding-the-title-of-the-bibliography for more information – naphaneal Dec 14 '16 at 21:01fancyhdrin the bibliography part? Then put the\pagestyle{plain}after the\cleardoublepage. Or do you mean something else? – Pieter van Oostrum Dec 14 '16 at 22:10