<!-- This sample is based on examples of TriX documents 
    (Stickler and Carroll, 2004).
    It is simplified to omit the named graphs extenstion to RDF.
    And made more complicated by allowing xml:base arbitrarily.
-->

<trix xmlns:g="http://www.w3.org/2003/g/data-view#"
  g:transformation="trix2reification-advanced">
<graph xml:base="http://example.org/">
   <triple xml:base="aBook">
      <uri></uri>
      <uri>http://purl.org/dc/elements/1.1/title</uri>
      <typedLiteral datatype="http://www.w3.org/2000/01/rdf-schema#XMLLiteral">&lt;title&gt;A Good Book&lt;/title&gt;</typedLiteral>
   </triple>
   <triple xml:base="aBook">
      <uri xml:base=""></uri>
      <uri>http://www.w3.org/2000/01/rdf-schema#comment</uri>
      <plainLiteral xml:lang="en">This is a really good book!</plainLiteral>
   </triple>
   <triple>
      <id>binfo</id>
      <uri xml:base="source"></uri>
      <uri>book-description.rdf</uri>
   </triple>
   <triple xml:base="book-description.rdf">
      <uri></uri>
      <uri xml:base="../authority"></uri>
      <uri xml:base="..">Bob</uri>
   </triple>
</graph>
</trix>