Can someone compile the following code so I can use it as a photo in my document. I had a problem which I asked in a different question but it still doesn't compile for me: How to draw a vertical line in a table?
I'm looking for answer identical to the one provided by Simon Dispa in Edit 2 of his answer.
First table:
\documentclass{article}
\usepackage{geometry}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\begin{document}
\noindent\begin{tblr}{colspec = {| Q[c,$] X[l] |
Q[c,$] X[l] |},
row{1} = {mode=text},
row{2-Y} = {belowsep+=2pt}
}
\toprule
Parameter & Sensitivity index & Parameter & Sensitivity index\
\midrule
\mu & +1.000
& \epsilon & +0.473 \
\beta_1 & +0.612
& p_1 & +0.096 \
\beta_2 & +0.318
& p_2 & +0.054 \
\beta_3 & +0.070
& \xi_1 & -0.315 \
p & -1.837
& \xi_2 & -0.052 \
q & -0.636
& \nu & -2.225 \
r & -0.097
& \alpha & -0.035 \
\bottomrule
\end{tblr}
\end{document}
Second table:
\documentclass{article}
\usepackage{geometry}
\usepackage{tabularray}
\UseTblrLibrary{booktabs}
\begin{document}
\noindent\begin{tblr}{colspec = {| Q[c,$] X[l] |
Q[c,$] X[l] |},
row{1} = {mode=text},
row{2-Y} = {belowsep+=2pt}
}
\toprule
Parameter & Sensitivity index & Parameter & Sensitivity index\\
\midrule
\mu & +1.000
& \epsilon & +0.093 \\
\beta_1 & +0.078
& p_1 & +0.463 \\
\beta_2 & +0.800
& p_2 & -0.457 \\
\beta_3 & +0.122
& \xi_1 & -0.088 \\
p & -0.026
& \xi_2 & -0.062 \\
q & -0.400
& \nu & -1.888 \\
r & -0.0875
& \alpha & -0.061 \\
\bottomrule
\end{tblr}
\end{document}

