Manually brace word in title.
When citing R software packages, the first word in the title is often the package name, which may or may not be lower case. I have found that my bibliography style in Overleaf automatically capitalizes it regardless, but this can be fixed by manually editing the .bib file to enclose the package name in curly braces.
My question is whether it is possible to change the title field in Zotero to manually brace a certain word in brackets in the exported bib file, rather than exporting to .bib and then editing the .bib file?
For example, currently the title field for an entry in Zotero is:
fda: Functional Data Analysis. R package version 5.5.1.
In the exported .bib file, I have:
title = {fda: {Functional} {Data} {Analysis}. {R} package version 5.5.1.},
but I want:
title = {{fda}: {Functional} {Data} {Analysis}. {R} package version 5.5.1.},
Is. it possible to manually add something to the title field in Zotero to achieve the bracing?
Apologies if I've missed something obvious!
My question is whether it is possible to change the title field in Zotero to manually brace a certain word in brackets in the exported bib file, rather than exporting to .bib and then editing the .bib file?
For example, currently the title field for an entry in Zotero is:
fda: Functional Data Analysis. R package version 5.5.1.
In the exported .bib file, I have:
title = {fda: {Functional} {Data} {Analysis}. {R} package version 5.5.1.},
but I want:
title = {{fda}: {Functional} {Data} {Analysis}. {R} package version 5.5.1.},
Is. it possible to manually add something to the title field in Zotero to achieve the bracing?
Apologies if I've missed something obvious!
(As a side note, I suggest storing “R package” in the Programming Language field and the version number in the version field, rather than all in the title.)
fda
in lowercase in a title:<span class="nocase">fda</span>: Functional Data Analysis. R package version 5.5.1.
.I have now installed BetterBibTeX.
My understanding is now as follows:
1) I have to export manually rather than using overleaf integration (I'm ok with this)
2) Using the suggestion by @emilianoeheyns should work if I use export: format = BetterBibTeX
Is this correct?
title = {{\textless}span class="nocase"{\textgreater}fda{\textless}/span{\textgreater}: {Functional} {Data} {Analysis}. {R} package version 5.5.1.}
Do you have any idea why this is?