diff -r f019ad7fcf1b -r 303b9be118d4 plugins/redmine_bibliography/app/views/publications/autocomplete_for_author.html.erb
--- a/plugins/redmine_bibliography/app/views/publications/autocomplete_for_author.html.erb
+++ b/plugins/redmine_bibliography/app/views/publications/autocomplete_for_author.html.erb
@@ -1,10 +1,12 @@
-<%= raw @results.map {|result| {
-    'label' => "#{result.name} <em>#{result.mail.partition('@')[2]}</em>",
+<%= raw @results.map { |result|
+    {
+    'label' => result.name,
     'value' => result.name,
     'search_author_class' => result.class.name,
     'search_author_id' => result.id,
     'name' => result.name,
     'institution' => result.institution,
     'email' => result.mail,
+    'authorship_link' => " Keep associated with #{render_authorship_link(result.class.name, result.id)}"
     }
 }.to_json %>
\ No newline at end of file
