请考虑以下内容:如何使用与 MWE 相同的格式创建该表?
\documentclass{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs, siunitx}
\begin{document}
\begin{table}
\caption{Parameter values used in numerical simulations of system.}
\label{tab1}
\begin{tblr}{@{}cccccccccccc@{}}
\toprule
& $\beta$ & $\mu$ & $\alpha_{1}$ & $p_{1}$ & $\phi$ & $\xi$ & $\psi$ & $p_{2}$ & $p_{3}$ & $\theta$ & $\alpha_{2}$ \\
\midrule
State 1 & 0.2 & 0.2 & 0.12 & 0.11 & 0.1 & 0.11 & 0.1 & 0.12 & 0.11 & 0.1 & 0.1\\
State 2 & 0.21 & 0.22 & 0.11 & $p_{1}$ & 0.1 & 0.11 & 0.12 & 0.1 & 0.11 & 0.1 & 0.11\\
\bottomrule
\end{tblr}
\end{table}
\end{document}
答案1
您可以使用\SetCell[c=11]{}
将多个单元格合并为一个:
\documentclass{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs, siunitx}
\begin{document}
\begin{table}
\caption{Parameter values used in numerical simulations of system.}
\label{tab1}
\begin{tblr}{@{}cccccccccccc@{}}
\toprule
& \SetCell[c=11]{} Parameters\\
\toprule
& $\beta$ & $\mu$ & $\alpha_{1}$ & $p_{1}$ & $\phi$ & $\xi$ & $\psi$ & $p_{2}$ & $p_{3}$ & $\theta$ & $\alpha_{2}$ \\
\midrule
State 1 & 0.2 & 0.2 & 0.12 & 0.11 & 0.1 & 0.11 & 0.1 & 0.12 & 0.11 & 0.1 & 0.1\\
State 2 & 0.21 & 0.22 & 0.11 & $p_{1}$ & 0.1 & 0.11 & 0.12 & 0.1 & 0.11 & 0.1 & 0.11\\
\bottomrule
\end{tblr}
\end{table}
\end{document}
答案2
这是使用正常的另一种方法tabular
。
\cmidrule
我在下面添加了一个缩短Parameters
,并使用siunitx
包将你的数值在小数点处对齐。
\documentclass{article}
\usepackage{booktabs,siunitx}
\begin{document}
\begin{table}
\caption{Parameter values used in numerical simulations of system.}
\label{tab1}
\begin{tabular}{@{}c*{11}S[table-format=1.2]@{}}
\toprule
&\multicolumn{11}{c}{Parameters} \\ \cmidrule(lr){2-12}
& {$\beta$} & {$\mu$} & {$\alpha_{1}$} & {$p_{1}$} & {$\phi$} & {$\xi$} & {$\psi$} & {$p_{2}$} & {$p_{3}$} & {$\theta$} & {$\alpha_{2}$} \\ \midrule
State 1 & 0.2 & 0.2 & 0.12 & 0.11 & 0.1 & 0.11 & 0.1 & 0.12 & 0.11 & 0.1 & 0.1 \\
State 2 & 0.21 & 0.22 & 0.11 & {$p_{1}$} & 0.1 & 0.11 & 0.12 & 0.1 & 0.11 & 0.1 & 0.11 \\
\bottomrule
\end{tabular}
\end{table}
\end{document}