桌子上有奇怪的垂直线条

桌子上有奇怪的垂直线条

使用代码:

\documentclass[a4paper]{article}   
\usepackage{ngerman} 
\begin{document}
\begin{table}[htb]
\begin{center}
\begin{tabular}{|c|c|c|}
\hline
\textbf{Value A}&\textbf{Value B}&\textbf{Value C} \\
\hline 
\hline
\\ \( 1) & \( 17) & \( 98) \\ \\
\hline
\\ \( x = \frac{42}{5} \cdot x + n\) & \( y = \frac{17}{2} \cdot y + n\) & \( 0\) \\ \\
\hline
\hline
\end{tabular}
\end{center}
\caption{Stuff}
\end{table}
\end{document}

我明白了

在此处输入图片描述

答案1

不要做

\hline \\ 

因为这样会生成一条只包含第一列单元格的截断线,因此会缺少线段,所以只需执行

\\

如果要分隔数组,请使用\arraystretch

答案2

有关表格样式的良好建议,请参阅booktabs软件包的文档。这里强烈建议不要使用垂直线,也不要使用双水平线。此外,为了在表格中提供更大的行间距,您应该进行调整\arraystretch(这是一个包含因子的命令),而不是添加空白行。

示例输出

\documentclass[a4paper]{article}   

\usepackage{ngerman} 
\usepackage{booktabs}

\begin{document}

\begin{table}[htb]
  \begin{center}
    \renewcommand*{\arraystretch}{1.5}
    \begin{tabular}{ccc}
      \toprule
      Bereich (I) in Nm&Bereich (II) in Nm&Bereich (III) in Nm \\ 
      \midrule
      \( M_{t1} = 0\) & \( M_{t2} = 150\) & \( M_{t3} = 150\) \\ 
      \( M_{by1}(x) = \frac{450}{43} \cdot x + n\)
        & \( M_{by2}(x) = -\frac{450}{43} \cdot x + n\)
        & \( M_{by3}(x) = 0\) \\ 
      \( M_{bz1}(x) = \frac{65}{43} \cdot x + n\)
        & \( M_{bz2}(x) = -\frac{65}{43} \cdot x + n\)
        & \( M_{bz3}(x) = 0\) \\
      \bottomrule
    \end{tabular}
  \end{center}
  \caption{Momente \textit{abgelesen}}
\end{table}

\end{document}

相关内容