我有一个 tex 文件和一个 bib 文件,并且想用星号 (*) 突出显示两个参考文献中的一个但我不想使用\bibitem
。相反,我想将其与 Springer 提供的现有参考书目格式结合起来(splncs.bst
就我而言)。
因此,以下参考书目应改变如下:
[1] Adam, A., Boodle, B.: 一些标题。在:一些会议纪要,美国波士顿,ACM(2014)10-19
[2] Boodle, B., Cool, C.: 其他标题。Journal of Something 4 (2014) 47-62
看起来像这样:
[*1] Adam, A., Boodle, B.: 一些标题。在:一些会议纪要,美国波士顿,ACM(2014)10-19
[2] Boodle, B., Cool, C.: 其他标题。Journal of Something 4 (2014) 47-62
这可能吗?
这是一个简单的例子:
文件example.tex
:
\documentclass{article}
\begin{document}
This is a document.
\nocite{A,B}
\bibliographystyle{splncs}
\bibliography{example}
\end{document}
example.bib 文件:
@INPROCEEDINGS{A,
author = {A. Adam and B. Boodle},
title = {{Some Title}},
booktitle = {Some Proceedings Book},
year = {2014},
pages = {10-19},
address = {Boston, USA},
publisher = {ACM}
}
@ARTICLE{B,
author = {B. Boodle and C. Cool},
title = {{Some Other Title}},
journal = {Journal of Something},
year = {2014},
volume = {4},
pages = {47-62},
number = {1}
}