plk / biblatex-apa

APA style for BibLaTeX
88 stars 49 forks source link

Capital letters protected with {braces} displayed in lowercase #44

Closed gcabanac closed 6 years ago

gcabanac commented 6 years ago

This MWE featuring protected letters in the title of the reference outputs the letter ‘b’ of ‘beauties’ in lowercase. This shouldn't be the case AFAIK.

I compiled it with:

It seems to me that protection with braces worked as expected with the current versions of pdfTeX and biber as of mid-October 2017.

\documentclass{article}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{vanRaan2004,
    author={van Raan, Anthony F. J.},
    title="{S}leeping {B}eauties in science",
    volume={59},
    DOI={10.1023/b:scie.0000018543.82441.f1},
    number={3},
    journal={Scientometrics},
    year={2004},
    pages={467--472}
}
\end{filecontents}

\usepackage[style=apa]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
\cite{vanRaan2004}
\printbibliography
\end{document}

Am I missing something here?

Thank you.

eivindhammers commented 6 years ago

Capitalizing whole words seems to work in this example.

gcabanac commented 6 years ago

bibLaTeX behaves differently with \usepackage[style=apa,language=french]{biblatex} as it correctly typesets the in-word protected letter: “Sleeping Beauties in science”.

plk commented 6 years ago

Please can you try biber 2.10 from the "development" folder on Sourceforge.

gcabanac commented 6 years ago

With biber 2.10: it works like a charm! The output appears as expected: “Sleeping Beauties in science.” Thank you for digging into this.