Last active
February 27, 2023 12:10
-
-
Save bdarcus/c10dbb2e0e382008783b802a307466e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env bash | |
# use biber to handle conversion, but ensure input is utf-8 first | |
iconv -t utf-8 "${1}" | |
biber --tool --tool-fieldcase='lower' --quiet -O "${1}" "${1}" | |
# tidy the final file | |
bibtex-tidy --sort-fields --curly --numeric --align=13 --sort=key --duplicates=key --no-escape --no-remove-dupe-fields --generate-keys="[auth:required:lower][year:required]" ${1} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment