### Flowchart of week43 #### digraph Week43 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step7 [ label = "Questions", shape=block, color=red]; step6 [ label = "About Segmentation\n ~ Center Line\n ~ Planed Reformat", shape=block]; step5 [ label = "First attempt\n using only 3DSlicer", shape=block]; step4 [ label = "Review of\n introduction", shape=block]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week42", shape=block]; step2 [ label = "Week43", shape=oval, color=blue]; step3 [ label = "Week44\n (01.11)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4 [dir=back]; step2 -> step5 [dir=back]; step2 -> step6 [dir=back]; step2 -> step7 [dir=back]; }