Graphics, Figures & TablesTable: define ordering as Table 1.1 instead Table 1.I

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
marcio
Posts: 4
Joined: Wed Nov 04, 2009 8:00 pm

Table: define ordering as Table 1.1 instead Table 1.I

Post by marcio »

Hi listers,
Is there a way that I can define the ordering of a table as "Table 1.1" instead of "Table 1.I". I would like to use just numbers at the ordering instead of roman numbers. I put the code of my table below, but I suppose that I might define this in another command.
Thanks in advance.
Marcio

Code: Select all

\begin{center} 
\begin{table}[!ht] \footnotesize
\caption{Mean, bias, variance, relative bias and relative stability for the mean, median, quantile (0.9) and Gini coefficient, by bootstrap method, for the Sarndal population under simple random sampling without replacement}
\scalebox{1}{
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}} l r r r r r } \hline
Bootstrap Method & Mean & Bias & Variance & Rel. Bias & Rel. Stab. \\ \hline
MEAN &  &  &  &  &  \\
RWOriginal & 245.489 & -0.042 & 1,263.892 & 0.052 & 0.579 \\
RWY & 245.489 & -0.042 & 1,263.892 & 0.052 & 0.579 \\ \hline
MEDIAN &  &  &  &  &  \\
RWOriginal & 152.936 & 38.470 & 77.246 & -0.029 & 0.357 \\
RWAdjusted & 114.548 & 0.082 & 77.246 & -0.029 & 0.357 \\
RWY & 114.342 & -0.123 & 79.413 & -0.002 & 0.386 \\ \hline
QUANTILE 0.9 &  &  &  &  &  \\
RWOriginal & 403.677 & -62.819 & 3,314.985 & 0.224 & 0.568 \\
RWAdjusted & 468.396 & 1.900 & 3,314.985 & 0.224 & 0.568 \\
RWY & 476.286 & 9.791 & 3,446.309 & 0.273 & 0.718 \\ \hline
GINI &  &  &  &  &  \\
RWOriginal & 0.400 & -0.183 & 0.005 & 0.613 & 0.930 \\
RWY & 0.575 & -0.008 & 0.002 & -0.203 & 0.345 \\ \hline
\end{tabular*}}
Note: The results are based on 1,000 samples, and for each sample 999 bootstrap replicates.
\end{table}
\end{center}\

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Re: Table: define ordering as Table 1.1 instead Table 1.I

Post by gmedina »

Using standard LaTeX and a standard document class there should be no roman numerals in the tables numbering. We will need some complete, compilable, and minimal code showing the mentioned numbering schema.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply