如何在投影仪中仅显示所需的参考?

如何在投影仪中仅显示所需的参考?

我想在我的投影仪中的某张幻灯片中引用,但是幻灯片显示的所有参考文献包含不属于该幻灯片的参考文献,如何解决这个问题?

例如,在下图中,只有第一个参考文献是真正我引用的,其他两个来自其他幻灯片。

我的Latex代码如下:

\documentclass{beamer}
\mode<presentation> {
\setbeamertemplate{navigation symbols}{}
}

\usepackage{graphicx} % Allows including images
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amsfonts, amssymb}
\usepackage{tikz}
\usepackage{verbatim}
\usepackage{epsfig}
\usepackage{hyperref}
\usetikzlibrary{arrows}

\title[Multi-Sensor Fusion]{Multi-Sensor Fusion}


 \author{Wangyan Li}% Your name
 \institute[USST] 
{ \\
 \medskip
\textit{{\tt
 wangyan$\[email protected]}} 
 }
  \date{\today}


 \begin{document}
 \begin{frame}
 \titlepage % Print the title page as the first slide
 \end{frame}

 \section{Introduction}
\begin{frame}{History}
 At the beginning of 1970s, the U.S. navy merged data about Soviet naval movements at data fusion centers, the result turned out to be much accurate than using data from single sonar \cite{friedman2001seapower}.
\bibliographystyle{IEEEtran}
\bibliography{article,book} 
\end{frame}
\begin{frame}{Optimal Information Fusion}

\begin{itemize}

\item  Independent Estimates  \cite{Sijs2012}\\
\item  Correlated Estimates \cite{Sun2004}\\
\item  Unknown Covariance  
\end{itemize}
\bibliographystyle{IEEEtran}
\bibliography{article,book} 
\end{frame}
\end{document}

完整版

@book{friedman2001seapower,
title={Seapower as Strategy: Navies and National Interests},
author={Friedman, Norman},
year={2001},
publisher={Naval Institute Press}
}

文章目录

@article{Sun2004,
 doi = {10.1016/j.automatica.2004.01.014},
 url = {http://dx.doi.org/10.1016/j.automatica.2004.01.014},
 year  = {2004},
 month = jun,
 publisher = {Elsevier {BV}},
 volume = {40},
 number = {6},
 pages = {1017--1023},
 author = {ShuLi Sun and ZiLi Deng},
 title = {Multi-sensor optimal information fusion {K}alman filter},
 journal = {Automatica}
}

 @article{Sijs2012,
 doi= {10.1016/j.automatica.2012.05.077},
 url= {http://dx.doi.org/10.1016/j.automatica.2012.05.077},
 year = {2012},
 month= aug,
 publisher= {Elsevier $\lbrace$BV$\rbrace$},
 volume= {48},
 number= {8},
 pages= {1874--1878},
 author= {Joris Sijs and Mircea Lazar},
 title= {State fusion with unknown correlation: Ellipsoidal intersection},
 journal= {Automatica}
 }

在此处输入图片描述

答案1

按照 Mico 的建议,我使用了bibunits包,它有效。

首先,在文档开头放置以下代码,

\usepackage{bibunits}  
\setbeamertemplate{bibliography item}{[\theenumiv]}
\defaultbibliography{book,article}
\defaultbibliographystyle{IEEEtran}

二、将原文替换为:

\begin{frame}{History}
\begin{bibunit}[plain]
At the beginning of 1970s, the U.S. navy merged data about Soviet naval movements at data fusion centers, the result turned out to be much accurate than using data from single sonar \cite{friedman2001seapower}.
\putbib
\end{bibunit}

然后,事情就会变成这样, 在此处输入图片描述

这就是我想要的!!!

相关内容