I'm trying to use \bibliographystyle{unsrt} to sort my bibliography in order of appearance. From here I know that I can't mix the biblatex package with \bibliographystyle. However, when I remove biblatex another compile error arises on a different line.
Here's what I have tried...
% BEGIN -- SETUP DOCUMENT (OVERLEAF) --
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{csquotes}
\bibliographystyle{unsrt}
\DeclareLanguageMapping{british}{british-apa}
\usepackage[pdftex]{graphicx}
\addbibresource{ref.bib}
\let\cite\parencite
\begin{document}
% END -- SETUP DOCUMENT (OVERLEAF) --
\title{ Machine Learning for 3D Segmentation }
\author{Kendall Weihe}
\date{October 27, 2016}
\maketitle
\printbibliography[title=References]
\nocite{*}
\end{document}
It throws an error at the line \DeclareLanguageMapping{british}{british-apa}
biblatex,\DeclareLanguageMapping{british}{british-apa}is not defined, nor\addbibresource nor\printbibliographyIf you want the equivalent of theunsrtbib style, load biblatex with the[sorting=none]option.– Bernard Oct 27 '16 at 18:27biblatex, remove\bibliographystyle{unsrt}and loadbiblatexwith thesorting=noneoption:\usepackage[backend=biber,style=numeric,sorting=none]{biblatex}. Note that\DeclareLanguageMapping{british}{british-apa}is only necessary (and should probably only be used) withstyle=apa. – moewe Oct 27 '16 at 22:03