I'm using elsarticle and I would like to apply biblatex for my references but apparantly natbib.sty is loaded by default. In this case how can I use biblatex or how can I disable natbib?
%% natbib.sty is loaded by default. However, natbib options can be
%% provided with \biboptions{...} command. Following options are
%% valid:
%% round - round parentheses are used (default)
%% square - square brackets are used [option]
%% curly - curly braces are used {option}
%% angle - angle brackets are used <option>
%% semicolon - multiple citations separated by semi-colon
%% colon - same as semicolon, an earlier confusion
%% comma - separated by comma
%% numbers- selects numerical citations
%% super - numerical citations as superscripts
%% sort - sorts multiple citations according to order in ref. list
%% sort&compress - like sort, but also compresses numerical citations
%% compress - compresses without sorting
%%
%% \biboptions{comma,round}
% \biboptions{}
\usepackage[
backend=biber,
style=alphabetic,
citestyle=authoryear
]{biblatex}
\addbibresource{references.bib}
\begin{document}
bla bla bla
\printbibliography
\end{document}
Messages/Log file: Command \bibhang already defined,


natbib– Joseph Wright Aug 02 '16 at 07:28natbib. Maybe it will be different in the future, who knows? – Johannes_B Aug 02 '16 at 07:29\RequirePackage[\@biboptions]{natbib}inside ofelsarticle.cls. – Henri Menke Aug 02 '16 at 07:36