### Flowchart of week50 #### digraph Week50 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step7 [ label = "Problem..", width=0.5, shape=diamond, color=green,style=filled, fillcolor=red]; step6 [ label = "Working with\n the Open Source Concept",shape=folder,style=filled, fillcolor=grey]; step5 [ label = "Documentation \n Cookiecutter",shape=folder]; step4 [ label = "Using 3dS\n in batch mode",shape=folder]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week49", shape=block]; step2 [ label = "Week50", shape=oval, color=blue]; step3 [ label = "Week51\n (20.12)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4; step2 -> step5; step2 -> step6; step2 -> step7; }