WUT_Computer_Science/examples/easyTable/table1.tex

14 lines
233 B
TeX
Raw Normal View History

2023-05-03 14:59:06 +02:00
\documentclass{article}
\begin{document}
Here is a table:
\begin{tabular}{|l|c|r|}
\hline
left & center & right \\
\cline{2-3}
paragraph with top alignment & \multicolumn{2}{|c|}{two columns} \\
\hline
\end{tabular}
\end{document}