如何在 beamer 中用一行写脚注引用?

如何在 beamer 中用一行写脚注引用?

我正在使用 beamer latex,我需要在脚注中给出参考。我的参考大约有 2 行。但是当我编写以下代码时,它会写出更多行!!!

\documentclass[landscape]{beamer}                           
\usetheme{CambridgeUS}
\usepackage[italian]{babel}                            
\usepackage{biblatex}

\begin{document}
\maketitle

 \begin{frame}
 \setbeamerfont{footnote}{size=\tiny}
  Huo et al. \footfullcite{Huo, et al. ``Computerized analysis of digitized mammograms of BRCA1 and BRCA2 gene mutation carriers 1.'' Radiology 225, no. 2 (2002): 519-526.}said that:
 \end{frame}

\end{document}

输出如下:

Huo,
et al. ”Prediction of clinical phenotypes in invasive breast carcinomas from the integration of radiomics and genomics data.”
no. 4 (2015): 041007-041007..

答案1

我认为问题可能是 latex 在对文章标题进行连字符连接时出现问题。一个简单的解决方法是让 latex 完成这项工作并使用bibtexbiblatex

\documentclass{beamer}

\setbeamertemplate{navigation symbols}{}

% only for this example, otherwise in .bib file
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{Huo2002,
    author = {Zhimin Huo and Maryellen L. Giger and Olufunmilayo I. Olopade and Dulcy E. Wolverton and Barbara L. Weber and Charles E. Metz and Weiming Zhong and Shelly A. Cummings},
    title = {Computerized Analysis of Digitized Mammograms of BRCA1 and BRCA2 Gene Mutation Carriers},
    journal = {Radiology},
    volume = {225},
    number = {2},
    pages = {519-526},
    year = {2002},
    doi = {10.1148/radiol.2252010845},
    note ={PMID: 12409590},
}
\end{filecontents}

\usepackage[style=verbose,backend=biber]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
 \begin{frame}
    \frametitle{R: Literature Review}
    \setbeamerfont{footnote}{size=\tiny}
    Huo et al. \footfullcite{Huo2002}
    \end{frame}
\end{document}

在此处输入图片描述

相关内容