Skip to content

Instantly share code, notes, and snippets.

@bdarcus
Created March 17, 2011 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdarcus/874831 to your computer and use it in GitHub Desktop.
Save bdarcus/874831 to your computer and use it in GitHub Desktop.
comments on schtml-cites modelling
<!--
So the current RDF modeling represented below treats the bibliography as a thing.
But as near as I can tell, the sources are disconnected from it and the document.
For sake of argument, why not just get rid of that biro:RefernceList class, and instead
just put a dcterms:references property on each of the items. The resulting RDF might look
like:
<ex:thisdoc> a bibo:Article ;
dcterms:title "This Article Title"@en ;
dcterms:references <http://dx.doi.org/10.1039/B411699M> .
<http://dx.doi.org/10.1039/B411699M> a bibo:Article ;
dcterms:title "That Article Title"@en .
Also, is biro:BibliographicRecord really helpful here? Why not bibo:Article or
bibo:Academic Article?
-->
<div id="biblography" typeof="http://purl.org/spar/biro/ReferenceList">
<div about="http://dx.doi.org/10.1039/B411699M" typeof="http://purl.org/spar/biro/BibliographicRecord">
<a name="cite1" href="#"></a>
<span property="http://purl.org/dc/terms/title">Experimental data checker: better information for organic chemists</span>
<br>
<span rel="http://purl.org/dc/terms/creator">
<span resource="http://people.cam.ac.uk/sea36">
<span property="http://xmlns.com/foaf/0.1/name" content="Samuel E. Adams">S. E. Adams</span>
</span>,
<span resource="http://people.cam.ac.uk/jmg">
<span property="http://xmlns.com/foaf/0.1/name">J. M. Goodman</span>
</span>,
<span resource="http://people.rsc.org/rkidd">
<span property="http://xmlns.com/foaf/0.1/name" content="Richard J. Kidd">R. J. Kidd</span>
</span>,
<span resource="http://people.rsc.org/amcnaught">
<span property="http://xmlns.com/foaf/0.1/name">A. D. McNaught</span>
</span>,
<span resource="http://people.cam.ac.uk/pmr">
<span property="http://xmlns.com/foaf/0.1/name">P. Murray-Rust</span>
</span>,
<span resource="http://people.cam.ac.uk/frn">
<span property="http://xmlns.com/foaf/0.1/name">F. R. Norton</span>
</span>,
<span resource="http://people.cam.ac.uk/jat">
<span property="http://xmlns.com/foaf/0.1/name">J. A. Townsend</span>
</span>,
<span resource="http://people.cam.ac.uk/caw">
<span property="http://xmlns.com/foaf/0.1/name">C. A. Waudby</span>
</span>.
</span>
<br>
<span rel="http://purl.org/dc/terms/isPartOf" resource="[_:journal]">
<span property="http://purl.org/dc/terms/title" content="Organic &amp; Biomolecular Chemistry"></span>
<span property="http://purl.org/ontology/bibo/shortTitle">Org. Biomol. Chem.</span>
</span>
<span property="http://purl.org/dc/terms/date">2004</span>,
<span property="http://purl.org/ontology/bibo/volume">2</span>
(<span property="http://purl.org/ontology/bibo/issue">21</span>),
<span property="http://purl.org/ontology/bibo/pageStart">3067</span>-<span property="http://purl.org/ontology/bibo/pageEnd">3070</span>
<br>
DOI: <a href="#" property="http://purl.org/ontology/bibo/doi">10.1039/B411699M</a>
</div>
<br>
<div about="http://dx.doi.org/10.1038/nchem.402" typeof="http://purl.org/spar/biro/BibliographicRecord">
<a name="cite2" href="#"></a>
<span property="http://purl.org/dc/terms/title">Anhydrous proton conduction at 150&nbsp;°C in a crystalline metal–organic framework</span>
<br>
<span>
<span property="http://purl.org/dc/terms/creator">Jeff A. Hurd</span>
<span property="http://purl.org/dc/terms/creator">Ramanathan Vaidhyanathan</span>
<span property="http://purl.org/dc/terms/creator">Venkataraman Thangadurai</span>
<span property="http://purl.org/dc/terms/creator">Christopher I. Ratcliffe</span>
<span property="http://purl.org/dc/terms/creator">Igor L. Moudrakovski</span>
<span property="http://purl.org/dc/terms/creator">George K. H. Shimizu</span>
</span>
<br>
<span rel="http://purl.org/dc/terms/isPartOf" resource="[_:journal1]">
<span property="http://purl.org/dc/terms/title">Nature Chemistry</span>
</span>
<span property="http://purl.org/dc/terms/date">2009</span>,
<span property="http://purl.org/ontology/bibo/volume">1</span>
(<span property="http://purl.org/ontology/bibo/issue">9</span>),
<span property="http://purl.org/ontology/bibo/pageStart">705</span>-<span property="http://purl.org/ontology/bibo/pageEnd">710</span>
<br>
DOI: <a href="#" property="http://purl.org/ontology/bibo/doi">10.1038/nchem.402</a>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment