I am trying to change how BibLaTeX changes the title of certain entries. I want to do this by modifying the bibmacro for "title". However, I cannot find its default definition anywhere. It is used in standard.bbx for example but there does not seem to be any definition. Where can I find the default for this macro?
Asked
Active
Viewed 604 times
3
schade96
- 35
1 Answers
4
Lines 2785-2797 of biblatex.def (in v3.14):
\newbibmacro*{title}{%
\ifboolexpr{
test {\iffieldundef{title}}
and
test {\iffieldundef{subtitle}}
}
{}
{\printtext[title]{%
\printfield[titlecase]{title}%
\setunit{\subtitlepunct}%
\printfield[titlecase]{subtitle}}%
\newunit}%
\printfield{titleaddon}}
biblatex.def. The bibliography drivers and some 'higher-level' bibmacros are defined instandard.bbx. The<style>.bbxfiles contain some style specific bibliography modifications. Citation style definitions can be found in<style>.cbx. Custom styles usually consist of<style>.bbxand<style>.cbxas well, but may sometimes rely on additional files. – moewe Aug 16 '20 at 10:49