I’d like to cite a website including its name, maintainer and URL, but not the access date, in a footnote.
Using the \fullcite command, the whole entry appears in the footnote as well as in the bibliography.
Is there a way to keep the access date in the bib file, so that it appears in the bibliography, but to omit it in the citation?
\documentclass{article}
\usepackage[english]{babel}
\usepackage[backend=biber]{biblatex}
\usepackage{csquotes}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@online{doe2015,
title = {My Website},
url = {https://website.org},
author = {Doe, John},
urldate = {2015-09-17},
}
\end{filecontents}
\addbibresource{test.bib}
\begin{document}
The fullcite command in a footnote:\footnote{For reference see \fullcite{doe2015}.}
\printbibliography
\end{document}
\ref? Because you should use\cite. Can you add a bit more about what style you are using etc. A MWE is a good way to tell us that. – moewe Sep 17 '15 at 15:24numericstyle? And you only want to suppress theurldatein a\fullcite? In that case try\AtEveryCitekey{\clearfield{urlyear}}. – moewe Sep 18 '15 at 07:39