I realized today that the chapter "Introduction" has "List of Tables" as header. I use this code to add the chapter "Introduction"
\chapter*{Introduzione}\addcontentsline{toc}{chapter}{Introduzione}\pagenumbering{Roman}
This chapter has two pages. Both have roman numbers, but the second has as header "List of Tables" instead of "Introduction".
I use \listoftables to create the list and \input{introduction} to call the file in the main one.
The same thing happen with another chapter that uses \chapter*; on the header there is the name of the previous chapter (that is created with \chapter
\RequirePackage[hyphens]{url}
\documentclass[a4paper,italian,oneside,openright,12pt,draft]{book}
\usepackage{cmap} % makes PDF searchable
\usepackage{babel}
\usepackage[latin9]{inputenc}
\usepackage{lmodern} % Latin Modern font
\usepackage[T1]{fontenc}
\usepackage{textcomp} % needed for fontenc
\usepackage[bookmarksnumbered,final]{easyoutput}
\usepackage[binding=0.8cm]{layaureo} % migliore copertura foglio A4 + margine rilegatura
\usepackage{indentfirst}
\usepackage{subfig}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage{amsmath, bm}
\usepackage[font={it}]{caption}
\usepackage{mwe}
\usepackage{tikz}
\makeindex
\usepackage[nottoc,notlof,notlot]{tocbibind} %aggiunge bibliografia nell'indice senza l'elenco delle immagini e tabelle
\usepackage{hyperref}
% righe sull'header delle pagine
\fancyhf{}
\lhead{\leftmark}
\rhead{\thepage}
\pagestyle{fancy}
% tabelle
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{tabulary}
\usepackage{pbox}
\usepackage{tablefootnote}
%%%% title and other stuff %%%%
\cleardoublepage
\pagenumbering{gobble}
\tableofcontents
\listoffigures
\listoftables
\input{dedica}
\input{introduzione}
\cleardoublepage
\pagenumbering{arabic}
\input{capitolo1}
\input{capitolo2}
\input{capitolo3}
\input{capitolo4}
\input{conclusioni}
\backmatter
\medskip
\bibliographystyle{unsrt-custom}
\bibliography{bibliografia}
\input{immagini}
\end{document}
\markboth{}{}\cleardoublepagebefore your\chapter*command, I assume – Jul 03 '16 at 21:06\chapter*{Introduzione} \markboth{}{}– touhami Jul 03 '16 at 21:10\chapter*{Introduzione} \markboth{Introduzione}{}. – esdd Jul 03 '16 at 21:46\markbothworks. Thank you all! – Shika93 Jul 03 '16 at 22:34bookclass? You would have much less issues and won't need manual adjustments. – egreg Jul 03 '16 at 22:52bookclass. I'll add the preamble even if you solved my problem – Shika93 Jul 04 '16 at 10:08