このテーブルの上部に「パラメータ」行を追加しますか?

このテーブルの上部に「パラメータ」行を追加しますか?

次のことを考慮してください。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}

MWE を使用して(その形式/レイアウトを維持して)、以下に示すように行を追加するにはどうすればよいですか?(下の画像のセルは無視してください)。 ここに画像の説明を入力してください

答え1

\SetCell[c=11]{}複数のセルを 1 つに結合するには、次の方法を使用できます。

\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以下に短縮版を追加しParameterssiunitxパッケージを使用して数値を小数点で揃えました。 結果

\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}

関連情報