24 lines
495 B
TeX
24 lines
495 B
TeX
\documentclass[a4paper]{article}
|
|
\usepackage{lmodern}
|
|
\usepackage{amssymb,amsmath}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{hyperref}
|
|
\usepackage{booktabs}
|
|
\begin{document}
|
|
\thispagestyle{empty}
|
|
|
|
\begin{table}[h]
|
|
\begin{tabular}{lll}
|
|
\toprule
|
|
Spalte 1 & Spalte 2 & Spalte 3 \\
|
|
\midrule
|
|
Inhalt a & Inhalt b & Inhalt c \\
|
|
Inhalt e & Inhalt f & Inhalt g \\
|
|
Inhalt i & Inhalt j & Inhalt k \\
|
|
\bottomrule
|
|
\end{tabular}
|
|
\end{table}
|
|
|
|
\end{document}
|