怎么用beamer在一行写脚注引用?

问题描述 投票:2回答:2

我正在使用beamer latex,我需要在footnote中提供参考。我的参考是大约2行。但是当我写下面的代码时,它会将它写成更多行!

\begin{frame}
 \frametitle{R: Literature Review}
 \setbeamerfont{footnote}{size=\tiny}
  Huo et al. \footfullcite{Huo, et al. ``Computerized ...''}
\end{frame}

输出是这样的:

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

你知道我怎么能在两行中做到这一点吗?

感谢致敬。

latex beamer
2个回答
1
投票

我认为问题可能是,乳胶在连接文章标题方面存在问题。一个简单的解决方法是让乳胶完成工作并使用bibtex或biblatex。

\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}

enter image description here


0
投票

一个小技巧:在'Guo'(或'Huo')之后不要使用逗号!

\footfullcite{Huo et al. ``Computerized ...''}
© www.soinside.com 2019 - 2024. All rights reserved.