Flussdiagramm im Querformat
Verfasst: Fr 20. Nov 2015, 12:37
Hallo ich suche nach einer möglichkeit ein Flussdiagramm im Querformat zu erstellen. Mein Flussdiagramm ist mit tikz erstellt und im Beispiel vereinfacht dargestellt.
Gibt es eine Möglichkeit die gesammte darstellung um 90° zu drehen ?
Danke gruß raphi
Gibt es eine Möglichkeit die gesammte darstellung um 90° zu drehen ?
\documentclass{article} \usepackage[latin1]{inputenc} \usepackage{tikz} \usetikzlibrary{shapes,arrows} \begin{document} \pagestyle{empty} \begin{tikzpicture} [auto, block/.style ={rectangle, draw, thick, fill=gray!10, text width=12em, text centered, rounded corners, minimum height=3em, node distance = 1.5cm}, coor/.style ={ draw, thick, }, line/.style ={draw, thick, -latex',shorten >=0pt}, cloud/.style ={draw=red, thick, ellipse, fill=red!20, minimum height=4em}] \node [block] (1) {\textbf{Bauteil}}; \node [block, right of=1, node distance=7cm] (1-1) {Form / Geometrie}; %\node [block, below of=1-1,] (1-2) {Große (Lange/Breite/Hohe)}; \node [block, below of=1-1,] (2-1) {Warmeausdehnungs- koeffizient $\alpha_T$}; \node [block, left of=2-1, node distance= 7cm] (2) {\textbf{Material}}; \node [block, below of=2,] (2--) {Verarbeitungstemperatur}; \node [block, below of=2-1,] (2-2) {Druckbetttemperatur}; \node [block, below of=2-2,] (2-3) {Druckgeschwindigkeit}; \path [line] (1) -- (1-1); %\path [line] (1) -- (1-2); \path [line] (2) -- (2--); \path [line] (2) -- (2-1); \path [line] (2) -- (2-2); \path [line] (2--) -- (2-3); \end{tikzpicture} \end{document}