履歴書の場合、参考文献に記載されている自分の名前に下線を引きます。私はbiblatexでLaTexを使用しています。特定の名前に自動的に下線を引く簡単な方法はありますか? ありがとう!
たとえば、参考文献のすべてのエントリで、「姓名」に自動的に下線が引かれるようにします。
\documentclass[12pt]{article}
\usepackage[maxbibnames=99, sorting=ydnt]{biblatex}
\addbibresource{test.bib}
\begin{filecontents}{test.bib}
@article{paper1,
author = {Surname, Name and Another, Name and Thethird, Name and Andthe, Last},
journal = {JUR},
month = {5},
title = {{Title very good}},
year = {2015}
}
@article{paper2,
author = {Guy, Some and Surname, Name and Dude, The},
journal = {JUR},
month = {5},
title = {{Another brilliant title}},
year = {2016},
}
\end{filecontents}
\begin{document}
\nocite{*}
\printbibliography
\end{document}