在該表的頂部添加“參數”行?

在該表的頂部添加“參數”行?

請考慮以下內容:如何使用與 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]{}將多個儲存格合併為一個儲存格:

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

相關內容