Rather than noting an organizational affiliation on each publication's author list, publications by affiliates are tagged with an Aging and Metabolism keyword. IBAM affiliates' Pure profiles are tagged with the same keyword, and new publications are tagged with the same keyword as the author periodically (approximately monthly).
Code embedded above:
<script src="https://widget.experts.umn.edu/assets/v2/widget.js"></script>
<script type="text/javascript">
ExpertsWidget.displayPublications({
keyword_uri: "/dk/atira/pure/core/keywords/community/aging_and_metabolism",
size: 25
});
</script>
<script type="text/javascript">
document.addEventListener('publicationsDisplayed', function (e) {
var filter = jQuery('<label>Filter: <input type="text" id="experts-publications-filter" /></label>').insertAfter("#experts-publications h2");
filter.keyup(function(e) {
var pattern = new RegExp(jQuery(e.target).val(), "gi");
jQuery("p.publication").each(function() {
jQuery(this).toggle(pattern.test(this.innerText));
});
});
}, false);
</script>