如何修复 LaTex 表格中不需要的线条和破折号?

如何修复 LaTex 表格中不需要的线条和破折号?

我正在根据一篇论文创建 LaTex 表格https://onlinelibrary.wiley.com/doi/full/10.1002/we.2510(并将其编译为Overleaf)。但是,输出表的----第二行出现了一些不需要的符号和线条(附图)表格的 LaTex 代码输出。这是什么原因造成的?我该如何修复?Overleaf还显示了\hbox too wide warning(附图)Overleaf 中的警告消息 - 并且不需要的破折号在表格的第 2 行中可见

这是 .tex 脚本:-

\begin{table}[!h]
\centering
\caption{Summary of top-three optimisation parameters for the ANN\label{comparison_ann}}
\begin{tabular}{|l|l|l|l|}
\hline
\textbf{Optimiser}   & \textbf{Learning Rate} &\textbf{Optimisation parameters} & \textbf{Accuracy} \\ \hline
\textbf{Adam}   & 0.001 & $\beta_{1}$ = 0.90, $\beta_{2}$ = 0.999           & \textbf{93.81\%}                            \\ \hline
RMSProp                                      & 0.001                            & $\rho$ = 0.90                                                                  & 92.64\%                            \\ \hline
Stochastic Gradient Descent (SGD)         & 0.01                                             & Momentum = 0 (Undamped)                                                                   & 78.36\%                            \\ \hline
\end{tabular}
\end{table}

任何帮助和建议都将非常感激。

相关内容