spreewaelder
02-12-2010, 13:18
Hallo,
ich möchte in einer tikzpicture Umgebung eine Aufzählung haben. Ist das überhaupt möglich.
\documentclass[
11pt, % Schriftgröße
a4paper, % Papierformat
]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb,nomencl,ifthen,scrpage 2,siunitx}
\usepackage{tikz}
% Seitenlayout -------------------------------------------------------------
\usepackage{geometry}
%% nach HTW-Layoutanforderung
\geometry{verbose,a4paper,tmargin=3cm,bmargin=3cm, lmargin=3cm,rmargin=2cm} % Bindekorrektur 1cm
\usetikzlibrary{positioning,shapes,shadows,arrows}
\begin{document}
\tikzstyle{abstract}=[rectangle, draw=black, rounded corners, fill=white, text centered, anchor=south, text=black, text width=3cm, line width=0.7pt]
\tikzstyle{comment}=[rectangle, draw=white, text=center, anchor=north, text=black, text width=3cm]
\tikzstyle{myarrow}=[->, >=latex, line width=0.5pt]
\begin{center}
\begin{tikzpicture}[node distance=2cm]
\node (TH) [abstract] {Textile Halbzeuge};
\node (2D) [abstract, below=1.5cm of TH] {2D-Halbzeuge};
\node (1D) [abstract, left=3.0cm of 2D] {1D-Halbzeuge};
\node (3D) [abstract, right=3.0cm of 2D] {3D-Halbzeuge};
\node (1DInstants) [comment, below=0.2cm of 1D] {Roving\newline Garne};
\node (2DMW) [abstract, below=2.5cm of 2D] {Maschenware};
\node (2DV) [abstract, left=0.5cm of 2DMW] {Vliese};
\node (2DNmS) [abstract, right=0.5cm of 2DMW] {Nicht maschenbildende Systeme};
\node (3DInstants) [comment, below=0.2cm of 3D] {3D-Gewebe\newline 3D-Gelege};
\node (2DMWInstants) [comment, below=0.2cm of 2DMW] {Gewirke\newline Gestricke};
\node (2DNmSInstants) [comment, below=0.2cm of 2DNmS] {Gewebe\newline Gelege\newline Geflechte};
\draw[myarrow] (TH.south) -- ++(0,-1.0) -| (1D.north);
\draw[myarrow] (TH.south) -- ++(0,-1.0) -| (2D.north);
\draw[myarrow] (TH.south) -- ++(0,-1.0) -| (3D.north);
\draw[myarrow] (2D.south) -- ++(0,-1.5) -| (2DMW.north);
\draw[myarrow] (2D.south) -- ++(0,-1.5) -| (2DV.north);
\draw[myarrow] (2D.south) -- ++(0,-1.5) -| (2DNmS.north);
\end{tikzpicture}
\end{center}
\end{document}
Die Aufzählung soll bei Roving, Garne, etc. sein. Obwohl ich im \tikzstyle{comment} als Textausrichtung = center eingegeben habe, ist der Text linksbündig, wieso? Vielen Dank.
ciao spreewaelder
Edit: Das Auzählungsproblem habe ich gelöst. Ist ja trivial ;). Fehlt nur noch die Textausrichung.
ich möchte in einer tikzpicture Umgebung eine Aufzählung haben. Ist das überhaupt möglich.
\documentclass[
11pt, % Schriftgröße
a4paper, % Papierformat
]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb,nomencl,ifthen,scrpage 2,siunitx}
\usepackage{tikz}
% Seitenlayout -------------------------------------------------------------
\usepackage{geometry}
%% nach HTW-Layoutanforderung
\geometry{verbose,a4paper,tmargin=3cm,bmargin=3cm, lmargin=3cm,rmargin=2cm} % Bindekorrektur 1cm
\usetikzlibrary{positioning,shapes,shadows,arrows}
\begin{document}
\tikzstyle{abstract}=[rectangle, draw=black, rounded corners, fill=white, text centered, anchor=south, text=black, text width=3cm, line width=0.7pt]
\tikzstyle{comment}=[rectangle, draw=white, text=center, anchor=north, text=black, text width=3cm]
\tikzstyle{myarrow}=[->, >=latex, line width=0.5pt]
\begin{center}
\begin{tikzpicture}[node distance=2cm]
\node (TH) [abstract] {Textile Halbzeuge};
\node (2D) [abstract, below=1.5cm of TH] {2D-Halbzeuge};
\node (1D) [abstract, left=3.0cm of 2D] {1D-Halbzeuge};
\node (3D) [abstract, right=3.0cm of 2D] {3D-Halbzeuge};
\node (1DInstants) [comment, below=0.2cm of 1D] {Roving\newline Garne};
\node (2DMW) [abstract, below=2.5cm of 2D] {Maschenware};
\node (2DV) [abstract, left=0.5cm of 2DMW] {Vliese};
\node (2DNmS) [abstract, right=0.5cm of 2DMW] {Nicht maschenbildende Systeme};
\node (3DInstants) [comment, below=0.2cm of 3D] {3D-Gewebe\newline 3D-Gelege};
\node (2DMWInstants) [comment, below=0.2cm of 2DMW] {Gewirke\newline Gestricke};
\node (2DNmSInstants) [comment, below=0.2cm of 2DNmS] {Gewebe\newline Gelege\newline Geflechte};
\draw[myarrow] (TH.south) -- ++(0,-1.0) -| (1D.north);
\draw[myarrow] (TH.south) -- ++(0,-1.0) -| (2D.north);
\draw[myarrow] (TH.south) -- ++(0,-1.0) -| (3D.north);
\draw[myarrow] (2D.south) -- ++(0,-1.5) -| (2DMW.north);
\draw[myarrow] (2D.south) -- ++(0,-1.5) -| (2DV.north);
\draw[myarrow] (2D.south) -- ++(0,-1.5) -| (2DNmS.north);
\end{tikzpicture}
\end{center}
\end{document}
Die Aufzählung soll bei Roving, Garne, etc. sein. Obwohl ich im \tikzstyle{comment} als Textausrichtung = center eingegeben habe, ist der Text linksbündig, wieso? Vielen Dank.
ciao spreewaelder
Edit: Das Auzählungsproblem habe ich gelöst. Ist ja trivial ;). Fehlt nur noch die Textausrichung.