├── .gitignore ├── LICENSE ├── README.md ├── TODO ├── autobib.py ├── autobib.yml ├── config.py ├── fix_scholarly.py ├── latex.py ├── nomenclature.py ├── pdftitle.py ├── pdftitle.yml ├── providers.py ├── rename.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/TODO -------------------------------------------------------------------------------- /autobib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/autobib.py -------------------------------------------------------------------------------- /autobib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/autobib.yml -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/config.py -------------------------------------------------------------------------------- /fix_scholarly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/fix_scholarly.py -------------------------------------------------------------------------------- /latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/latex.py -------------------------------------------------------------------------------- /nomenclature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/nomenclature.py -------------------------------------------------------------------------------- /pdftitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/pdftitle.py -------------------------------------------------------------------------------- /pdftitle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/pdftitle.yml -------------------------------------------------------------------------------- /providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/providers.py -------------------------------------------------------------------------------- /rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/rename.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdumas/autobib/HEAD/utils.py --------------------------------------------------------------------------------