\footcite 和 \footcitetext 在 beamer 中产生空引用

\footcite 和 \footcitetext 在 beamer 中产生空引用

我在 beamer 文档类中使用了biblatexwith bibtex。非常奇怪的是,它\footcite产生了一个相当空的引用“2”。在示例中,而 whereas\footcitefull给出了一个非常好的引用。

我现在的问题是,我想在列和/或块环境中放置一个引用,根据其他帖子,我必须使用\footnotemark\footcitetext,只需在页脚中写入“3。”。

欲查看图片,请参见:

在此处输入图片描述

我的问题是:

  1. 我的 TeX 中是否存在错误,或者
  2. 有没有与\footcitefullin等价的词\footcitetext

    documentclass[8pt]{beamer}
    \usepackage[utf8]{inputenc}
    %\usepackage[ngerman]{babel}
    \usepackage{hyperref}
    \usepackage{graphicx}
    %\usepackage[pdftex]{color}
    %\usepackage{colortbl}
    %\usepackage{listings}
    \usepackage{xcolor}
    \usepackage[lf]{venturis}
    \usepackage{amsmath}
    \usepackage{amsfonts}
    \usepackage{amssymb}
    \usepackage{subcaption}
    %\usepackage{multirow}
    \usepackage[version=3]{mhchem}
    %\usepackage{longtable}
    \usepackage{pgf}
    \usepackage{tikz}
    \usepackage[citetracker=true,sorting=none,backend=bibtex,autocite=footnote]{biblatex}
    \bibliography{../literature.bib} 
    \frame{
    \frametitle{Introduction -- Electron Magnetic Chiral Dichroism}
    
    \begin{itemize}
        \item Discovered due to analogies between polarization and scattering vector in theoretical treatment.\footfullcite{emcd_nature}
        \item Recent research focused on: signal enhancement, electron ``vortex'' beams.\footcite{emcd_theory}
    \end{itemize}
    
    \begin{block}{Intrinsic Setup}
        \begin{columns}[m]
            \column{.4\textwidth}
            \begin{figure}[h]
                \includegraphics[width=.8\columnwidth]{images/apertures_0.pdf}
                \caption{Schematic}
            \end{figure}
    
            \column{.4\textwidth}
            \begin{itemize}
                \item The ``usual'' setup.
                \item Phase shift of $\pi/2$ of one Bragg beam due to dynamical diffraction effects.
                \item Dependent on sample thickness, orientation and crystal quality.
                \item Other setup to overcome dynamical diffraction effects?
                \item \textbf{Candidates:}
                \begin{itemize}
                    \item Electron vortex beams (fork aperture, stigmator).
                    \item Twin aperture with electrostatic phase plates.
                \end{itemize}
            \end{itemize}
        \end{columns}
    \end{block}
    

    }

相关内容