If you use latex and bibtex to create your CV then you can use this trick to bold your name in the author list of the bibliography. There are several other methods shown here .: Use plain.bst , copy it over to the location where your cv tex file is. Rename it (eg. to cvplain.bst ) Find the format.names function and change the line { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't := to { "\FormatName{" s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ * "}" * 't := In your cv tex file add the following lines: \def\FormatName#1{% \def\myname{My Name}% \edef\name{#1}% \ifx\name\myname \textbf{#1}% \else #1% \fi }