-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 419c74d with MkDocs version: 1.5.3
- Loading branch information
0 parents
commit 78ff2cf
Showing
181 changed files
with
321,836 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 @@ | ||
digraph { | ||
rankdir = LR | ||
|
||
node [style = filled, fontcolor = white] | ||
|
||
subject [color = navy, fillcolor = slateblue4] | ||
object [color = tomato3, fillcolor = tomato2] | ||
|
||
subject -> object [label = "predicate", fontsize = 11, color = cyan4] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,42 @@ | ||
digraph { | ||
rankdir = LR | ||
|
||
{ | ||
node [color = navy, fillcolor = slateblue4, style = filled, fontcolor = white] | ||
|
||
sub1 [label = "subject no. 1"] | ||
sub2 [label = "subject no. 2"] | ||
sub3 [label = "subject no. 3"] | ||
} | ||
|
||
{ | ||
node [shape = box, color = firebrick] | ||
|
||
lit1 [label = "literal no. 1"] | ||
lit2 [label = "literal no. 2"] | ||
lit3 [label = "literal no. 3"] | ||
} | ||
|
||
edge [fontsize = 11, color = cyan4] | ||
|
||
sub1 -> lit1 [label = "predicate no. 1"] | ||
sub1 -> lit2 [label = "predicate no. 2"] | ||
sub1 -> sub2 [label = "predicate no. 3"] | ||
|
||
sub2 -> lit3 [label = "predicate no. 4"] | ||
sub2 -> sub3 [label = "predicate no. 5"] | ||
|
||
// Add invisible edges to order the nodes from top to bottom. | ||
|
||
{ | ||
rank = same | ||
lit1 -> lit2 -> sub2 [style = invis] | ||
rankdir = TB | ||
} | ||
|
||
{ | ||
rank = same | ||
lit3 -> sub3 [style = invis] | ||
rankdir = TB | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,23 @@ | ||
digraph { | ||
{ | ||
node [color = navy, fillcolor = slateblue4, style = filled, fontcolor = white] | ||
|
||
book [label = "ex:book1"] | ||
page [label = "ex:page1"] | ||
} | ||
|
||
{ | ||
node [shape = box, color = firebrick] | ||
|
||
title [label = "‘Das Narrenschiff’"] | ||
author [label = "‘Sebastian Brant’"] | ||
pagename [label = "‘a4r’"] | ||
} | ||
|
||
edge [fontsize = 11, color = cyan4] | ||
|
||
book -> title [label = "ex:title"] | ||
book -> author [label = "ex:author"] | ||
page -> book [label = "ex:pageOf"] | ||
page -> pagename [label = "ex:pagename"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.