For my thesis I started to use LaTeX as a text editor. I am now in the process of figuring out basically everything. But the coding is not completely unknown to me. However, I get stuck on small point. I want to refer to articles that I used, by showing their surnames follwed by a comma and then the the year of publication.
Currently my code of the main file looks like this:
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {C:\Users\beren\Documents\Master SCM\Thesis\Images} }
\usepackage[a4paper, width=150mm, top=1mm, bindingoffset=1mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,CE]{Chapter \thechapter}
\fancyfoot[CO,RE]{My Name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\usepackage[backend=bibtex, style=authoryear, sorting=nyt]{biblatex}
\renewcommand*{\nameyeardelim}{\addcomma\space}
\addbibresource{references.bib}
My code in references.bib would look like this for example:
@book{NSP,
author = {A. Doe, W. Schoenmakers},
title = {North Sea Ports in Transition: Changing Tides},
year = {1998},
chapter = {2 Port of Rotterdam: From Landlord to Mainport}
}
As you can see the book includes multiple authors, currently only Doe is showing up in the inline reference, but this should also be Schoenmakers. Could someone explain what I do wrong in the coding?
as well \parencite[33]{NSP}
I prefer to use APA style referencing. I know that a package exists for this as well, but I am using Bibtex which should also do the job.
One question adding to that for probably in the future, how would this work if I want to refer to the same source (consisting of multiple (3+) authors) again, but then using et al. instead?

biblatexwith BibTeX as backend. This might look like nit-picking, but is actually a big difference. You may want to consider switching to Biber as backend, since BibTeX is designated a 'legacy backend' now and only supports a reduced feature set. It should also be noted thatstyle=authoryear,does not give you APA style, it only gives you something that is superficially similar in the sense that bothauthoryearand APA are author-year styles. ... – moewe Feb 23 '20 at 07:57biblatex-apa'sstyle=apa,but in that case you must use Biber as your backend (changebackend=bibtex,tobackend=biber,and have a look at https://tex.stackexchange.com/q/154751/35864). – moewe Feb 23 '20 at 07:58@incollectionwould be more appropriate. If you want to cite the entire book, then@collectionwould be correct. My entries would look more or less like https://gist.github.com/moewew/9701d313152bb3c5cbc36bee13efab79 – moewe Feb 23 '20 at 08:10I changed the following:
Any clue what I am doing wrong?
– Fastbanana Feb 23 '20 at 16:43.blgfile to a text-sharing website such as https://pastebin.com/ or https://gist.github.com/. (The.blgfile is a simple text file you can open with any text editor even though it may be recognised as "performance monitor file" by Windows). – moewe Feb 23 '20 at 16:52.bibfile? It should be run on the main.texfile. You need to run the sequence LaTeX, Biber, LaTeX, LaTeX (e.g. assuming your.texfile is calleddoc.texyou runpdflatex doc,biber doc,pdflatex doc,pdflatex docthe name of the.bibfile doesn't come in). – moewe Feb 23 '20 at 17:46