在乳胶表中的行之间绘制水平线

在乳胶表中的行之间绘制水平线

我想在表格的行之间画水平线。

到目前为止我已经尝试过这样了,

\begin{tabular}{|c|c|}
    \hline
    attribute& Art. 16.1.b\&c Aggregated generation per type\\
    \hline
     DocumentType& A75:actual generation per type A74:wind and solar generation\\
     ProcessType& A16:realised\\
     In\_Domain& Used\\
     PsrType& May be used\\
     TimeInterval& Used\\
     \hline
\end{tabular}

我得到的输出在此处输入图片描述

预期输出链接

https://ibb.co/89dBZGN

谢谢得到了预期的结果:

回答:

\begin{tabular}{|c|c|}
    \hline
    attribute& Art. 16.1.b\&c Aggregated generation per type\\
    \hline
     DocumentType& A75:actual generation per type A74:wind and solar generation\\
     \hline
     ProcessType& A16:realised\\
     \hline
     In\_Domain& Used\\
     \hline
     PsrType& May be used\\
     \hline
     TimeInterval& Used\\
     \hline
\end{tabular} 

谢谢。

答案1

可以使用行间的命令添加额外的水平线\hline,就像添加顶部和底部的线一样。

\documentclass{article}
\begin{document}

\begin{tabular}{|c|c|}
    \hline
    attribute& Art. 16.1.b\&c Aggregated generation per type\\
    \hline
    DocumentType& A75:actual generation per type A74:wind and solar generation\\
    \hline
    ProcessType& A16:realised\\
    \hline
\end{tabular} 

\end{document}

乳胶

相关内容