表格垂直边框损坏

表格垂直边框损坏

为什么此表中最后 4 条垂直线没有与顶部水平线相连?enter image description here

\documentclass[]{article}
\begin{document}
    \begin{tabular}{| c | c | c | c | c |}
        \hline \\
        15&2.5&10&7.5&5\\ 
        \hline 
    \end{tabular}
\end{document}

答案1

如果希望第一行有一个空行,则必须在&更改行之前更改列:

\hline &&&&  \\

如果你不想,只需:

\hline 15 & 2.5 & 10 & 7.5 & 5 \\ 

平均能量损失

\documentclass[]{article}
\begin{document}
    \begin{tabular}{| c | c | c | c | c |}
        \hline &&&&  \\
        15&2.5&10&7.5&5\\ 
        \hline 
    \end{tabular}

\medskip

    \begin{tabular}{| c | c | c | c | c |}
        \hline % &&&&  \\
        15&2.5&10&7.5&5\\ 
        \hline 
    \end{tabular}
\end{document}

enter image description here

答案2

您可能对另一个版本感兴趣。

enter image description here

代码:

\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{table}
\begin{tabular}{|l|l|l|l|l|}  \hline
\multirow{2}{*}{15} & \multirow{2}{*}{2.5} & \multirow{2}{*}{10} & \multirow{2}{*}{7.5} & \multirow{2}{*}{5} \\ 
&&&& \\\hline      
\end{tabular}
\end{table}
\end{document}

相关内容