blob: c5bd068f65fe26ed5815c7a5e83216153d4b9f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
\documentclass[oldtable,color]{fithesis3}
\usepackage{tabularx}
\usepackage{tabu}
\thesissetup{faculty=fi}
\begin{document}
\begin{tabular}{ccc}
a&b&c\\
d&e&f
\end{tabular}
\begin{tabularx}{\textwidth}{ccc}
a&b&c\\
d&e&f
\end{tabularx}
\begin{tabu}{ccc}
a&b&c\\
d&e&f
\end{tabu}
\end{document}
|