Search found 2 matches

by rainbowgoblin
Sat Sep 24, 2011 11:40 am
Forum: BibTeX, biblatex and biber
Topic: Conditional Formatting of Author Names
Replies: 1
Views: 2476

Conditional Formatting of Author Names

I figured this out, so I'm replying to my own question in case someone else wants to do this...

It turns out that my original solution works, I just didn't have the right syntax for the \equal command:

Code: Select all

\newcommand{\bibnamefont}[1]{\ifthenelse{\equal{#1}{Einstein A}}{\textbf{#1}}{#1}}
by rainbowgoblin
Sat Sep 24, 2011 2:43 am
Forum: BibTeX, biblatex and biber
Topic: Conditional Formatting of Author Names
Replies: 1
Views: 2476

Conditional Formatting of Author Names

I'm not sure if this is possible... I'd like to define the font used for authors' names conditionally based on who the author is. I'm writing a CV, and I want my name in publications to be in bold typeface, and others to be in the normal typeface. I've got my .bst file set up to use bibnamefont, and ...