This seems to be a common problem, I read all the post here but can't fix the error
This is BibTeX, Version 0.99d (MiKTeX 2.9.6350 64-bit) The top-level auxiliary file: revision6.aux I found no \citation commands---while reading file revision6.aux I found no \bibdata command---while reading file revision6.aux I found no \bibstyle command---while reading file revision6.aux (There were 3 error messages)
Process exited with error(s)
My code is super simple, just usepackage with backend and style for biblatex. Then I cited with the key generated by JabRef
\documentclass[11pt]{article}
\usepackage[letterpaper, margin=1in]{geometry} % page settings
\usepackage{floatrow}
\floatsetup[table]{capposition=top}
\usepackage{authblk}
\usepackage{amsmath}
\usepackage[ruled]{algorithm2e}
\usepackage{sectsty}
\allsectionsfont{\normalsize}
\usepackage{graphicx}
\graphicspath{ {./figures/} }
\usepackage[labelfont=bf]{caption}
\setlength{\parindent}{7mm}
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{ABCbib.bib}
\title{ABC}
\begin{document}
\maketitle
\section{Introduction}
proteins \cite{Zhang2013}
\printbibliography
\end{document}
The bib file looks like
@Article{Zhang2013,
author = {Yaoyang Zhang and Bryan R. Fonslow and Bing Shan and Moon-Chang Baek and John R. Yates},
title = {Protein Analysis by Shotgun/Bottom-up Proteomics},
journal = {Chemical Reviews},
year = {2013},
volume = {113},
number = {4},
pages = {2343--2394},
month = {apr},
doi = {10.1021/cr3003533},
publisher = {American Chemical Society ({ACS})},
}
EDIT: Then I tried both latex (or PdfLaTeX) -> Biber -> latex (or PdfLaTeX) -> latex (or PdfLaTeX) and got the error with warning Citation Zhang2013 on Page 1 undefined. May someone please guide me here? The configure is already changed to biber.exe and I input biber % for using as user command. But the error remains and ask me to rerun biber.
backend=biberyou must run(pdf)latex->biber->(pdf)latex, and notbibtex. – gusbrs Nov 06 '17 at 17:11biberin the list. What to do to commandbiber? – Jan Nov 06 '17 at 17:13biber, I gotProcess exited with error(s)– Jan Nov 06 '17 at 17:26.blgfile. Please not that if you only just installedbiblatexor made an update in the last two days you might have run into the problem thatbiblatex3.8 is already released, but Biber 2.8 had some build problems and could not be released yet. You'll have to wait until these issues are resolved. – moewe Nov 06 '17 at 17:28.auxfiles. I think I installed it today. Anything I can do here? @gusbrs @moewe – Jan Nov 06 '17 at 17:33.blgdoes not have anything inside. Can I manually add bib file I already made into LaTeX file? – Jan Nov 06 '17 at 17:36backend=bibtexand reverting changes in your texmaker so that it runs bibtex. I'm not sure how long it's gonna take to fix things, but I can presume that in some days time, you can try again biber (and I do recommend you do so, bibtex is currently a legacy option for biblatex.) – gusbrs Nov 06 '17 at 17:37Package biblatex Warning: Biber reported the following issues (biblatex) with 'Nesvi2005': (biblatex) - Invalid format of field 'month. Why doesbiberstill have problem here? – Jan Nov 06 '17 at 17:47yearandmonthfields bydate = {2013-04},. – gusbrs Nov 06 '17 at 17:51month = {apr},is wrong,month = {4},would be acceptable, butdate = {2013-04}is generally better. See also https://tex.stackexchange.com/a/386058/35864 – moewe Nov 06 '17 at 18:03biberagain and gotPackage biblatex Warning: Please (re)run Biber on the file:. But while I rerun Biber from user command, I gotProcess exited with error(s). Here is Biber 2.7 @gusbrs – Jan Nov 07 '17 at 03:52biber %in. Is this correct? @moewe – Jan Nov 07 '17 at 03:59biblatexto version 3.9 in the last days you can't use Biber since that is still at the incompatible version 2.7. The problem is being worked on at the moment, currently the only solution is to go back tobiblatex3.7 (not that easy) or switch to BibTeX. Please show us the error messages you get, 'Process exited with error(s)' is not enough. – moewe Nov 07 '17 at 05:34biber, the error was shown only that sentence. So I switch toBibTeXnow. AlthoughBibTeXcreates PdfLaTeX ok,biberwarning (about the month) appears. Why I gotBiberwarning after switching? My biblatex is v.3.8 @moewe – Jan Nov 07 '17 at 05:42.blgfile, if not you can compile from the command line to see the error. – moewe Nov 07 '17 at 05:44biblatex3.8(a) with Biber again. – moewe Nov 17 '17 at 09:32