首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在beamer中一行书写脚注引用?

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

Stack Overflow用户
提问于 2016-04-25 16:48:24
回答 2查看 11.7K关注 0票数 6

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

代码语言:javascript
复制
\begin{frame}
 \frametitle{R: Literature Review}
 \setbeamerfont{footnote}{size=\tiny}
  Huo et al. \footfullcite{Huo, et al. ``Computerized ...''}
\end{frame}

输出如下所示:

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

你知道我怎么用两行代码就能做到吗?

谢谢并致以问候。

EN

回答 2

Stack Overflow用户

发布于 2019-02-28 18:42:08

我认为问题可能是,latex在连接文章标题时存在问题。一个简单的解决方法是让latex来做这项工作,并使用bibtex或biblatex。

代码语言:javascript
复制
\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}

票数 5
EN

Stack Overflow用户

发布于 2016-04-27 16:11:16

一个小窍门:不要在“Guo”(或“Huo”)之后使用逗号!

代码语言:javascript
复制
\footfullcite{Huo et al. ``Computerized ...''}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/36835791

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档