I am making a laboratory journal with the memoir document class and I have a brief summary page for each months entries. On that 1 page, space will be tight so I would like to remove the title field from \footfullcite. However, I am only aware of ways to remove it across the entire document (e.g. \DeclareFieldFormat{journaltitle}{}).
Is there a way in which I can remove the title only for the reference occurance contained within the footnote and the full title still be printed in the main bibliography?
MWE:
% arara: pdflatex: {options: [-halt-on-error]}
% arara: biber
% arara: pdflatex: {options: [-halt-on-error]}
\begin{filecontents}{test.bib}
@Article{Basl21,
author = {Basler, Sophie and Studer, Sabine},
journal = {Nat Chem},
title = {{Efficient Lewis acid catalysis of an abiological reaction in a de novo protein scaffold}},
year = {2021},
pages = {231--235},
}
\end{filecontents}
\documentclass[oneside]{memoir}
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{test.bib}
\begin{document}
\chapter{Test}
Foo bar baz\footfullcite{Basl21}.
\newpage
\printbibliography
\end{document}
It currently looks like this:
I looked in the biblatex.sty and biblatex.def files on the biblatex GitHub page but couldn't see where \footfullcite was defined beyond this:
\DeclareCiteCommand{\footfullcite}[\mkbibfootnote]
{\usebibmacro{prenote}}
{\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}}
{\multicitedelim}
{\usebibmacro{postnote}}
I checked in the numeric.bbx style and standard.bbx files too and could not find how I could modify \footfullcite. Any tips on which files to look into for cite command definitions for the future would be appreciated too.


\footfullcite. You can see this if you cite the same source several times. (Or in your case even if you cite several sources in an order that does not correspond to the alphabetical order in the bibliography.) – moewe Aug 12 '22 at 13:27