WUT_Computer_Science/examples/complicated/table1.tex

14 lines
240 B
TeX
Raw Normal View History

2023-05-21 11:43:32 +02:00
\documentclass{article}
\begin{document}
Here is a table:
\begin{tabular}{|lp{1.3pt}c|r|}
2023-05-21 11:43:32 +02:00
\hline
left & center & right \\
\cline{2-3}
paragraph with top alignment & \multicolumn{2}{|c|}{two columns} \\
\hline
\end{tabular}
\end{document}