I have two questions related to the MWE shown:
- How to append a percent sign to only cells of a column, or of a row by using
siunitxpackage whether the tabular is defined by row or by columns. ? (I know I can put it only in the header but it's not the point). - How to add a vertical space, it doesn't work with the commented
\vspace*{2cm}?
PS: I am not familiar with this package yet.
Here is a simplified MWE picked from here:
\documentclass[preview,border=5pt]{standalone}
\usepackage{booktabs}
\usepackage{siunitx}
\newcommand\mc[1]{\multicolumn{1}{c}{#1}}
\begin{document}
\begin{table}
\centering
%defined by rows
\begin{tabular}{ l*{5}{S[input-symbols = {()},
table-space-text-post=\ ,
table-format=-1.2]}}
\toprule
\multicolumn{4}{c}{Panel A: $\beta_{\sigma,t}$} \\ \midrule
& \mc{Low} & \mc{Med} & \mc{High} \\ \midrule
MV & 1.64 & 1.14 & 1.58 \\
& 1.17 & 0.97 & 0.87 \\
TA & 1.90 & 1.03 & 0.88 \\
\bottomrule
\end{tabular}
%\vspace{2cm}
%defined by columns
\begin{tabular}{ c*{4}{S[input-symbols = {()},
table-space-text-post=\ ,
table-format=-1.2]}}
\toprule
\multicolumn{4}{c}{Panel A: $\beta_{\sigma,t}$} \\ \midrule
& \mc{Low} & \mc{Med} & \mc{High} \\ \midrule
MV & 1.64 & 1.14 & 1.58 \\
& 1.17 & 0.97 & 0.87 \\
TA & 1.90 & 1.03 & 0.88 \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

