저는 박사 학위 논문을 쓰고 있는데 biber와 biblatex를 사용하여 참고문헌과 출판물 목록을 모두 포함시켰습니다. 나는 내 출판물 중 하나가 논문과 함께 인용될 때 \cite{...} 번호를 다르게 색칠하여 강조하는 것이 흥미로울 것이라고 생각했습니다. 예를 들어 \cite{Amariti:2023hev}의 출력이 녹색이 아닌 주황색이기를 원합니다.
논문의 기본 구성은 다음과 같습니다
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{xcolor}
\definecolor{newred}{rgb}{0.8, 0.0, 0.0}
\definecolor{ao}{rgb}{0.0, 0.5, 0.0}
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
linkcolor= newred,
citecolor= ao,
linktoc=page
}
\usepackage[backend=biber, style=authoryear]{biblatex}
\DeclareSourcemap{
\maps[datatype=bibtex, overwrite]{
\map{
\perdatasource{bib1.bib}
\step[fieldset=keywords, fieldvalue={, }, appendstrict]
\step[fieldset=keywords, fieldvalue=one, append]
}
\map{
\perdatasource{bib2.bib}
\step[fieldset=keywords, fieldvalue={, }, appendstrict]
\step[fieldset=keywords, fieldvalue=two, append]
}
}
}
\begin{filecontents}{bib1.bib}
@article{Amariti:2023hev,
author = "Amariti, Antonio and Morgante, Davide and Pasternak, Antoine and Rota, Simone and Tatitscheff, Valdo",
title = "{One-form symmetries in $\mathcal{N} = 3$ S-folds}",
eprint = "2303.07299",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.21468/SciPostPhys.15.4.132",
journal = "SciPost Phys.",
volume = "15",
number = "4",
pages = "132",
year = "2023"
}
}
\end{filecontents}
\begin{filecontents}{bib2.bib}
@article{Gaiotto:2012xa,
author = "Gaiotto, Davide and Rastelli, Leonardo and Razamat, Shlomo S.",
title = "{Bootstrapping the superconformal index with surface defects}",
eprint = "1207.3577",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP01(2013)022",
journal = "JHEP",
volume = "01",
pages = "022",
year = "2013"
}
\end{filecontents}
\addbibresource{bib1.bib}
\addbibresource{bib2.bib}
\begin{document}
I want the color of \cite{Gaiotto:2012xa} from bib2 to be the default (green) and the one of \cite{Amariti:2023hev} from bib1 to be another color like orange.
\printbibliography[title={First Bibliography}, keyword=one]
\printbibliography[title={Second Bibliography}, keyword=two]
\end{document}
게다가 나는 단지 논문 전체에 흩어져 있는 몇 가지 인용에 대해서만 다른 \cite 명령을 정의하고 싶지 않습니다.
이런 일이 가능할까요?