von Johannes_B » Di 17. Jun 2014, 09:50
Du könntest statt einer linkszentrierten Spalte ein Parbox nehmen. Der Inhalt wird dann wie ganz normaler Text behandelt. Mit dem Paket tabularx kannst du die Gesamtbreite der Tabelle angeben, die X-Spalte nimmt dann so viel Platz ein, wie noch übrig ist.
\documentclass[12pt,twoside,a4paper]{article}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\textwidth}{|l|X|}
%\begin{tabular}{|@{}*{2}{l|}@{}}
\hline
$f_A$ & $\frac{12345 \cdot x + 34567 \cdot t
+45+z+123456789+3456789+d+6574398927 \cdot u-98652617 \cdot
f^2-f}{12345 \cdot x + 34567 \cdot t}-\frac{12345 \cdot x +
34567 \cdot t +45+z+123456789+5555555555555+d+55555555555 \cdot
u-98652617 \cdot f^2-f}{78900 \cdot x + 34567 \cdot
t}+\frac{123456 \cdot x + 34567 \cdot t
+45+z+2+3456789+d+6574398927 \cdot u-98652617 \cdot f^2-f}{4567
\cdot r + 9999 \cdot t}$ \tabularnewline \hline $f_B$ &
$\frac{12345 \cdot x + 34567 \cdot t
+45+z+123456789+3456789+d+6574398927 \cdot u-98652617 \cdot
f^2-f}{12345 \cdot x + 34567 \cdot t}-\frac{12345 \cdot x +
34567 \cdot t +45+z+123456789+5555555555555+d+55555555555 \cdot
u-98652617 \cdot f^2-f}{78900 \cdot x + 34567 \cdot
t}+\frac{123456 \cdot x + 34567 \cdot t
+45+z+2+3456789+d+6574398927 \cdot u-98652617 \cdot f^2-f}{4567
\cdot r + 9999 \cdot t}$ \tabularnewline \hline
\end{tabularx}
\end{document}
Ich weiß ja nicht, was in deinem Original erscheint, aber diese Tabelle ist mehr als verwirrend.
Schau bitte auch in die Dokumentation von
booktabs.
Du könntest statt einer linkszentrierten Spalte ein Parbox nehmen. Der Inhalt wird dann wie ganz normaler Text behandelt. Mit dem Paket tabularx kannst du die Gesamtbreite der Tabelle angeben, die X-Spalte nimmt dann so viel Platz ein, wie noch übrig ist.
[code]
\documentclass[12pt,twoside,a4paper]{article}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\textwidth}{|l|X|}
%\begin{tabular}{|@{}*{2}{l|}@{}}
\hline
$f_A$ & $\frac{12345 \cdot x + 34567 \cdot t
+45+z+123456789+3456789+d+6574398927 \cdot u-98652617 \cdot
f^2-f}{12345 \cdot x + 34567 \cdot t}-\frac{12345 \cdot x +
34567 \cdot t +45+z+123456789+5555555555555+d+55555555555 \cdot
u-98652617 \cdot f^2-f}{78900 \cdot x + 34567 \cdot
t}+\frac{123456 \cdot x + 34567 \cdot t
+45+z+2+3456789+d+6574398927 \cdot u-98652617 \cdot f^2-f}{4567
\cdot r + 9999 \cdot t}$ \tabularnewline \hline $f_B$ &
$\frac{12345 \cdot x + 34567 \cdot t
+45+z+123456789+3456789+d+6574398927 \cdot u-98652617 \cdot
f^2-f}{12345 \cdot x + 34567 \cdot t}-\frac{12345 \cdot x +
34567 \cdot t +45+z+123456789+5555555555555+d+55555555555 \cdot
u-98652617 \cdot f^2-f}{78900 \cdot x + 34567 \cdot
t}+\frac{123456 \cdot x + 34567 \cdot t
+45+z+2+3456789+d+6574398927 \cdot u-98652617 \cdot f^2-f}{4567
\cdot r + 9999 \cdot t}$ \tabularnewline \hline
\end{tabularx}
\end{document}
[/code]
Ich weiß ja nicht, was in deinem Original erscheint, aber diese Tabelle ist mehr als verwirrend.
Schau bitte auch in die Dokumentation von [url=http://www.ctan.org/pkg/booktabs]booktabs[/url].