Discussione:
Prb tabella
(troppo vecchio per rispondere)
David Hilbert
2014-05-22 10:46:02 UTC
Permalink
Salve,

nella seguente tabella


\begin{table}[h]
\begin{center}
\begin{tabular}{>{\centering} m{.12\textwidth} | m{0.08\textwidth}*{6}{c}}
$x$ & [0,5[ & [5,10[ & [10,15[ & [15,20[ & [20,25[ & [25,30]
\tabularnewline
\hline
Frequency & 12 & 29 & 63 & 13 & 12 & 1
\end{tabular}
\end{center}
\end{table}


il 12 nella 2a riga non appare centrato orizzontalmente. Qualcuno puo'
suggerirmi come ovviare al problema?

Grazie, DH
Marco
2014-05-22 13:00:30 UTC
Permalink
Post by David Hilbert
Salve,
nella seguente tabella
\begin{table}[h]
\begin{center}
\begin{tabular}{>{\centering} m{.12\textwidth} |
m{0.08\textwidth}*{6}{c}}
$x$ & [0,5[ & [5,10[ & [10,15[ & [15,20[ & [20,25[ & [25,30]
\tabularnewline
\hline Frequency & 12 & 29 & 63 & 13 & 12 & 1 \end{tabular}
\end{center}
\end{table}
il 12 nella 2a riga non appare centrato orizzontalmente. Qualcuno puo'
suggerirmi come ovviare al problema?
Grazie, DH
Buongiorno,
penso che il \centering valga solo per la colonna per cui è
specificato: in questo caso è la prima. Per la seconda serve


\documentclass{article}
\usepackage{array}

\begin{document}

\begin{table}[h]
\begin{center}
\begin{tabular}{m{0.12\textwidth} | >{\centering}m{0.08\textwidth} *{6}
{c}}
$x$ & [0,5[ & [5,10[ & [10,15[ & [15,20[ & [20,25[ & [25,30]
\tabularnewline
\hline
Frequency & 12 & 29 & 63 & 13 & 12 & 1
\end{tabular}
\end{center}
\end{table}

\end{document}



Marco

Loading...