leonickl / bibtex-formatter
There is no license information available for the latest version (v2.3.0) of this package.
A simplistic BibTeX formatter in PHP
Package info
github.com/leonickl/bibtex-formatter
Type:project
pkg:composer/leonickl/bibtex-formatter
v2.3.0
2025-11-10 22:12 UTC
Requires
- php: >=8.4
README
Installation
composer global require leonickl/bibtex-formatter
Usage
format-bibtex literature.tex [--save|--print|--log|--dump]
--printprints the result to the console (default option)--saveoverrides the original file--logprints a step-wise info about each token and the current state of the app--dumpdumps the resulting PHP datastructure to the console
Warning: The original file will be overwritten by this!
Features
This formatter only supports simple entries of the form
@type{reference, key = {value}, other = 5, ... }
The formatter
- adds trailing commas,
- aligns
=signs above each other, - and sets indentation to 4 spaces.
- ...