diff --git a/v7/publication_list/publication_list.py b/v7/publication_list/publication_list.py index bfe26d4c..05b49683 100644 --- a/v7/publication_list/publication_list.py +++ b/v7/publication_list/publication_list.py @@ -112,7 +112,7 @@ def run(self): bibtex_fields = dict(entry.fields) # Remove some fields for the publicly available BibTeX file since they are mostly only # used by this plugin. - for field_to_remove in ('abstract', 'fulltext', 'presentation'): + for field_to_remove in ('abstract', 'fulltext', 'slides'): if field_to_remove in bibtex_fields: del bibtex_fields[field_to_remove] bibtex_entry = Entry(entry.type, bibtex_fields, entry.persons) @@ -127,8 +127,8 @@ def run(self): if 'fulltext' in entry.fields: # the link to the full text, usually a link to the pdf file extra_links += '[full text] '.format(entry.fields['fulltext']) - if 'presentation' in entry.fields: # the link to the presentation - extra_links += '[presentation] '.format(entry.fields['presentation']) + if 'slides' in entry.fields: # the link to the presentation slides + extra_links += '[slides] '.format(entry.fields['slides']) if extra_links or detail_page_dir: html += '
'