パッケージ配列エラー: 不正なプリアンブルトークン (1): `c' が使用されています。 } - ファイルの実行中にこのエラーが発生しています

パッケージ配列エラー: 不正なプリアンブルトークン (1): `c' が使用されています。 } - ファイルの実行中にこのエラーが発生しています
\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}

答え1

明らかなタイプミスを修正することに加えて (左揃えの列の記号として ( l"one") ではなく ("ell ") を使用する)、 4 つのデータ列すべてに共通の列タイプとして使用することに加えて、最初の列の文字列で短いダッシュではなく en ダッシュを使用することもできます。1S[table-format=2.1]

別のコメント:あなたはかなり使いこなしているようです大胆なそして斜体テーブルのさまざまな要素を「装飾」するためです。私のアドバイスは、やり過ぎないことです。実際、テーブルから両方のタイプの装飾を取り除くことを検討してください。テーブルがどれだけすっきりして魅力的に見えるかに驚くでしょう。

ここに画像の説明を入力してください

\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}

関連情報