I have been troubled by the biblatex package for a few days in TexWorks. I follow the instructions from the internet in many ways,but things don't make sense to me.
This is my code
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{reference.bib}
\begin{document}
It didn't make sense\cite{gbms}
\printbibliography
\end{document}
and this is my reference.bib
% This file was created with JabRef 2.10.
% Encoding: GBK
@Article{gbms,
Title = {{Generalized Born Model Based on a Surface Integral Formulation}},
Author = {Avijit Ghosh, Chaya Sendrovic Rapp, and Richard A. Friesner},
Journal = {J.Phys.Chem.B},
Year = {1998},
Pages = {10893-10990},
Volume = {102}
}
First I use the pdfLaTeX, things work well and give me the pdf without giving the bibliography
Then I use the biber command the console give me this:
INFO - This is Biber 2.2
INFO - Logfile is 'parameters.tex.blg'
ERROR - Cannot find control file 'parameters.tex.bcf'! - did you pass the "backend=biber" option to BibLaTeX?
INFO - ERRORS: 1
I don't know why it happen?
I also tried the backend=bibtex, the program seems to interrupt and give that ! Undefined control sequence. So, anyone knows this kind of problem?
parser filename_without_extension. I guess you're runningbiber parameters.texwhich should bebiber parameters– musicman Oct 26 '15 at 05:49$basenamebut how to solve the situation 'backend=bibtex' ? – Haomiao.Zhang Oct 26 '15 at 06:08backend=biberinstead – musicman Oct 26 '15 at 06:17backend=biberyou cannot use BibTeX. Since LaTeX writes some information to auxiliary files you can even get errors when trying to run BibTeX even after switching tobackend=bibtex(same goes for the other way), you can solve that problem by deleting the temporary.aux,.bcfand.bblfiles before compiling. But as musicman says, it is better to use Biber. – moewe Oct 26 '15 at 06:25{Avijit Ghosh and Chaya Sendrovic Rapp and Richard A. Friesner}– Ulrike Fischer Oct 26 '15 at 08:51biberin TeXworks, you've probably used$fullname, but that should be$basenameas in Dummies Guide to Biber.$basenamewill give you the filename without extension. – Torbjørn T. Oct 26 '15 at 09:08