From: Aaron Kaplan Date: Tue, 17 Dec 2013 02:38:50 +0000 (+0100) Subject: fixed formatting of the flow graph X-Git-Url: https://git.bettercrypto.org/ach-master.git/commitdiff_plain/96407c5146f5164f7382824933168da5542df576 fixed formatting of the flow graph --- diff --git a/src/img/howtoread.dot b/src/img/howtoread.dot index 3ad469a..55a836b 100644 --- a/src/img/howtoread.dot +++ b/src/img/howtoread.dot @@ -10,15 +10,15 @@ decision [shape=diamond, label="I just want\nto copy & paste?"]; Practical [shape=box, label="read chapter: Practical recommendations"]; Theory [shape=box, label="To understand why\nwe chose certain settings,\n read the chapter 'Theory' first"]; -decision -> Practical [label="Yes"]; -decision -> Theory [label="No"]; +decision -> Practical [label="Yes", labelfloat="Yes", labeldistance=2]; +decision -> Theory [label="No", labelfloat="Yes", labeldistance=2]; Theory -> Appendix; Practical -> Appendix; -Practical -> Theory; +Practical -> Theory [constraint=false]; Appendix [shape=box, label="Appendix: references, links"] { rank=same; decision; Practical } -{ rank=same; Theory; Appendix } +{ rank=max; Theory; Appendix } }