Non se ne può più di quell’obbrobrio di [tt]\fncyblank[/tt].
Ecco qui, naturalmente fronte-retro come si deve per rispettare l’ambiente.
`
\documentclass[a4paper,12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
%\usepackage{geometry}
\usepackage{titlesec}
\usepackage{tocloft}
\usepackage{fancyhdr}
\usepackage{emptypage} % pagine bianche proprio bianche
\usepackage{lipsum} % testo riempitivo
% tocloft
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
% titlesec
\titleformat{\chapter}[display]
{\filright\normalfont\huge\bfseries}
{}
{0pt}
{\thechapter.\ }
\titleformat{name=\chapter,numberless}[display]
{\filright\normalfont\huge\bfseries}
{}
{0pt}
{}
\renewcommand{\chaptermark}[1]{\markboth{\thechapter.\ #1}{}}
% fancyhdr
\setlength{\headheight}{14.5pt}
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\fancyhead[LO]{\scshape\nouppercase{\leftmark}}
\fancyhead[RE]{\scshape\nouppercase{\rightmark}}
\fancyhead[RO,LE]{\thepage}
\pagestyle{fancy}
% comandi personali
\newenvironment{abstract}
{%
\cleardoublepage % comincia a pagina dispari
\pagestyle{empty} % niente testatine né piè di pagina
\vspace*{\fill} % spazio verticale
\begin{center}\bfseries \abstractname\end{center}
}
{\vspace*{\fill}}
% impostazioni finali
\doublespacing
\begin{document}
%\pagenumbering{Alph} % non turbiamo hyperref
\begin{titlepage}
\lipsum[1][1-2]
\end{titlepage}
\begin{abstract}
\lipsum[2]
\end{abstract}
\cleardoublepage
\pagenumbering{arabic}
\tableofcontents
\chapter{Introduction}
\label{0}
\lipsum[3]
\section{Title}
\lipsum[4-8]
\chapter{Conclusion}
\label{1}
\section{Title}
\lipsum[9-13]
\end{document}
`
È quello che volevi?
Ciao
Enrico