\begin{table}
\setlength\tabcolsep{0pt}
\caption{\textbf{Organizational Association}}
\begin{tabular*}{\linewidth}{@{\extracolsep{\fill}}
1
*{2}{S[table-format=2.0]
S[table-format=2.2]
S[table-format=2.0]}
}
\toprule
\multicolumn{1}{c}{\textbf{} }
& \multicolumn{2}{c}{\textbf{Jagatsinghpur}}
& \multicolumn{2}{c}{\textbf{Baripada} } \\
\cmidrule{2-3}\cmidrule{4-5}
& {{BJD}}
& {{Congress}}
& {{BJD}}
& {{BJP}}
\\
\midrule
\midrule
1-4 Year& 3.9 &12.7& 16.7& 8.9\\
5-10 Year &18.9& 21.1& 42.2& 32.2\\
11-15 year& 22.8 &24.4 &20 &24.4\\
16- 20 year& 54.4& 41.8 &21.1& 34.4\\
\midrule
\midrule
\end{tabular*}
\\
{\raggedright \textit{Note: f= Figure in parentheses are in percentage.} \par}
{\raggedright \textit{ N= 90 From each party .} \par}
\end{table}
Responder1
Além de corrigir um erro de digitação óbvio - use l
("ell") em vez de 1
("one") como símbolo para uma coluna alinhada à esquerda - e use S[table-format=2.1]
como tipo de coluna comum para todas as quatro colunas de dados, você também pode querer usar travessões em vez de travessões curtos nas strings da primeira coluna.
Um comentário separado: você parece gostar bastante de usarem negritoeitálicopara “decorar” vários elementos da mesa. Meu conselho: não exagere. Na verdade, considere remover os dois tipos de decoração da mesa – você ficará surpreso com o quão mais simples e atraente a mesa ficará.
\documentclass{article}
\usepackage{booktabs,siunitx}
\usepackage[textfont=bf,skip=0.333\baselineskip]{caption}
\begin{document}
\begin{table}
\setlength\tabcolsep{0pt}
\caption{Organizational Association}
\begin{tabular*}{\linewidth}{@{\extracolsep{\fill}} l *{4}{S[table-format=2.1]} }
\toprule
& \multicolumn{2}{c}{\textbf{Jagatsinghpur}}
& \multicolumn{2}{c@{}}{\textbf{Baripada}} \\
\cmidrule{2-3}\cmidrule{4-5}
& {BJD} & {Congress} & {BJD} & {BJP} \\
\midrule
1--4 year & 3.9 & 12.7 & 16.7 & 8.9 \\
5--10 year & 18.9 & 21.1 & 42.2 & 32.2 \\
11--15 year & 22.8 & 24.4 & 20 & 24.4 \\
16--20 year & 54.4 & 41.8 & 21.1 & 34.4 \\
\bottomrule
\end{tabular*}
\medskip
\textit{Note: Figures in parentheses are in percentage.} \par
\textit{$N= 90$ from each party.}
\end{table}
\end{document}