I'm trying to get every word in the title of each article in my reference list in capital letters (So Something Like This For Every Title). However, somehow \MakeSentenceCase
remains active no matter what I do. This is how I am trying to get this done:
\usepackage[english]{babel}\usepackage{csquotes}\usepackage[backend=biber, style=authoryear]{biblatex}\DeclareFieldFormat[article]{title}{\MakeCapital{#1}}
The manual also mentions \MakeUppercase
, which I have also tried, and nothing changes either. When I use \textbf
(just for testing purposes), then the titles do turn into boldface titles. So DeclareFieldFormat
does work, just not MakeCapital
.