我有一个 Latex Beamer 类,在那里我使用该包在特定幻灯片上bibunits
显示我选择的一些条目:biblio.bib
\documentclass{beamer}
\usepackage{bibunits}
\setbeamertemplate{bibliography item}{[\theenumiv]}
\defaultbibliography{biblio}
\defaultbibliographystyle{IEEEtran}
\begin{document}
\begin{frame}
\frametitle{Some entries}
\begin{bibunit}
\nocite{Yang2007, Goldlucke2014, Li2014}
\putbib
\end{bibunit}
and many more...
\end{frame}
\end{document}
我想将第一个条目设为粗体,但仅作为某种覆盖。这意味着我第一次展示此幻灯片时,所有条目都显示为与示例中相同的内容,而在“下一张”幻灯片上(带有\onslide
或其他内容)Yang2007
应以粗体打印。这样,观众就更容易了解您当前正在谈论哪个条目。
为了完整性,这里是我的biblio.bib
:
@article{Goldlucke2014,
title={A super-resolution framework for high-accuracy multiview reconstruction},
author={Goldl{\"u}cke, Bastian and Aubry, Mathieu and Kolev, Kalin and Cremers, Daniel},
journal={International Journal of Computer Vision},
volume={106},
number={2},
pages={172--191},
year={2014},
}
@inproceedings{Li2014,
title={Similarity-aware patchwork assembly for depth image super-resolution},
author={Li, Jing and Lu, Zhichao and Zeng, Gang and Gan, Rui and Zha, Hongbin},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={3374--3381},
year={2014}
}
@inproceedings{Yang2007,
title={Spatial-depth super resolution for range images},
author={Yang, Qingxiong and Yang, Ruigang and Davis, James and Nist{\'e}r, David},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
year={2007},
}
答案1
肮脏的黑客:
\documentclass{beamer}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{Goldlucke2014,
title={A super-resolution framework for high-accuracy multiview reconstruction},
author={Goldl{\"u}cke, Bastian and Aubry, Mathieu and Kolev, Kalin and Cremers, Daniel},
journal={International Journal of Computer Vision},
volume={106},
number={2},
pages={172--191},
year={2014},
}
@inproceedings{Li2014,
title={Similarity-aware patchwork assembly for depth image super-resolution},
author={Li, Jing and Lu, Zhichao and Zeng, Gang and Gan, Rui and Zha, Hongbin},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={3374--3381},
year={2014}
}
@inproceedings{Yang2007,
title={Spatial-depth super resolution for range images},
author={Yang, Qingxiong and Yang, Ruigang and Davis, James and Nist{\'e}r, David},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
year={2007\normalfont},
}
\end{filecontents*}
\usepackage{bibunits}
\setbeamertemplate{bibliography item}{[\theenumiv]}
\defaultbibliography{\jobname}
\defaultbibliographystyle{IEEEtran}
\newcommand{\BIBdecl}{\bfseries}
\begin{document}
\begin{frame}
\frametitle{Some entries}
\begin{bibunit}
\nocite{Yang2007, Goldlucke2014, Li2014}
\putbib
\end{bibunit}
and many more...
\end{frame}
\end{document}