scusa ho commesso un errore…nel mio messaggio precedente.
`
\documentclass[11 pt,twoside,letter]{article}%% The same for {book}
\usepackage{mathptmx,fancyhdr}
\usepackage[round]{natbib} % occorre inserire anche il file di stile della bibliog in italiano da me modificato, nella stessa cartella
\usepackage[italian]{babel}
\usepackage[latin1]{inputenc}
\usepackage{rotating}
\usepackage{layout}
\usepackage{url}
\usepackage{longtable}
\usepackage{hyperref}
\usepackage{booktabs}
\usepackage{float}
\floatstyle{ruled}
\restylefloat{figure}
%———– [per didascalia tabelle inserisco \usepackage{booktabs} e quanto segue]———
%———–%———–%———–%———–%———–%———–%———–
%———– 7×10 Regular, 8.5 x 5.5] ———————
\setlength{\topmargin}{-0.35in}
\setlength{\textheight}{7 in} % 11.0 – 1.125 – 0.875
\setlength{\textwidth}{4.8 in} % 8.5 – 1.375 – 1.125
\setlength{\oddsidemargin}{0.5in}
\setlength{\evensidemargin}{0.5in}
\setlength{\headheight}{26pt}
\setlength{\headsep}{8pt} %—————————————————————————–
%[Float at the top formula]
\makeatletter
\setlength\@fptop{0\p@}
\makeatother
% [Clears Header Style on the Last Empty Odd pages]
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else%
\hbox{}%
\thispagestyle{empty}%
\newpage%
\if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother
\renewcommand{\thesection}{\arabic{section}.}
\renewcommand{\thesubsection}{\thesection\arabic{subsection}.}
\renewcommand{\thesubsubsection}{\thesubsection\arabic{subsubsection}.}
\def\figurename{Figure}
\makeatletter
\renewcommand{\fnum@figure}{\figurename\nobreakspace\thefigure.}
%\renewcommand{\fnum@figure}[1]{\figurename~\thefigure.}
\makeatother
\def\tablename{Table}
\makeatletter
\renewcommand{\fnum@table}{\tablename\nobreakspace\thetable.}
%\renewcommand{\fnum@table}[1]{\tablename~\thetable.}
\makeatother
%_____________________________
\makeatletter
\newsavebox{\@tabparbox}
\newenvironment{tabpar}[3][t]
{\long\def\@tabparagraph{#3}\def\@tabparopt{#1}%
\begin{lrbox}{\@tabparbox}
\begin{tabular}{#2}}
{\end{tabular}\end{lrbox}%
\parbox{\wd\@tabparbox}{
\if t\@tabparopt
\@tabparagraph\par\smallskip
\fi
\usebox{\@tabparbox}\par
\if b\@tabparopt
\smallskip\@tabparagraph
\fi}}
\makeatother
%___________________________
\begin{document}
%——————————————————————————
% ———— [Running Heads – for odd and even pages] – please insert it only on page 2!
\pagestyle{fancy}
\fancyhead{}
\fancyhead[EC]{Monica Auteri }
\fancyhead[EL,OR]{\thepage}
\fancyhead[OC]{Il controllo della spesa sanitaria }
\fancyfoot{}
\renewcommand\headrulewidth{0.5pt}
%——————————————————————————
%++—————————————————————————–
.
\begin{table}
\centering
\caption{Didascalia sopra la tabella \label{tab:stat1}}
\begin{tabpar}{ccc}
{bla bla bla bla testo che va sotto la tabella bla bla.}
\toprule
Una tabella & con tre colonne & centrate\\
per & vedere & come viene fuori il tutto\\
\bottomrule
\end{tabpar}
\end{table}
\end{document}
`