您能告诉我如何在使用包的列类型的表中将括号 --(
和-- 用作普通符号吗?)
S
siunitx
我希望在“单元格”中有一些点估计,然后是它们的标准误差或相关的 t 统计量,通常写在括号内。
我这样做了,但我得到了一个括号中的数字 1.90
\begin{table}
\sisetup{table-format=2.1}
\setlength{\tabcolsep}{3pt}
\resizebox{\linewidth}{!}{%
\begin{tabular}{ l SSSSSS }
\toprule
& \multicolumn{5}{c}{$\min(V), K$} \\
\cmidrule(lr){2-7}
real $\mu,\sigma\ \times 10^{-3}$
& {$(10,30)$} & {$(-5,30)$} & {$(5,30)$} & {$(5,150)$} & {$(-5,150)$} & {$(50,150)$} \\
\midrule
\multicolumn{1}{l}{mu} & 0.01 & -0.005 & 0.005 & 0.01 & -0.005 & 0.05 \\
\multicolumn{1}{l}{sigma} & 0.03 & 0.03 & 0.03 & 0.15 & 0.15 & 0.15 \\
\midrule
\multicolumn{1}{l}{proxy} & 0.02960 & 0.02957 & 0.0299 & 0.1494 & 0.1491 & 0.1489 \\
$\times 10^{-4}$ & (1.90) & 1.73 & 2.39 & 8.66 & 9.99 & 9.14 \\
\multicolumn{1}{l}{system} & 0.0302 & 0.0299 & 0.0303 & 0.1582 & 0.2591 & 0.1693 \\
$\times 10^{-4}$ & 3.54 & 2.47 & 2.80 & 37.4 & 209 & 518 \\
& & & & & & \\
\multicolumn{1}{l}{duan} & 0.02975 & 0.02970 & 0.0300 & 0.1486 & 0.1492 & 0.1462 \\
$\times 10^{-4}$ & 1.89 & 1.73 & 2.42 & 9.44 & 10 & 9.2 \\
\bottomrule
\end{tabular}%
}
\caption{ CAPTION}
\label{tab:111}
\end{table}
答案1
您需要指示siunitx
包将(
和)
视为“普通”输入符号。这可以通过提供指令来实现
\sisetup{input-symbols = {()}}
以下是修改后的表格,其中应用了一些格式调整:
\documentclass{article}
\usepackage{siunitx,graphicx,booktabs}
\sisetup{input-symbols = {()} , group-digits = false}
\begin{document}
\begin{table}
\sisetup{table-format=2.5} % default format for 'S' columns
\setlength{\tabcolsep}{0pt}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}
l SS *{4}{S[table-format=-1.4]}}
\toprule
& \multicolumn{6}{c}{$\min(V), K$} \\
\cmidrule{2-7}
real $\mu$, $\sigma$ $\times 10^{-3}$
& {$(10,30)$} & {$(-5,30)$} & {$(5,30)$} & {$(5,150)$} & {$(-5,150)$} & {$(50,150)$} \\
\midrule
mu & 0.01 & -0.005 & 0.005 & 0.01 & -0.005 & 0.05 \\
sigma & 0.03 & 0.03 & 0.03 & 0.15 & 0.15 & 0.15 \\
\midrule
proxy $\times 10^{-4}$ & 0.02960 & 0.02957 & 0.0299 & 0.1494 & 0.1491 & 0.1489 \\
& (1.90) & 1.73 & 2.39 & 8.66 & 9.99 & 9.14 \\
system $\times 10^{-4}$& 0.0302 & 0.0299 & 0.0303 & 0.1582 & 0.2591 & 0.1693 \\
& (3.54) & 2.47 & 2.80 & {37.4} & {209} & {518} \\
\\
duan $\times 10^{-4}$& 0.02975 & 0.02970 & 0.0300 & 0.1486 & 0.1492 & 0.1462 \\
& (1.89) & 1.73 & 2.42 & 9.44 & 10 & 9.2 \\
\bottomrule
\end{tabular*}
\caption{CAPTION}
\label{tab:111}
\end{table}
\end{document}
答案2
考虑到您对我问题的回答下面的评论如何使桌子居中, 这姆韦是:
\documentclass{article}
\usepackage{booktabs,siunitx}
\usepackage{graphicx}
%-------------------------------------- only for show page layout
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.25pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\begin{document}
\begin{table}
\sisetup{
input-symbols = {()},
table-number-alignment = center,
table-format=3.2,
table-figures-exponent = 1,
table-align-exponent=false
}
\setlength{\tabcolsep}{3pt}
\resizebox{\linewidth}{!}{%
\begin{tabular}{@{}l *{6}{S}
@{}}
\toprule
& \multicolumn{5}{c}{$\min(V), K$} \\
\cmidrule(lr){2-7}
real $\mu,\sigma\ \times 10^{-3}$
& {$(10,30)$} & {$(-5,30)$} & {$(5,30)$} & {$(5,150)$} & {$(-5,150)$} & {$(50,150)$} \\
\midrule
$\mu$ & 1.3e-3 & -0.005 & 0.005 & 0.01 & -0.005 & 0.05 \\
$\sigma$ & 0.03 & 0.03 & 0.03 & 0.15 & 0.15 & 0.15 \\
\midrule
proxy & 0.02960 & 0.02957 & 0.0299 & 0.1494 & 0.1491 & 0.1489 \\
$\times 10^{-4}$ & (1.90) & 1.73 & 2.39 & 8.66 & 9.99 & 9.14 \\
system & 0.0302 & 0.0299 & 0.0303 & 0.1582 & 0.2591 & 0.1693 \\
$\times 10^{-4}$ & (3.54) & 2.47 & 2.80 & 37.4 & 209 & 518 \\
& & & & & & \\
duan & 0.02975 & 0.02970 & 0.0300 & 0.1486 & 0.1492 & 0.1462 \\
$\times 10^{-4}$ & (1.89) & 1.73 & 2.42 & 9.44 & 10 & 9.2 \\
\bottomrule
\end{tabular}%
}
\caption{CAPTION}
\label{tab:s-table}
\end{table}
\end{document}