Edit page History How do I edit this website?

Citations

This page demonstrates how to add a citation to your page.

include citation allows you to create a single-use citation, or footnote.

Include Citations

Usage

This include creates a citation given the following inputs: author (all authors of the publication, this input will be presented as entered):

title title of the publication
url url link to location the publication is hosted
year year of publication
journal name of the publishing journal
volume volume of the publishing journal
number issuing number of the publishing journal
pages page numbers that the publication appears in publishing journal
doi digital object identifier
fn foot note number

Example

The following liquid code:


{% include cite content='journal' author='Albert Cardona, Stephan Saalfeld, Johannes Schindelin, Ignacio Arganda-Carreras, Stephan Preibisch, Mark Longair, Pavel Tomancak, Volker Hartenstein and Rodney J. Douglas'
year='2012'
title='TrakEM2 software for neural circuit reconstruction' journal='PLoS ONE'
url='http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0038011'
doi='10.1371/journal.pone.0038011' %}

produces:

Albert Cardona, Stephan Saalfeld, Johannes Schindelin, Ignacio Arganda-Carreras, Stephan Preibisch, Mark Longair, Pavel Tomancak, Volker Hartenstein and Rodney J. Douglas (2012), “TrakEM2 software for neural circuit reconstruction”, PLoS ONE , doi:10.1371/journal.pone.0038011.

Creating footnotes

In your document

Use the kramdown syntax in your document to refer to footnotes by number.

NB: regardless of where the liquid reference appears in your document, footnote text will always be at the bottom.

In your citation

Specify the footnote number in the include.

The following markdown and liquid code:

This is a reference[^1].


{% include cite content='journal' author='Albert Cardona, Stephan Saalfeld, Johannes Schindelin, Ignacio Arganda-Carreras, Stephan Preibisch, Mark Longair, Pavel Tomancak, Volker Hartenstein and Rodney J. Douglas'
year='2012'
fn='1'
title='TrakEM2 software for neural circuit reconstruction' journal='PLoS ONE'
url='http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0038011'
doi='10.1371/journal.pone.0038011' %}

produces:

This is a reference1.

  1. Albert Cardona, Stephan Saalfeld, Johannes Schindelin, Ignacio Arganda-Carreras, Stephan Preibisch, Mark Longair, Pavel Tomancak, Volker Hartenstein and Rodney J. Douglas (2012), “TrakEM2 software for neural circuit reconstruction”, PLoS ONE , doi:10.1371/journal.pone.0038011