我发现过与此类似的问题,但没有一个问题确切地询问我正在寻找的内容。
使用 BibTeX 和 natbib,我想仅使特定项目的引文以粗体显示。在下面的示例中,我想使“Smith, 2000”或“Smith (2000)”在出现的任何位置都显示为粗体,但其他项目则不显示。
(请注意,在这种情况下,我正在使用,\nobibliography
所以它们在实际参考书目中如何出现并不重要。)
这可能吗?
\documentclass{article}
\usepackage{natbib}
\usepackage{bibentry}
\begin{document}
Cite some papers \citep{jones2000,smith2000,davies2000}.
Cite the papers \citet{jones2000,smith2000,davies2000} again.
\bibliographystyle{apalike}
\nobibliography{mybibfile}
\end{document}
这是我的mybibfile.bib
:
@article{Jones2000,
author = {Jones, A},
year = {2000},
}
@article{Smith2000,
author = {Smith, B},
year = {2000},
}
@article{Davies2000,
author = {Davies, C},
year = {2000},
}