패키지 배열 오류: 잘못된 프리암 토큰(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개 데이터 열 모두에 대한 공통 열 유형으로 사용하는 것 외에도 다음을 수행할 수 있습니다. 첫 번째 열의 문자열에 짧은 대시 대신 엔 대시를 사용합니다.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}

관련 정보