Table - longer numbers
up vote
6
down vote
favorite
How to center please the last cell ?
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
How to write longer number to table? Multicolumns are not connected to the below part? Thank you
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e} % new
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}footnotesize
begin{tabularx}{textwidth}{@{} L d{3.2} d{1.2} d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj &
mc{$P$} &
mc{$T_0$} &
mc{$e$} &
mc{$omega$} &
mc{$i$} &
mc{$a$} &
mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& mc{(dny)}
& mc{(RJD)}
& mc{}
& mc{($ {rm ^circ}$)}
& mc{($ {rm ^circ}$)}
& mc{($ {rm R_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
EDIT
Where do I please make mistake when I want to delete two columns?
I have this code?
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
I eddited in bad way:
documentclass[12pt,a4paper]{report}
usepackage[english,czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}small
setlengthtabcolsep{3pt}
begin{tabularx}{textwidth}{@{} L cc c c *{2}{c} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} & mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} & multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
1 & 5,732436(15) & 54002,780(46) & 0,0910(37) & 12.345 & 123.45 & 123.45 \
bottomrule
addlinespace
multicolumn{6}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
tables
|
show 2 more comments
up vote
6
down vote
favorite
How to center please the last cell ?
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
How to write longer number to table? Multicolumns are not connected to the below part? Thank you
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e} % new
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}footnotesize
begin{tabularx}{textwidth}{@{} L d{3.2} d{1.2} d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj &
mc{$P$} &
mc{$T_0$} &
mc{$e$} &
mc{$omega$} &
mc{$i$} &
mc{$a$} &
mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& mc{(dny)}
& mc{(RJD)}
& mc{}
& mc{($ {rm ^circ}$)}
& mc{($ {rm ^circ}$)}
& mc{($ {rm R_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
EDIT
Where do I please make mistake when I want to delete two columns?
I have this code?
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
I eddited in bad way:
documentclass[12pt,a4paper]{report}
usepackage[english,czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}small
setlengthtabcolsep{3pt}
begin{tabularx}{textwidth}{@{} L cc c c *{2}{c} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} & mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} & multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
1 & 5,732436(15) & 54002,780(46) & 0,0910(37) & 12.345 & 123.45 & 123.45 \
bottomrule
addlinespace
multicolumn{6}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
tables
Inmulticolumn{1}{c@{}}{$M_1$}
... what does@{}
do?
– Johannes_B
Nov 25 at 7:58
Can you explain what the numbers ind{2.3}
are meaning? I don't have the documentation at hand.
– Johannes_B
Nov 25 at 8:07
@Johannes_B - the@{}
particle is there to suppress whitespace padding which would otherwise be inserted by LaTeX. The numerals before and after the decimal marker ind{2.3}
signify the number of digits to be set aside by LaTeX.
– Mico
Nov 25 at 8:07
@Mico I know. I asked Elisabeth to explain it to me.
– Johannes_B
Nov 25 at 8:08
3
@Mico Indeed. I want to encourage her to think about the problem she has. Thinking is crucial to learn. Imho
– Johannes_B
Nov 25 at 8:11
|
show 2 more comments
up vote
6
down vote
favorite
up vote
6
down vote
favorite
How to center please the last cell ?
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
How to write longer number to table? Multicolumns are not connected to the below part? Thank you
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e} % new
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}footnotesize
begin{tabularx}{textwidth}{@{} L d{3.2} d{1.2} d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj &
mc{$P$} &
mc{$T_0$} &
mc{$e$} &
mc{$omega$} &
mc{$i$} &
mc{$a$} &
mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& mc{(dny)}
& mc{(RJD)}
& mc{}
& mc{($ {rm ^circ}$)}
& mc{($ {rm ^circ}$)}
& mc{($ {rm R_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
EDIT
Where do I please make mistake when I want to delete two columns?
I have this code?
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
I eddited in bad way:
documentclass[12pt,a4paper]{report}
usepackage[english,czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}small
setlengthtabcolsep{3pt}
begin{tabularx}{textwidth}{@{} L cc c c *{2}{c} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} & mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} & multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
1 & 5,732436(15) & 54002,780(46) & 0,0910(37) & 12.345 & 123.45 & 123.45 \
bottomrule
addlinespace
multicolumn{6}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
tables
How to center please the last cell ?
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
How to write longer number to table? Multicolumns are not connected to the below part? Thank you
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e} % new
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}footnotesize
begin{tabularx}{textwidth}{@{} L d{3.2} d{1.2} d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj &
mc{$P$} &
mc{$T_0$} &
mc{$e$} &
mc{$omega$} &
mc{$i$} &
mc{$a$} &
mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& mc{(dny)}
& mc{(RJD)}
& mc{}
& mc{($ {rm ^circ}$)}
& mc{($ {rm ^circ}$)}
& mc{($ {rm R_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
& mc{($ {rm M_{odot}}$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
EDIT
Where do I please make mistake when I want to delete two columns?
I have this code?
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
I eddited in bad way:
documentclass[12pt,a4paper]{report}
usepackage[english,czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}small
setlengthtabcolsep{3pt}
begin{tabularx}{textwidth}{@{} L cc c c *{2}{c} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} & mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} & multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
1 & 5,732436(15) & 54002,780(46) & 0,0910(37) & 12.345 & 123.45 & 123.45 \
bottomrule
addlinespace
multicolumn{6}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
tables
tables
edited Nov 25 at 10:37
asked Nov 25 at 7:49
Elisabeth
3206
3206
Inmulticolumn{1}{c@{}}{$M_1$}
... what does@{}
do?
– Johannes_B
Nov 25 at 7:58
Can you explain what the numbers ind{2.3}
are meaning? I don't have the documentation at hand.
– Johannes_B
Nov 25 at 8:07
@Johannes_B - the@{}
particle is there to suppress whitespace padding which would otherwise be inserted by LaTeX. The numerals before and after the decimal marker ind{2.3}
signify the number of digits to be set aside by LaTeX.
– Mico
Nov 25 at 8:07
@Mico I know. I asked Elisabeth to explain it to me.
– Johannes_B
Nov 25 at 8:08
3
@Mico Indeed. I want to encourage her to think about the problem she has. Thinking is crucial to learn. Imho
– Johannes_B
Nov 25 at 8:11
|
show 2 more comments
Inmulticolumn{1}{c@{}}{$M_1$}
... what does@{}
do?
– Johannes_B
Nov 25 at 7:58
Can you explain what the numbers ind{2.3}
are meaning? I don't have the documentation at hand.
– Johannes_B
Nov 25 at 8:07
@Johannes_B - the@{}
particle is there to suppress whitespace padding which would otherwise be inserted by LaTeX. The numerals before and after the decimal marker ind{2.3}
signify the number of digits to be set aside by LaTeX.
– Mico
Nov 25 at 8:07
@Mico I know. I asked Elisabeth to explain it to me.
– Johannes_B
Nov 25 at 8:08
3
@Mico Indeed. I want to encourage her to think about the problem she has. Thinking is crucial to learn. Imho
– Johannes_B
Nov 25 at 8:11
In
multicolumn{1}{c@{}}{$M_1$}
... what does @{}
do?– Johannes_B
Nov 25 at 7:58
In
multicolumn{1}{c@{}}{$M_1$}
... what does @{}
do?– Johannes_B
Nov 25 at 7:58
Can you explain what the numbers in
d{2.3}
are meaning? I don't have the documentation at hand.– Johannes_B
Nov 25 at 8:07
Can you explain what the numbers in
d{2.3}
are meaning? I don't have the documentation at hand.– Johannes_B
Nov 25 at 8:07
@Johannes_B - the
@{}
particle is there to suppress whitespace padding which would otherwise be inserted by LaTeX. The numerals before and after the decimal marker in d{2.3}
signify the number of digits to be set aside by LaTeX.– Mico
Nov 25 at 8:07
@Johannes_B - the
@{}
particle is there to suppress whitespace padding which would otherwise be inserted by LaTeX. The numerals before and after the decimal marker in d{2.3}
signify the number of digits to be set aside by LaTeX.– Mico
Nov 25 at 8:07
@Mico I know. I asked Elisabeth to explain it to me.
– Johannes_B
Nov 25 at 8:08
@Mico I know. I asked Elisabeth to explain it to me.
– Johannes_B
Nov 25 at 8:08
3
3
@Mico Indeed. I want to encourage her to think about the problem she has. Thinking is crucial to learn. Imho
– Johannes_B
Nov 25 at 8:11
@Mico Indeed. I want to encourage her to think about the problem she has. Thinking is crucial to learn. Imho
– Johannes_B
Nov 25 at 8:11
|
show 2 more comments
2 Answers
2
active
oldest
votes
up vote
6
down vote
accepted
The particle
$M_1$
is actually placed correctly at the moment. (Recall that whitespace padding at both edges of the table is suppressed, courtesy of the@{}
particles.) It's themc{($ {rm M_{odot}}$)}
item that is not placed correctly. Just as you did for the case of
multicolumn{1}{c@{}}{$M_1$}
you have to write
multicolumn{1}{c@{}}{($(mathrm{M}_{odot}$)}
in order to get the placement just right.
Note that
{rm ...}
is badly deprecated in LaTeX documents. Don't use is. Intead, writemathrm{...}
.
The
d
column type is meant to be employed if the numbers in the column need to be aligned on their decimal markers. If that's not the case, you shouldn't even be using thed
column type. You haven't provided much information about the actual types of numbers that may occur in columns 2 and 3. Absent more specific information, all I can assume is that simple centering (via thec
column type) is fine for these two columns.
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}
setlengthtabcolsep{3pt} % default: 6pt
%footnotesize % Don't use footnotesize unless you want to make the material difficult to read
begin{tabularx}{textwidth}{@{} L cc d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} &
mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($^circ$)}
& mc{($mathrm{R}_{odot}$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
Bla bla bla bla bla bla
& 5,732436(15) & 54002,780(46)
& 12.345 & 12.345 & 123.45 & 123.45 & 123.45 & 123.45\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Thank you very much It works when I haveusepackage[czech,english]{babel}
but not when I haveusepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?
– Elisabeth
Nov 25 at 9:45
1
@Elisabeth - Did you tryusepackage[english,czech]{babel}
?
– Mico
Nov 25 at 9:48
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
add a comment |
up vote
2
down vote
I suggest using siunitx
, which covers much more than dcolumn
does.
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Note that rm
has been deprecated for more than 20 years. The correct syntax is mathrm{M}_{odot}
, but I added a couple of new commands for ease of input.
See also Slovak (and Czech) babel gives problems with cmidrule and cline for problems with cmidrule
.
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
2
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
accepted
The particle
$M_1$
is actually placed correctly at the moment. (Recall that whitespace padding at both edges of the table is suppressed, courtesy of the@{}
particles.) It's themc{($ {rm M_{odot}}$)}
item that is not placed correctly. Just as you did for the case of
multicolumn{1}{c@{}}{$M_1$}
you have to write
multicolumn{1}{c@{}}{($(mathrm{M}_{odot}$)}
in order to get the placement just right.
Note that
{rm ...}
is badly deprecated in LaTeX documents. Don't use is. Intead, writemathrm{...}
.
The
d
column type is meant to be employed if the numbers in the column need to be aligned on their decimal markers. If that's not the case, you shouldn't even be using thed
column type. You haven't provided much information about the actual types of numbers that may occur in columns 2 and 3. Absent more specific information, all I can assume is that simple centering (via thec
column type) is fine for these two columns.
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}
setlengthtabcolsep{3pt} % default: 6pt
%footnotesize % Don't use footnotesize unless you want to make the material difficult to read
begin{tabularx}{textwidth}{@{} L cc d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} &
mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($^circ$)}
& mc{($mathrm{R}_{odot}$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
Bla bla bla bla bla bla
& 5,732436(15) & 54002,780(46)
& 12.345 & 12.345 & 123.45 & 123.45 & 123.45 & 123.45\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Thank you very much It works when I haveusepackage[czech,english]{babel}
but not when I haveusepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?
– Elisabeth
Nov 25 at 9:45
1
@Elisabeth - Did you tryusepackage[english,czech]{babel}
?
– Mico
Nov 25 at 9:48
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
add a comment |
up vote
6
down vote
accepted
The particle
$M_1$
is actually placed correctly at the moment. (Recall that whitespace padding at both edges of the table is suppressed, courtesy of the@{}
particles.) It's themc{($ {rm M_{odot}}$)}
item that is not placed correctly. Just as you did for the case of
multicolumn{1}{c@{}}{$M_1$}
you have to write
multicolumn{1}{c@{}}{($(mathrm{M}_{odot}$)}
in order to get the placement just right.
Note that
{rm ...}
is badly deprecated in LaTeX documents. Don't use is. Intead, writemathrm{...}
.
The
d
column type is meant to be employed if the numbers in the column need to be aligned on their decimal markers. If that's not the case, you shouldn't even be using thed
column type. You haven't provided much information about the actual types of numbers that may occur in columns 2 and 3. Absent more specific information, all I can assume is that simple centering (via thec
column type) is fine for these two columns.
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}
setlengthtabcolsep{3pt} % default: 6pt
%footnotesize % Don't use footnotesize unless you want to make the material difficult to read
begin{tabularx}{textwidth}{@{} L cc d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} &
mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($^circ$)}
& mc{($mathrm{R}_{odot}$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
Bla bla bla bla bla bla
& 5,732436(15) & 54002,780(46)
& 12.345 & 12.345 & 123.45 & 123.45 & 123.45 & 123.45\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Thank you very much It works when I haveusepackage[czech,english]{babel}
but not when I haveusepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?
– Elisabeth
Nov 25 at 9:45
1
@Elisabeth - Did you tryusepackage[english,czech]{babel}
?
– Mico
Nov 25 at 9:48
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
add a comment |
up vote
6
down vote
accepted
up vote
6
down vote
accepted
The particle
$M_1$
is actually placed correctly at the moment. (Recall that whitespace padding at both edges of the table is suppressed, courtesy of the@{}
particles.) It's themc{($ {rm M_{odot}}$)}
item that is not placed correctly. Just as you did for the case of
multicolumn{1}{c@{}}{$M_1$}
you have to write
multicolumn{1}{c@{}}{($(mathrm{M}_{odot}$)}
in order to get the placement just right.
Note that
{rm ...}
is badly deprecated in LaTeX documents. Don't use is. Intead, writemathrm{...}
.
The
d
column type is meant to be employed if the numbers in the column need to be aligned on their decimal markers. If that's not the case, you shouldn't even be using thed
column type. You haven't provided much information about the actual types of numbers that may occur in columns 2 and 3. Absent more specific information, all I can assume is that simple centering (via thec
column type) is fine for these two columns.
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}
setlengthtabcolsep{3pt} % default: 6pt
%footnotesize % Don't use footnotesize unless you want to make the material difficult to read
begin{tabularx}{textwidth}{@{} L cc d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} &
mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($^circ$)}
& mc{($mathrm{R}_{odot}$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
Bla bla bla bla bla bla
& 5,732436(15) & 54002,780(46)
& 12.345 & 12.345 & 123.45 & 123.45 & 123.45 & 123.45\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
The particle
$M_1$
is actually placed correctly at the moment. (Recall that whitespace padding at both edges of the table is suppressed, courtesy of the@{}
particles.) It's themc{($ {rm M_{odot}}$)}
item that is not placed correctly. Just as you did for the case of
multicolumn{1}{c@{}}{$M_1$}
you have to write
multicolumn{1}{c@{}}{($(mathrm{M}_{odot}$)}
in order to get the placement just right.
Note that
{rm ...}
is badly deprecated in LaTeX documents. Don't use is. Intead, writemathrm{...}
.
The
d
column type is meant to be employed if the numbers in the column need to be aligned on their decimal markers. If that's not the case, you shouldn't even be using thed
column type. You haven't provided much information about the actual types of numbers that may occur in columns 2 and 3. Absent more specific information, all I can assume is that simple centering (via thec
column type) is fine for these two columns.
documentclass[12pt,a4paper]{report}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{icomma,dcolumn,booktabs}
newcommand{mc}[1]{multicolumn{1}{c}{#1}}
usepackage{tabularx,ragged2e}
newcolumntype{d}[1]{D{.}{,}{#1}}
newcolumntype{L}{>{RaggedRightarraybackslash}X}
begin{document}
begin{table}
setlengthtabcolsep{3pt} % default: 6pt
%footnotesize % Don't use footnotesize unless you want to make the material difficult to read
begin{tabularx}{textwidth}{@{} L cc d{2.3} d{2.3} *{4}{d{3.2}} @{}}
toprule
Zdroj & $P$ & $T_0$ & mc{$e$} &
mc{$omega$} & mc{$i$} & mc{$a$} & mc{$a$} &
multicolumn{1}{c@{}}{$M_1$} \[0.33ex]
& (dny) & (RJD) & & mc{($^circ$)} & mc{($^circ$)}
& mc{($mathrm{R}_{odot}$)} & mc{($mathrm{M}_{odot}$)} & multicolumn{1}{c@{}}{($mathrm{M}_{odot}$)} \
midrule
Bla bla bla bla bla bla
& 5,732436(15) & 54002,780(46)
& 12.345 & 12.345 & 123.45 & 123.45 & 123.45 & 123.45\
bottomrule
addlinespace
multicolumn{8}{@{}l}{footnotesizetextit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabularx}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
answered Nov 25 at 8:33
Mico
271k30367755
271k30367755
Thank you very much It works when I haveusepackage[czech,english]{babel}
but not when I haveusepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?
– Elisabeth
Nov 25 at 9:45
1
@Elisabeth - Did you tryusepackage[english,czech]{babel}
?
– Mico
Nov 25 at 9:48
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
add a comment |
Thank you very much It works when I haveusepackage[czech,english]{babel}
but not when I haveusepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?
– Elisabeth
Nov 25 at 9:45
1
@Elisabeth - Did you tryusepackage[english,czech]{babel}
?
– Mico
Nov 25 at 9:48
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
Thank you very much It works when I have
usepackage[czech,english]{babel}
but not when I have usepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?– Elisabeth
Nov 25 at 9:45
Thank you very much It works when I have
usepackage[czech,english]{babel}
but not when I have usepackage[czech]{babel}
and when I have the first variant it works, but I have names of tableofcontents, listoffigures in final .pdf file in english. How it change please?– Elisabeth
Nov 25 at 9:45
1
1
@Elisabeth - Did you try
usepackage[english,czech]{babel}
?– Mico
Nov 25 at 9:48
@Elisabeth - Did you try
usepackage[english,czech]{babel}
?– Mico
Nov 25 at 9:48
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
Thank you for your help.
– Elisabeth
Nov 25 at 9:53
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
How can I plese delete two of columns? I eddited the question.
– Elisabeth
Nov 25 at 10:38
add a comment |
up vote
2
down vote
I suggest using siunitx
, which covers much more than dcolumn
does.
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Note that rm
has been deprecated for more than 20 years. The correct syntax is mathrm{M}_{odot}
, but I added a couple of new commands for ease of input.
See also Slovak (and Czech) babel gives problems with cmidrule and cline for problems with cmidrule
.
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
2
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
add a comment |
up vote
2
down vote
I suggest using siunitx
, which covers much more than dcolumn
does.
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Note that rm
has been deprecated for more than 20 years. The correct syntax is mathrm{M}_{odot}
, but I added a couple of new commands for ease of input.
See also Slovak (and Czech) babel gives problems with cmidrule and cline for problems with cmidrule
.
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
2
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
add a comment |
up vote
2
down vote
up vote
2
down vote
I suggest using siunitx
, which covers much more than dcolumn
does.
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Note that rm
has been deprecated for more than 20 years. The correct syntax is mathrm{M}_{odot}
, but I added a couple of new commands for ease of input.
See also Slovak (and Czech) babel gives problems with cmidrule and cline for problems with cmidrule
.
I suggest using siunitx
, which covers much more than dcolumn
does.
documentclass[12pt,a4paper]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[czech]{babel}
usepackage[margin=2.5cm]{geometry} % choose suitable text block parameters
usepackage{lmodern,textcomp}
usepackage{amsmath,amssymb,bm}
usepackage[nottoc]{tocbibind}
usepackage{booktabs,siunitx}
newcommand{Mo}{mathrm{M}_{odot}}
newcommand{Ro}{mathrm{R}_{odot}}
begin{document}
begin{table}
footnotesize
begin{tabular*}{textwidth}{
@{extracolsep{fill}}
l
S[table-format=1.6(2)]
S[table-format=5.3(2)]
S[table-format=2.3]
*{5}{S[table-format=3.2]}
@{}
}
toprule
Zdroj &
{$P$} &
{$T_0$} &
{$e$} &
{$omega$} &
{$i$} &
{$a$} &
{$a$} &
{$M_1$} \[0.33ex]
& {(dny)}
& {(RJD)}
& {}
& {(${}^circ$)}
& {(${}^circ$)}
& {($Ro$)}
& {($Mo$)}
& {($Mo$)}
\
midrule
1 & 5,732436(15) & 54002,780(46) & 12.345 & 123.45 & 123.45 & 123.45 & 123.45 &\
bottomrule
addlinespace
multicolumn{9}{@{}l}{textit{Pozn:} $^a$ Směrodatná chyba odhadu metodou Monte Carlo.}
end{tabular*}
caption{Maximálně věrohodné odhady v~modelu M.}label{tab03:Nejaka}
end{table}
end{document}
Note that rm
has been deprecated for more than 20 years. The correct syntax is mathrm{M}_{odot}
, but I added a couple of new commands for ease of input.
See also Slovak (and Czech) babel gives problems with cmidrule and cline for problems with cmidrule
.
answered Nov 25 at 10:16
egreg
701k8618703144
701k8618703144
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
2
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
add a comment |
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
2
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
I have a problem with siunitx package [1]: i.stack.imgur.com/AMsXQ.png
– Elisabeth
Nov 25 at 10:31
2
2
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
@Elisabeth You have to update your TeX system.
– egreg
Nov 25 at 10:33
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461658%2ftable-longer-numbers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
In
multicolumn{1}{c@{}}{$M_1$}
... what does@{}
do?– Johannes_B
Nov 25 at 7:58
Can you explain what the numbers in
d{2.3}
are meaning? I don't have the documentation at hand.– Johannes_B
Nov 25 at 8:07
@Johannes_B - the
@{}
particle is there to suppress whitespace padding which would otherwise be inserted by LaTeX. The numerals before and after the decimal marker ind{2.3}
signify the number of digits to be set aside by LaTeX.– Mico
Nov 25 at 8:07
@Mico I know. I asked Elisabeth to explain it to me.
– Johannes_B
Nov 25 at 8:08
3
@Mico Indeed. I want to encourage her to think about the problem she has. Thinking is crucial to learn. Imho
– Johannes_B
Nov 25 at 8:11