![具有固定寬度的兩列的表格](https://rvso.com/image/370295/%E5%85%B7%E6%9C%89%E5%9B%BA%E5%AE%9A%E5%AF%AC%E5%BA%A6%E7%9A%84%E5%85%A9%E5%88%97%E7%9A%84%E8%A1%A8%E6%A0%BC.png)
我使用了這段程式碼:
\begin{tabular}{c c}
\setlength\arraycolsep{10pt}
AVG & The average weight of a document is calculated as the sum of weights W(t,c) of its terms dithe document. \\
STD & The standard deviation of the weighted as of the snus the av\\
MIN & The minimum weight of a document is the l) in the document. \\
MAX & The weight of a term weight W(t,c) found \\
PROB & The overall weight of a docuvided by the total number the docu \\
PROP & The between the number of vocabulary terms of the docume
\end{tabular}
但問題是,沒有邊框!
答案1
用這個:
\documentclass[twocolumn]{article}
\usepackage{tabularx, ragged2e, caption, lipsum}
\setlength{\extrarowheight}{2pt}
\begin{document}
\lipsum[1]
\begin{table}[!htb]
\caption{my caption} \label{some-label}% for cross references
\begin{tabularx}{\linewidth}{|l|>{\arraybackslash\RaggedRight}X|}
\hline
AVG & The average weight of a document is calculated as the sum of weights W(t,c) of its terms dithe document. \\
\hline
STD & The standard deviation of the weighted as of the snus the av\\
\hline
MIN & The minimum weight of a document is the l) in the document. \\
\hline
MAX & The weight of a term weight W(t,c) found \\
\hline
PROB & The overall weight of a docuvided by the total number the docu \\
\hline
PROP & The between the number of vocabulary terms of the document\\
\hline
\end{tabularx}
\end{table}
\end{document}