Ich habe eine Tex-Datei und eine Bib-Datei und möchte eine der beiden Referenzen mit einem Sternchen (*) hervorheben.AberIch möchte nicht verwenden \bibitem
. Stattdessen möchte ich es in ein vorhandenes Bibliografieformat integrieren, das ( splncs.bst
in meinem Fall) von Springer bereitgestellt wird.
Daher sollte die folgende Bibliographie folgendermaßen aussehen:
[1] Adam, A., Boodle, B.: Some Title. In: Some Proceedings Book, Boston, USA, ACM (2014) 10-19
[2] Boodle, B., Cool, C.: Some Other Title. Journal of Something 4 (2014) 47-62
sollte so aussehen:
[*1] Adam, A., Boodle, B.: Some Title. In: Some Proceedings Book, Boston, USA, ACM (2014) 10-19
[2] Boodle, B., Cool, C.: Some Other Title. Journal of Something 4 (2014) 47-62
Ist das möglich?
Hier ein Minimalbeispiel:
Die example.tex
Datei:
\documentclass{article}
\begin{document}
This is a document.
\nocite{A,B}
\bibliographystyle{splncs}
\bibliography{example}
\end{document}
Die Datei 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}
}