大家好,图中给出的表格包含值。当我尝试增加表格中的框大小时,垂直线仍然不完整,即它没有完成框(圆圈)。我怎样才能改变垂直线的长度?请帮帮我。非常感谢!代码如下:
\begin{table}
\begin{tabular}{|c|c|c|}
\hline
\multicolumn{3}{|c|}{Results} \\
\hline
Actual position & Estimated position & Error (mm) \\ \\ \hline
[8.240 5.435 4.581] & [8.23997 5.43498 4.58106] & [0.00183 0.00265 0.00403] \\ \\ \hline
[3.322 4.512 7.365] & [3.32199 4.51198 7.36496] & [0.00912 0.01846 0.03194] \\ \\ \hline
[6.873 2.321 4.678] & [ 6.87299 2.32099 4.67799] & [0.00292 0.00401 0.00132]\\ \hline
[5.324 7.876 8.211] & [5.32399 7.87599 8.21099] & [0.00269 0.00631 0.00739] \\ \hline
[3.435 6.678 4.543] & [ 3.43500 6.67800 4.54300] & [0.00163 0.00527 0.00820] \\ \hline
[5.585 7.420 2.123] & [ 5.58499 7.41999 2.12299 & [0.00056 0.00694 0.00340] \\ \hline
[8.258 4.314 6.421] & [ 8.25800 4.31399 6.42100] & [0.00774 0.00246 0.00308] \\ \hline
\multicolumn{3}{|c|}{MSE(mm) 2.359e-5} \\ \hline
\end{tabular}
\caption{Simulation results}
\end{table}
%%% end table
答案1
如果我是你,我会考虑使用booktabs
这里,因为它对你的表格布局有很大帮助。只需看我的例子。你一直要求的命令就在\addlinespace
这里。
请注意,我已将标题设置在表格上方,因为对于您的示例,标题在下方看起来很糟糕。我通过添加将表格宽度稍微减少了一点,@{}
但如果您使用的是两列文档,它仍然太宽了 17.58 pt。那么您必须进一步减小该尺寸。我没有在这个主题上花费更多精力,因为这个网站上有很多关于这个主题的帖子。
% arara: pdflatex
\documentclass{IEEEtran}
\usepackage{booktabs}
\begin{document}
\begin{table}
\caption{Simulation results}
\centering
\begin{tabular}{@{}ccc@{}}
\toprule
& Results & \\
\cmidrule{2-2}
Actual position & Estimated position & Error (mm) \\\midrule
[8.240 5.435 4.581] & [8.23997 5.43498 4.58106] & [0.00183 0.00265 0.00403] \\\addlinespace
[3.322 4.512 7.365] & [3.32199 4.51198 7.36496] & [0.00912 0.01846 0.03194] \\\addlinespace
[6.873 2.321 4.678] & [ 6.87299 2.32099 4.67799] & [0.00292 0.00401 0.00132]\\
[5.324 7.876 8.211] & [5.32399 7.87599 8.21099] & [0.00269 0.00631 0.00739] \\
[3.435 6.678 4.543] & [ 3.43500 6.67800 4.54300] & [0.00163 0.00527 0.00820] \\
[5.585 7.420 2.123] & [ 5.58499 7.41999 2.12299 & [0.00056 0.00694 0.00340] \\
[8.258 4.314 6.421] & [ 8.25800 4.31399 6.42100] & [0.00774 0.00246 0.00308] \\
\midrule
& MSE(mm) 2.359e-5 & \\
\bottomrule
\end{tabular}
\end{table}
\end{document}
中间需要空行,因为以下内容[...]
将被视为 的参数\midrule
。不过,我建议将所有这些数字和括号设置为数学模式。