0

For 1 specific citation (and only for that one) with many authors, biblatex keeps on using "author1, author2, et al" even though for everything else it is correctly using only 1 author when there are more than 2 authors (i.e. "author1, et al")

edit: So I've found the culprit. I have two citations with the same first author, and biblatex isn't liking it. Since the publications are on different years though, I'm not sure why this is causing an issue.

MWE:

 \documentclass[letterpaper, 10pt]{article}
% Using BIBER
\usepackage[backend=biber,sorting=nyt,style=authoryear,maxnames=2]{biblatex}
\usepackage{placeins}
\addbibresource{bibblio.bib}
\renewcommand{\bibfont}{\small}
\begin{document}
I want to cite \cite{hutter2012starleth} and \cite{hutter2010slip}.
\printbibliography
\end{document}

And the bib file is:

@book{hutter2012starleth,
  title={StarlETH: A compliant quadrupedal robot for fast, efficient, and versatile locomotion},
  author={Hutter, Marco and Gehring, Michael and Bloesch, Michael and Mark, A Hoepflinger and Remy, C David and Siegwart, Roland Yves},
  year={2012},
  publisher={World Scientific}
}

@inproceedings{hutter2010slip,
  title={Slip running with an articulated robotic leg},
  author={Hutter, Marco and Remy, C David and Hopflinger, MA and Siegwart, Roland},
  booktitle={Intelligent Robots and Systems (IROS), 2010 IEEE/RSJ International Conference on},
  pages={4934--4939},
  year={2010},
  organization={IEEE}
}

0 Answers0