BibTeX, biblatex and biber ⇒ Issues bibliography dutch prefixes "van" and "van der"
Issues bibliography dutch prefixes "van" and "van der"
Now I came up with the great idea to help my girlfriend as well with her thesis, but it has to be in Dutch.
As a starting point I used the classicthesis.sty
Using the babel package solved a lot of issues, but not the bibliography.
I found a bst file: bibliodutch.bst
I changed the order:
"{ll~}{ff~}{ vv}{, jj}"
With some extra reading, I managed to get the following result: Which makes me confused, that the prefixes with two (van der; van 't etc) work as whished, but the single prefix get messed up.
Does anyone have an idea? Requested is: Lastname A. A. van
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Issues bibliography dutch prefixes "van" and "van der"
Code: Select all
\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{Dam2012,
author = {van der Dam, S. and Abma, T. A. A. and Kardol, M. J. M. and Widdershoven, G. A. M.},
title = {Here's my dilemma. Moral case deliberation as a platform for discussing everyday ethics in elderly care},
year = {2012},
volume = {20},
% number = { },
pages = {250-267},
journal = {Health Care Anal},
}
@incollection{Delden1999,
booktitle = {Morele problemen in de ouderenzorg.},
editor = {van Delden, J. J. M. },
year = {1999},
publisher = { Van Gorcum \& Comp B.V., Assen},
author = {van Delden, H. and Hertogh, C. and Manschot, H.},
title = {Ouder worden: drie ethische perspectieven},
chapter = {3},
pages = {49-81},
number = { ISBN: 9023234499},
}
\end{filecontents}
\documentclass{article}
\usepackage[style=authoryear,maxbibnames=99]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}