2

I am using Biber and the verbose IBID style setting to generate my footnotes. Here is my bibliography settings

\usepackage[citestyle=verbose-ibid, bibstyle=authoryear, backend=biber, labeldate]{biblatex}

Some of my book entries in the bib file contain URL data (e.g. the Google book reference). I like the fact that these are showing up in the bibliography section at the back of the document, but I do not want them showing up in the full version of the first citation of a work.

Is there some way to de-activate URL printing in the main matter, but not in the back matter, e.g. by redeclaring some macro?

Thanks!

1 Answers1

7

Add \AtEveryCitekey{\clearfield{url}} to your preamble.

\documentclass{article}

\usepackage[style=verbose-ibid]{biblatex}

\AtEveryCitekey{\clearfield{url}}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
  url = {http://meta.tex.stackexchange.com/questions/228/ive-just-been-asked-to-write-a-minimal-example-what-is-that},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

\null\vfill% just for the example

Some text \autocite{A01}.

\printbibliography

\end{document}

enter image description here

lockstep
  • 250,273