BibTeX: 선택한 참고문헌을 별표(또는 특수 기호)로 강조 표시

BibTeX: 선택한 참고문헌을 별표(또는 특수 기호)로 강조 표시

tex 파일과 bib 파일이 있고 두 참조 중 하나를 별표(*)로 강조하고 싶습니다.하지만나는 사용하고 싶지 않습니다 \bibitem. 대신에 Springer에서 제공하는 기존 참고문헌 형식( splncs.bst내 경우에는) 과 통합하고 싶습니다 .

따라서 다음 참고문헌은 다음과 같이 변경되어야 합니다.

[1] Adam, A., Boodle, B.: 일부 제목. In: Some Proceedings Book, 미국 보스턴, ACM (2014) 10-19

[2] Boodle, B., Cool, C.: 다른 제목. 뭔가의 일지 4 (2014) 47-62

다음과 같이 보이려면 :

[*1] Adam, A., Boodle, B.: 일부 제목. In: Some Proceedings Book, 미국 보스턴, ACM (2014) 10-19

[2] Boodle, B., Cool, C.: 다른 제목. 뭔가의 일지 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}
}

관련 정보