Skip to content

Instantly share code, notes, and snippets.

@bdarcus
Last active February 27, 2023 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdarcus/c10dbb2e0e382008783b802a307466e1 to your computer and use it in GitHub Desktop.
Save bdarcus/c10dbb2e0e382008783b802a307466e1 to your computer and use it in GitHub Desktop.
#!/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