Considere lo siguiente de:¿Cómo crear esta tabla usando el mismo formato que en el 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}
Usando MWE (manteniendo su formato/diseño), ¿cómo podemos agregar una fila adicional como se muestra a continuación? (POR FAVOR IGNORAR LAS CELDAS EN LA IMAGEN A CONTINUACIÓN).
Respuesta1
Puedes utilizar \SetCell[c=11]{}
para fusionar varias celdas en una:
\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}
Respuesta2
Este es otro enfoque que utiliza un normal tabular
.
Agregué un acortamiento \cmidrule
a continuación Parameters
y usé el siunitx
paquete para alinear sus valores numéricos en el punto decimal.
\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}