So I have a pretty heavy custom setup for a grant application, where I need my citations to appear as footnotes. I've got this set up fine, but I have a problem when I try to cite something from a tabular environment. Namely, the citation shows up properly in the table, but the reference does not appear in the footnotes. Those numbers just go missing...
I've put up a minimum working example:
\begin{filecontents}{mytestbib.bib}
@article{ref1,
Author = {SoAndSo, One},
Title = {Somearticle 1},
Year = {1993},
}
@article{ref2,
Author = {SoAndSo, Two},
Title = {Somearticle 2},
Year = {1994},
}
\end{filecontents}
\documentclass[a4paper, 11pt]{article}
\usepackage{bibentry}
\usepackage[backend=bibtex, firstinits=true, maxnames=99,bibstyle=numeric-comp, citestyle=custom-numeric-comp]{biblatex}
\addbibresource{mytestbib.bib}
\renewcommand{\thefootnote}{[\arabic{footnote}]}
\begin{document}
\noindent Paper: \notefullcite{ref1}\\
\begin{tabular}{cc}
Paper: & \notefullcite{ref2}
\end{tabular}
\end{document}
When I compile, I get only the first reference appearing in the footnotes... Any ideas? I can see from the related questions that footnotes from tabulars are a mess... I'm definitely seeing some trouble getting the workarounds to respect all my bibtex stuff too...
[EDIT REVISED:] The \notefullcite command is defined as follows:
\DeclareCiteCommand{\notefullcite}[\mkbibbrackets]%
{\usebibmacro{cite:init}%
\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\usebibmacro{notefullcite}%
\usebibmacro{cite:comp}}
{}
{\usebibmacro{cite:dump}%
\usebibmacro{postnote}}
\newbibmacro*{notefullcite}{%
\ifciteseen
{}
{\footnotetext[\thefield{labelnumber}]{%
\usedriver{}{\thefield{entrytype}}.}}}

numeric-comp, but then your citation commands are undefined control sequences. – cfr Sep 09 '15 at 22:39tablearound thetabular? If not the solution at Footnote in tabular environment will work just fine. If you do have atableenvironment, the solution won't work and we will all sorts of additional troubles since the cite trackers you need to decide whether or not to print the full citation are switched off inside floats, see §4.11.5 Trackers in Floats and TOC/LOT/LOF, p. 239 of thebiblatexdocumentation. – moewe Sep 10 '15 at 07:25figureenvironment for the float issue. – moewe Sep 10 '15 at 07:27savenotesenvironment of thefootnotepackage together with the hack in the answer above to get things right. – moewe Sep 10 '15 at 07:46table, you should not expect the cite tracker to work since text and floats are in a way independent. But since you use onlytabularI think\usepackage{footnote}makesavenoteenv{tabular}should do exactly what you want. – moewe Sep 10 '15 at 09:47