Is it possible to print a certain field in the bibliography while omitting it in the (footnote) citations?
For example:
\usepackage[backend=bibtex,style=verbose-trad1,natbib=true,doi=false,isbn=false,url=false]{biblatex}
\addbibresource{x-mendeley.bib}
...
\renewcommand{\mkbibnamefamily}[1]{\textsc{#1}}
\printbibliography
Prints this citation and bibliography:
I can get the url, isbn etc. in there by using:
\usepackage[backend=bibtex,style=verbose-note,natbib=true]{biblatex}
This is what I want for the bibliography, but I don't want all these long urls etc in the footnote citations.
Is there a way to differentiate between the two? And could I for example add the isbn's to the citation but not the url?



\usepackage[backend=bibtex,style=verbose-note,natbib=true]{biblatex}and\AtEveryCitekey{\clearfield{url}}to display the URL in the bibliography, but not the citation. – moewe May 03 '18 at 11:37