Re: Togliere didascalie tabelle

#66153
Up
0
Down
::

mattmich” post=65182Dato il seguente codice:
`\begin{table}[htbp]
\centering
\subtable[$\mathrm{U}_\mathrm{I}$]{
\renewcommand\arraystretch{1.1}
\begin{tabular}[t]{c|cc}
\multicolumn{1}{c|}{} &
\multicolumn{1}{c}{$R_\mathrm{I}$} &
\multicolumn{1}{c}{$N_\mathrm{I}$}\\
\hline
$X_1$ & 100 &0\\
$X_2$ & 0& 100\\
\end{tabular}
}\qquad\qquad
\subtable[$\mathrm{U}_\mathrm{II}$]{
\renewcommand\arraystretch{1.1}
\begin{tabular}[t]{c|cc}
\multicolumn{1}{c|}{} &
\multicolumn{1}{c}{$R_\mathrm{II}$}&
\multicolumn{1}{c}{$N_\mathrm{II}$} \\
\hline
$X_3$&100&0\\
$X_4$&0&100\\
\end{tabular}
}
\end{table}`

il quale produce, al di sopra delle tabelle, due didascalie denotate con (a) e con (b), volevo sapere come fare a togliere (a) e (b) lasciando solamente $\mathrm{U}_\mathrm{I}$ e $\mathrm{U}_\mathrm{II}$.

Grazie a tutti

Non ti occorre subtable, evidentemente.

`\begin{table}[htbp]
\centering
\renewcommand\arraystretch{1.1}
\begin{tabular}{c|cc}
\multicolumn{3}{c}{$\mathrm{U}_\mathrm{I}$}\\
\multicolumn{1}{c|}{} &
\multicolumn{1}{c}{$R_\mathrm{I}$} &
\multicolumn{1}{c}{$N_\mathrm{I}$}\\
\hline
$X_1$ & 100 &0\\
$X_2$ & 0& 100\\
\end{tabular}\qquad\qquad
\begin{tabular}{c|cc}
\multicolumn{3}{c}{$\mathrm{U}_\mathrm{I}$}\\
\multicolumn{1}{c|}{} &
\multicolumn{1}{c}{$R_\mathrm{II}$}&
\multicolumn{1}{c}{$N_\mathrm{II}$} \\
\hline
$X_3$&100&0\\
$X_4$&0&100\\
\end{tabular}
\end{table}`
Ciao
Enrico

Go to top