-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from neilt/fix_graphviz_latexml
Fix graphviz dot files not building with LaTeXML
- Loading branch information
Showing
4 changed files
with
99 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
digraph wf1 { | ||
rankdir=LR; | ||
subgraph invoice { | ||
graph [label="Invoice"]; | ||
cluster = true; | ||
saved -> posted [label="post"]; | ||
posted -> reversed [label="reverse"]; | ||
}; | ||
|
||
subgraph email { | ||
graph [label="email"]; | ||
cluster = true; | ||
created -> sent [label="send"]; | ||
}; | ||
|
||
posted -> created [label="e-mail"]; | ||
posted -> posted [label="e-mail"]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
digraph wf2 { | ||
rankdir=LR; | ||
subgraph invoice { | ||
graph [label="Invoice"]; | ||
cluster=true; | ||
saved -> posted [label="post (<100.000)"]; | ||
saved -> submitted [label="submit (>100.000)"]; | ||
submitted -> posted [label="post"]; | ||
posted -> reversed [label="reverse"] | ||
} | ||
} |