Add section about tables and longtable

This commit is contained in:
Julius Freudenberger 2025-09-23 23:14:06 +02:00
parent f8afcdae3d
commit 0f647aec00
5 changed files with 137 additions and 1 deletions

View file

@ -0,0 +1,9 @@
\begin{table}
\begin{tabular}{c|c|c}
Hallo & Beispiel & Ende \\
\hline
Dies & ist & Zeile 2 \\
\end{tabular}
\caption{Beispieltabelle mit
Beschriftung}
\end{table}

View file

@ -0,0 +1,13 @@
\begin{longtable}{c|c}
Wird \emph{nur} auf der & ersten Seite oben gezeigt \\
\endfirsthead
Wird auf \emph{jeder} & Seite oben gezeigt \\
% Funktioniert nur leider in Präsentationen nicht
\endhead
Wird auf \emph{jeder} & Seite unten gezeigt \\
\endfoot
Wird \emph{nur} auf der & letzten Seite unten gezeigt \\
\endlastfoot
Normaler & Inhalt \\
der & Tabelle \\
\end{longtable}

View file

@ -0,0 +1,7 @@
\begin{tabular}{|l|c|r|}
\hline
Hallo & Beispiel & Ende \\
\hline
Dies & ist & Zeile 2 \\
\hline
\end{tabular}

View file

@ -0,0 +1,7 @@
\begin{tabularx}{\textwidth}{X|X|X}
% X sorgt für Umbruch
% und "stretcht" die Spalte
Hallo & Beispieltext & Ende \\
\hline
Dies & ist & Zeile 2 \\
\end{tabularx}