I am using biblatex for my academic CV as follows:
\usepackage[sorting=debug,maxbibnames=99]{biblatex}
\bibliography{../bibs/publications}
...
\nocite{*}
\printbibliography
As you can tell, I am using the sort=debug option in to control which order the biblatex entries get printed. However, this requires that I pick my key names in ../bibs/publications.bib to reflect the desired order; e.g.:
@article {1_somearticle,
...
}
@article {2_somearticle,
...
}
Obviously, this is rather tedious to update when I want to add a new work. Is there a way to get biblatex to print the bibliography entries in the order they are listed in the bibtex file?
sorting=noneand\nocite{somekey,otherkey,differentkey}should I think print in order of the appearance in\nocite. Would I think be easier to update. Or could you just sort the bibliography by year? Maybe this answer. – Dai Bowen Sep 15 '16 at 16:43biblatexdoes the sorting for you - always. Is there any sense to the ordering in the.bibfile? It would be no trouble sorting by full date, ... I'm assuming here that the ordering in the CV is not supposed to be random. – moewe Sep 15 '16 at 17:02sortyearto have more fine-grained control over the sorting "within" one year. Needless to say that even if you give the full date (why would you not be a fan?) there is no need that the output show the full year. – moewe Sep 15 '16 at 18:46biblatexwithout too much work (if your.bibfile gives the needed information that is, but that should not be too hard to manage - manually ordering the.bibfile sounds worse). – moewe Sep 15 '16 at 18:47.bibfile) – Sep 15 '16 at 18:54.bibfile" was possible. As far as I know it isn't. Of course you can try and write a script that numbers your references in the.bibcorrectly (I couldn't, but it should be possible). You can of course also ask the Biber maintainer to include that feature - it probably wouldn't be very high up the list, but if it easy enough (not exactly sure), he might go for it. ... – moewe Sep 15 '16 at 19:00date = {2016-07-08}instead ofyear = {2016}, is less awkward than manually sorting things in the.bib. And only marginally more work. – moewe Sep 15 '16 at 19:01