You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to add total citations for each publication in the list using Dimension badge builder (using DOI), How can I do it?
Any hint or suggestion, please?
Thank you!
The text was updated successfully, but these errors were encountered:
I simply add the code inside bib-list.js:
links: function(entryData) {
var itemStr = '';
if (entryData.doi) {
itemStr += '';
}
return itemStr;
},
I also need to style inline and embed the Dimension badge inside the HTML file:
//style
<style>
.dimensions_badge_embed {
display: inline;}
.dimensions_badge_embed::after {
display: none;}
</style>
I would like to add total citations for each publication in the list using Dimension badge builder (using DOI), How can I do it?
Any hint or suggestion, please?
Thank you!
The text was updated successfully, but these errors were encountered: