-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Volume is omitted on book entry types #82
Comments
The missing \documentclass[ngerman]{article}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=iso-authoryear, backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@book{knuth1998,
author = {Knuth, Donald E.},
maintitle = {The Art of Computer Programming},
title = {Sorting and Searching},
volume = {3},
edition = {2},
publisher = {Addison–Wesley},
isbn = {9780201896855},
year = {1998},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\cite{knuth1998}
\printbibliography
\end{document} For future bug reports you may want to keep in mind that it is more convenient to have the minimal working example in the post directly instead of a separate repository. ( |
That was easy. Thank you very much! |
I think the issue should stay open until someone with access to the standard has checked what should happen with the MWE with examples from \documentclass[ngerman]{article}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=iso-authoryear, backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{matuz:doody,aristotle:rhetoric,vazques-de-parga}
\printbibliography
\end{document} I also get
which probably shouldn't be there. The standard styles have \DeclareBibliographyAlias{mvbook}{book} for that. |
I want to cite the well-known book "The Art of Computer Programming":
Unfortunately the volume is omitted in the bibliography:
If I use
authoryear
instead ofiso-authoryear
the volume will be there:I have created a minimal working example. There I tried using both
@book
and@mvbook
entry types.How can I display the volume? Have I overlooked a configuration option?
Thanks in advance ❤️
The text was updated successfully, but these errors were encountered: