I am trying to set the proper ordering of a Bibliography in Portuguese using names with particles (de Souza, d'Alessandro, dos Santos, ...).
The general idea is that prefixes should be used as part of the total name every time they are written, but for the order in the bibliographies, the names should be sorted with the prefixes removed. This is, in general, called dutch-ordering because a large percentage of the population has particles in their names and using them for the order would be a mess.
I can get the names written properly, but not the proper order in the Biblio.
This is my current MWE:
\documentclass{article}
\begin{filecontents}{\jobname.bib}
@book{orm-d,
author = {d'Ormesson, Jean},
title = {Title: dumb apostrophe},
date = {2015},
}
@book{hak,
author = {al-Hakim, Tawfik},
title = {Title},
date = {2015},
}
@book{khaled,
author = {el Shadad, Khaled},
title = {Title},
date = {2015},
}
@book{deF,
author = {de Faria, Rafael},
title = {Title},
date = {2015},
}
@book{dosS,
author = {dos Santos, Raul},
title = {Title},
date = {2015},
}
@book{dlm,
author = {de la Martinière, III, Gérard},
title = {Title},
date = {2015},
}
\end{filecontents}
\usepackage{polyglossia}
\setmainlanguage{portuges}
\usepackage[
backend=biber,
style=authoryear,
useprefix=true,
]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\section*{Text}
\cite{hak, orm-d, khaled, deF, dosS, dlm}
\printbibliography
\end{document}
The correct order should be is:
De Faria, Rafael (2015). Title.
al-Hakim, Tawfik (2015). Title.
De la Martinière III, Gérard (2015). Title.
d’Ormesson, Jean (2015). Title.
Dos Santos, Raul (2015). Title.
El Shadad, Khaled (2015). Title.
I have seen a few solutions for BibTeX but not for BibLaTeX.
