This weekend I updated my MikTEX 2.9 installation and installed packages. To my suprise I promptly received an error message when recompiling a tex file (that previously compiled without a problem). The message read:
file ‘elements_elements_english.def’ not found
After a little search it turned out the Bohr package was updated with a new feature called Elements. As such a great package (and I use Bohr in my chemistry classes along other packages by Clemens Niederberger – Thank you for those!). But the Bohr package alone did not cause the problem. It was caused by the language selection in Babel. As I changed the selection from Dutch to English the error was resolved:
documentclass{article}
usepackage[dutch,english]{babel}
usepackage{bohr}
begin{document}
bohr{19}{K}
end{document}
Remove the option English in Babel and the error will return.
Is there another way to resolve this issue?
Thanks
Other info: OS Windows 7 Pro / Textstudio 2.94 / MikTEX 2.9 (all updated)