I recently upgraded from MacTex 2009 to MacTex 2011. Before installing 2011, I carefully followed the instructions for uninstalling 2009 that were given here.
After installing 2011, I ran sudo tlmgr update --all
Then, I tried to test the installation by compiling an old paper that I had written using Xetex and BibLaTeX. This is when I noticed that there was no BibLaTeX binary installed on my system.
So, I tried tlmgr show biblatex, which reported that the package was indeed installed on my system. I also tried texdoc biblatex, which also brought up the BibLaTeX manual. Finally, I tried tlmgr search --file biblatex. This showed that a number of files were installed with the biblatex package, but, curiously enough, no binary file.
My next step was to try to uninstall and reinstall the biblatex package by running sudo tlmgr remove --force biblatex and sudo tlmgr install biblatex
After this, I tried tlmgr show biblatex, texdoc biblatex, and tlmgr search --file biblatex, as before, with exactly the same results.
So, my question is: Where is the biblatex binary? How do I process my biblatex files now?
Any help that anyone can give would be greatly appeaciated!
So, I changed the configuration in my document from:
to
Then I was able to run
– Peter Totleben Mar 07 '12 at 05:06xelatex paper; biber paper; xelatex paper; xelatex paper, and it worked.