All Projects β†’ Pezmc β†’ Biblatex Check

Pezmc / Biblatex Check

Licence: mit
A python script for checking BibLatex .bib files for common referencing mistakes!

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Biblatex Check

Bazel Linting System
πŸŒΏπŸ’š Experimental system for registering, configuring, and invoking source-code linters in Bazel.
Stars: ✭ 63 (-46.61%)
Mutual labels:  linting
Wifibf
This is a wifi Brute Force. script undetectable and secure!
Stars: ✭ 102 (-13.56%)
Mutual labels:  python-script
Itsagramlive
It's A Gram Live is a Python script that create a Instagram Live and provide you a rtmp server and stream key to streaming using sofwares like OBS-Studio.
Stars: ✭ 107 (-9.32%)
Mutual labels:  python-script
Simplepyscripts
Collection of various python script's.
Stars: ✭ 67 (-43.22%)
Mutual labels:  python-script
Ssl Checker
Python script that collects SSL/TLS information from hosts
Stars: ✭ 94 (-20.34%)
Mutual labels:  python-script
Typescript Guidelines
The TypeScript Guidebook
Stars: ✭ 104 (-11.86%)
Mutual labels:  linting
Pylocky decryptor
Stars: ✭ 54 (-54.24%)
Mutual labels:  python-script
Mobify Code Style
πŸ“š Mobify's coding style and standards!
Stars: ✭ 115 (-2.54%)
Mutual labels:  linting
Cookstyle
A linting tool that helps you to write better Chef Infra cookbooks by detecting and automatically correcting style, syntax, and logic mistakes in your code.
Stars: ✭ 95 (-19.49%)
Mutual labels:  linting
Daily scripts
ζ—₯εΈΈε°θ„šζœ¬οΌŒζ‡’δΊΊζ¬’δΉε€šγ€‚
Stars: ✭ 105 (-11.02%)
Mutual labels:  python-script
Textshot
Python tool for grabbing text via screenshot
Stars: ✭ 1,163 (+885.59%)
Mutual labels:  python-script
Virtual Makeup
Python script to apply lipstick, blush and nail polish to images
Stars: ✭ 89 (-24.58%)
Mutual labels:  python-script
Faceaging By Cyclegan
Stars: ✭ 105 (-11.02%)
Mutual labels:  python-script
Tslint Xo
TSLint shareable config for XO
Stars: ✭ 64 (-45.76%)
Mutual labels:  linting
Micropy Cli
Micropython Project Management Tool with VSCode support, Linting, Intellisense, Dependency Management, and more!
Stars: ✭ 112 (-5.08%)
Mutual labels:  linting
Efibootmgr Gui
Manage EFI boot loader entries with this simple GUI
Stars: ✭ 55 (-53.39%)
Mutual labels:  python-script
Steganographer
Steganograpy in Python | Hide files or data in Image Files
Stars: ✭ 104 (-11.86%)
Mutual labels:  python-script
Droidcast
An experimental demo for capturing and displaying screenshot of an Android device without ROOT permission.
Stars: ✭ 116 (-1.69%)
Mutual labels:  python-script
Ha Shellies Discovery
Script that adds MQTT discovery support for Shellies devices
Stars: ✭ 113 (-4.24%)
Mutual labels:  python-script
Start Summit 2017 Blockchain Machine Learning Workshop
Presentation Material and Sample Code from the DataReply Blockchain and Machine Learning Workshop at START Summit 2017 in Switzerland
Stars: ✭ 105 (-11.02%)
Mutual labels:  python-script

This project no longer under active development

It remains fully functional and maintenance is still completed

Assistance with enhancements, feature requests and bug fixes are all very welcome!

Any PR's will be reviewed promptly.


BibLatex-Check

A web based version of this checker is now available: https://biblatex-linter.herokuapp.com/ (repo)

A python2/3 script for checking BibLatex .bib files

BibTeX Check is a small Python script that goes through a list of references and checks if certain required fields are available, for instance, if each publication is assigned a year or if a journal article has a volume and issue number.

Additionally, it allows for consistency checks of names of conference proceedings and could easily be extended to other needs.

The results of the check are printed to an html file, which includes links to Google Scholar, DBLP, etc. for each flawed reference. These links help retrieving missing information and correcting the entries efficiently.

Please note that it is not a BibLaTeX validator. And in the current version, it might not yet be able to parse every valid bib file. The software targets the specific needs of Computer Scientist, but may be applicable in other fields as well.

For use in automated environments, BibLaTeX-Check returns errors on the console (can be disabled). Further, it returns an exit code depending on whether problems have been found.

The html output is tested with Firefox and Chrome, but the current version does not properly work with Internet Explorer.

Getting Started

Just copy the file into a directory with write permission, then run the script

./biblatex_check.py <-b input.bib> [-a input.aux] [-o output.html]

If you provide the additional aux file (created when compiling a tex document), then the check of the bib file is restricted to only those entries that are really cited in the tex document.

Options

Specify these when calling the script.

  • -b (--bib=file.bib) Set the input Bib File
  • -a (--aux=file.aux) Set the input Aux File
  • -o (--output=file.html) Write results to the HTML Output File.
  • -v (--view) Open in Browser. Use together with -o.
  • -N (--no-console) Do not print problems to console. An exit code is always returned.

Help

See ./biblatex_check.py -h for basic help.

If your getting an environment error, try using python ./biblatex_check.py or python3 ./biblatex_check.py depending on your OS.

Alternatives

BibLatex check is adapted from BibTex Check by Fabian Beck, which can be used to validate BibTex files.

See BibTex vs BibLaTex vs NatBib for a comparison of different referencing packages.

Screenshot

Screenshots of the BibLatex check screen

Development

The checker is a single python script that takes .bib files as input and prints to console and/or an html file.

It maintains compatibility with Python 2, so any changes should be run against both Python 2.7 and 3.

Any bug fixes should be paired with a new test case in tests/input.bib

"Running" the tests

python3 ./biblatex_check.py -b tests/input.bib
python2 ./biblatex_check.py -b tests/input.bib

Then manually confirm the number of errors matches the details top of tests/input.bib

License

MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].