For an assignment I have to use LaTeX and biblatex. I am using it with Texmaker.
I defined an external .bib file where I put my references.
So, my problem is when I am running (pdf)latex -> bibtex -> (pdf)latex It often doesn´t show me the cited references. Instead of the defined style, the citations in the text are shown as the shortcut:
Example:
@MISC{main,
AUTHOR = "asdf",
TITLE = "adsf",
HOWPUBLISHED = "adsf",
YEAR="4544"
}
@MISC{ev,.....
In the .tex file:
\cite{main}
This is compiled as [1] and shown in the Referencelist. But when I use any other cite:
\cite{ev}
It´s shown as [ev] and not in the Referencelist.
Furthermore: Some shortcuts in the literature file are highlighted in black and others are red (same color as the options (author, title, etc)).
And if I want to use \cite in the .tex file the black shortcuts are highlighted from Texmaker and the others aren´t.
Sometimes the output says that the library is empty, sometimes it doesn´t... But it always says to rerun biber on the (biblatex) texfile (biblatex). Thought I tried that, nothing has changed.
If I run bibTex on the bib file it says:
ERROR - Cannot find control file 'literatur.bcf'! - did you pass the "backend=biber" option to BibLaTeX? INFO - ERRORS: 1
In texmaker I configured Bib(La)tex as biber %.bcf
\usepackage[backend=biber,
style=numeric,
isbn=false,
pagetracker=true,
maxbibnames=50,
maxcitenames=3,
autocite=inline,
block=space,
backref=true,
backrefstyle=three+,
date=short]{biblatex}
biberinstead ofbibtex. If you want to usebibtexas the engine for the bibliography, you have to usebackend=bibtexinstead ofbackend=biber. – Guido May 12 '15 at 23:38literatur.tex, correct? After you runpdflatex, doesliteratur.bcfexist?biberthinks it does not so the first thing to figure out is if the problem is that the file isn't created or if the problem is thatbiberis not able to find it. If the file is not created, look for errors when runningpdflatex- either on the console or in the.log. If the file is created butbibercan't find it, try runningbiber literaturfrom the command line in your working directory (where your.texfile is). – cfr May 13 '15 at 00:08biber %, notbiber %.bcf.) Could it be that you have enabled one of those "move temporary files to a temp directory" options? – moewe May 13 '15 at 05:06