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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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}