I'm having issues referencing Dutch authors using the Harvard citation system. Here you can see the MWE:
\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{csquotes}
\begin{filecontents}{refs.bib}
@article{vanderVelden2007,
author = {van der Velden, Daniel},
journal = {Art Papers},
pages = {36--43},
title = {{Article One}},
volume = {31},
year = {2007}
}
@article{vanHoven2018,
author = {van Hoven, Bettina},
doi = {10.17169/fqs-19.2.2961},
journal = {Forum Qualitative Sozialforschung},
number = {2},
title = {{Creative and Arts}},
volume = {19},
year = {2018}
}
\end{filecontents}
\usepackage[style=authoryear-ibid,backend=biber]{biblatex}
\addbibresource{refs.bib}
\begin{document}
\title{Article Title} \author{} \date{}
\maketitle
In that regard, \textcite[30]{vanderVelden2007} is correct.
The information was correctly interpreted \parencite[30]{vanHoven2018}.
\printbibliography
\end{document}
In the text, the correct way to display the cited authors would be:
- In that regard, Van der Velden (2007, pág. 30) is correct.
- The information was correctly interpreted (Van Hoven 2018, pág. 30}.
Note: "van" and "van der" should be capitalised when the first name is not included.
useprefixglobally or something like https://tex.stackexchange.com/q/610091/35864. – moewe Jul 27 '23 at 19:14biblatex(your code has\usepackage[style=authoryear-ibid,backend=biber]{biblatex}).biblatexis the package on the LaTeX side that implements bibliography and citation commands (likenatbib). Biber is the backend that reads the.bibfile and produces a LaTeX-readable bibliography data (like BibTeX). See https://tex.stackexchange.com/q/25701/35864 and https://tex.stackexchange.com/q/63852/35864 for a more thorough explanation of what each component does. – moewe Jul 28 '23 at 06:06