I am trying to use this code to order my references by author. I am on TeXworks and I am using Biber at the moment.I want to list all refernces with the author Weber in it.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage[style=alphabetic,maxnames=6,natbib=true,backend=biber]{biblatex}
%\bibliography{biblatex-examples}
\addbibresource{bibpractice.bib}
\begin{document}
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map{
\step[fieldsource=author,
match=Weber,
final]
\step[fieldset=keywords, fieldvalue=weber]
}
}
}
\printbibliography[keyword=weber]
\printbibliography[notkeyword=weber]
\end{document}
This is the error I get:
INFO - This is Biber 2.7 INFO - Logfile is 'biberpractice.blg' ERROR - Cannot find control file 'biberpractice.bcf'! - did you pass the "backend=biber" option to BibLaTeX? INFO - ERRORS: 1

biblatexwith Biber (maybe also with BibTeX as backend, but Biber is preferred). We need to see an MWE/MWEB. Can you explain in more detail why you need this feature? I don't see whatidshas to do with citing co-authors. – moewe Oct 12 '17 at 15:02biblatex-examples.bibis automatically found ifbiblatexis installed properly). – moewe Oct 16 '17 at 13:32