### Flowchart of week41 ####
digraph Week41 {
# General settings
node [fontname = "Handlee"];
bgcolor=transparent;
# Blocks/clusters
subgraph cluster_1 {
color=transparent;
step8 [ label = "In progress..", shape=block, color=red];
step7 [ label = "Some little\n questions", shape=block, color =green];
step6 [ label = "Act.9\n Review", shape=block];
step5 [ label = "Act.8\n Review", shape=block];
step4 [ label = "Flowcharts", shape=block];
}
subgraph cluster_0 {
color=transparent;
step1 [ label = "Week40", shape=block];
step2 [ label = "Week41", shape=oval, color=blue];
step3 [ label = "Week42\n (18.10)", 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];
step2 -> step8 [dir=back];
}