I have saved some references in a library.bib file, using JabRef. One of these entries is the following:
@Article{Feng2014,
author = {Bo Feng, Mengyin Fu, Hongbin Ma, Yuanqing Xia, Bo Wang},
title = {Kalman filter with recursive covariance estimatio - sequentially estimating process noise covariance},
journal = {IEEE Transactions on Industrial Electronics},
year = {2014},
volume = {61},
number = {11},
pages = {6253-6263}
}
Now I want to include citations in my TeX-document:
\documentclass{article}
\usepackage[backend=biber,citestyle=ieee,sorting=none,dateabbrev=false,urldate=comp]{biblatex}
\addbibresource{./library.bib}
\begin{document}
\section{First Section}
Equations given in this section have been taken from \cite{Feng2014} and
\printbibliography[heading=bibintoc]
\end{document}
I am running PDFLaTeX, Biber, PDFLaTex, PDFLaTeX. The references should be included as numbers, such as [1], wherever the citation is used. Instead of the number, however, the name of the BibTeX-key is given. And the reference is not included in the bibliography.
I have tried to make this a MWE. When I run this code now, the bibliography is not printed at all and the reference within the text is given as the BibTeX-key.
\addbibresource? – daleif Jun 07 '19 at 12:18anda comma may only be used to separate name parts as in Family, Given and von Family, Jr., Given. You probably wantauthor = {Bo Feng and Mengyin Fu and Hongbin Ma and Yuanqing Xia and Bo Wang},. See https://tex.stackexchange.com/q/36396/35864 and https://tex.stackexchange.com/q/557/35864 – moewe Jun 07 '19 at 15:12andin the BibTeX syntax regardless of the style you use. If Google scholar exports the entry like this it is simply wrong. BibTeX may be slightly more forgiving when processing an entry with a malformed name than Biber, but it is wrong in any case. – moewe Jun 08 '19 at 07:13author={Feng, Bo and Fu, Mengyin and Ma, Hongbin and Xia, Yuanqing and Wang, Bo},, which would be correct. – moewe Jun 08 '19 at 07:14