@prefix rdfs: . @prefix log: . @prefix g: . @prefix p: . @prefix o: . @prefix : . @prefix v: <#>. <> g:digraph :theGraph. :theGraph g:label "Example Scenario\\n$Id: style.n3,v 1.2 2001/05/23 19:49:26 connolly Exp $"; g:rankdir "LR". this log:forAll v:n, v:p, v:str. { v:p a g:EdgeProperty; rdfs:label v:str } log:implies { v:p g:label v:str }. { v:n a p:Person; p:name v:str. } log:implies { :theGraph g:hasNode v:n. v:n g:label v:str; g:shape "plaintext" }. p:livesIn a g:EdgeProperty. p:worksFor a g:EdgeProperty. p:isParentOf a g:EdgeProperty. p:isStudentAt a g:EdgeProperty. { v:n a o:Company; o:name v:str } log:implies { :theGraph g:hasNode v:n. v:n g:shape "diamond"; g:label v:str }. o:isClientOf a g:EdgeProperty. o:clientOf a g:EdgeProperty; g:label "is client of". # @@hack o:hasLocation a g:EdgeProperty.