OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

office-metadata message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: citation example


So we talked about posting some full examples to make sure we're all 
clear, and to incorporate into documentation. Here's my attempt for 
citations:

An in-content citation field:

<text:meta-field xml:id="citation-1">(Doe, 1999: 23; see also Smith, 
2000)</text:meta-field>

An in-content bibliographic entry:

<text:meta-field xml:id="bib-1">Doe, J. (1999) Some Book, ABC Book:New 
York.</text:meta-field>


Binding for the citation:

<odf:Element odf:idref="citation-1" 
rdf:about="urn:uuid:224ab023-77b8-4396-a75a-8cecd85b81e3"/>


In-package field encoding for citation in a citation.rdf graph:

<odf:Citation rdf:about="urn:uuid:224ab023-77b8-4396-a75a-8cecd85b81e3">
   <rdfs:seeAlso rdf:resource="http://ex.net/1"/>
   <dc:source rdf:resource="urn:isbn:23983498#23"/>
</odf:Citation>

<b:Section rdf:about="urn:isbn:23983498#23">
   <dct:isPartOf rdf:resource="urn:isbn:23983498"/>
</b:Section>

... and then in a bibliography.rdf graph:

<b:Book rdf:about="urn:isbn:23983498">
   <dct:creator rdf:resource="http://ex.net/agents/1"/>
   <dct:title>Some Book</dct:title>
   <dct:issued>1999</dct:issued>
   <dct:publisher rdf:resource="http://abcbooks.com"/>
</b:Book>

<vcard:VCard rdf:about="http://ex.net/agents/1";>
   <vcard:fn>Jane Doe</vcard:fn>
   <vcard:sort-string>Doe, Jane</vcard:sort-string>
   <vcard:n rdf:parseType="Resource">
     <vcard:given-name>Jane</vcard:given-name>
     <vcard:family-name>Doe</vcard:family-name>
   <vcard:n>
</vcard:VCard>

<vcard:VCard rdf:about="http://ex.net/agents/1";>
   <vcard:fn>ABC Books</vcard:fn>
   <vcard:adr rdf:parseType="Resource">
     <vcard:locality>New York</vcard:locality>
   <vcard:adr>
</vcard:VCard>

I think I'm just missing the manifest entry for the graphs, but gotta 
go ...

Bruce



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]