For only the first author:
Code:
program: list_item($authors, 0, '&') & '.png'
this whil return:
Arthur C. Clarke.png
Get emblems for all authors [composed icons]:
Code:
program: rslt=''; authors = $authors;
rslt = list_item(authors, 0, '&') & '.png';
for i in range(1, list_count(authors, '&')):
if i == 6 then break fi;
rslt = rslt & ':' & list_item(authors, i, '&') & '.png'
rof;
return rslt
this whil return:
Arthur C. Clarke.png:Gentry Lee.png
(the colon is for separate the individual icons. You can limite the number of emblems display by changing the number 6)
EDIT: the case does not matter.