Seite 1 von 1

Ablaufdiagramm Erstellen

Verfasst: Sa 20. Jan 2018, 11:25
von braniz
Hallo Forum.

Ich möchte ein Ablaufdiagramm erstellen.
Dafür benötige ich die Darstellung von "Dokumenten", "Tabellen", "Berichten", "DatenTräger" usw. s.h. Bild.

Gefunden habe ich bis jetzt Tikz http://www.texample.net/tikz/examples/f ... low-chart/

Da werden nur einfache Darstellungen gezeigt.
Mit Google finde ich nur immer wieder todo's für die "einfache" Darstellungen.

Das habe ich auch gefunden:
https://tex.stackexchange.com/questions ... port-shape

Das geht schon in die richtige Richtung. Benötige aber Info wie ich die restlichen Symbole darstellen kann.

Danke für die Hilfe.

Verfasst: Sa 20. Jan 2018, 12:23
von braniz
Ich denke ich habe doch noch das Richtige gefunden.

https://mirror.hmc.edu/ctan/graphics/pg ... wchart.pdf

Werde mich erstmal damit beschäftigen.

Danke.

Verfasst: Sa 20. Jan 2018, 13:16
von braniz
Hallo Leute.

Das habe ich bis jetzt selber zusammen gebaut.
Mir fehlen noch ein paar Symbole.

Kann einer weiter helfen?
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes.symbols,shapes.geometric, shadows}
\tikzset{
	startstop/.style={rectangle, text centered, rounded corners, draw=black},
	dokument/.style={tape, draw, tape bend top=none},
	multidokument/.style={shape=tape, draw, fill=white, tape bend top=none, double copy shadow},
	m_eingabe/.style={shape=trapezium, draw, shape border rotate=90, trapezium left angle=90, trapezium right angle=80},
	bericht/.style={tape,tape bend top=out and in, tape bend bottom=out and in, draw, tape bend},
	diamant/.style={diamond, draw, text badly centered, inner sep=3pt},
	r_trapez/.style={trapezium, trapezium right angle=-70,text centered, draw=black},
	l_trapez/.style={trapezium, trapezium left angle=-70,text centered, draw=black},
	o_trapez/.style={trapezium, text centered, draw=black}
}
\begin{document}

\begin{tikzpicture}
\node[startstop] {Start - Stop};
\end{tikzpicture}\\

\begin{tikzpicture}
  \node[dokument] {Dokument};
\end{tikzpicture}\\

\begin{tikzpicture}
\node [multidokument] {Multi-Dokument};
\end{tikzpicture}\\

\begin{tikzpicture}
\node[bericht]{Bericht};
\end{tikzpicture}\\

\begin{tikzpicture}
\node [m_eingabe] at (0,-1.5) {Manual Input};
\end{tikzpicture}\\

\begin{tikzpicture}
\node [diamant] {Diamant};
\end{tikzpicture}\\

\begin{tikzpicture}
\node [r_trapez] {Trapez};
\end{tikzpicture}\\

\begin{tikzpicture}
\node [l_trapez] {Trapez};
\end{tikzpicture}\\

\begin{tikzpicture}
\node [o_trapez] {Trapez};
\end{tikzpicture}\\

\end{document}

Verfasst: Sa 20. Jan 2018, 19:42
von Rolli
Hallo braniz,

Schau ins pgfmanual https://ctan.org/pkg/pgf?lang=de auf Seite 693, Kapitel 67. Da ist die Shape Library ausführlich beschrieben. Wenn was fehlt, einfach das nächst passende raussuchen und abändern.

Gruß vom Rolli