Yes, I'm sorry!
Here you are some examples and what I get.
Example1:
Code: Select all
\documentclass[12 pt, a4paper]{book}
\usepackage[a4paper,top=3.4cm,bottom=3.4cm,left=2.5cm,right=2.5cm,%
heightrounded,bindingoffset=5mm]{geometry}
\usepackage[latin1]{inputenc}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage{graphicx, subfigure}}
\usepackage[font={small, it},format=hang]{caption}
\usepackage{wrapfig}
\usepackage{amsmath}
\usepackage{siunitx}
\setlength{\parindent}{0.5cm}
\titleformat{\chapter}
{\bfseries\LARGE}
{\filright\thechapter}
{0pt}
{\quad}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyfoot[RO,LE]{\thepage}
\fancyhead[LE]{{\small \leftmark}} % even pages!
\fancyhead[RO]{{\small \rightmark}} % odd pages!
\begin{document}
\chapter*{Introduzione}
Al di l\`a delle loro importanti applicazioni tecnologiche ...
\end{document}
Example2:
Code: Select all
\documentclass[12 pt, a4paper]{book}
\usepackage[a4paper,top=3.4cm,bottom=3.4cm,left=2.5cm,right=2.5cm,%
heightrounded,bindingoffset=5mm]{geometry}
\usepackage[latin1]{inputenc}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage{graphicx, subfigure}}
\usepackage[font={small, it},format=hang]{caption}
\usepackage{wrapfig}
\usepackage{amsmath}
\usepackage{siunitx}
\setlength{\parindent}{0.5cm}
\titleformat{\chapter}
{\bfseries\LARGE}
{\filright\thechapter}
{0pt}
{\quad}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyfoot[RO,LE]{\thepage}
\fancyhead[LE]{{\small \leftmark}} % even pages!
\fancyhead[RO]{{\small \rightmark}} % odd pages!
\begin{document}
\chapter{Introduzione}
Al di l\`a delle loro importanti applicazioni tecnologiche ...
\end{document}
But, even not using fancyhdr package as in Example3:
Code: Select all
\documentclass[12 pt, a4paper]{book}
\usepackage[a4paper,top=3.4cm,bottom=3.4cm,left=2.5cm,right=2.5cm,%
heightrounded,bindingoffset=5mm]{geometry}
\usepackage[latin1]{inputenc}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage{graphicx, subfigure}}
\usepackage[font={small, it},format=hang]{caption}
\usepackage{wrapfig}
\usepackage{amsmath}
\usepackage{siunitx}
\setlength{\parindent}{0.5cm}
\titleformat{\chapter}
{\bfseries\LARGE}
{\filright\thechapter}
{0pt}
{\quad}
\begin{document}
\chapter*{Introduzione}
Al di l\`a delle loro importanti applicazioni tecnologiche ...
\end{document}
I get
that shows the same problem.
Thank you Thorsten