michal-h21 / biblatex-iso690

ISO 690 style for biblatex.
LaTeX Project Public License v1.3c
93 stars 31 forks source link

'Corporate authors' need to be protected with curly braces #92

Closed megi-mejdrechova closed 2 years ago

megi-mejdrechova commented 3 years ago

Hey, I found an older issue https://github.com/michal-h21/biblatex-iso690/issues/88, where you suggest to protect 'Corporate authors' with curly braces in order to prevent formating as FAMILYNAME, Name.

I tried the trick with {{Corporate authors}}, but nothing changed. It is still printed as AUTHORS, Corporate.

I import your package this way: \usepackage[backend=biber,style=iso-numeric]{biblatex}

Do you have any idea what may be wrong and why the double curly braces do not help?

Thank you very much for your help and also for the package :)

moewew commented 3 years ago

Did you rerun Biber and LaTeX after you fixed your .bib file? author = {{Corporate authors}}, should be correct.

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

 \usepackage[backend=biber,style=iso-numeric]{biblatex}

\begin{filecontents}{\jobname.bib}
@book{corporate,
  author    = {{Corporate authors}},
  title     = {A Theory on Brontosauruses},
  year      = {1972},
  publisher = {Monthy \& Co.},
  location  = {London},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,corporate}

\printbibliography
\end{document}

CORPORATE AUTHORS. A Theory on Brontosauruses. London: Monthy & Co., 1972.

image of output, the relevant section with "CORPORATE AUTHORS" has been quoted above

DavidLuptak commented 2 years ago

I suppose this is a compilation or TeX distribution setup issue. We provide also some examples in the biblatex-iso690-examples.bib, see e.g. @groll2008method or @dialog1985enhancements and compare with the reference bibliography in our documentation.

I am closing this issue now, @megi-mejdrechova if you would have any further issues, we are happy to help :sos: