我生成了這個表格,但它的寬度超過了線寬,因為我正在兩列紙上工作,而且我需要它只適合一列,有什麼幫助嗎?
\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
。