Did you know ... | Search Documentation: |
Packs (add-ons) for SWI-Prolog |
Title: | Parser and predicates for BibTeX files |
---|---|
Rating: | Not rated. Create the first rating! |
Latest version: | 0.1.8 |
SHA1 sum: | 92fe0a9d52de0aa612caaeaa088a7bc1f0e9a823 |
Author: | Christian Gimenez <christian.gimenez@fi.uncoma.edu.ar> |
Home page: | https://bitbucket.org/cnngimenez/swi-bibtex/ |
Download URL: | https://bitbucket.org/cnngimenez/swi-bibtex/get/bibtex-*.zip |
No reviews. Create the first review!.
Version | SHA1 | #Downloads | URL |
---|---|---|---|
0.1.4 | 42aa92c67573b1b2998ed426b8e5929ed6a3973e | 1 | https://bitbucket.org/cnngimenez/swi-bibtex/get/bibtex-0.1.4.zip |
0.1.6 | 918113d0f9b1354a9445704aebfabc9c93adc545 | 7 | https://bitbucket.org/cnngimenez/swi-bibtex/get/bibtex-0.1.6.zip |
0.1.7 | fcc7c120f7206313722798ff5e5c79bab2943220 | 2 | https://bitbucket.org/cnngimenez/swi-bibtex/get/bibtex-0.1.7.zip |
0.1.8 | 92fe0a9d52de0aa612caaeaa088a7bc1f0e9a823 | 23 | https://bitbucket.org/cnngimenez/swi-bibtex/get/bibtex-0.1.8.zip |
This package implements predicates and DCG rules for parsing BibTeX files.
This section explain how to use this package.
For more information, use doc_browser/0 and, in the Web browser, choose "List extension packs".
There are commands implemented for printing BibTeX information to the current output.
In the SWI console, load the library and the BibTeX file with these commands:
use_module(library(bibtex_cmd)). bibtex_use('~/some-bibtex.bib').
List all entries using bibtex_list/0:
bibtex_list.
Search for an author and print results:
bibtex_search_author("Halpin").
Print the N-th entry:
bibtex_search_nth(2).
Parse an entire BibTeX file.
use_module(library(bibtex)). bibtex_file('~/file.bib', LstEntries).
Get the 20-th entry.
nth_bibtex_file('~/file.bib', 20, Entry).
Search for author's entries.
bibtex_author('~/file.bib', "Surname", LstEntries).
This package does not need to be installed.
Enter into the `./tests/` directory, run the swipl
interpreter and execute:
use_module(bibtex_tests). run_tests.
See COPYING.txt file or the GNU GPL Licence page.
Pack contains 18 files holding a total of 95.4K bytes.