Martin Paul Eve bio photo

Martin Paul Eve

Professor of Literature, Technology and Publishing at Birkbeck, University of London

Email Books Twitter Github Stackoverflow MLA CORE Institutional Repo Hypothes.is ORCID ID  ORCID iD Wikipedia Pictures for Re-Use

After the Vitae Digital Researcher workshop at the British Library, I decided to ramp up my web presence to a slightly more professional level than it had previously obtained. Having also decided that it would be nice to take a bit of a break this weekend, I went ahead and implemented COinS on my main web page. Although, at present, my publication list is somewhat insubstantial, as this grows it will be possible for anyone who visits to automatically import my conference papers and publications into social citation software such as Zotero, Mendeley and CiteULike. COinS works by embedding a span tag inside your document that describes the data being visually presented. The full specification is at http://ocoins.info/ However, I anticipate that this will merely end up scaring quite a few people off, so here's a quick example that makes it much easier to digest. There's also an automatic generator at http://generator.ocoins.info, although this won't do conference papers, which is what I will show below.

The example!

On my site, I have the following code embedded:

 <cite>&lt;span class="Z3988" title="ctx_ver=Z39.88-2004&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;amp;rft.btitle=%27It+sure%27s+hell+looked+like+war%27%3A+Terrorism+and+the+Cold+War+in+Thomas+Pynchon%27s+Against+the+Day+and+Don+DeLillo%27s+Underworld%27&amp;amp;rft.creator=Martin+Paul+Eve&amp;amp;rft.publisher=Maria+Curie-Sklodowska+University&amp;amp;rft.date=2010-06-09&amp;amp;rft.format=Conference+Paper&amp;amp;rft.source=IPW+2010%3A+Of+Pynchon+And+Vice%3A+America%27s+Inherent+Others&amp;amp;rft.genre=conference"&gt;'It sure's hell looked like war': Terrorism and the Cold War in Thomas Pynchon's &lt;i&gt;Against the Day&lt;/i&gt; and Don DeLillo's &lt;i&gt;Underworld&lt;/i&gt;' (forthcoming, &lt;i&gt;IPW 2010: Of Pynchon And Vice: America's Inherent Others&lt;/i&gt;, Maria Curie-Sklodowska University, Lublin, Poland)&lt;/span&gt;</cite>
 
 

What does this do?

Well, to start at the end, the last portion "'It sure's hell looked like war': Terrorism and the Cold War in Thomas Pynchon's <i>Against the Day</i> and Don DeLillo's <i>Underworld</i>' (forthcoming, <i>IPW 2010: Of Pynchon And Vice: America's Inherent Others</i>, Maria Curie-Sklodowska University, Lublin, Poland)" simply displays the name of the paper.

The portion before is also, not really, so hard to explain.

To get a human readable version, replace in the above the following:

<space> –> %20
+ –> <space>
# –> %23
% –> %25
& –> %26
‘   –> %27
+ –> %2B 
/ –> %2F
< –> %3C
= –> %3D
> –> %3E
? –> %3F
: –> %3A
é –> %C3%A9
ü –> %C3%BC

So, the title attribute actually reads (with [ENTER] inserted after each &):

 <cite>ctx_ver=Z39.88-2004&amp;<br /> rft_val_fmt=info=ofi/fmt=kev=mtx=book&amp;<br /> rfr_id=info=sid/ocoins.info=generator&amp;<br /> rft.btitle='It sure's hell looked like war'= Terrorism and the Cold War in Thomas Pynchon's Against the Day and Don DeLillo's Underworld'&amp;<br /> rft.creator=Martin Paul Eve&amp;<br /> rft.publisher=Maria Curie-Sklodowska University&amp;<br /> rft.date=2010-06-09&amp;<br /> rft.format=Conference Paper&amp;<br /> rft.source=IPW 2010= Of Pynchon And Vice= America's Inherent Others&amp;<br /> rft.genre=conference</cite>

Now, it becomes a bit clearer what's going on. There are a set of key/value pairs specifying each bibliographic aspect.

Let me run through each key.

 <cite>ctx_ver=Z39.88-2004&amp;</cite>

This simply tells the parser (Zotero etc.) the version of the metadata format that we are using.

 <cite>rft_val_fmt=info=ofi/fmt=kev=mtx=book&amp;</cite>

This specifies that the type of publication is a "book". For conference papers, use this and then set the genre (see below).

 <cite>rfr_id=info=sid/ocoins.info=generator&amp;</cite>

Another piece of data purely for the automated parsers; it should be there, but you don't need to worry about it.

 <cite>rft.btitle='It sure's hell looked like war'= Terrorism and the Cold War in Thomas Pynchon's Against the Day and Don DeLillo's Underworld'&amp;</cite>

The title of your stunning research. btitle stands for book title.

<cite>rft.creator=Martin Paul Eve&amp;</cite>

The name of the author.

<cite>rft.publisher=Maria Curie-Sklodowska University&amp;</cite>

The name of the publisher.

<cite>rft.date=2010-06-09&amp;<br /> </cite><br /> The<strong> </strong>date of publication or, in this example of a conference paper, the date given.
<cite>rft.format=Conference Paper&amp;</cite>

The format of the piece.

<cite><br /> rft.source=IPW 2010= Of Pynchon And Vice= America's Inherent Others&amp;</cite>

The  conference at which the paper was given.

<cite>rft.genre=conference</cite>

Finally, specify genre to conference to say that, in reality, it's not a book.

There, demystified. Now, when you visit the page, Zotero or CiteULike should be able to parse the information making you 10x more citable!

I have only tested this example in Zotero and, at present, it is not possible using COinS to get the information about place and conference name into the software (see: http://forums.zotero.org/discussion/439/coins-conference-papers-imported-incorrectly-by-zotero/). I have included it in the example purely for future proofing.

Photograph for this post is licensed as Attribution-Non-Commercial-Share Alike 2.0 Generic by "Here's Kate" at http://hereskate.com/blog You must credit the original author, not me, if you re-use it.