How to place footcites at the bottom of the slide (see picture below)?
A bit similar problem was arisen here. I tried to adapt the solution with labeling of footnotes in which is used the sequence of commands: \footnote{\label{name}Some footnote text.} \footnotemark[\ref{name}], but it is not the solution for the \footcitetexts command.
MWE:
\documentclass{beamer}
\usetheme{Frankfurt}
\usepackage[polish]{babel}
\usepackage{polski}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tcolorbox}
\usepackage[style=verbose-ibid,sortcites]{biblatex}
\setbeamertemplate{navigation symbols}{} % switch off buttons on the slide bottom
\usepackage{filecontents}
\begin{filecontents}{mylist.bib}
@book{roadrunner,
author = {Geococcyx californianus},
title = {Gregorian choir}
}
@book{cookiemonster,
author = {Blue monster},
title = {Astronautics}
}
\end{filecontents}
\addbibresource{mylist.bib}
\begin{document}
\begin{frame}
\centering
\begin{tcolorbox}[title=This is tcolorbox]
Aaa aaa aaa aaa\footcite{roadrunner}.
\end{tcolorbox}
\begin{tcolorbox}[title=This is tcolorbox]
Bbb bbb bbb bbb\footcites[p. 100]{cookiemonster}[p. 200]{roadrunner}.
\end{tcolorbox}
\end{frame}
\end{document}
BTW: If needed, is it possible to ensure wrapping of the \footcites content to fit it automatically to the box? (In the picture above it exceeds the box boundary.)
EDIT (after comments): If there are more than one reference in a single tcolorbox then the counters are wrong (at the bottom of the page). Modified MWE:
\documentclass{beamer}
\usetheme{Frankfurt}
\usepackage[polish]{babel}
\usepackage{polski}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tcolorbox}
\usepackage[style=verbose-ibid,sortcites]{biblatex}
\setbeamertemplate{navigation symbols}{} % switch off buttons on the slide bottom
\usepackage{filecontents}
\begin{filecontents}{mylist.bib}
@book{roadrunner,
author = {Geococcyx californianus},
title = {Gregorian choir}
}
@book{cookiemonster,
author = {Blue monster},
title = {Astronautics}
}
\end{filecontents}
\addbibresource{mylist.bib}
\begin{document}
\begin{frame}
\centering
\begin{tcolorbox}[title=This is tcolorbox]
Aaa aaa aaa aaa\footnotemark
Ccc ccc ccc ccc\footnotemark.
\end{tcolorbox}
\footcitetext{roadrunner}
\footcitetext{cookiemonster}
\begin{tcolorbox}[title=This is tcolorbox]
Bbb bbb bbb bbb\footnotemark.
\end{tcolorbox}
\footcitetexts[p. 100]{cookiemonster}[p. 200]{roadrunner}
\end{frame}
\end{document}
The problem is a bit similar to the linked one (above). Output:


lorem\footnotemark ipsum\footnotemarkin atcolorboxand then\footcitetext{sigfridsson}\footcitetext{worman}after that. – moewe Mar 19 '17 at 15:10\footcitetextsis and which package it belongs to. Replacing it with\footnotetextworked for me. – Martin Nov 19 '17 at 21:20biblatexcommand. The question was specifically about footnote citations produced via\footcite. But the general strategy can be applied to normal\footnotes as well, in which case\footcitetext(s)is simply\footnotetext. – moewe Nov 20 '17 at 08:14