BibTeX, biblatex and biber ⇒ Lower case Author - Sorting in BibLaTeX
Lower case Author - Sorting in BibLaTeX
I am using bibLaTeX since a while and I am quite happy with it. Most difficulties I have been able to solve, but now there is this bibliography entry:
@BOOKLET{frontiereconomics2009,
title = {{Measuring Monitor's impact}},
author = {{frontier economics}},
address = {London},
year = {2009},
keywords = {UK2},
timestamp = {2011.03.30}
}
Due to the lower case letter in the field author it is sorted right after all other capital lettered entries. Of course I would like to have it sorted under "F/f". Is there any trick to achieve that?
Thanks a lot already?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Lower case Author - Sorting in BibLaTeX
I found a solution to the problem by adding a sortname entry:
@BOOKLET{frontiereconomics2009,
title = {{Measuring Monitor's impact}},
author = {{frontier economics}},
address = {London},
year = {2009},
keywords = {UK2},
sortname = {Frontier},
timestamp = {2011.03.30}
}
Anyway, thanks a lot to those who tried!