2 列レイアウトのドキュメントに表を挿入しますか?

2 列レイアウトのドキュメントに表を挿入しますか?

2 列レイアウトのドキュメントに次の表を挿入する必要があります。

\begin{table}[]
\centering
\caption{Three possible values of the difference in the probability of course completion of students assigned to effective versus ineffective treatment arms.}
\label{my-label}
\begin{tabular}{rccc}
\multicolumn{1}{c}{\multirow{2}{*}{Mean effect size, averaging across countries}} & \multicolumn{2}{l}{\begin{tabular}[c]{@{}l@{}}Probability\\ of course completion (\%)\end{tabular}} & \multicolumn{1}{l}{\multirow{2}{*}{Difference}} \\
\multicolumn{1}{c}{} & \multicolumn{1}{l}{\begin{tabular}[c]{@{}l@{}}Ineffective\\ arms\end{tabular}} & \multicolumn{1}{l}{\begin{tabular}[c]{@{}l@{}}Effective\\ arms\end{tabular}} & \multicolumn{1}{l}{} \\
Small & 4.6 & 5.3 & 0.8 \\
Medium & 4.6 & 8.5 & 3.9 \\
Large & 4.6 & 13.3 & 8.7
\end{tabular}
\end{table}

PDF をコンパイルすると、表が 1 列に収まりません。次のようになります。

悪い表

スタイルファイルとテンプレート私が使用しているものは利用可能ここ

これをどうすれば修正できますか?


あるいは、次のコードを使用することもできます:

\begin{table}[]
\centering
\caption{Three possible values of the difference in the probability of course completion of students assigned to effective versus ineffective treatment arms.}
\label{my-label}
\begin{tabular}{rccc}
\multicolumn{1}{p{2cm}}{\multirow{2}{*}{Mean effect size, averaging across countries}} & \multicolumn{2}{l}{\begin{tabular}[c]{@{}l@{}}Probability\\ of course completion (\%)\end{tabular}} & \multicolumn{1}{l}{\multirow{2}{*}{Difference}} \\
\multicolumn{1}{c}{} & \multicolumn{1}{l}{\begin{tabular}[c]{@{}l@{}}Ineffective\\ arms\end{tabular}} & \multicolumn{1}{l}{\begin{tabular}[c]{@{}l@{}}Effective\\ arms\end{tabular}} & \multicolumn{1}{l}{} \\
Small & 4.6 & 5.3 & 0.8 \\
Medium & 4.6 & 8.5 & 3.9 \\
Large & 4.6 & 13.3 & 8.7
\end{tabular}
\end{table}

そして私はこれを得ます:

悪い表2

答え1

makecellおよびsiunitx、および をbooktabs使用した変形caption:

\documentclass{acm_proc_article-sp}
\usepackage{lipsum}
\usepackage{multirow, tabularx, caption, booktabs}
\usepackage{makecell}
\renewcommand\cellalign{rc}
\usepackage{siunitx}
\sisetup{table-format=1.1}

\begin{document}

\lipsum[2]%
\begin{table}[! htbp]\captionsetup{font=bf}
  \centering\setlength\tabcolsep{8pt}
  \caption{Three possible values of the difference in the probability of course completion of students assigned to effective versus ineffective treatment arms.}
  \label{my-label}
  \begin{tabularx}{\linewidth}{XSS[table-format=2.1]S}
    & \multicolumn{2}{l}{\thead{Probability of \\ course completion (\%)}}
    & \\
    \cmidrule(lr){2-3}
    \multirowcell{-4}[0.3ex]{Mean effect size,\\averaging\\ across countries}& {\thead{Ineffective\\ arms}} & {\thead{Effective\\ arms}} & {\multirowcell{-1}[-1ex]{Difference}}
    \\[-1.4ex]
    \midrule
    Small & 4.6 & 5.3 & 0.8 \\
    Medium & 4.6 & 8.5 & 3.9 \\
    Large & 4.6 & 13.3 & 8.7
  \end{tabularx}
\end{table}
\lipsum[3-8]

\end{document} 

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

答え2

問題は、テーブルの構成です。MWE が提供されていないため、古い写真から 1 つを使用します... とにかく、取得したテーブルの幅は 80 mm です。これは 1 列に収まるはずです。ドキュメントで以下のコードを試して、これが目的のものであるかどうかを確認してください。

\documentclass[11pt, border=1mm,
               preview]{standalone}
    \usepackage{makecell}
    \usepackage{siunitx}

    \begin{document}
\begin{table}
    \linespread{0.9}
\centering
\caption{Three possible values of the difference in the probability of course completion of students assigned to effective versus ineffective treatment arms.}
\label{my-label}
\begin{tabular}{rSSS}
\thead{Mean effect size,\\
       averaging across \\countries} 
    &   \multicolumn{2}{c}{\thead{Probability of \\ 
                                  course completion\\
                                  (\%)}}
            &   {\thead{Difference}}                           \\
    &   {\thead{Ineffective\\ arms}}
        &   {\thead{Effective\\ arms}} 
            &                                                   \\
    \hline
Small   & 4.6   & 5.3   & 0.8 \\
Medium  & 4.6   & 8.5   & 3.9 \\
Large   & 4.6   & 13.3  & 8.7
\end{tabular}
\end{table}
        \end{document}

上記の表では、マクロ (置換 を使用)makecellを使用する と、数字の配置をより適切にする列スタイルの という2 つのパッケージを使用しています。theadmultirowsiunitxS

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

テーブルには通常、上部と下部のルールがあります。あなたの例ではそれらが表示されていないため、それらを含めませんでした。それらを使用する場合は、booktabパッケージを使用することをお勧めします。

関連情報