Make Titles Great AgainΒΆ
Script to fix wrong capitalisation in latex reference bib-files. It prevents that originally fully upper case words in the title are compiled into words with only the first letter capitalized, e.g. QUOKKA to Quokka.
Originates from https://github.com/SchulzLab/MakeTitlesGreatAgain .
# Run it with a mini example with one bib entry, here from Python, but you can also run the command
# that's sent to subprocess in your bash.
import subprocess
subprocess.call("python3 src/MakeTitlesGreatAgain.py ExampleData/ExampleBib.bib > ExampleData/ExampleBib_great.bib", shell=True)
print(open('ExampleData/ExampleBib.bib').readlines()[2])
print(open('ExampleData/ExampleBib_great.bib').readlines()[2])
title = {DOT1L regulates chamber-specific transcriptional networks during cardiogenesis and mediates postnatal cell cycle withdrawal},
title = {{DOT1L regulates chamber-specific transcriptional networks during cardiogenesis and mediates postnatal cell cycle withdrawal}},