Skip to content

A simple parser for JATS XML for the citation extraction (following the citation rules of PLoS).

License

Notifications You must be signed in to change notification settings

marciuz/JATS2Citation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

JATS2Citation

A simple parser for JATS XML for the citation extraction (following the citation rules of PLoS).

What is this?

This is a simple class created to generate on the fly a good citation string for a scientific article stored in JATS XML format. The PHP class extract the information with a DOM parser and make the HTML string.

What is JATS?

The Journal Article Tag Suite (JATS) is an XML format used to describe scientific literature published online. It is a technical standard developed by the National Information Standards Organization (NISO) and approved by the American National Standards Institute with the code Z39.96-2012. (from https://en.wikipedia.org/wiki/Journal_Article_Tag_Suite) More info: https://jats.nlm.nih.gov/

Usage

// Can be a URL or a local XML file
$file = 'https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0055937&type=manuscript';

$J2C = new JATS2Citation(); 
$res = $J2C->make_citation($file);

// print the HTML
print $res;

... and returns

Torres de la Riva G, Hart BL, Farver TB, Oberbauer AM, Messam LLM, et al. (2013) Neutering Dogs: Effects on Joint Disorders and Cancers in Golden Retrievers. PLoS ONE 8(2): e55937. https://doi.org/10.1371/journal.pone.0055937

About

A simple parser for JATS XML for the citation extraction (following the citation rules of PLoS).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages