Hi,
I want to add a line with the publisher information to the footer template.
How can I do it?
Now the footer template looks like:
Quote:
program:
# Show at most two authors, on separate lines.
authors = field('authors');
num = count(authors, ' & ');
authors = sublist(authors, 0, 2, ' & ');
authors = list_re(authors, ' & ', '(.+)', '<b>\1');
authors = re(authors, ' & ', ' <br>');
re(authors, '& &', ' <br>')
|
If I add the two lines in bold, the only field that appears is the publisher.
Quote:
program:
# Show at most two authors, on separate lines.
authors = field('authors');
publisher = field('publisher');
num = count(authors, ' & ');
authors = sublist(authors, 0, 2, ' & ');
authors = list_re(authors, ' & ', '(.+)', '<b>\1');
authors = re(authors, ' & ', ' <br>');
re(authors, '& &', ' <br>');
re(publisher, '& &', ' <br>');
|
Thank you in advance,
Jose