From fd7b16baa372c2bcdcfabe5a3fe56301c2eb70b1 Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 8 Jan 2017 06:58:17 +0100 Subject: [PATCH] Add flowchart for network design --- tikz/flowchart-network-design/Makefile | 33 +++++++++++++ tikz/flowchart-network-design/README.md | 3 ++ .../flowchart-network-design.tex | 46 +++++++++++++++++++ 3 files changed, 82 insertions(+) create mode 100644 tikz/flowchart-network-design/Makefile create mode 100644 tikz/flowchart-network-design/README.md create mode 100644 tikz/flowchart-network-design/flowchart-network-design.tex diff --git a/tikz/flowchart-network-design/Makefile b/tikz/flowchart-network-design/Makefile new file mode 100644 index 0000000..dbf383f --- /dev/null +++ b/tikz/flowchart-network-design/Makefile @@ -0,0 +1,33 @@ +SOURCE = flowchart-network-design +DELAY = 80 +DENSITY = 300 +WIDTH = 512 + +make: + pdflatex $(SOURCE).tex -output-format=pdf + make clean + +clean: + rm -rf $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot + +gif: + pdfcrop $(SOURCE).pdf + convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif + make clean + +png: + make + make svg + inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png + +transparentGif: + convert $(SOURCE).pdf -transparent white result.gif + make clean + +svg: + #inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg + pdf2svg $(SOURCE).pdf $(SOURCE).svg + # Necessary, as pdf2svg does not always create valid svgs: + inkscape $(SOURCE).svg --export-width=$(WIDTH) --export-plain-svg=$(SOURCE)1.svg + rsvg-convert -a -w 720 -f svg $(SOURCE)1.svg -o $(SOURCE).svg + rm $(SOURCE)1.svg diff --git a/tikz/flowchart-network-design/README.md b/tikz/flowchart-network-design/README.md new file mode 100644 index 0000000..851f631 --- /dev/null +++ b/tikz/flowchart-network-design/README.md @@ -0,0 +1,3 @@ +Compiled example +---------------- +![Example](flowchart-network-design.png) diff --git a/tikz/flowchart-network-design/flowchart-network-design.tex b/tikz/flowchart-network-design/flowchart-network-design.tex new file mode 100644 index 0000000..bd74519 --- /dev/null +++ b/tikz/flowchart-network-design/flowchart-network-design.tex @@ -0,0 +1,46 @@ +\documentclass[varwidth=true, border=2pt]{standalone} + +\usepackage{tikz} +\usetikzlibrary{shapes,arrows} +\begin{document} +\pagestyle{empty} + + +% Define block styles +\tikzstyle{decision} = [diamond, draw, fill=blue!20, + text width=4.5em, text badly centered, node distance=3cm, inner sep=0pt] +\tikzstyle{block} = [rectangle, draw, fill=blue!20, + text width=5em, text centered, rounded corners, minimum height=4em] +\tikzstyle{line} = [draw, -latex'] +\tikzstyle{cloud} = [draw, ellipse,fill=red!20, node distance=3cm, + minimum height=2em] + +\begin{tikzpicture}[node distance = 2cm, auto] + % Place nodes + \node [block] (init) {initialize model}; + % \node [cloud, left of=init] (expert) {expert}; + % \node [cloud, right of=init] (system) {system}; + \node [block, below of=init] (qualitycheck) {calculate $q$}; + \node [decision, below of=qualitycheck] (decide) {is $q$ reasonable}; + \node [block, left of=decide, node distance=3cm] (investigate) {investigate}; + \node [block, below of=decide, node distance=3cm] (train) {train}; + \node [decision, below of=train] (decide2) {is $q$ good enough}; + \node [block, left of=investigate, node distance=3cm] (update) {update model}; + \node [block, below of=decide2, node distance=3cm] (stop) {stop}; + % Draw edges + \path [line] (init) -- (qualitycheck); + \path [line] (qualitycheck) -- (decide); + \path [line] (decide) -- node {yes} (train); + \path [line] (decide) -- node {no} (investigate); + \path [line] (investigate) -- (update); + \path [line] (train) -- (decide2); + % \path [line] (decide) -| node [near start] {yes} (update); + % \path [line] (update) |- (init); + \path [line] (decide2) -- node {yes}(stop); + \path [line] (decide2) -| node {no}(update); + \path [line] (update) |- (init); + % \path [line,dashed] (expert) -- (init); + % \path [line,dashed] (system) -- (init); + % \path [line,dashed] (system) |- (evaluate); +\end{tikzpicture} +\end{document}