다음을 고려하십시오.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}