\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}
Respuesta1
Además de corregir un error tipográfico obvio (use l
("ell") en lugar de 1
("one") como símbolo para una columna alineada a la izquierda y usarlo S[table-format=2.1]
como tipo de columna común para las cuatro columnas de datos, es posible que también desee utilizar guiones en lugar de guiones cortos en las cadenas de la primera columna.
Un comentario aparte: Parece que te gusta mucho usarnegritaycursivapara "decorar" varios elementos de la mesa. Mi consejo: no te excedas. De hecho, considere eliminar ambos tipos de decoración de la mesa; se sorprenderá de cuánto más estilizada y atractiva se verá la mesa.
\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}