I want to customize the appearance of \footfullcite in my beamer presentation. I would like it to look something like this,
M. A. Zeb et. el., Phys. Rev. Lett., 108, 2012. I don't want to have the title and the page number etc. And in text reference to appear inline instead of a superscript enclosed in square brackets.
I have tried these guidelines but it doesn't seem to work.
I have saved the following
\AtEveryBibitem{%
\clearfield{title}%
\clearfield{pagetotal}%
}
in biblatex.cfg and saved it in /Users/ruawan/Library/texmf/tex/latex/biblatex.
Here is the input
\documentclass[13pt,xcolor=dvipsnames]{beamer}
\usepackage{multirow}
\usepackage{fixltx2e}
\usepackage{amsmath}
\usepackage{braket}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage[style=numeric,backend=biber]{biblatex}
\usetikzlibrary{positioning}
\newtheorem{theor}{Theorem}
\usetheme{umbc2}
\usecolortheme[named=RawSienna]{structure}
\usefonttheme[onlylarge]{structurebold}
\setbeamerfont{frametitle}{family=\rmfamily,shape=\itshape}
\setbeamercovered{transparent}
\setbeamertemplate{frametitle}[default][center]
\addbibresource{HinGe.bib}
\begin{document}
\begin{frame}
\frametitle{Previous Work}
\framesubtitle{Simple metals and beyond}
Simple metals have been reasonably well understood \footfullcite{maz01}.
\begin{itemize}
\item Linear response treatment by Lindhard.
\item The full non-linear treatment by Echenique, Ritchie, and Nieminen.
\item For simple metals the electronic stopping power is proportional to the projectile velocity in low-speed regime\footfullcite{maz02}.
\item Insulators, semiconductors, and noble metals are relatively poorly understood.
\end{itemize}
\end{frame}
\end{document}
Here is the output,

Can you please point out the bug?
titleandsubtitlemay have the subtitle still appear, or perhaps theshorttitlewill take its place. In this casepagesprobably also needs to be cleared. It is dependent on your bib-file. – cslstr May 29 '14 at 19:16