\documentclass{article}
\usepackage{float}%提供float浮动环境
\usepackage{booktabs}%提供命令\toprule、\midrule、\bottomrule
\begin{document}
%经典三线表
\begin{table}[H]
%\caption{\textbf{Example 1}}%标题
\centering%把表居中
\begin{tabular}{cc}%四个c代表该表一共四列,内容全部居中
\toprule%第一道横线
Scaling&Implication \\
\midrule%第二道横线
1&equal importance\\
3&The former is slightly more important than the latter\\
5&The former is obviously more important than the latte\\
7&The former is more important than the latter\\
9&The former is extremely important than the latter\\
2,4,6,8&Represents the median value of the above adjacent judgments\\
reciprocal&$a_{ij}=1/a_{ij}$\\
\bottomrule%第三道横线
\end{tabular}
\end{table}
\begin{table}[H]
\centering%居中
\begin{tabular}{|c|c|}
\hline
The value range of $\vert r \vert$ & meaning of $ \vert r \vert $ \\
\hline
0.00-0.19 & very low correlation \\
\hline
0.20-0.39&low correlation\\
\hline
0.40-0.69&Moderately relevant\\
\hline
0.70-0.89&Highly correlated\\
\hline
0.90-1.00&Very high correlation\\
\hline
\end{tabular}
\end{table}
\end{document}
\end{document}
|