在 Latex 中的表格中画一条线

在 Latex 中的表格中画一条线

我使用 LaTeX 编写了以下代码

\begin{tabular}{ | l | l | l | p{5cm} | }
 \hline

    Parameter & Equation  \\ \hline
    Compensation \\  Capacitor & $some equation$ \\ \hline 


   \end{tabular}   

但是表格似乎没有完全关闭。如何只关闭表格的右端

在此处输入图片描述

答案1

这是一个有效的例子:

\begin{tabular}{ | l | p{5cm} | }
    \hline % the line at the top
    Parameter & Equation \\ \hline
    Compensation & \\ % we have an empty cell here  
    Capacitor & $some equation$ \\
    \hline % the line at the bottom
\end{tabular} 

相关内容