mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 18:03:14 +02:00
14 lines
233 B
TeX
14 lines
233 B
TeX
|
|
\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}
|