표 테두리 문제

표 테두리 문제

내 테이블이 아래와 같기를 원합니다. 여기에 이미지 설명을 입력하세요

그러나 밝혀진 사실은 다음과 같습니다. 여기에 이미지 설명을 입력하세요

MWE는 다음과 같습니다.

\documentclass{article}

\usepackage{multirow}

\begin{document}

\begin{tabular}{|c|c|c|}
\cline{1-3}
\multicolumn{1}{c}{} & \multicolumn{2}{c}{Treatment Received}\\ \cline{2-3}
& All Respondents & Prejudiced Respondents\\ \hline
Culturally Foreign &    25.6 & 44.4\\ 
Culturally Familiar & 20.0 & 19.0\\
Difference & 5.6 & 25.4*\\
(95\% Confidence Interval) & (-1.1 to 12.4) & (6.6 to 44.1)\\
p-value & 0.101  & 0.009\\ \hline
\end{tabular}

\end{document}

답변1

|에 대한 인수에서 a 를 잊어버리고 \multicolumn쓸모가 없습니다 \multicolumn{1}{c}{}. 셀이 비어 있으면 아무것도 넣지 마세요.

첫 번째 열은 왼쪽 정렬되어야 합니다. 또한 수직 규칙 없이 테이블 형식을 지정하는 다른 방법을 제안합니다(이 두 번째 방법에는 가 필요함 booktabs). 또한 나는 사용하지 않을 것입니다 \doublespace. 가독성이 떨어집니다.

\documentclass{article}
\usepackage{booktabs}

\begin{document}
\begin{tabular}{|l|c|c|}
\hline
  & \multicolumn{2}{c|}{Treatment Received}\\
\cline{2-3}
  & All Respondents & Prejudiced Respondents\\
\hline
  Culturally Foreign  & $25.6$ & $44.4$\\ 
  Culturally Familiar & $20.0$ & $19.0$\\
  Difference          &  $5.6$ & $25.4$\makebox[0pt][l]{*}\\
  ($95$\% Confidence Interval) & ($-1.1$ to $12.4$) & ($6.6$ to $44.1$)\\
  $p$-value           & $0.101$  & $0.009$\\
\hline
\end{tabular}

\bigskip

\begin{tabular}{lcc}
\toprule
  & \multicolumn{2}{c}{Treatment Received}\\
\cmidrule{2-3}
  & All Respondents & Prejudiced Respondents\\
\midrule
  Culturally Foreign  & $25.6$ & $44.4$\\ 
  Culturally Familiar & $20.0$ & $19.0$\\
  Difference          &  $5.6$ & $25.4$\makebox[0pt][l]{*}\\
  ($95$\% Confidence Interval) & ($-1.1$ to $12.4$) & ($6.6$ to $44.1$)\\
  $p$-value           & $0.101$  & $0.009$\\
\bottomrule
\end{tabular}


\end{document}

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

정렬에 참여하지 않도록 별표를 어떻게 입력했는지도 참고하세요. 또한 숫자는 수학 모드에서 입력해야 하며, 특히 음수인 경우에는 더욱 그렇습니다.

답변2

\multicolumn의 용도에 대한 정렬을 정의할 때 ( 표 시작 부분에 {c}쓸 때와 마찬가지로) 주위에 원하는 세로 테두리를 지정해야 합니다 .{|c|c|c|}

그래서 라인을 교체하세요

\multicolumn{1}{c}{} & \multicolumn{2}{c}{Treatment Received}\\ \cline{2-3}

~와 함께

\multicolumn{1}{|c}{} & \multicolumn{2}{c|}{Treatment Received}\\ \cline{2-3}

은 및 이 {c}되었습니다 .{|c}{c|}

결과는 다음과 같습니다.

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

관련 정보