Questo è il preambolo:
`\documentclass[12pt]{suftesi}
\linespread{1.5}
\makeatletter
\renewcommand{\footnoterule}{\kern-3\p@ \hrule \@width 2in \kern 2.6\p@}
\makeatother
\usepackage{setspace}
\usepackage{geometry}
\geometry{a4paper,top=3cm,bottom=3cm,left=3.0cm,right=3.0cm,%
heightrounded,bindingoffset=5mm}
\setlength{\skip\footins}{20ex plus 4pt minus 2pt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}% Pay attention to the input encoding!
\usepackage[polutonikogreek,german,english,italian]{babel}
\usepackage{graphicx}
\graphicspath{{Immagini/}}
\usepackage{booktabs}
\usepackage[italian]{varioref}
\usepackage{lipsum}
% index
\usepackage{makeidx}
\addto\captionsitalian{\renewcommand{\indexname}{Indice dei nomi}}
\makeindex
% bibliography
\usepackage[italian=guillemets]{csquotes}
\usepackage[
style=philosophy-classic,%philosophy-modern, philosophy-verbose
]{biblatex}
\bibliography{bibliografia}
% the frontispiece
\usepackage[suftesi]{frontespizio}%
% Cross refereces
\usepackage{hyperref}% needed to use the \chapterintro command
\hypersetup{colorlinks=true,citecolor=blue,draft=true}
\author{The author}
\title{The title}
\newenvironment{citazione}
{\begin{quotation}\footnotesize}
{\end{quotation}}
`
Questa la situazione attuale per quel pezzo che vorrei modificare:
`\begin{figure}[p]
\begin{citazione}
xxx\footcite{y}
\end{citazione}
\end{figure}
\clearpage`
Situazione alla quale vorrei arrivare:
`\begin{citazione}
xxx\footcite{y}
\end{citazione}
\clearpage`
Purtroppo il testo se tolto dall’ambiente figure, che mantiene l’interlinea 1, non ci sta in una sola pagina.
Grazie!