In my beamer presentation, I want to cite the reference without title. So, I tried:
\documentclass{beamer}
\usepackage[
backend=bibtex8,
defernumbers=true,
sorting=none,
firstinits=true,
uniquename=init,
uniquelist=false,
refsegment=section,
citestyle=numeric
]{biblatex}
\addbibresource{mini.bib}
\AtEveryBibitem{\clearfield{Title}}
\begin{document}
\section{Start}
\begin{frame}
first cite\footfullcite{Julie2006}
%\printbibliography
\end{frame}
\section{2nd}
\begin{frame}
Second cite\footfullcite{gyof}
\end{frame}
\end{document}
with the mini.bib :
@article{gyof,
Author={BLJ},
Title={Some Title},
Journal={joural1},
volume={15},
pages={1337},
Year={1985}
}
@article{Julie2006,
Author={JBS},
Title={Some Other Title},
Journal={journal2},
volume={74},
pages={144411},
Year={2006}
}
with \AtEveryBibitem{\clearfield{Title}} I was expecting no title will be produced, but thats not the case:

Is there any incompatibility between clearfield and footfullcite? Or I am just missing something?
