I'm having a problem getting biber to process my bibliography file. I've updated my TeXLive distribution to have the following package/program versions:
biblatex 2011/11/13 v1.7
biber version: 0.9.8
When I compile this minimal example,
\documentclass{report}
\usepackage[backend=biber]{biblatex}
\addbibresource{test}
\begin{document}
\nocite{thebook}
\printbibliography
\end{document}
with this .bib file,
@book{thebook,
author = "Me"
}
I get the following error:
$ pdflatex test
This is pdfTeX, Version 3.1415926-2.3-1.40.12 (Web2C 2011)
....
Transcript written on test.log.
$ biber test
INFO - This is Biber 0.9.8
INFO - Logfile is 'test.blg'
INFO - Reading 'test.bcf'
INFO - Found 1 citekeys in bib section 0
INFO - Processing bib section 0
INFO - Looking for bibtex format file 'test' for section 0
INFO - Found BibTeX data source './test.tex'
ERROR - BibTeX subsystem: C:\Users\jmert\AppData\Local\Temp\LhBA8BxHUk\test.tex_2824.utf8, line 12, syntax error: at end of input, expected "@"
INFO - ERRORS: 1
Can anyone provide any help debugging this problem? I've compiled biber from source and downloaded all the dependencies from CPAN on a Fedora 16 machine as well as used the precompiled version available for Windows on TeXLive (where the version numbers and compiler output here are taken).
\addbibresource{test.bib}.\addbibresourceneeds the file extension. This post is related. – Audrey Feb 16 '12 at 05:44