Hi,
Thanks for a great theme. I'm trying to build a personal academic site using this theme, and I was wondering whether there is any way to add annotations/formatting to the author list for publications. For example, if I am not the first author, I would like to make my name bold in the author list, and other similar formatting. In case of some of my co-authors, they have special characters in their names, which I would like to add.
Is there any way to implement this?
Thanks.
@saurabhbelsare glad you like the theme, let me know if you have any other feedback.
Academic keeps things simple and uses plain text for author names, so the easiest way to highlight names would be to postfix a symbol (e.g. *) to denote something special like many journal/conference authors do.
Otherwise, you can add full markdown formatting to the _authors_ text by:
/themes/academic/layouts/partials/publication_li_detailed.html{{ delimit . ", " }} (approx. line 43) to {{ delimit . ", " | markdownify }}/themes/academic/layouts/publication/single.html@gcushen This is exactly what I was looking for. Thanks a lot!
Most helpful comment
@saurabhbelsare glad you like the theme, let me know if you have any other feedback.
Academic keeps things simple and uses plain text for author names, so the easiest way to highlight names would be to postfix a symbol (e.g.
*) to denote something special like many journal/conference authors do.Otherwise, you can add full markdown formatting to the _authors_ text by:
/themes/academic/layouts/partials/publication_li_detailed.html{{ delimit . ", " }}(approx. line 43) to{{ delimit . ", " | markdownify }}/themes/academic/layouts/publication/single.html