Simplebibtex Parser

Description

The simplebibtex parser allows you to have bibtex entries rendered nicely without any additional programs, such as bibtex2html.

Download & Release Notes

Download

Release Version

Moin Version

Release Notes

simplebibtex.py

1.0

1.8

ParserMarket/SimpleBibtex/ReleaseNotes

Installation

For general installation instructions, see ParserMarket/InstallingParsers. This parser requires no special dependencies, such as outside Python libraries.

Usage

To use this parser, simply put #!simplebibtex after the beginning of the code block. Currently "article", "incollection", "inproceedings", "conference", "book", "techreport" are supported. Use "url" field for the link. The output resembles JMLR.

Example

{{{#!simplebibtex

@book{goossens93,
    author    = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
    title     = "The LaTeX Companion",
    year      = "1993",
    publisher = "Addison-Wesley",
    address   = "Reading, Massachusetts",
    url       = "http://www.amazon.com/Latex-Companion-Addison-Wesley-Techniques-Computer/dp/0201541998",
}

@article{Mor65,
        Author = {J.~J. Moreau},
        Date-Added = {2010-04-19 17:23:23 +0900},
        Date-Modified = {2010-04-19 17:32:53 +0900},
        Journal = {Bulletin de la S. M. F.},
        Pages = {273--299},
        Title = {{Proximit\'e et dualit\'e dans un espace hilbertien}},
        Volume = {93},
        Year = {1965},
        url = {http://archive.numdam.org/article/BSMF_1965__93__273_0.pdf},
}

@inproceedings{Hinton:1993:KNN:168304.168306,
 author = {Hinton, Geoffrey E. and van Camp, Drew},
 title = {Keeping the neural networks simple by minimizing the description length of the weights},
 booktitle = {Proceedings of the sixth annual conference on Computational learning theory},
 year = {1993},
 pages = {5--13},
 publisher = {ACM},
 address = {New York, NY, USA},
}
}}}

will be rendered as

screen.png

This parser is copyrighted by Ryota Tomioka. Developed based on Matt Cooper's keyval parser.

License

This parser is released under the terms of the GNU GPL.

Discussion

MoinMoin: ParserMarket/SimpleBibtex (last edited 2012-07-22 13:43:25 by LaurentPerrinet)