Project

General

Profile

Features plantuml

PlantUML

Example:

Error executing the plantuml macro (No or bad arguments.)

Error executing the plantuml macro (No or bad arguments.)

Error executing the plantuml macro (No or bad arguments.)

GraphViz

The graphviz macro is used to draw directed graphs. For example:

{{graphviz
subgraph cluster_0 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
a0 -> a1 -> a2 -> a3;
label = "process #1";
}

subgraph cluster_1 {
node [style=filled];
b0 -> b1 -> b2 -> b3;
label = "process #2";
color=blue
}
start -> a0;
start -> b0;
a1 -> b3;
b2 -> a3;
a3 -> a0;
a3 -> end;
b3 -> end;

start [shape=Mdiamond];
end [shape=Msquare];
}}

{{graphviz
subgraph cluster_0 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
a0 -> a1 -> a2 -> a3;
label = "process #1";
}

subgraph cluster_1 {
node [style=filled];
b0 -> b1 -> b2 -> b3;
label = "process #2";
color=blue
}
start -> a0;
start -> b0;
a1 -> b3;
b2 -> a3;
a3 -> a0;
a3 -> end;
b3 -> end;

start [shape=Mdiamond];
end [shape=Msquare];
}}

Neato

The gneato macro is used to draw undirected graphs. For example:

{{gneato
node [color=Red]

r01
r02

node [color=Blue]

p01
p02

r01 -- r02
r01 -- p01
r01 -- p02
r02 -- p01
r02 -- p02
p01 -- p02

}}

{{gneato
node [color=Red]

r01
r02

node [color=Blue]

p01
p02

r01 -- r02
r01 -- p01
r01 -- p02
r02 -- p01
r02 -- p02
p01 -- p02

}}

Add picture from clipboard (Maximum size: 14.8 MB)