Re: table

#82656
Up
0
Down
::

frappask” post=82002Esegguo le tabelle in questo modo:

\begin{table}
\begin{threeparttable}
\caption{titolo}
\label{tab:table}
\centering
\begin{tabular}{l|ccc}
..
..
..
\end{tabular}
\footnotesize
\begin{tablenotes}
\item ***
\end{tablenotes}
\end{threeparttable}
\end{table}

L’output è buono ma non è centrato (in larghezza) nella pagina, ma è”allineato” a sinistra..come faccio a centrarlo?

grazie mille
Francesco

In questo modo:

`\begin{table}
\begin{threeparttable}
\caption[…]{…}
\label{tab:…}
\centering
\begin{tabular}{…}
\toprule

\midrule

\bottomrule
\end{tabular}
\begin{tablenotes}
\item […] {…}
\item […] {…}
\item […] {…}
\item […] {…}
\end{tablenotes}
\end{threeparttable}
\end{table}`

Ciao
Tommaso

Go to top