41 lines
829 B
TeX
41 lines
829 B
TeX
\documentclass{article}
|
|
\usepackage[french]{babel}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[margin=6em, a4paper]{geometry}
|
|
\usepackage{lipsum}
|
|
|
|
|
|
\title{Ce document a un titre}
|
|
\date{20444}
|
|
% Fin du préambule.
|
|
\begin{document}
|
|
|
|
\begin{tabular}{|rc|l|}
|
|
Bouh, & mais que & ce \\
|
|
\hline
|
|
tableau & est & laid ! \\
|
|
\hline
|
|
\end{tabular}
|
|
|
|
\vspace{5ex}
|
|
|
|
\begin{tabular}{|c|p{8cm}|}
|
|
\hline
|
|
Ici je peux écrire longtemps, & Alors qu'ici, je peux écrire tant que je veux, je ne dépasserai pas dans la marge, youpi ! \\
|
|
\cline{2-2}
|
|
je ne reviendrai jamais à & \\
|
|
\cline{1-1}
|
|
la ligne automatiquement. & \\
|
|
\hline
|
|
\end{tabular}
|
|
|
|
\vspace{5ex}
|
|
|
|
\begin{tabular}{r@{+}c@{+}l*{3}{c|}}
|
|
3&2& 5 & 10 & 10 & 10 \\
|
|
6&1& 4 & 11 & 11 & 11 \\
|
|
442&1222& 557 & 2211 & 2211 & 2211 \\
|
|
\end{tabular}
|
|
|
|
\end{document}
|