<% if (_.size(user_info.scopus_info) == 1) { %> <% var scopus_info = _.values(user_info.scopus_info)[0]; %>

One way that we track <%- window.PORTAL_NAME %>'s value is by looking at publications that make use of it. As one step in finding such papers, we are attempting to match users to their records in publication databases. We found a match for your name. To verify that we have the right person, are you an author of this publication?

<% if (scopus_info.doi) { %> <%= scopus_info.title %> <% } else { %> "> <%= scopus_info.title %> <% } %>
<%= scopus_info.authors %>
<%= scopus_info.pubname %>
Are you the author of this paper?
<% } else { %>

One way that we track <%- window.PORTAL_NAME %>'s value is by looking at publications that make use of it. As one step in finding such papers, we are attempting to match users to their records in publication databases.

We found multiple matches for your name. Are you an author of any of the following papers?
<% _.each(user_info.scopus_info, function(scopus_info, scopus_id) { %>
<% if (scopus_info.doi) { %> <%= scopus_info.title %> <% } else { %> "> <%= scopus_info.title %> <% } %>
<%= scopus_info.authors %>
<%= scopus_info.pubname %>
<% }); %>
<% } %>