表の幅は行の幅と同じ

表の幅は行の幅と同じ

この表を生成しましたが、2 列の用紙で作業しているため、幅が行の幅を超えています。1 列にのみ収まるようにする必要があります。何か助けはありますか?

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

\begin{table}[t]
\centering
\begin{tabular}{|c|c|c|}
\hline
Generated Cluster Number & Real Cluster Number & Ratio of mapped spikes \\
\hline
         2 &          3 &     0.4233 \\
\hline
         3 &          2 &     0.3545 \\
\hline
         4 &          1 &     0.8463 \\
\hline
         5 &          1 &     0.3432 \\
\hline
         6 &          3 &     0.6345 \\
\hline
         7 &          2 &     0.2349 \\
\hline
         8 &          2 &     0.4267 \\
\hline
\end{tabular}
\label{tab:template}
\end{table}

答え1

tabular環境の星印付きバージョンと、p{}に基づいてカスタム サイズで列を配置するための修飾子を使用できます\linewidth

\documentclass[twocolumn]{article}
\usepackage{booktabs}
\usepackage{lipsum}
\begin{document}
\begin{table}[t]
\centering\small
\begin{tabular*}{\linewidth}{@{\extracolsep{\fill}}p{0.3\linewidth}p{0.3\linewidth}p{0.3\linewidth}@{}}
\toprule
Generated Cluster Number & Real Cluster Number & Ratio of mapped spikes \\
\midrule
         2 &          3 &     0.4233 \\
         3 &          2 &     0.3545 \\
         4 &          1 &     0.8463 \\
         5 &          1 &     0.3432 \\
         6 &          3 &     0.6345 \\
         7 &          2 &     0.2349 \\
         8 &          2 &     0.4267 \\
\bottomrule
\end{tabular*}
\label{tab:template}
\end{table}
\lipsum[1-5]
\end{document}

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

答え2

見出しを積み重ね、おそらく「番号」の重複を削除することをお勧めします。これは明らかなはずです。

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

\documentclass[twocolumn]{article}
\usepackage{booktabs,lipsum}% http://ctan.org/pkg/{booktabs,lipsum}
\begin{document}
\lipsum[1]

\begin{table}
  \centering
    \begin{tabular}{ccc}
        \toprule
        Generated & Real & Ratio of \\
        cluster & cluster & mapped spikes\\
        \midrule
        2 & 3 & 0.4233 \\
        3 & 2 & 0.3545 \\
        4 & 1 & 0.8463 \\
        5 & 1 & 0.3432 \\
        6 & 3 & 0.6345 \\
        7 & 2 & 0.2349 \\
        8 & 2 & 0.4267 \\
        \bottomrule
    \end{tabular}
  \caption{A table}
\end{table}

\lipsum[2-5]
\end{document}

私は使ったことがあるbooktabsは、本質的に垂直線の使用を推奨しません。ただし、垂直線と水平線を復元すれば、この例は垂直線がなくても機能します。 は、booktabsに必要な視覚効果を提供するだけですtabular

関連情報