Skip to content

Instantly share code, notes, and snippets.

@himito
Last active August 17, 2021 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save himito/e1474231fe9db0d4b18b24a1e1389f90 to your computer and use it in GitHub Desktop.
Save himito/e1474231fe9db0d4b18b24a1e1389f90 to your computer and use it in GitHub Desktop.
LaTeX snippets

Highlight author with bibtex

\usepackage[
  backend=biber,
  bibencoding=utf8,
  maxbibnames=99,
  style=alphabetic,
  sorting=nty
]{biblatex}
\addbibresource{references.bib}

% Hash: Jaime Arias
\edef\authorhash{\detokenize{9621b15a15e25a7400bedd3305a9f1d0}}

\renewcommand{\mkbibnamelast}[1]{%
  \iffieldequals{hash}{\authorhash}{\textbf{\textsc{#1}}}{\textsc{#1}}}
\renewcommand{\mkbibnamefirst}[1]{%
  \iffieldequals{hash}{\authorhash}{\textbf{#1}}{#1}}
\renewcommand{\mkbibnameaffix}[1]{%
  \iffieldequals{hash}{\authorhash}{\textbf{#1}}{#1}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment