Fix the subgraph

This commit is contained in:
Nico Schottelius 2019-08-10 15:27:52 +02:00
parent bbada059b5
commit 61b65341aa
3 changed files with 10 additions and 6 deletions

View File

@ -33,7 +33,7 @@
\include{Abstract} \include{Abstract}
\tableofcontents \tableofcontents
%\listoffigures \listoffigures
\listoftables \listoftables
\include{Introduction} \include{Introduction}

View File

@ -1,5 +1,7 @@
graph G { graph G {
node [ shape="box"]; node [ shape="box"];
rankdir="LR";
v6host1 [ label="IPv6 only host"]; v6host1 [ label="IPv6 only host"];
v6host2 [ label="IPv6 only host"]; v6host2 [ label="IPv6 only host"];
@ -24,6 +26,10 @@ graph G {
nat64gw [ label="NAT64 translator", rank=max ]; nat64gw [ label="NAT64 translator", rank=max ];
subgraph cluster_seperate { subgraph cluster_seperate {
label="Separated IPv6/IPv4 networks";
rank="max";
v6host1--switchv6; v6host1--switchv6;
v6host2--switchv6; v6host2--switchv6;
v6host3--switchv6; v6host3--switchv6;
@ -37,6 +43,8 @@ graph G {
}; };
subgraph cluster_mixed { subgraph cluster_mixed {
label="Mixed IPv6/IPv4 networks";
rank="min";
v6host12--switchboth; v6host12--switchboth;
v6host22--switchboth; v6host22--switchboth;
v6host32--switchboth; v6host32--switchboth;
@ -45,10 +53,6 @@ graph G {
v4host22--switchboth; v4host22--switchboth;
v4host32--switchboth; v4host32--switchboth;
} }
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 81 KiB