내 테이블의 이상한 조판

내 테이블의 이상한 조판

테이블이 있는데 이상한 일이 일어나고 있는데 왜 그럴까요? 실수는 두 번째 페이지에 있습니다.

\documentclass{article}
\usepackage{siunitx} % for 'S' column type
\usepackage{booktabs}% 
\usepackage{array,makecell}
\usepackage{multirow}

\newcommand{\mc}{\multicolumn{1}{c}}

\begin{document}

\begin{tabular}{ *{5}{|c} | }
  \cline{3-4}
  \mc{} & & \multicolumn{2}{c|}{Condition Phase (worst case)} & \mc{} \\
  \cline{3-4}
  \mc{} & & \makecell{Condition \\ Positive/ \\ Shaded} & 
    \makecell{Condition \\ Negative/ \\ Unshaded} & \mc{\textbf{Actual}} \\
  \hline
  \multirow{5}{*}{\makecell{Testing \\ Phase \\ (best case)}} & 
    \makecell{Test \\ Positive/ \\ Shaded} & 
    \makecell{True positive \\ shaded \\ $T_p$ \\ \textit{(Correct)}} & 
    \makecell{False positive \\ shaded \\ $F_p$ \\ \textit{(Incorrect)}} &
    \makecell{Precision/Positive \\ Predictive Value \\ (PPV) \\ $\frac{T_p}{T_p + F_p} \times 100\%$} \\
  \cline{2-5}
  & 
    \makecell{Test \\ Negative/ \\ Unshaded} & 
    \makecell{False negative \\ unshaded \\ $F_n$ \\ \textit{(Incorrect)}} &
    \makecell{True negative \\ unshaded \\ $T_n$ \\ \textit{(Correct)}} &
    \makecell{Negative \\ Predictive Value \\ (NPV) \\ $\frac{T_n}{T_n + F_n} \times 100\%$} \\
  \hline
  \mc{} & & \makecell{Sensitivity/Recall \\ Rate (RR) \\ $\frac{T_p}{T_p + F_n} \times 100\%$} &
    \makecell{Specificity Rate \\ (SR) \\ $\frac{T_n}{T_n + F_p} \times 100\%$} & \mc{} \\
  \cline{3-4}
\end{tabular}
\newpage
\begin{table}
\begin{tabular}{@{} lS[table-format=4.0] @{}}
    \toprule
    $\eta^2$   & {Interpretation} \\ % 'Counted' is placed in curly braces
    \midrule
    $\eta^2$ is $<$ .13 & Small effect     \\
    $\eta^2$ is between .13 to .26   & Medium effect    \\
    $\eta^2$ is $>$ .36    & Large effect     \\
    \bottomrule
\end{tabular}
\end{table}

\end{document}

여기에 이미지 설명을 입력하세요

답변1

문제의 환경 tabular에는 두 개의 열이 포함되어 있습니다. 첫 번째 열은 유형 l(왼쪽 정렬 텍스트용)이고 두 번째 열은 S[table-format=4.0]최대 4자리의 정수에 적합한 유형입니다. 그러나 두 번째 열에는 실제로 숫자 입력이 포함되어 있지 않습니다. 따라서 변경

\begin{tabular}{@{} lS[table-format=4.0] @{}}

에게

\begin{tabular}{@{} ll @{}}

그러면 코드가 컴파일됩니다.


전체 MWE(첫 번째 열의 내용을 다소 단순화하고 재정렬했습니다.):

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{booktabs,array}

\begin{document}

\begin{table}[ht!]
\begin{tabular}{@{} >{$}l<{$} l @{}}
    \toprule
    \eta^2 & Interpretation \\
    \midrule
    \eta^2<0.13      & Small effect  \\
    0.13<\eta^2<0.26 & Medium effect \\
    \eta^2> 0.36     & Large effect  \\
    \bottomrule
\end{tabular}
\end{table}

\end{document}

관련 정보