이 질문은 이 게시물과 관련되어 있습니다(승인된 답변): 테이블 형식.
아래 코드를 컴파일한 후 다음과 같은 결과를 얻었습니다.
백슬래시나 "&" 기호를 추가하는 등 여러 가지 대안을 시도했지만 여전히 원하는 결과를 얻을 수 없습니다.
미리 감사드립니다.
\documentclass[a4paper,12pt]{scrreprt}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\begin{tabular}{@{} lcccc @{}} % suppress vertical whitespace at start and end
\toprule
Company& \multicolumn{3}{c}{Exceedances} & No.\ of Obs.\ \cmidrule(lr){2-4}
& \multicolumn{2}{c}{Empirical} & Expected\ \cmidrule(lr){2-3} \cmidrule(lr){4-4}
&standard & standardized\\ % make columns 2 and 3 narrower
&normal & Student's-$t$\ \midrule
Company 1&1&5&9&13\ Company 2&2&6&10&14\ Company 3&3&11&15\ Company 4&4&8&12&16\ \midrule[\heavyrulewidth] % use "thick" \midrule instead of \bottomrule
\multicolumn{4}{@{}l}{\footnotesize An additional hint about a detail}
\end{tabular}
\caption{Here is the caption.}
\label{labelhere}
\end{table}
\end{document}
답변1
\\
줄 바꿈에는 이중 백슬래시를 사용해야 합니다 .
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\begin{tabular}{@{} lcccc @{}}
\toprule
Company & \multicolumn{3}{c}{Exceedances} & No.\ of Obs. \\
\cmidrule(lr){2-4}
& \multicolumn{2}{c}{Empirical} & Expected \\
\cmidrule(lr){2-3}\cmidrule(lr){4-4}
& standard & standardized \\
& normal & Student's-$t$ \\
\midrule
Company 1 & 1 & 5 & 9 & 13 \\
Company 2 & 2 & 6 & 10 & 14 \\
Company 3 & 3 & 11 & 15 \\
Company 4 & 4 & 8 & 12 & 16 \\
\midrule[\heavyrulewidth]
\multicolumn{4}{@{}l}{\footnotesize An additional hint about a detail}
\end{tabular}
\caption{Here is the caption.}
\label{labelhere}
\end{table}
\end{document}