tex ファイルと bib ファイルがあり、2 つの参照のうちの 1 つをアスタリスク (*) で強調表示したいしかしは使いたくありません。代わりに、Springer (私の場合)\bibitem
が提供する既存の参考文献形式に組み込みたいのです。splncs.bst
したがって、次の参考文献は次のように変更されるはずです。
[1] Adam, A., Boodle, B.: Some Title. Some Proceedings Book、ボストン、米国、ACM (2014) 10-19
[2] ブードル、B.、クール、C.:Some Other Title。Journal of Something 4(2014)47-62
次のようになります:
[*1] Adam, A., Boodle, B.: Some Title. Some Proceedings Book, ボストン, USA, ACM (2014) 10-19
[2] ブードル、B.、クール、C.:Some Other Title。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}
}