PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Probleme mit tabularx and rotate



NiN
19-03-2009, 17:59
Hi,

ich habe folgendes Problem: Der Text in den gedrehten Zellen wird nach oben ausgerichtet (siehe angehängtes pdf)!

Mein Tex Code ist folgender:


\begin{table}[h]
\tiny
\caption{Portfolio of Siemens Energy's gas turbines}
\label{tbl:turbines}
\begin{tabularx}{160mm} {|m{15mm}|p{5mm}|X|X|X|X|X|X|X|X|X|X|X|X|m{10mm}|m {15mm}|m{15mm}|}
\hline
\textbf{Functial Criteria} & \rotatebox{90}{\textbf{Function 1}} & \rotatebox{90}{\textbf{Function 2}} & \rotatebox{90}{\textbf{Function 3}} & \rotatebox{90}{\textbf{Function 4}} & \rotatebox{90}{\textbf{Function 5}} & \rotatebox{90}{\textbf{Function 6}} & \rotatebox{90}{\textbf{Function 7}} & \rotatebox{90}{\textbf{Function 8}} & \rotatebox{90}{\textbf{Function 9}} & \rotatebox{90}{\textbf{Function 10}} & \rotatebox{90}{\textbf{Function 11}} & \rotatebox{90}{\textbf{Function 12}} & \rotatebox{90}{\textbf{Function 13}} & \textbf{Row Totals} & \textbf{Row Percentage} & \textbf{Rank / Weighting Factor} \\
\hline
\end{tabularx}

\end{table}

Ich will allerdings, dass der Text unten ausgerichtet ist. Kann mir jemand weiterhelfen?

Vielen Dank!!!

voss
19-03-2009, 18:47
ich habe folgendes Problem: Der Text in den gedrehten Zellen wird nach oben ausgerichtet (siehe angehängtes pdf)!

Mein Tex Code ist folgender:


\begin{table}[h]
{|m{15mm}|p{5mm}|X|X|X|X|X|X|X|X|X|X|X|X|m{10mm}|m {15mm}|m{15mm}|}


Ich will allerdings, dass der Text unten ausgerichtet ist. Kann mir jemand weiterhelfen?


Dann nimm keine m-Spalte ...

Herbert

NiN
19-03-2009, 19:21
Vielen Dank! Wenn doch alles so einfach waere...:)

NiN
20-03-2009, 12:48
:confused:
Das Problem besteht weiterhin... Kann mir jemand nen Tipp geben, wie ich das in den Griff bekommen kann???

Xenara
20-03-2009, 13:08
Was ist das Problem? So ist es bei mir unten zentriert:


\documentclass[10pt]{scrartcl}
\usepackage[latin1]{inputenc}
\usepackage{tabularx}
\usepackage{graphicx}

\begin{document}

%\renewcommand{\tabularxcolumn}[1]{b{#1}} % Alles vertikal zentriert.

\begin{table}[h]
\tiny
\caption{Portfolio of Siemens Energy's gas turbines}
\label{tbl:turbines}
\begin{tabularx}{160mm}{|b{15mm}|b{5mm}|X|X|X|X|X| X|X|X|X|X|X|X|b{10mm}|b{15mm}|b{15mm}|}
\hline
\textbf{Functial Criteria} & \rotatebox{90}{\textbf{Function 1}} & \rotatebox{90}{\textbf{Function 2}} & \rotatebox{90}{\textbf{Function 3}} & \rotatebox{90}{\textbf{Function 4}} & \rotatebox{90}{\textbf{Function 5}} & \rotatebox{90}{\textbf{Function 6}} & \rotatebox{90}{\textbf{Function 7}} & \rotatebox{90}{\textbf{Function 8}} & \rotatebox{90}{\textbf{Function 9}} & \rotatebox{90}{\textbf{Function 10}} & \rotatebox{90}{\textbf{Function 11}} & \rotatebox{90}{\textbf{Function 12}} & \rotatebox{90}{\textbf{Function 13}} & \textbf{Row Totals} & \textbf{Row Percentage} & \textbf{Rank / Weighting Factor} \\
\hline
\end{tabularx}

\end{table}

\end{document}

NiN
20-03-2009, 13:19
Perfekt, danke!

Ich wusste halt nicht, wie man das definiert, dass es unten ausgerichtet wird...