我想在表格的行之间画水平线。
到目前为止我已经尝试过这样了,
\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}
预期输出链接
谢谢得到了预期的结果:
回答:
\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}