对于简历,我想在我的名字出现在参考书目中的任何地方加上下划线。我正在将 LaTex 与 biblatex 一起使用。有没有一种简单的方法可以自动为某个名称添加下划线?谢谢!
例如,我希望在参考书目的所有条目中自动为“姓氏”添加下划线。
\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}