\documentclass{article}
\usepackage{booktabs}%提供命令\toprule、\midrule、\bottomrule
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{array}
\usepackage{bm}
\usepackage{booktabs}%提供命令\toprule、\midrule、\bottomrule
\usepackage{float}%提供float浮动环境
\begin{document}
\begin{table}[H]
\caption{Predicted and measured values of the quadratic slope parameters in the$K\longrightarrow 3\pi$ amplitudes (Kambor $et$ $al$ 1992). All values are given in units of $10^{-8}$}.%标题
\centering%把表居中
\setlength{\tabcolsep}{.3cm}
\begin{tabular}{ccc}%四个c代表该表一共四列,内容全部居中
\toprule%第一道横线
Parameter&Experimental value&Prediction\\
\midrule%第二道横线
$\zeta_{1}$&$-0.47\pm 0.15$&$-0.47\pm0.18$\\
$\xi_{1}$&$-1.51\pm0.30$&$-1.58\pm0.19$\\
$\zeta_{3}$&$-0.21\pm0.08$&$-0.011\pm0.006$\\
$\xi_{3}$&$-0.12\pm0.17$& $0.092\pm 0.030$\\
$\xi^{\prime}_{3}$&$-0.21\pm0.51$&$-0.033\pm0.077$\\
\bottomrule%第三道横线
\end{tabular}
\end{table}
\end{document}
caption
包lshort-zh-cn
第 3.6.1 小节\documentclass{article}
\usepackage{booktabs}%提供命令toprule、midrule、bottomrule
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{array}
\usepackage{bm}
\usepackage{booktabs}%提供命令toprule、midrule、bottomrule
\usepackage{float}%提供float浮动环境
\begin{document}
\begin{table}[H]
\caption{Predicted and measured values of the quadratic slope parameters in the$K\longrightarrow 3\pi$ amplitudes (Kambor $et$ $al$ 1992). All values are given in units of $10^{-8}$}.%标题
\centering%把表居中
\setlength{\tabcolsep}{.3cm}
\begin{tabular}{cr@{$\pm$}lr@{$\pm$}l}%四个c代表该表一共四列,内容全部居中
\toprule%第一道横线
Parameter&\multicolumn{2}{c}{Experimental value}&\multicolumn{2}{c}{Prediction}\\
\midrule%第二道横线
$\zeta_{1}$&$-0.47$ & $0.15$ & $-0.47$ & $0.18$\\
$\xi_{1}$&$-1.51$ & $ 0.30$&$-1.58 $ & $0.19$\\
$\zeta_{3}$&$-0.21$ & $ 0.08$&$-0.011$ & $ 0.006$\\
$\xi_{3}$&$-0.12$ & $ 0.17$& $0.092 $ & $ 0.030$\\
$\xi^{\prime}_{3}$&$-0.21$ & $ 0.51$&$-0.033$ & $ 0.077$\\
\bottomrule%第三道横线
\end{tabular}
\end{table}
\end{document}
您好,首先非常感谢您这么快的回复,就是我在用@{pm}时,我发现其中在编译中,数字和 加减号之间是没有有空隙的。但是,在原文中有。这个问题应该没啥吧。谢谢
@u76861
@{$\pm$}
->@{\,$\pm$\,}
即可,书上写了@u19850 非常感谢 大佬!