I work with natbib and \bibliographystyle{abstract}. I use this style because the ordering is done with respect to the key. Is it possible achieve a sorting with respect the order of appearance into the associated .bib file but without modifying anything other? Thanks in advance.
EDIT
I found this answer in the question here
Use BibTeX key as the cite key
relevant
\documentclass{article}
\usepackage[style=alphabetic,sorting=debug]{biblatex}
\DeclareFieldFormat{labelalpha}{\thefield{entrykey}}
\DeclareFieldFormat{extraalpha}{}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{whatever,
author = {Author, A.},
year = {2001},
title = {Testing the effects of biblatex styles on bibliography formatting},
}
@misc{B02f,
author = {Buthor, B.},
year = {2002},
title = {First},
}
@misc{B02s,
author = {Buthor, B.},
year = {2002},
title = {Second},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}
So basically how could I achieve the bibliography sorting with respect to the order of appearance in the bib file using natbib and \bibliographystyle{abstract}(so that a key of the form [CINV] comes before a key of the form [CINT])?
abstractbibliography style does not seem to cooperate well with thenatbibpackage. (Package natbib Error: Bibliography not compatible with author-year citations.) – leandriis Mar 23 '19 at 22:02natbibcitation management package needs to be loaded with the optionnumbers. – Mico Mar 23 '19 at 22:25