CINXE.COM
2020 RefWorks Release Information - Ex Libris Knowledge Center
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>2020 RefWorks Release Information - Ex Libris Knowledge Center</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=4697dd37726fed7979fe7b0f4ce2bd05_a25vd2xlZGdlLmV4bGlicmlzZ3JvdXAuY29t:site_11811" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=c5d69afcac31700ff9758fde125e8285:site_11811" id="mt-print-css" /> <script type="text/javascript" nonce="6e809ca83c6244ca9b3368c99a37b7ca3767e47c05506d634398af86ef6952e9" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_11811"></script><script type="application/json" id="mt-global-settings" nonce="6e809ca83c6244ca9b3368c99a37b7ca3767e47c05506d634398af86ef6952e9">{"apiToken":"xhr_2_1732399184_468ec55beb1f76f06197b4be8af5fb72b7e3639e810019d13137c46ac8eec0a1","pageId":76552,"pageViewId":"56651d94-ccc0-44d4-8e36-17dc7f995ce7"}</script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" integrity="sha256-jySGIHdxeqZZvJ9SHgPNjbsBP8roij7/WjgkoGTJICk=" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css" integrity="sha256-WmhCJ8Hu9ZnPRdh14PkGpz4PskespJwN5wwaFOfvgY8=" crossorigin="anonymous"> <script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.js" integrity="sha256-4Cr335oZDYg4Di3OwgUOyqSTri0jUm2+7Gf2kH3zp1I=" crossorigin="anonymous"></script> <script type="text/javascript">/*<![CDATA[*/ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i<table.rows.length; i++) { if (table.rows[i].className.search(/\bsortbottom\b/) != -1) { sortbottomrows[sortbottomrows.length] = table.rows[i]; } } if (sortbottomrows) { if (table.tFoot == null) { // table doesn't have a tfoot. Create one. tfo = document.createElement('tfoot'); table.appendChild(tfo); } for (var i=0; i<sortbottomrows.length; i++) { tfo.appendChild(sortbottomrows[i]); } delete sortbottomrows; } // work through each column and calculate its type headrow = table.tHead.rows[0].cells; for (var i=0; i<headrow.length; i++) { // manually override the type with a sorttable_type attribute if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col mtch = headrow[i].className.match(/\bsorttable_([a-z0-9]+)\b/); if (mtch) { override = mtch[1]; } if (mtch && typeof sorttable["sort_"+override] == 'function') { headrow[i].sorttable_sortfunction = sorttable["sort_"+override]; } else { headrow[i].sorttable_sortfunction = sorttable.guessType(table,i); } // make it clickable to sort headrow[i].sorttable_columnindex = i; headrow[i].sorttable_tbody = table.tBodies[0]; dean_addEvent(headrow[i],"click", sorttable.innerSortFunction = function(e) { if (this.className.search(/\bsorttable_sorted\b/) != -1) { // if we're already sorted by this column, just // reverse the table, which is quicker sorttable.reverse(this.sorttable_tbody); this.className = this.className.replace('sorttable_sorted', 'sorttable_sorted_reverse'); this.removeChild(document.getElementById('sorttable_sortfwdind')); sortrevind = document.createElement('span'); sortrevind.id = "sorttable_sortrevind"; sortrevind.innerHTML = stIsIE ? ' <font face="webdings">5' : ' ▴'; this.appendChild(sortrevind); return; } if (this.className.search(/\bsorttable_sorted_reverse\b/) != -1) { // if we're already sorted by this column in reverse, just // re-reverse the table, which is quicker sorttable.reverse(this.sorttable_tbody); this.className = this.className.replace('sorttable_sorted_reverse', 'sorttable_sorted'); this.removeChild(document.getElementById('sorttable_sortrevind')); sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6' : ' ▾'; this.appendChild(sortfwdind); return; } // remove sorttable_sorted classes theadrow = this.parentNode; forEach(theadrow.childNodes, function(cell) { if (cell.nodeType == 1) { // an element cell.className = cell.className.replace('sorttable_sorted_reverse',''); cell.className = cell.className.replace('sorttable_sorted',''); } }); sortfwdind = document.getElementById('sorttable_sortfwdind'); if (sortfwdind) { sortfwdind.parentNode.removeChild(sortfwdind); } sortrevind = document.getElementById('sorttable_sortrevind'); if (sortrevind) { sortrevind.parentNode.removeChild(sortrevind); } this.className += ' sorttable_sorted'; sortfwdind = document.createElement('span'); sortfwdind.id = "sorttable_sortfwdind"; sortfwdind.innerHTML = stIsIE ? ' <font face="webdings">6' : ' ▾'; this.appendChild(sortfwdind); // build an array to sort. This is a Schwartzian transform thing, // i.e., we "decorate" each row with the actual sort key, // sort based on the sort keys, and then put the rows back in order // which is a lot faster because you only do getInnerText once per row row_array = []; col = this.sorttable_columnindex; rows = this.sorttable_tbody.rows; for (var j=0; j<rows.length; j++) { row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]]; } /* If you want a stable sort, uncomment the following line */ //sorttable.shaker_sort(row_array, this.sorttable_sortfunction); /* and comment out this one */ row_array.sort(this.sorttable_sortfunction); tb = this.sorttable_tbody; for (var j=0; j<row_array.length; j++) { tb.appendChild(row_array[j][1]); } delete row_array; }); } } }, guessType: function(table, column) { // guess the type of a column based on its first non-blank row sortfn = sorttable.sort_alpha; for (var i=0; i<table.tBodies[0].rows.length; i++) { text = sorttable.getInnerText(table.tBodies[0].rows[i].cells[column]); if (text != '') { if (text.match(/^-?[£$¤]?[\d,.]+%?$/)) { return sorttable.sort_numeric; } // check for a date: dd/mm/yyyy or dd/mm/yy // can have / or . or - as separator // can be mm/dd as well possdate = text.match(sorttable.DATE_RE) if (possdate) { // looks like a date first = parseInt(possdate[1]); second = parseInt(possdate[2]); if (first > 12) { // definitely dd/mm return sorttable.sort_ddmm; } else if (second > 12) { return sorttable.sort_mmdd; } else { // looks like a date, but we can't tell which, so assume // that it's dd/mm (English imperialism!) and keep looking sortfn = sorttable.sort_ddmm; } } } } return sortfn; }, getInnerText: function(node) { // gets the text we want to use for sorting for a cell. // strips leading and trailing whitespace. // this is *not* a generic getInnerText function; it's special to sorttable. // for example, you can override the cell text with a customkey attribute. // it also gets .value for <input> fields. if (!node) return ""; hasInputs = (typeof node.getElementsByTagName == 'function') && node.getElementsByTagName('input').length; if (node.getAttribute("sorttable_customkey") != null) { return node.getAttribute("sorttable_customkey"); } else if (typeof node.textContent != 'undefined' && !hasInputs) { return node.textContent.replace(/^\s+|\s+$/g, ''); } else if (typeof node.innerText != 'undefined' && !hasInputs) { return node.innerText.replace(/^\s+|\s+$/g, ''); } else if (typeof node.text != 'undefined' && !hasInputs) { return node.text.replace(/^\s+|\s+$/g, ''); } else { switch (node.nodeType) { case 3: if (node.nodeName.toLowerCase() == 'input') { return node.value.replace(/^\s+|\s+$/g, ''); } case 4: return node.nodeValue.replace(/^\s+|\s+$/g, ''); break; case 1: case 11: var innerText = ''; for (var i = 0; i < node.childNodes.length; i++) { innerText += sorttable.getInnerText(node.childNodes[i]); } return innerText.replace(/^\s+|\s+$/g, ''); break; default: return ''; } } }, reverse: function(tbody) { // reverse the rows in a tbody newrows = []; for (var i=0; i<tbody.rows.length; i++) { newrows[newrows.length] = tbody.rows[i]; } for (var i=newrows.length-1; i>=0; i--) { tbody.appendChild(newrows[i]); } delete newrows; }, /* sort functions each sort function takes two parameters, a and b you are comparing a[0] and b[0] */ sort_numeric: function(a,b) { aa = parseFloat(a[0].replace(/[^0-9.-]/g,'')); if (isNaN(aa)) aa = 0; bb = parseFloat(b[0].replace(/[^0-9.-]/g,'')); if (isNaN(bb)) bb = 0; return aa-bb; }, sort_alpha: function(a,b) { if (a[0]==b[0]) return 0; if (a[0]<b[0]) return -1; return 1; }, sort_ddmm: function(a,b) { mtch = a[0].match(sorttable.DATE_RE); y = mtch[3]; m = mtch[2]; d = mtch[1]; if (m.length == 1) m = '0'+m; if (d.length == 1) d = '0'+d; dt1 = y+m+d; mtch = b[0].match(sorttable.DATE_RE); y = mtch[3]; m = mtch[2]; d = mtch[1]; if (m.length == 1) m = '0'+m; if (d.length == 1) d = '0'+d; dt2 = y+m+d; if (dt1==dt2) return 0; if (dt1<dt2) return -1; return 1; }, sort_mmdd: function(a,b) { mtch = a[0].match(sorttable.DATE_RE); y = mtch[3]; d = mtch[2]; m = mtch[1]; if (m.length == 1) m = '0'+m; if (d.length == 1) d = '0'+d; dt1 = y+m+d; mtch = b[0].match(sorttable.DATE_RE); y = mtch[3]; d = mtch[2]; m = mtch[1]; if (m.length == 1) m = '0'+m; if (d.length == 1) d = '0'+d; dt2 = y+m+d; if (dt1==dt2) return 0; if (dt1<dt2) return -1; return 1; }, shaker_sort: function(list, comp_func) { // A stable sort function to allow multi-level sorting of data // see: http://en.wikipedia.org/wiki/Cocktail_sort // thanks to Joseph Nahmias var b = 0; var t = list.length - 1; var swap = true; while(swap) { swap = false; for(var i = b; i < t; ++i) { if ( comp_func(list[i], list[i+1]) > 0 ) { var q = list[i]; list[i] = list[i+1]; list[i+1] = q; swap = true; } } // for t--; if (!swap) break; for(var i = t; i > b; --i) { if ( comp_func(list[i], list[i-1]) < 0 ) { var q = list[i]; list[i] = list[i-1]; list[i-1] = q; swap = true; } } // for b++; } // while(swap) } } /* ****************************************************************** Supporting functions: bundled here to avoid depending on a library ****************************************************************** */ // Dean Edwards/Matthias Miller/John Resig /* for Mozilla/Opera9 */ if (document.addEventListener) { document.addEventListener("DOMContentLoaded", sorttable.init, false); } /* for Internet Explorer */ /*@cc_on @*/ /*@if (@_win32) document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>"); var script = document.getElementById("__ie_onload"); script.onreadystatechange = function() { if (this.readyState == "complete") { sorttable.init(); // call the onload handler } }; /*@end @*/ /* for Safari */ if (/WebKit/i.test(navigator.userAgent)) { // sniff var _timer = setInterval(function() { if (/loaded|complete/.test(document.readyState)) { sorttable.init(); // call the onload handler } }, 10); } /* for other browsers */ window.onload = sorttable.init; // written by Dean Edwards, 2005 // with input from Tino Zijdel, Matthias Miller, Diego Perini // http://dean.edwards.name/weblog/2005/10/add-event/ function dean_addEvent(element, type, handler) { if (element.addEventListener) { element.addEventListener(type, handler, false); } else { // assign each event handler a unique ID if (!handler.$$guid) handler.$$guid = dean_addEvent.guid++; // create a hash table of event types for the element if (!element.events) element.events = {}; // create a hash table of event handlers for each element/event pair var handlers = element.events[type]; if (!handlers) { handlers = element.events[type] = {}; // store the existing event handler (if there is one) if (element["on" + type]) { handlers[0] = element["on" + type]; } } // store the event handler in the hash table handlers[handler.$$guid] = handler; // assign a global event handler to do all the work element["on" + type] = handleEvent; } }; // a counter used to create unique IDs dean_addEvent.guid = 1; function removeEvent(element, type, handler) { if (element.removeEventListener) { element.removeEventListener(type, handler, false); } else { // delete the event handler from the hash table if (element.events && element.events[type]) { delete element.events[type][handler.$$guid]; } } }; function handleEvent(event) { var returnValue = true; // grab the event object (IE uses a global event object) event = event || fixEvent(((this.ownerDocument || this.document || this).parentWindow || window).event); // get a reference to the hash table of event handlers var handlers = this.events[event.type]; // execute each event handler for (var i in handlers) { this.$$handleEvent = handlers[i]; if (this.$$handleEvent(event) === false) { returnValue = false; } } return returnValue; }; function fixEvent(event) { // add W3C standard event methods event.preventDefault = fixEvent.preventDefault; event.stopPropagation = fixEvent.stopPropagation; return event; }; fixEvent.preventDefault = function() { this.returnValue = false; }; fixEvent.stopPropagation = function() { this.cancelBubble = true; } // Dean's forEach: http://dean.edwards.name/base/forEach.js /* forEach, version 1.0 Copyright 2006, Dean Edwards License: http://www.opensource.org/licenses/mit-license.php */ // array-like enumeration if (!Array.forEach) { // mozilla already supports this Array.forEach = function(array, block, context) { for (var i = 0; i < array.length; i++) { block.call(context, array[i], i, array); } }; } // generic enumeration Function.prototype.forEach = function(object, block, context) { for (var key in object) { if (typeof this.prototype[key] == "undefined") { block.call(context, object[key], key, object); } } }; // character enumeration String.forEach = function(string, block, context) { Array.forEach(string.split(""), function(chr, index) { block.call(context, chr, index, string); }); }; // globally resolve forEach enumeration var forEach = function(object, block, context) { if (object) { var resolve = Object; // default if (object instanceof Function) { // functions have a "length" property resolve = Function; } else if (object.forEach instanceof Function) { // the object implements a custom forEach method so use that object.forEach(block, context); return; } else if (typeof object == "string") { // the object is a string resolve = String; } else if (typeof object.length == "number") { // the object is array-like resolve = Array; } resolve.forEach(object, block, context); } }; sorttable.sort_alpha = function(a,b) { return a[0].localeCompare(b[0]); } /*]]>*/</script> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-KXCRM3P');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- OneTrust Cookies Consent Notice start for knowledge.exlibrisgroup.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="7286c7d4-44c2-4d10-b708-69445acbcc6a"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for knowledge.exlibrisgroup.com --> <!--temp baidu indexing token--> <script type="text/javascript" nonce="6e809ca83c6244ca9b3368c99a37b7ca3767e47c05506d634398af86ef6952e9">(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','UA-71378210-1','knowledge.exlibrisgroup.com',{allowLinker:true});ga('send','pageview');ga('create','UA-65721316-17','knowledge.exlibrisgroup.com',{name:'mtTracker',allowLinker:true});ga('mtTracker.require','linker');ga('mtTracker.set', 'anonymizeIp', true);ga('mtTracker.send','pageview');document.addEventListener('mindtouch-web-widget:f1:loaded',function(e){var t=e.data||{},d=t.widget;d&&''!==t.embedId&&document.addEventListener('mindtouch-web-widget:f1:clicked',function(e){var t=(e.data||{}).href;if(t){var n=document.createElement('a');n.setAttribute('href',t),'expert-help.nice.com'===n.hostname&&(e.preventDefault(),ga('linker:decorate',n),d.open(n.href))}})});</script> </head> <body class="columbia-page-main columbia-article-topic columbia-breadcrumb-home-refworks-releasenotes-refworksreleaseinformation-0802020refworksreleaseinformation columbia-live no-touch columbia-lang-en-us columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"><div class="elm-nav-container"><div class="elm-header-logo-container"><a title="ExLibris" href="https://knowledge.exlibrisgroup.com/" rel="internal"><img alt="ExLibris" class="internal" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/124993/ckclogonew.png?revision=1" /></a><div class="header-navigation-buttons"><div class="more-sites-container ex-dropdown"><select class="more-sites"><option value="">More Sites</option><option value="/Redirect_Corp">Exlibris Site</option><option value="http://support.proquest.com/">Support Center</option><option value="https://trust.exlibrisgroup.com/">ExLibris Trust Center</option><option value="/pageForRedirect?source=DeveloperNetwork2">Developer Network</option><option value="http://ideas.exlibrisgroup.com/">Idea Exchange</option></select></div><a href="https://status.exlibrisgroup.com/system_status" target="_blank" rel="external noopener nofollow" class="link-https"><button class="system-status-container btn-margin">System-Status</button></a><button class="submit-case">Submit a Case</button></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(function() { // MORE SITES DROPDOWN $("select.more-sites").on("click", function() { var val = $(this).val(); if (val != "") { $(this).prop("selectedIndex", 0); window.open(val, "_blank"); } }); // SYSTEM STATUS DROPDOWN $("select.system-status").on("click", function() { var val = $(this).val(); ga('send', 'event', { eventCategory: 'systemStatus', eventAction: 'systemStatusClick', eventLabel: 'systemStatus' }); if (val != "") { $(this).prop("selectedIndex", 0); window.open(val, "_blank"); } }); // SUBMIT A CASE BUTTON $(".submit-case").on("click", function() { window.open("https://support.proquest.com/s/submit-a-case", "_blank"); }); });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { var toc_container = $("#mt-toc-container"); if (toc_container.is(":visible")) { // make the contents of the TOC container visible by default $("button.mt-toggle", toc_container) .removeClass("mt-toggle-expand") .addClass("mt-toggle-collapse"); $(".mt-toc-content").show(); } }); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { var pagenavigation = $(".elm-meta-article-navigation"); if (pagenavigation.length) { var content_container = $("section.mt-content-container"); pagenavigation.clone().insertBefore(content_container).addClass("article-top-navigation"); } }); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { var email_subject = "Interesting article from the Exlibris Knowledge Center"; var body_text = "You may be interested in this resource from the Ex Libris Knowledge Center:"; var current_page = window.location.href; var meta_icons = $("ol.elm-meta-top"); if (meta_icons.length) { var new_link_container = $("<li></li>", { "class": "elm-page-share" }); var new_link = $("<a></a>", { "href": "mailto:?subject=" + email_subject + "&body=" + body_text + " " + current_page, "title": "Share page by email", "class": "elm-page-share-link" }); var new_icon = $("<span></span>", { "text": "Share page by email", "class": "mt-icon-mail5" }); new_link.append(new_icon); new_link_container.append(new_link); meta_icons.prepend(new_link_container); $("a.elm-page-share-link").on("click", function() { ga('send', 'event', { eventCategory: 'Share', eventAction: 'SharePageByEmail', eventLabel: current_page }); }); } }); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { if (!$("body").hasClass("columbia-article-topic")) { var Content = $("section.mt-content-container"); var PDFLink = $("a.SectionPDF", Content); var SocialLink = $(".elm-social-share"); if (PDFLink.length) { var new_link_container = $("<li></li>", { "class": "elm-pdf-download" }); var new_link = $("<a></a>", { "href": PDFLink.attr("href"), "title": "Download PDF" }); var new_icon = $("<span></span>", { "text": "Download PDF", "class": "mt-icon-file-pdf" }); new_link.append(new_icon); new_link_container.append(new_link); new_link_container.insertBefore(SocialLink); PDFLink.closest("div").hide(); } } });/*]]>*/</script> <div id="back-to-top"><a href="#"><span class="mt-icon-arrow-up7"></span></a></div> <script type="text/javascript">/*<![CDATA[*/ $(document).scroll(function() { var pageTop = $(this).scrollTop(); var backToTop = $('#back-to-top'); if (pageTop > 800) { backToTop.fadeIn(); } else { backToTop.fadeOut(); } }); /*]]>*/</script> <script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script> <script type="text/javascript">/*<![CDATA[*/ let firstOpen = true; const chatWindowStateKey = "chatWindowState"; const uniqueIdKey = 'conversationInfoToken'; const uniqueIdKeyExpDate = 'conversationInfoTokenExpDate'; document.addEventListener("DOMContentLoaded", function() { const chatButton = document.getElementById("chat-button"); const chatWindow = document.getElementById("chatBody"); const chatBodyHeadingClose = document.getElementById("chatBodyHeadingClose"); const chatWindowState = localStorage.getItem(chatWindowStateKey); // This is a walkaround to the problem that the HTML editor changes the html after each edit... chatButton.innerHTML = atob("PGRpdiBjbGFzcz0iY2hhdC1idXR0b24tdGV4dCI+S05PV0xFREdFIEFTU0lTVEFOVDwvZGl2Pg0KCQk8c3BhbiBjbGFzcz0iY2hhdC1ib2R5LWhlYWRpbmctdGl0bGUtYmV0YSIgc3R5bGU9IiI+QkVUQTwvc3Bhbj4NCgkJPGRpdiBjbGFzcz0iY2hhdC1idXR0b24taWNvbiI+DQoJCQk8c3ZnIGNsYXNzPSJjaGF0LWJ1dHRvbi1pY29uLXN2ZyIgZmlsbD0iI2ZmZmZmZiIgdmlld2JveD0iMCAwIDE2IDE2Ij4gDQoJCQkJPHBhdGggY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTAuNTYyNyA5LjU5ODIzQzcuNjQxMTMgOS41OTgyMyA1LjI4MTM3IDcuMjI5MTEgNS4yODEzNyA0LjMxNjg2QzUuMjgxMzcgNy4yMjkxMSAyLjkxMjI1IDkuNTk4MjMgMCA5LjU5ODIzQzIuOTEyMjUgOS41OTgyMyA1LjI4MTM3IDExLjk1OCA1LjI4MTM3IDE0Ljg3MDJDNS4yODEzNyAxMS45NTggNy42NDExMyA5LjU5ODIzIDEwLjU2MjcgOS41OTgyM1oiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PC9wYXRoPiANCgkJCQk8cGF0aCBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS45ODQ4IDEyLjMyMzRDMTQuMzgzNSAxMi4zMjM0IDEzLjA5MTMgMTEuMDIxOCAxMy4wOTEzIDkuNDI5OUMxMy4wOTEzIDExLjAyMTggMTEuNzg5NyAxMi4zMjM0IDEwLjE5NzggMTIuMzIzNEMxMS43ODk3IDEyLjMyMzQgMTMuMDkxMyAxMy42MTU3IDEzLjA5MTMgMTUuMjE2OUMxMy4wOTEzIDEzLjYxNTcgMTQuMzgzNSAxMi4zMjM0IDE1Ljk4NDggMTIuMzIzNFoiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PC9wYXRoPiANCgkJCQk8cGF0aCBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC4zMTc3IDMuNTIwOTFDMTIuMzcgMy41MjA5MSAxMC43OTY4IDEuOTQ3NzQgMTAuNzk2OCAwQzEwLjc5NjggMS45NDc3NCA5LjIyMzYyIDMuNTIwOTEgNy4yNzU4OCAzLjUyMDkxQzkuMjIzNjIgMy41MjA5MSAxMC43OTY4IDUuMDk0MDkgMTAuNzk2OCA3LjA0MTgzQzEwLjc5NjggNS4wOTQwOSAxMi4zNyAzLjUyMDkxIDE0LjMxNzcgMy41MjA5MVoiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PC9wYXRoPiANCgkJCTwvc3ZnPg0KCQk8L2Rpdj4="); if (chatWindowState === "open") { openFirstChat(); firstOpen = false; chatWindow.style.display = "block"; } // Toggle chat window visibility chatBodyHeadingClose.addEventListener("click", function() { localStorage.setItem(chatWindowStateKey, "closed"); }); // Toggle chat window visibility chatButton.addEventListener("click", function() { if(firstOpen){ openFirstChat(); firstOpen = false; } localStorage.setItem(chatWindowStateKey, "open"); }); }); const store = window.WebChat.createStore({}, ({ dispatch }) => next => action => { if (action.type === 'DIRECT_LINE/CONNECT_FULFILLED') { dispatch({ type: 'WEB_CHAT/SEND_EVENT', payload: { name: 'startConversation', value: { language: window.navigator.language } } }); } return next(action); }); const styleOptions = { // Add styleOptions to customize Web Chat canvas hideUploadButton: true, accent: '#00809d', botAvatarBackgroundColor: 'rgba(168,122,224,1)', botAvatarImage: 'https://knowledge.exlibrisgroup.com/@api/deki/files/174178/AI_Icon.png', botAvatarInitials: 'BT', userAvatarBackgroundColor: 'rgb(132 119 230)', userAvatarImage: 'https://knowledge.exlibrisgroup.com/@api/deki/files/174179/User_icon.png', userAvatarInitials: 'U', rootWidth: '360px', backgroundColor: 'transparent', sendBoxBorderTop: undefined, sendBoxBackground: 'transparent', sendBoxPlaceholderColor: '#424242', bubbleFromUserBackground: '#dae0ff', bubbleFromUserBorderRadius: '12px', bubbleFromUserBorderWidth: '0px', bubbleBorderRadius: '12px', }; // Add your BOT token endpoint below var theURL = "https://default127fa96e00b4429e95f972c2828437.a4.environment.api.powerplatform.com/powervirtualagents/botsbyschema/cr29b_knowledgeAssistantAcademic/directline/token?api-version=2022-03-01-preview"; var environmentEndPoint = theURL.slice(0, theURL.indexOf('/powervirtualagents')); var apiVersion = theURL.slice(theURL.indexOf('api-version')).split('=')[1]; var regionalChannelSettingsURL = `${environmentEndPoint}/powervirtualagents/regionalchannelsettings?api-version=${apiVersion}`; var directline; let conversationInfoStorage = sessionStorage.getItem(uniqueIdKey); let conversationInfoStorageExpDate = sessionStorage.getItem(uniqueIdKeyExpDate); function fetchConverstion() { if (!conversationInfoStorage || !conversationInfoStorageExpDate || (conversationInfoStorageExpDate < (new Date()).getTime())) { fetch(theURL) .then(response => response.json()) .then(conversationInfo => { sessionStorage.setItem(uniqueIdKey, conversationInfo.token); sessionStorage.setItem(uniqueIdKeyExpDate, (new Date()).getTime() + conversationInfo.expires_in * 1000); window.WebChat.renderWebChat({ directLine: window.WebChat.createDirectLine({ domain: `${directline}v3/directline`, token: conversationInfo.token, }), store, styleOptions }, document.getElementById('webchat') ); }) .catch(err => console.error("An error occurred: " + err)); } else { window.WebChat.renderWebChat({ directLine: window.WebChat.createDirectLine({ domain: `${directline}v3/directline`, token: conversationInfoStorage, }), styleOptions }, document.getElementById('webchat') ); } } function openFirstChat(){ fetch(regionalChannelSettingsURL) .then((response) => { return response.json(); }) .then((data) => { directline = data.channelUrlsById.directline; fetchConverstion(); }) .catch(err => console.error("An error occurred: " + err)); }/*]]>*/</script> <p><button id="chat-button" onclick="document.getElementById('chatBody').style.display = 'block'"></button></p> <div class="chat-body" id="chatBody" style="display:none"> <div class="chat-body-heading" id="heading"> <div class="chat-body-heading-title"><svg class="chat-body-heading-title-icon" fill="none" height="25" viewbox="0 0 26 25" width="26"> <path clip-rule="evenodd" d="M17.1645 15.5971C12.4168 15.5971 8.58223 11.7473 8.58223 7.01489C8.58223 11.7473 4.7324 15.5971 0 15.5971C4.7324 15.5971 8.58223 19.4317 8.58223 24.1641C8.58223 19.4317 12.4168 15.5971 17.1645 15.5971Z" fill="url(#paint0_radial_249_166)" fill-rule="evenodd"></path> <path clip-rule="evenodd" d="M25.9747 20.0256C23.3727 20.0256 21.2728 17.9105 21.2728 15.3236C21.2728 17.9105 19.1576 20.0256 16.5708 20.0256C19.1576 20.0256 21.2728 22.1255 21.2728 24.7275C21.2728 22.1255 23.3727 20.0256 25.9747 20.0256Z" fill="url(#paint1_radial_249_166)" fill-rule="evenodd"></path> <path clip-rule="evenodd" d="M23.2662 5.72148C20.1011 5.72148 17.5447 3.16508 17.5447 0C17.5447 3.16508 14.9883 5.72148 11.8232 5.72148C14.9883 5.72148 17.5447 8.27789 17.5447 11.443C17.5447 8.27789 20.1011 5.72148 23.2662 5.72148Z" fill="url(#paint2_radial_249_166)" fill-rule="evenodd"></path> <defs> <radialgradient cx="0" cy="0" gradienttransform="translate(10.8437 23.7164) rotate(-90) scale(15.9625 19.6815)" gradientunits="userSpaceOnUse" id="paint0_radial_249_166" r="1"> <stop stop-color="#B175E1"></stop> <stop offset="1" stop-color="#3595F0"></stop> </radialgradient> <radialgradient cx="0" cy="0" gradienttransform="translate(22.5118 24.482) rotate(-90) scale(8.75318 10.7829)" gradientunits="userSpaceOnUse" id="paint1_radial_249_166" r="1"> <stop stop-color="#B175E1"></stop> <stop offset="1" stop-color="#3595F0"></stop> </radialgradient> <radialgradient cx="0" cy="0" gradienttransform="translate(19.0524 11.1442) rotate(-90) scale(10.6511 13.121)" gradientunits="userSpaceOnUse" id="paint2_radial_249_166" r="1"> <stop stop-color="#B175E1"></stop> <stop offset="1" stop-color="#3595F0"></stop> </radialgradient> </defs> </svg> <div mt-section-origin="Template:Copilot_Knowledge_Assistant" class="mt-section"><h1 class="chat-body-heading-title-text editable">Knowledge Assistant</h1> <span class="chat-body-heading-title-beta" style="">BETA</span></div></div> <button aria-label="Close" class="chat-body-heading-close" id="chatBodyHeadingClose" onclick="document.getElementById('chatBody').style.display = 'none'" title="Hide Chat"><svg fill="none" height="25" viewbox="0 0 24 25" width="24"> <mask height="25" id="mask0_358_81" maskunits="userSpaceOnUse" style="mask-type:alpha" width="24" x="0" y="0"> <rect fill="#D9D9D9" height="24" width="24" y="0.360596"></rect> </mask> <g mask="url(#mask0_358_81)"> <path d="M6.4 19.3606L5 17.9606L10.6 12.3606L5 6.7606L6.4 5.3606L12 10.9606L17.6 5.3606L19 6.7606L13.4 12.3606L19 17.9606L17.6 19.3606L12 13.7606L6.4 19.3606Z" fill="#666666"></path> </g> </svg></button></div> <div id="webchat" role="main"> <div role="progressbar" aria-label="Loading..." aria-live="assertive" data-automation-id="PageSpinner" data-testid="PageSpinner" class="fui-Spinner r82apo5"><span class="fui-Spinner__spinner rvgcg50 ___1xxu43e f1d2rq10 f1szoe96 fb52u90"><span class="fui-Spinner__spinnerTail rxov3xa"></span></span></div> </div> </div> <script type="text/javascript">/*<![CDATA[*/ $(function() { var document_path = window.location.pathname.split("/"); var path_depth = document_path.length-1; // the following pages all have one additional level above the 'product page' level var second_level_product_pages = ["Intota", "360_Services"]; // the following pages are the community corner sections which should have icons var second_level_additional_icons = ["Content_Corner"]; if ((path_depth == 1 && document_path[1].length) || (second_level_product_pages.indexOf(document_path[1]) != -1 && path_depth == 2) || (second_level_additional_icons.indexOf(document_path[2]) !== -1 && path_depth ==2)) { $("body").addClass("product-page"); } });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function () { // Only display the product link area when a link exists for the current page var FeaturedTopicsContainer = $(".featured-topics"); // limit appearance to top-level product pages if ( $("body").hasClass("product-page") && $("ul", FeaturedTopicsContainer).length >= 1 ) { var DestinationElement = $(".mt-category-container", "#elm-main-content"); FeaturedTopicsContainer.insertBefore(DestinationElement); } });/*]]>*/</script> <div class="product-link featured-topics"> </div> <script type="text/javascript">/*<![CDATA[*/ $(function () { // Only display the product link area when a link exists for the current page var ProductLinkContainer = $(".product-link"); // limit appearance to top-level product pages if ( $("body").hasClass("product-page") && $("p", ProductLinkContainer).length >= 1 ) { var DestinationElement = $("#elm-main-content"); ProductLinkContainer.appendTo(DestinationElement); } });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ // This function adds a "language-options" class to the ul.sortable-listings container // which enables a class on the first-child li and makes it full width IF the page is // called "Product Documentation" (searched for in the body class) AND there is a title // containing the text "(English)" $(function() { if ( $('body').is('[class*="productdocumentation"]') ) { if ($('a[title*="(English)"]').length) { $('ul.mt-sortable-listings-container').addClass('language-options'); } } }); /*]]>*/</script> <li class="elm-page-rss-feed"><a href="#" title="Subscribe by RSS" class="generate-rss" target="_blank"><span class="mt-icon-rss">Subscribe by RSS</span></a></li> <script type="text/javascript">/*<![CDATA[*/ $(function() { // RSS link icon displayed on the current page var rss_link = $("a.generate-rss"); // address of the MindTouch page that calls the FetchRSS API var generator_address = "/createRSSFeed"; // address of the current page var current_url = window.location.href; // address to redirect user to var rss_address = generator_address + "?pageurl=" + current_url; // if the RSS link icon exists set up the onclick action and relocate the // icon to its desired display position if (rss_link.length) { rss_link.on("click", function(e) { e.preventDefault(); window.open(rss_address, "_blank"); }); $(".elm-page-rss-feed").prependTo(".elm-meta-data.elm-meta-top"); } });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { // RSS link icon displayed on the current page var rss_link = $("a.generate-rss"); // address of the MindTouch page that calls the FetchRSS API var generator_address = "/createRSSFeed"; // address of the current page var current_url = window.location.href; // address to redirect user to var rss_address = generator_address + "?pageurl=" + current_url; // if the RSS link icon exists set up the onclick action and relocate the // icon to its desired display position if (rss_link.length) { rss_link.on("click", function(e) { e.preventDefault(); window.open(rss_address, "_blank"); }); $(".elm-page-rss-feed").prependTo(".elm-meta-data.elm-meta-top"); } });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(window).load(function() { var DetailedListingAreas = $("body.columbia-article-topic-category").find("dl.mt-listing-detailed"); DetailedListingAreas.each(function() { var Content = $("dd.mt-listing-detailed-subpages", $(this)); // Only make the changes if there are sub-pages to be displayed if ($("li", Content).length) { var Parent = $(this).parent(); /* parent li item */ var Trigger = Parent; var Title = $(".mt-listing-detailed-title", $(this)); var LinkAddress = Title.find("a").attr("href"); // shorten titles of sub-articles if necessary $("li a", Content).each(function() { var children = $(this).children(); var text = $(this).text(); if (text.length > 35) { $(this).text(text.substr(0,32) + "..."); $(this).prepend(children); } }); // create a button linking to the immediate sub-page var AllTopicLink = $("<button />", { class: "ex-listing-all", text: "Show all topics", }).on("click", function() { window.location=LinkAddress; }); var AllTopicLinkContainer = $("<li></li>"); AllTopicLinkContainer.append(AllTopicLink); $("ul", Content).append(AllTopicLinkContainer); // add the mouse actions Trigger.on("mouseenter", function() { Content.fadeIn("fast"); }); Trigger.on("mouseleave", function() { Content.hide(); }); } }); });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(window).load(function() { if ($("body").hasClass("columbia-article-topic-guide")) { // remove the next/previous article links from the top of the page // can't be done in CSS although I can't ascertain for what reason $(".elm-meta-article-navigation").hide(); } // only apply this to Guide pages when viewed by non-administrator users if ($("body").hasClass("columbia-article-topic-guide") && !$("body").hasClass("elm-user-pro-edit")) { // hide the regular MT tabs $(".mt-guide-tabs-selectors").hide(); // hide the add tab button (not strictly necessary as it doesn't appear to non-admins, but nice for testing $(".mt-guide-add-button-container").hide(); // count the number of tabs on this page var numberOfTabs = $("li.mt-guide-tab").length; if (numberOfTabs > 1) { var guideTabContainer = $(".mt-guide-tabs-container"); // extract the link from each tab and insert it before the guide container $(".mt-guide-tab-link").each(function(index) { // get the ID of this link so that we can trigger a click event from the new element var link_id = $(this).attr("id"); // now have to remove the ID from the cloned element or we get stuck in a click-trigger loop var newLink = $(this) .clone() .removeAttr("id") .addClass("ex-tab-link"); // add an "active" class to the first of the new tab buttons if (index == 0) { newLink.addClass("active"); } // add the click trigger action to fire on the original when the new button is clicked // can't simply use a link as MT uses jQuery to load tab content newLink.on("click", function(e) { e.preventDefault(); $("a.ex-tab-link.active").not($(this)).removeClass("active"); $(this).addClass("active"); $("#" + link_id).trigger("click"); }); // finally: add the new link newLink.insertBefore(guideTabContainer); }); } } });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { var SearchTipsLink = '/Cross-Product/Knowledge_Articles/Tips_for_Advanced_Document_Searching_in_the_Customer_Knowledge_Center'; var NoResultsText = 'Search Tips:<br><br>Try using an exact phrase search ("my search") or the AND operator (my AND search).<br><br>Other useful search tips can be found <a href="' + SearchTipsLink + '">here</a>.'; function overrideSearchText() { var TextContainer = $("li.type-empty p"); if (TextContainer.length) { // override the no results found text $("li.type-empty p").html(NoResultsText).show(); // stop the task that searches for text clearInterval(TextSearch); } } if ($("body").hasClass("columbia-special-search")) { // Keep running the function in case search text appears var TextSearch = setInterval(overrideSearchText, 500); } }); /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ $(function() { var PageRequested = window.location.href; var ReplacementHTML = "<strong>Sorry, the page </strong>" + PageRequested + "<strong> does not exist, or is no longer valid.</strong><br><br>"; ReplacementHTML = ReplacementHTML + "You may try searching the Knowledge Center for relevant information, or checking the following suggested pages:"; var Error404Container = $("#special-404"); if (Error404Container.length) { var NoticeParagraph = $("<p></p>").html(ReplacementHTML); Error404Container.prepend(NoticeParagraph); } }); /*]]>*/</script> <div class="elm-nav product-search-container"><div class="elm-nav-container product-search"><a class="back-button mt-icon-arrow-left8 internal" href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information" rel="internal">Back</a><form action="/Special:Search" class="product-search-form"><div class="product-search-form-inner"><input type="text" name="search" class="product-search-text" placeholder="Search under current path"></input><button type="submit"><span class="mt-icon-search"></span></button><input type="hidden" name="path" class="page-path" value="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information"></input><input type="hidden" name="product" class="page-path-product" value="RefWorks"></input></div></form><div class="mt-page-thumbnail"><img alt="RefWorks" class="internal" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/61197/mindtouch.page%2523thumbnail?revision=1" /></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(function() { // Some items that we'll refer to throughout the code below var SearchContainer = $(".product-search-container"); // the container that wraps the search input and select menu var SearchInput = $(".product-search-text"); // the input field for search text var PageProduct = $(".page-path-product"); // the hidden form element containing the current product name var PagePath = $(".page-path"); // the hidden form element containing the current path // if the current path matches the product name (i.e. we are on the product home page) // hide the page title if (PageProduct.val() == PagePath.val()) { $("h1#title").hide(); } // we are on a product page and need to retrieve the parent page from the hidden form field var CurrentProduct = PageProduct.val(); // only continue if there's a product path available if (CurrentProduct.length) { // set the colour style SearchContainer.attr("title", CurrentProduct); } // Now move the search from the custom header block into its final location // this will automatically "reveal" the search as it picks up global styles var DestinationElement = $(".elm-header-global-nav"); SearchContainer.insertBefore(DestinationElement); // Prevent the form from being submitted without a search term $(".product-search-form").on("submit", function(event) { // cancel if no text for searching if (!SearchInput.val().length) { event.preventDefault(); return false; } }); });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ document.documentElement.setAttribute('lang', 'en');/*]]>*/</script> <p> </p> <script type="text/javascript">/*<![CDATA[*/ // Add Roboto font Deki.Fonts.addGoogleFontFamily('Roboto:r,b,i');/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Parse parameters */ var documentParams; function getDocumentParams() { if (!documentParams) { documentParams = {}; if (document.location.search) { var decodedSearch = decodeURIComponent(document.location.search.substring(1).replace('+', ' ')); var searchParams = decodedSearch.split(/&/); for (var i = 0; i < searchParams.length; i++) { var param = searchParams[i]; var match = param.match(/^([^=]+)=(.*)$/); if (match) { documentParams[match[1]] = match[2]; } } } } return documentParams; } function toggle(it,min,max) { if (!min) {min = 50}; if (!max) {max = 500}; if (it.width == min) {it.width = max;} else {it.width = min;} } /* * Optional sections processing * */ function initOptional() { /* Pivot */ var uxpParam = getDocumentParams().uxp; var uxpTrueElements = document.querySelectorAll(".CallOut"); if (uxpParam != "true") { for (var i = 0; i < uxpTrueElements.length; i++) { uxpTrueElements[i].style['display'] = 'none'; } } else if (uxpParam == "true") { var hrefs = document.getElementsByTagName('a'); for (var i = 0; i < hrefs.length; i++) { if (hrefs[i]['href'].indexOf('/Pivot/Product_Documentation') != -1 && hrefs[i]['href'].indexOf('uxp') == -1) { if (hrefs[i]['href'].indexOf('?') == -1) { if (hrefs[i]['href'].indexOf('#') == -1) { hrefs[i]['href'] += '?uxp=true'; } else { hrefs[i]['href'] = hrefs[i]['href'].replace('#','?uxp=true#'); } } else { hrefs[i]['href'] = hrefs[i]['href'].replace('?','?uxp=true&'); } } } } /* Release Notes: Process MON, CAT, and SER parameters */ var monParam = getDocumentParams().mon; var catParam = getDocumentParams().cat; var serParam = getDocumentParams().ser; if (monParam && document.getElementById('rnMonthList')) { document.getElementById('rnMonthList').value=monParam; if (catParam && document.getElementById('rnCatList')) { document.getElementById('rnCatList').value=catParam; } if (serParam && document.getElementById('rnSearchList')) { document.getElementById('rnSearchList').value=serParam; } filterRN(); } else if (document.getElementById('rnMonthList')) { if (catParam && document.getElementById('rnCatList')) { document.getElementById("rnMonthList").value="All"; document.getElementById('rnCatList').value=catParam; } if (serParam && document.getElementById('rnSearchList')) { document.getElementById("rnMonthList").value="All"; document.getElementById('rnSearchList').value=serParam; } filterRN(); } }/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ //google analytics feedback buttons $(function() { $( 'button.mt-rating-button-no' ).click(function() { ga('send', 'event', { eventCategory: 'badFeedback', eventAction: 'badFeedbackClick', eventLabel: 'badFeedback' }); }); $( 'button.mt-rating-button-yes' ).click(function() { ga('send', 'event', { eventCategory: 'goodFeedback', eventAction: 'goodFeedbackClick', eventLabel: 'goodFeedback' }); }); // See pageForRedirect and LogoAndNavigation templates for additional action captures // as these needed changing from previous onclick handlers due to alteration of elements // from javascript pop-ups to standard "select" elements });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Ex Libris Knowledge Center"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_11811/1638394879-logo.png" alt="Ex Libris Knowledge Center" title="Ex Libris Knowledge Center"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://knowledge.exlibrisgroup.com/Special:UserLogin?returntotitle=RefWorks%2FRelease_Notes%2FRefWorks_Release_Information%2F080_2020_RefWorks_Release_Information" title="Sign in"> Sign in </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://knowledge.exlibrisgroup.com/Special:UserPassword" title="Retrieve lost password"> Forgot password </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="/RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" /> <label class="mt-label" for="mt-site-search-input"> Search </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="How can we help you?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> Search </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://knowledge.exlibrisgroup.com/"> <span class="mt-icon-article-guide mt-icon-article-home"></span> Home </a> </li> <li> <a href="https://knowledge.exlibrisgroup.com/RefWorks"> <span class="mt-icon-article-category"></span> RefWorks </a> </li> <li> <a href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes"> <span class="mt-icon-article-category"></span> Release Notes </a> </li> <li> <a href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information"> <span class="mt-icon-article-guide"></span> RefWorks Release Information </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> 2020 RefWorks Release Information </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2023-06-10T18:53:19Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="Table of contents" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">Table of contents</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#December_15.2C_2020" rel="internal">December 15, 2020</a><ol><li><a href="#PDF_Upload_Improvements" rel="internal">PDF Upload Improvements</a></li><li><a href="#Search_Terms_Now_Carry_Over_when_Switching_from_Basic_Search_to_Advanced_Search" rel="internal">Search Terms Now Carry Over when Switching from Basic Search to Advanced Search</a></li><li><a href="#New_Descriptive_Google_RefWorks_Search_Text" rel="internal">New Descriptive Google RefWorks Search Text</a></li><li><a href="#New_Citation_Style" rel="internal">New Citation Style</a></li><li><a href="#Bug_Fix" rel="internal">Bug Fix</a></li></ol></li><li><a href="#November_10.2C_2020" rel="internal">November 10, 2020</a><ol><li><a href="#Links_to_the_RefWorks_Accessibility_Statement_and_Guide_Added" rel="internal">Links to the RefWorks Accessibility Statement and Guide Added</a></li><li><a href="#Success_Messages_Automatically_Close_After_Three_Seconds" rel="internal">Success Messages Automatically Close After Three Seconds</a></li><li><a href="#Bug_Fix_2" rel="internal">Bug Fix</a></li></ol></li><li><a href="#October_13.2C_2020" rel="internal">October 13, 2020</a><ol><li><a href="#Hide_Search_Databases_from_Left_Toolbar" rel="internal">Hide Search Databases from Left Toolbar</a></li><li><a href="#Hide_Reference_Tags_and_Folders" rel="internal">Hide Reference Tags and Folders</a></li><li><a href="#Success_Message_Automatically_Closes_After_Three_Seconds" rel="internal">Success Message Automatically Closes After Three Seconds</a></li><li><a href="#Improved_Text_Explaining_Recent_Styles_for_My_Institution" rel="internal">Improved Text Explaining Recent Styles for My Institution</a></li><li><a href="#New_and_Updated_Citation_Styles" rel="internal">New and Updated Citation Styles</a></li><li><a href="#Bug_Fix_3" rel="internal">Bug Fix</a></li></ol></li><li><a href="#September_8.2C_2020" rel="internal">September 8, 2020</a><ol><li><a href="#Improved_Accessibility_for_Admin_Settings_Page" rel="internal">Improved Accessibility for Admin Settings Page</a></li><li><a href="#Tools_Page_Updated_to_Indicate_RCM-Hangul_Support_for_Hangul_2020" rel="internal">Tools Page Updated to Indicate RCM-Hangul Support for Hangul 2020</a></li><li><a href="#Bug_Fix_.E2.80.93_Arrow_Icon_Now_Displayed_for_Non-English_Actions_Button" rel="internal">Bug Fix – Arrow Icon Now Displayed for Non-English Actions Button</a></li></ol></li><li><a href="#August_11.2C_2020" rel="internal">August 11, 2020</a><ol><li><a href="#Disabling_Full-Text_Sharing_Hides_Attachments_for_Publicly_Shared_References" rel="internal">Disabling Full-Text Sharing Hides Attachments for Publicly Shared References</a></li><li><a href="#Cookie_Preferences_Saved_for_All_Browsers" rel="internal">Cookie Preferences Saved for All Browsers</a></li><li><a href="#RefWorks_Usage_Reports_Now_Include_Number_of_References" rel="internal">RefWorks Usage Reports Now Include Number of References</a></li><li><a href="#RCM-Hangul_Now_Supports_Hangul_2020" rel="internal">RCM-Hangul Now Supports Hangul 2020</a></li><li><a href="#Bug_Fix_4" rel="internal">Bug Fix</a></li></ol></li><li><a href="#July_14.2C_2020" rel="internal">July 14, 2020</a><ol><li><a href="#Styles_Now_Can_be_Marked_as_Favorites_in_RefWorks" rel="internal">Styles Now Can be Marked as Favorites in RefWorks</a></li><li><a href="#Styles_Now_Can_be_Marked_as_Favorites_in_RCM" rel="internal">Styles Now Can be Marked as Favorites in RCM</a></li><li><a href="#Accessibility_Enhancement" rel="internal">Accessibility Enhancement</a></li><li><a href="#Updated_Example_Reference_When_Creating_New_Account" rel="internal">Updated Example Reference When Creating New Account</a></li></ol></li><li><a href="#June_17.2C_2020" rel="internal">June 17, 2020</a><ol><li><a href="#RefWorks_Citation_Manager_Update" rel="internal">RefWorks Citation Manager Update</a></li></ol></li><li><a href="#June_9.2C_2020" rel="internal">June 9, 2020</a><ol><li><a href="#Automatic_Refresh_to_All_References_Page_After_Upgrade" rel="internal">Automatic Refresh to All References Page After Upgrade</a></li></ol></li><li><a href="#May_28.2C_2020" rel="internal">May 28, 2020</a><ol><li><a href="#RefWorks_Citation_Manager_Update_2" rel="internal">RefWorks Citation Manager Update</a></li></ol></li><li><a href="#May_26.2C_2020" rel="internal">May 26, 2020</a><ol><li><a href="#Simplify_Citation_Style_Selection_when_Creating_Bibliography_or_Viewing_Citations" rel="internal">Simplify Citation Style Selection when Creating Bibliography or Viewing Citations</a></li><li><a href="#Pressing_Enter_Activates_Searches" rel="internal">Pressing Enter Activates Searches </a></li><li><a href="#Cookie_Preferences_Link_Added" rel="internal">Cookie Preferences Link Added</a></li><li><a href="#New_and_Updated_Citation_Styles_2" rel="internal">New and Updated Citation Styles</a></li></ol></li><li><a href="#Fixes" rel="internal">Fixes</a><ol><li><a href="#Searching_for_Users_in_Admin_Page_Now_Works_with_Leading.2FTrailing_Spaces" rel="internal">Searching for Users in Admin Page Now Works with Leading/Trailing Spaces</a></li></ol></li><li><a href="#April_14.2C_2020" rel="internal">April 14, 2020</a><ol><li><a href="#Defining_Duplicate_Surname_Display_Format_(Author_Disambiguation)" rel="internal">Defining Duplicate Surname Display Format (Author Disambiguation)</a></li><li><a href="#Reference_Type_List_Sorted_in_Alphabetical_Order" rel="internal">Reference Type List Sorted in Alphabetical Order</a></li><li><a href="#Fixes_2" rel="internal">Fixes</a><ol><li><a href="#Email_Verification_Required_for_All_New_Accounts" rel="internal">Email Verification Required for All New Accounts</a></li></ol></li></ol></li><li><a href="#March_12.2C_2020" rel="internal">March 12, 2020</a><ol><li><a href="#Selecting_a_Destination_Folder_when_Importing_References" rel="internal">Selecting a Destination Folder when Importing References</a><ol><li><a href="#Importing_References_Using_Save_to_RefWorks" rel="internal">Importing References Using Save to RefWorks</a></li><li><a href="#Importing_References_Using_Direct_Export" rel="internal">Importing References Using Direct Export</a></li><li><a href="#Importing_Reference_Files_from_within_RefWorks" rel="internal">Importing Reference Files from within RefWorks</a></li></ol></li><li><a href="#Disabling_Full-Text_Sharing_Hides_Attachments" rel="internal">Disabling Full-Text Sharing Hides Attachments</a></li><li><a href="#New_and_Updated_Citation_Styles_3" rel="internal">New and Updated Citation Styles</a></li><li><a href="#Fixes_3" rel="internal">Fixes</a><ol><li><a href="#Shibboleth_Redirects_to_Legacy_in_Case_of_an_Error" rel="internal">Shibboleth Redirects to Legacy in Case of an Error</a></li></ol></li></ol></li><li><a href="#February_12.2C_2020" rel="internal">February 12, 2020</a><ol><li><a href="#Folder_Name_Validation" rel="internal">Folder Name Validation</a></li><li><a href="#Updated_Decision_Export_Screen" rel="internal">Updated Decision Export Screen</a></li><li><a href="#Updated_Cookie_Policy_and_Terms_and_Conditions_Information" rel="internal">Updated Cookie Policy and Terms and Conditions Information</a></li><li><a href="#Fixes_4" rel="internal">Fixes</a><ol><li><a href="#Ampersands_Displayed_Correctly" rel="internal">Ampersands Displayed Correctly</a></li></ol></li><li><a href="#Period_Correctly_Included_in_APA_Citation_Style" rel="internal">Period Correctly Included in APA Citation Style</a></li></ol></li><li><a href="#January_7.2C_2020" rel="internal">January 7, 2020</a><ol><li><a href="#RefWorks_Citation_Manager_Update_3" rel="internal">RefWorks Citation Manager Update</a></li><li><a href="#RefWorks_Citation_Manager_Now_Available_for_Hangul_(Korea)" rel="internal">RefWorks Citation Manager Now Available for Hangul (Korea)</a></li></ol></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section" id="section_1"><span id="December_15.2C_2020"></span><h2 class="editable">December 15, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section" id="section_2"><span id="PDF_Upload_Improvements"></span><h3 class="editable">PDF Upload Improvements</h3> <div class="BodyText"><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span> <p>Uploading PDFs to RefWorks has been improved to be faster, more successful, and provide more accurate and complete metadata.</p> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Search_Terms_Now_Carry_Over_when_Switching_from_Basic_Search_to_Advanced_Search"></span><h3 class="editable">Search Terms Now Carry Over when Switching from Basic Search to Advanced Search</h3> <p>When entering terms into the basic search field and then switching to the Advanced Search, the search terms now remain in the search field.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="New_Descriptive_Google_RefWorks_Search_Text"></span><h3 class="editable">New Descriptive Google RefWorks Search Text</h3> <p>A new descriptive text now appears in Google when searching for RefWorks.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="New_Citation_Style"></span><h3 class="editable">New Citation Style</h3> <p>RefWorks now supports the following new style:</p> <ul> <li>New Physics Sae Mulli = 새물리</li> </ul> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Bug_Fix"></span><h3 class="editable">Bug Fix</h3> <p>Previously, when expanding a tab in the Reference Organization, the <strong>Accessibility Statement</strong> link was covered. This was fixed.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="November_10.2C_2020"></span><h2 class="editable">November 10, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Links_to_the_RefWorks_Accessibility_Statement_and_Guide_Added"></span><h3 class="editable">Links to the RefWorks Accessibility Statement and Guide Added</h3> <p>Links to the RefWorks Accessibility Statement and Accessibility Guide were added to RefWorks.</p> <ul> <li>A link to the Accessibility Statement was added: <ul> <li>At the bottom of the login page: <p><img alt="accessibility_statement_login.png" style="width: 479px; height: 226px;" class="internal default" width="479px" height="226px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/91012/accessibility_statement_login.png?revision=1&size=bestfit&width=479&height=226" /></p> <div class="FigureCaption">Accessibility Statement Link on Login Page</div> </li> <li>At the bottom of the left pane: <p><img alt="accessibility_statement_pane.png" style="width: 201px; height: 392px;" class="internal default" width="201px" height="392px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/91013/accessibility_statement_pane.png?revision=1&size=bestfit&width=201&height=392" /></p> <div class="FigureCaption">Accessibility Statement Link at Bottom of Left Pane</div> </li> </ul> </li> <li>A link to the Accessibility Guide was added: <ul> <li>To the RefWorks Help menu: <p><img alt="accessibility_help.png" style="width: 492px; height: 226px;" class="internal default" width="492px" height="226px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/91014/accessibility_help.png?revision=1&size=bestfit&width=492&height=226" /></p> <div class="FigureCaption">Accessibility Guide Link in RefWorks Help Menu</div> </li> <li>To RefWorks Citation Manager: <p><img alt="accessibility_help_rcm.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/91015/accessibility_help_rcm.png?revision=1" /></p> <div class="FigureCaption">Accessibility Guide Link in RCM</div> </li> </ul> </li> </ul> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Success_Messages_Automatically_Close_After_Three_Seconds"></span><h3 class="editable">Success Messages Automatically Close After Three Seconds</h3> <p>In continuation from last release, success messages now automatically close after three seconds in all areas of RefWorks.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Bug_Fix_2"></span><h3 class="editable">Bug Fix</h3> <p>Previously, you could not export to a folder in a shared project using direct export. This was fixed.</p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="October_13.2C_2020"></span><h2 class="editable">October 13, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Hide_Search_Databases_from_Left_Toolbar"></span><h3 class="editable">Hide Search Databases from Left Toolbar</h3> <div class="BodyText"><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span> <p>Administrators can hide the Search Databases option from the left toolbar so that it does not appear. This requires users to perform database searches outside the RefWorks interface, for example, directly in the institution's discovery system. To support this feature, a new Show Search Databases setting is now available in Admin > Settings.</p> <p><img alt="show_search_databases.png" style="width: 599px; height: 277px;" class="internal default" width="599px" height="277px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/88598/show_search_databases.png?revision=1&size=bestfit&width=599&height=277" /></p> <div class="FigureCaption">Show Search Databases</div> <p>To hide the Search Databases option, change the Show Search Databases setting to <span class="ScreenElement">Disabled</span> and click <span class="ScreenElement">Save </span>at the bottom of the page.</p> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Hide_Reference_Tags_and_Folders"></span><h3 class="editable">Hide Reference Tags and Folders</h3> <div class="BodyText"><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span> <p>You can now hide reference tags and folders in the list of references to provide an uncluttered view and to display more references per page. To support this feature, a new <span class="ScreenElement">Customize </span>option was added to the reference view pages that displays Folders and Tags checkboxes when selected. Clearing the checkboxes hides the folders and tags from the list of references. This option is available in Normal View and in Full View.</p> <p><img alt="customize_tags_and_folders.png" style="width: 357px; height: 182px;" class="internal default" width="357px" height="182px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/88599/customize_tags_and_folders.png?revision=1&size=bestfit&width=357&height=182" /></p> <div class="FigureCaption">Customize Tags and Folders</div> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Success_Message_Automatically_Closes_After_Three_Seconds"></span><h3 class="editable">Success Message Automatically Closes After Three Seconds</h3> <p>The success message that is displayed after performing an action on the Admin and Manage Projects pages (for example, after making a project your current project or updating the institution's Website link) now automatically closes after three seconds, so that it is not necessary to close it manually.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Improved_Text_Explaining_Recent_Styles_for_My_Institution"></span><h3 class="editable">Improved Text Explaining Recent Styles for My Institution</h3> <p>On the Admin page, the text explaining the functionality of Recent Styles for My Institution was improved and the distinction between them and Institutional Styles was clarified.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="New_and_Updated_Citation_Styles"></span><h3 class="editable">New and Updated Citation Styles</h3> <p>RefWorks now supports the following new style:</p> <ul> <li>AMA 11th - American Medical Association, 11th Edition</li> </ul> <p>RefWorks now supports the following updated styles:</p> <ul> <li>APA 7th - No Case Changes (No Title Casing), DOI: empty, Annotated</li> <li>APA 7th - No Case Changes (No Title Casing), DOI: https://, Annotated</li> <li>APA 7th - Sentence Casing, DOI: empty, Annotated</li> <li>APA 7th - Sentence Casing, DOI: https://, Annotated</li> <li>Archives of Pharmacal Research</li> <li>Frontiers in Psychology</li> </ul> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Bug_Fix_3"></span><h3 class="editable">Bug Fix</h3> <p>Previously, it was not possible to perform searches in the Search Databases page for multi-word search terms, because pressing the spacebar initiated the search. This was fixed, and now the search is initiated only when pressing Enter or the Search (magnifying glass) button.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="September_8.2C_2020"></span><h2 class="editable">September 8, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Improved_Accessibility_for_Admin_Settings_Page"></span><h3 class="editable">Improved Accessibility for Admin Settings Page</h3> <p>To improve accessibility for administrators with impaired vision, the elements on the Admin Settings page were updated to have greater color contrast and distance between them.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Tools_Page_Updated_to_Indicate_RCM-Hangul_Support_for_Hangul_2020"></span><h3 class="editable">Tools Page Updated to Indicate RCM-Hangul Support for Hangul 2020</h3> <p>The Tools section now indicates that RCM-Hangul is supported also for Hangul 2020.</p> <p><img alt="support_for_ Hangul_2020.png" style="width: 645px; height: 337px;" class="internal default" width="645px" height="337px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/87248/support_for__Hangul_2020.png?revision=1&size=bestfit&width=645&height=337" /></p> <div class="FigureCaption">Support for Hangul 2020</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Bug_Fix_.E2.80.93_Arrow_Icon_Now_Displayed_for_Non-English_Actions_Button"></span><h3 class="editable">Bug Fix – Arrow Icon Now Displayed for Non-English Actions Button</h3> <p>The arrow icon is now displayed for the Actions button on the Admin Users page for languages other than English. This indicates that a drop-down list of actions is displayed when clicking this button.</p> <p><img alt="arrow_icon_on_actions_button.png" style="width: 647px; height: 276px;" class="internal default" width="647px" height="276px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/87249/arrow_icon_on_actions_button.png?revision=1&size=bestfit&width=647&height=276" /></p> <div class="FigureCaption">Actions Button with Arrow Icon</div> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="August_11.2C_2020"></span><h2 class="editable">August 11, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Disabling_Full-Text_Sharing_Hides_Attachments_for_Publicly_Shared_References"></span><h3 class="editable">Disabling Full-Text Sharing Hides Attachments for Publicly Shared References</h3> <p>When an administrator disables the full-text sharing feature, RefWorks now hides the attachment icon and any attached files also for publicly shared references.</p> <div class="Note style-wrap"> <p>Full-text sharing can only be disabled at the institution level.</p> </div> <p>For more information about disabling full-text sharing, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_Administration_Guide#Configuring_Site_Settings" href="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_Administration_Guide#Configuring_Site_Settings" rel="internal">Configuring Site Settings</a>.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Cookie_Preferences_Saved_for_All_Browsers"></span><h3 class="editable">Cookie Preferences Saved for All Browsers</h3> <p>The next time you log in to RefWorks, you are prompted to select your cookie preferences. Your preferences are now saved for all your browsers, so you do not need to select the preferences again when opening RefWorks in a different browser.</p> <p><img alt="cookie_preferences.png" style="width: 706px; height: 238px;" class="internal default" width="706px" height="238px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/86750/cookie_preferences.png?revision=1&size=bestfit&width=706&height=238" /></p> <div class="FigureCaption">Cookie Preferences</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="RefWorks_Usage_Reports_Now_Include_Number_of_References"></span><h3 class="editable">RefWorks Usage Reports Now Include Number of References</h3> <p><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span></p> <p>RefWorks usage reports now include the number of references for all users at the institution, as already included in legacy RefWorks reports.</p> <p>These reports can be requested by administrators from their RefWorks CRM.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="RCM-Hangul_Now_Supports_Hangul_2020"></span><h3 class="editable">RCM-Hangul Now Supports Hangul 2020</h3> <p>RCM-Hangul now supports Hangul 2020 in addition to Hangul 2014 and 2018.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Bug_Fix_4"></span><h3 class="editable">Bug Fix</h3> <p>Citations that were copied and pasted in RCM were disconnected from RCM. This was fixed and now copied and pasted citations are linked to RCM, whether pasting to the same document or a different one.</p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="July_14.2C_2020"></span><h2 class="editable">July 14, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Styles_Now_Can_be_Marked_as_Favorites_in_RefWorks"></span><h3 class="editable">Styles Now Can be Marked as Favorites in RefWorks</h3> <p>You can now mark a style as a favorite from the<span class="ScreenElement"> Create Bibliography </span>and <span class="ScreenElement">Citation View > Settings</span> drop-down lists by selecting the star icon next to the style. The style then appears in the <span class="ScreenElement">Favorite styles</span> drop-down list, which appears if there is at least one style marked as a favorite. To remove a favorite from the list, clear the star icon. The style is removed from the Favorites list when RefWorks is refreshed.</p> <p><img alt="favorites.png" style="width: 430px; height: 353px;" class="internal default" width="430px" height="353px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/85155/favorites.png?revision=1&size=bestfit&width=430&height=353" /></p> <div class="FigureCaption">Favorite Styles in RefWorks</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Styles_Now_Can_be_Marked_as_Favorites_in_RCM"></span><h3 class="editable">Styles Now Can be Marked as Favorites in RCM</h3> <p>You can now mark a style as a favorite in the style list in RCM. To mark a style as a favorite, select the star icon next to the style. The style then appears in the Favorites drop-down list, which appears if there is at least one style marked as a favorite. To remove a favorite from the list, clear the star icon. The style is removed from the Favorites list when RCM is refreshed.</p> <p><img alt="rcm_favorites.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/85157/rcm_favorites.png?revision=1" /></p> <div class="FigureCaption">Favorite Styles in RCM</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Accessibility_Enhancement"></span><h3 class="editable">Accessibility Enhancement</h3> <p>You can now navigate the RefWorks top toolbar using just the keyboard, allowing RefWorks to be more accessible.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Updated_Example_Reference_When_Creating_New_Account"></span><h3 class="editable">Updated Example Reference When Creating New Account</h3> <p>When creating a new account, you are given the option to add example references as a demonstration. One of these references was updated and now includes the RefWorks Quick Start Guide.</p> <p>In addition, the RefIDs of the example references are now numbered with RefIDs 1, 2, and 3.</p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="June_17.2C_2020"></span><h2 class="editable">June 17, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="RefWorks_Citation_Manager_Update"></span><h3 class="editable">RefWorks Citation Manager Update</h3> <p>RefWorks Citation Manager (RCM) has recently been updated to allow content controller (citation) editing. The first time a document is opened in RCM the following message is displayed, describing the editing behavior and recommended actions.</p> <p><img alt="refworks_message.jpg" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83803/refworks_message.jpg?revision=1" /></p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="June_9.2C_2020"></span><h2 class="editable">June 9, 2020</h2> <p>There are few items in this release, because the development team is working on improving the PDF upload and import process, which will be available in an upcoming release.</p> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Automatic_Refresh_to_All_References_Page_After_Upgrade"></span><h3 class="editable">Automatic Refresh to All References Page After Upgrade</h3> <p>When upgrading from Legacy RefWorks to RefWorks, the All References page and the My Folders tab are now automatically refreshed after the import is completed. This gives confirmation that the upgrade was successful.</p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="May_28.2C_2020"></span><h2 class="editable">May 28, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="RefWorks_Citation_Manager_Update_2"></span><h3 class="editable">RefWorks Citation Manager Update</h3> <p>An updated RefWorks Citation Manager (RCM) version is now available on the Microsoft Store. </p> <ul> </ul> <div class="Note style-wrap"> <p class="MsoListParagraph"><span style="mso-fareast-font-family:"Times New Roman";">For users who have previously installed RCM: The previous version is no longer supported; to make sure you are using the updated version, click the "Update now" link that will appear when opening RCM. The update was successful if a tab called RCM was added to Word. If not, remove the add-in and then re-add it from the Microsoft add-in store. </span></p> </div> <p>The new version has several features and interface improvements that can simplify your workflow and make it easier to manage your references:</p> <ul> <li>The updated RCM supports Word 2016, Word 2019, and Word Online for both Windows and macOS.</li> <li>A new RCM tab and button is now available to simplify opening the RCM pane instead of opening it from the Add-Ins tab (after initial installation from the Add-Ins tab). <div class="BodyText"><img alt="clipboard_e7e9972dc9808749f13162325da8d0bcd.png" class="internal" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83251/clipboard_e7e9972dc9808749f13162325da8d0bcd.png?revision=1" /></div> <div class="FigureCaption">RCM Tab and Button</div> </li> <li>The citation style in use appears at the top of the Reference List and there is now a refresh icon at the bottom right to refresh the list. You can still refresh documents and references by selecting the<span class="ScreenElement"> Update Document and References</span> option in the Main Menu. <div class="BodyText"><img alt="Refresh Button_2.png" style="width: 543.993px; height: 599.988px;" class="internal default" width="543.993px" height="599.988px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83249/Refresh_Button_2.png?revision=1" /></div> <div class="FigureCaption">Refresh Button</div> </li> <li>When editing a citation, there are now buttons to delete and add references to the citation. Additionally, you now manage multi-reference citations from the same page instead of having to move to a different page for each reference. <div class="BodyText"><img alt="Editing Citation Functions_1.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83242/Editing_Citation_Functions_1.png?revision=1" /></div> <div class="FigureCaption">Editing Citation Functions</div> </li> <li>The <span class="ScreenElement">Format for footnotes</span> option is now located on the Citation Settings pane, accessed by selecting <span class="ScreenElement">Change citation style</span> in the Main Menu, instead of directly in the Main Menu, and appears only for styles that support footnote formats.</li> <li>When selecting a citation style, you can now more easily find a style that you want by selecting it from one of the following sub-menus. When searching for a style in the search box, you can check the CSL Styles check box to include CSL styles in the search. You set also set the surname display format by clicking Differentiate authors, located below the citation style dropdown menu. <div class="BodyText"><img alt="Format for Footnotes.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83244/Format_for_Footnotes.png?revision=1" /></div> <div class="FigureCaption">Format for Footnotes</div> </li> <li>In the Main Menu: <div class="BodyText"><img alt="RCM Main Menu.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83245/RCM_Main_Menu.png?revision=1" /></div> <div class="FigureCaption">RCM Main Menu</div> <ul> <li>The Main Menu now opens as a full pane.</li> <li>You can turn the bibliography on and off. By default it is off, which reduces processing time for documents with many citations.</li> <li>You can change the language. For RefWorks users this also updates the language in the RefWorks interface. For legacy users, only the language in RCM is changed.</li> <li>You can contact support.</li> </ul> </li> <li>You can now add citations from multiple projects in the same document.</li> </ul> <div class="Note style-wrap">Documents written using RefWorks Citation Manager and a legacy RefWorks account cannot be opened with a RefWorks account. This will be supported in the future.</div> <div class="Note">The updated RCM requires that Internet Explorer is installed for Microsoft Windows users and that Safari is installed for macOS users.</div> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="May_26.2C_2020"></span><h2 class="editable">May 26, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Simplify_Citation_Style_Selection_when_Creating_Bibliography_or_Viewing_Citations"></span><h3 class="editable">Simplify Citation Style Selection when Creating Bibliography or Viewing Citations</h3> <p><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span></p> <div class="BodyText">When selecting styles from <span class="ScreenElement">Create Bibliography</span> or the <span class="ScreenElement">Citation View</span>, you can now more easily find a style that you want by selecting it from one of the following sub-menus. When searching for a style in the search box, you can check the <span class="ScreenElement">CSL Styles</span> check box to include CSL styles in the search.</div> <div class="BodyText"><img alt="RW-4658_5.png" style="width: 498.993px; height: 322.998px;" class="internal default" width="498.993px" height="322.998px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83200/RW-4658_5.png?revision=1" /></div> <div class="FigureCaption">More Easily Searchable Styles</div> <div class="BodyText">To select the style to be used in <span class="ScreenElement">Citation View</span>, which allows you to see your citations in the format that they will appear on your paper, click the <span class="ScreenElement">Settings</span> icon.</div> <div class="BodyText"><img alt="RW-4658_4 - Copy.png" style="width: 704.988px; height: 318.993px;" class="internal default" width="704.988px" height="318.993px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83165/RW-4658_4_-_Copy.png?revision=1" /></div> <div class="FigureCaption">Citation View</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Pressing_Enter_Activates_Searches"></span><h3 class="editable">Pressing Enter Activates Searches </h3> <p><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span></p> <div class="BodyText">When searching in databases, you can now activate a search by pressing <span class="ScreenElement">Enter </span>on your keyboard from the <span class="ScreenElement">Search for databases</span> field; you can still click the magnifying glass to initiate a search.</div> <div class="BodyText"><img alt="RW-3618_2.png" style="width: 568.993px; height: 312.998px;" class="internal default" width="568.993px" height="312.998px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83203/RW-3618_2.png?revision=1" /></div> <div class="FigureCaption">Pressing Enter Activates Searches</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Cookie_Preferences_Link_Added"></span><h3 class="editable">Cookie Preferences Link Added</h3> <div class="BodyText">The Cookie Preferences link has been added to the RefWorks UI.</div> <div class="BodyText"><img alt="RW-5288_4.png" style="width: 420.995px; height: 518.993px;" class="internal default" width="420.995px" height="518.993px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/83204/RW-5288_4.png?revision=1" /></div> <div class="FigureCaption">Cookie Preferences Link Added</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="New_and_Updated_Citation_Styles_2"></span><h3 class="editable">New and Updated Citation Styles</h3> <p>RefWorks now supports the following updated styles:</p> <ul> <li>心理学研究-Japanese Psychological Research</li> </ul> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Fixes"></span><h2 class="editable"><span>Fixes</span></h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Searching_for_Users_in_Admin_Page_Now_Works_with_Leading.2FTrailing_Spaces"></span><h3 class="editable">Searching for Users in Admin Page Now Works with Leading/Trailing Spaces</h3> <div class="BodyText">In the Admin page, the search function was not working if a space was inserted at the beginning or end of the user's email address to be searched.</div> <div class="BodyText"><img class="mt-disabled" rel="broken" /></div> <div class="FigureCaption">Searching for Users from Admin Page</div> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="April_14.2C_2020"></span><h2 class="editable">April 14, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Defining_Duplicate_Surname_Display_Format_(Author_Disambiguation)"></span><h3 class="editable">Defining Duplicate Surname Display Format (Author Disambiguation)</h3> <p><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span></p> <p>When creating citations and a bibliography containing several instances of the same surname, RefWorks now lets you set the surname display format. For example, you can set the format used when the same author has multiple works in the same publication year. In this format, the suffix <abc> is added to the publication year.</p> <p><img alt="Jackson.png" style="width: 756px; height: 36px;" class="internal default" width="756px" height="36px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81510/Jackson.png?revision=1&size=bestfit&width=756&height=36" /></p> <p>You can define the duplicate surname display format by clicking <span class="ScreenElement">Create Bibliography</span> and from the dropdown menu selecting <span class="ScreenElement">Create bibliography</span>.</p> <p><img alt="Create Bibliography Toolbar Menu Item Cropped.png" style="width: 753px; height: 428px;" class="internal default" width="753px" height="428px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81511/Create_Bibliography_Toolbar_Menu_Item_Cropped.png?revision=1&size=bestfit&width=753&height=428" /></p> <div class="FigureCaption">Create Bibliography Toolbar Menu Item</div> <p>Click <span class="ScreenElement">Differentiate authors</span>, located below the citation style dropdown menu, and select a format. The currently selected format is displayed below the citation style dropdown menu as well.</p> <p><img alt="" class="internal default" src="/" /><img alt="Format Indicator for Bibliographies with Several Instances of the Same Last Name.png" style="width: 935px; height: 546px;" class="internal default" width="935px" height="546px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81349/Format_Indicator_for_Bibliographies_with_Several_Instances_of_the_Same_Last_Name.png?revision=1&size=bestfit&width=935&height=546" /></p> <div class="FigureCaption">Format Indicator for Bibliographies with Several Instances of the Same Last Name</div> <div class="Note style-wrap"> <p>The citation style dropdown menu was previously located in the top bar of the page. It has now been moved to a central location on the page for easier access, as shown in the figure above.</p> </div> <p>Clicking <span class="ScreenElement">Differentiate authors</span> displays the screen containing the <span class="ScreenElement">Differentiate by</span> dropdown menu. From here you can select a surname format.</p> <p>The following format options are available:<span class="mt-color-c0392b"> </span></p> <ul> <li>Surname and first name (default setting)</li> <li>Surnames and initials <ul> <li>For references published in the same year</li> <li>For references published any year</li> </ul> </li> <li>Surnames only</li> </ul> <p>If you select <span class="ScreenElement">Surnames and initials</span>, you can toggle between both options by selecting or clearing the check box.</p> <p><img alt="" class="internal default" src="/" /><img alt="Surname and Initials Format Setting Check Box.png" style="width: 695px; height: 493px;" class="internal default" width="695px" height="493px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81481/Surname_and_Initials_Format_Setting_Check_Box.png?revision=1&size=bestfit&width=695&height=493" /></p> <div class="FigureCaption">Surname and Initials Format Setting Check Box</div> <p>In-text citation and bibliography examples of the selected format are displayed below the Differentiate by field.</p> <p><img alt="Differentiate By Dropdown Menu and In-Text Examples.png" style="width: 700px; height: 447px;" class="internal default" width="700px" height="447px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81503/Differentiate_By_Dropdown_Menu_and_In-Text_Examples.png?revision=1&size=bestfit&width=700&height=447" /></p> <div class="FigureCaption">Differentiate By Dropdown Menu and In-Text Examples</div> <p>In addition, the selected format rules and descriptions are displayed at the bottom of the page.</p> <p><img alt="In-Text Citation Rules and Descriptions.png" style="width: 695px; height: 407px;" class="internal default" width="695px" height="407px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81504/In-Text_Citation_Rules_and_Descriptions.png?revision=1&size=bestfit&width=695&height=407" /></p> <div class="FigureCaption">In-Text Citation Rules and Descriptions</div> <p>Author differentiation settings are not available for numeric styles or CSL (Citation Style Language) citation styles.</p> <p><img alt="Author Differentiation Settings not Available for Numeric or CSL Styles.png" style="width: 705px; height: 277px;" class="internal default" width="705px" height="277px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81505/Author_Differentiation_Settings_not_Available_for_Numeric_or_CSL_Styles.png?revision=1&size=bestfit&width=705&height=277" /></p> <div class="FigureCaption">Author Differentiation Settings not Available for Numeric or CSL Styles</div> <div class="Note style-wrap"> <p>This feature will be available for RCM in a future release.</p> </div> <div class="Note style-wrap"> <p>The recent styles used in RefWorks are shown as recent in the writing tool add-ons.</p> </div> <p>For more information about defining duplicate surname display formats, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0900_Managing_Citation_Styles" href="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0900_Managing_Citation_Styles" rel="internal">Managing Citation Styles</a>.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Reference_Type_List_Sorted_in_Alphabetical_Order"></span><h3 class="editable">Reference Type List Sorted in Alphabetical Order</h3> <p><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span></p> <p>When a user creates or edits a reference or when importing using Save to RefWorks, the reference type list is now sorted alphabetically.</p> <p><img alt="Reference Type List Sorted in Alphabetical Order.png" style="width: 629px; height: 483px;" class="internal default" width="629px" height="483px" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/81584/Reference_Type_List_Sorted_in_Alphabetical_Order.png?revision=1&size=bestfit&width=629&height=483" /></p> <div class="FigureCaption">Reference Type List Sorted in Alphabetical Order</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Fixes_2"></span><h3 class="editable"><span>Fixes</span></h3> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Email_Verification_Required_for_All_New_Accounts"></span><h4 class="editable">Email Verification Required for All New Accounts</h4> <p>In some cases, users were able to access RefWorks accounts without authorizing them through the automatically sent verification email. Now all users must authorize newly created accounts through the verification email.</p> </div></div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="March_12.2C_2020"></span><h2 class="editable">March 12, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Selecting_a_Destination_Folder_when_Importing_References"></span><h3 class="editable">Selecting a Destination Folder when Importing References</h3> <div class="BodyText"><img alt="idea exchange" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/66486/idea_exchange.png?revision=1" /> <span class="ScreenElement">Idea Exchange</span> <p>When you import references to RefWorks, you can now assign them to a folder(s) as part of the import workflow, in addition to changing the project. This saves you the work of having to manually assign them to your desired folder(s) after importing them.</p> <p>If you have only one project, the <span class="ScreenElement">Select a Project</span> drop-down is not displayed. If you have not created any folders, the <span class="ScreenElement">Assign to Folders</span> drop-down menu is not displayed. If you have only one project and have not created any folders, neither of the drop-down menus are displayed.</p> <p>If you select a folder that you do not own (but to which you have modify permissions), the following confirmation message is displayed.</p> <p><img alt="Selecting a Destination Folder when Importing Reference Files - Copy (2).png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/80731/Selecting_a_Destination_Folder_when_Importing_Reference_Files_-_Copy_(2).png?revision=1" /></p> <div class="FigureCaption">Import Confirmation Message - Folder(s) Have Another Owner</div> <div class="Note style-wrap"> <p>To share these references with other folder members you can copy the folder that has been shared with you to a new folder. As the owner of this new folder you can share it with others.</p> </div> <p>You can select an import destination folder when importing references in the following three ways:</p> <ul> <li><a title="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/2020_RefWorks_Release_Information?mt-draft=true#Importing_References_Using_Save_to_RefWorks" class="mt-self-link" href="#Importing_References_Using_Save_to_RefWorks" rel="internal">Importing references using Save to RefWorks</a>.</li> <li><a title="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/2020_RefWorks_Release_Information?mt-draft=true#Importing_References_Using_Direct_Export" class="mt-self-link" href="#Importing_References_Using_Direct_Export" rel="internal">Importing references using direct export</a>.</li> <li><a title="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/2020_RefWorks_Release_Information?mt-draft=true#Importing_Reference_Files_from_within_RefWorks" class="mt-self-link" href="#Importing_Reference_Files_from_within_RefWorks" rel="internal">Importing reference files from within RefWorks</a>.</li> </ul> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Importing_References_Using_Save_to_RefWorks"></span><h4 class="editable">Importing References Using Save to RefWorks</h4> <p>When importing references using the Save to RefWorks bookmarklet, after selecting a reference or references, click <span class="ScreenElement">Save to RefWorks</span>.</p> <p><img alt="RW-3837_1.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82707/RW-3837_1.png?revision=1" /></p> <div class="FigureCaption">Importing References - Save to RefWorks</div> <p>After selecting a reference or references, you can do one or both of the following:</p> <ul> <li>From the <span class="ScreenElement">Select a Project</span> dropdown menu, select a different project, or continue with the current project.</li> <li>From the <b>Assign to Folder(s)</b> dropdown menu, select a different folder, or continue with the current folder.</li> </ul> <p>When you are finished, you can import your references by clicking <span class="ScreenElement">Import</span>.</p> <p><img alt="RW-3837_3.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82708/RW-3837_3.png?revision=1" /></p> <div class="FigureCaption">Save to RefWorks - Assigning References to a Project and Folder</div> <p>For more information on using Save to RefWorks, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0500_RefWorks_Plugins%3A_Connecting_Your_Browser%2C_Microsoft_Word%2C_and_Google_Docs_to_RefWorks#Save_to_RefWorks" href="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0500_RefWorks_Add-ons%3A_Connecting_Your_Browser%2C_Microsoft_Word%2C_and_Google_Docs_to_RefWorks#Save_to_RefWorks" rel="internal">Save to RefWorks</a>.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Importing_References_Using_Direct_Export"></span><h4 class="editable">Importing References Using Direct Export</h4> <p>When you import references from an external site using direct export, if in the next screen you click <span class="ScreenElement">Yes, export to the newest version of RefWorks</span>, the following screen is displayed.</p> <p><img alt="RW-2724_4.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82709/RW-2724_4.png?revision=1" /></p> <div class="FigureCaption">Importing References - Assigning References to a Project and Folder</div> <p>From this screen you can do one or both of the following:</p> <ul> <li>From the <strong>Select a Project</strong> dropdown menu, select a different project, or continue with the current project.</li> <li>From the <strong><b>Assign to Folder(s)</b></strong> dropdown menu, select a different folder, or continue with the current folder.</li> </ul> <p>When you are finished, you can import your references by clicking <strong>Import</strong>.</p> <p>For more information on importing references using direct export, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0400_Managing_References#Finding_References_to_Add_to_RefWorks" href="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0400_Managing_References#Finding_References_to_Add_to_RefWorks" rel="internal">Finding References to Add to RefWorks</a>.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Importing_Reference_Files_from_within_RefWorks"></span><h4 class="editable">Importing Reference Files from within RefWorks</h4> <p>You can import a reference file by clicking <span class="ScreenElement">Add</span>, selecting <span class="ScreenElement">Import references</span>, and selecting the file from your computer.</p> <p><img alt="RW-3833_1.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82710/RW-3833_1.png?revision=1" /></p> <div class="FigureCaption">Importing References from within RefWorks</div> <p>When you select a reference file, the following message is displayed. From here you can either import the file as is or search for another format.</p> <p><img alt="RW-3833_13.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82711/RW-3833_13.png?revision=1" /></p> <div class="FigureCaption">Import to Current Project or Select a Different Format</div> <p>When you click <span class="ScreenElement">Import </span>the following screen is displayed. From here you can select a folder from the <span class="ScreenElement">Assign to Folder(s)</span> dropdown menu.</p> <div class="Note style-wrap"> <p>When importing references from RefWorks you do not have the option of selecting a project because you are currently working within a project.</p> </div> <p><img alt="RW-2724_1.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82712/RW-2724_1.png?revision=1" /></p> <div class="FigureCaption">Importing Reference Files from within RefWorks - Assigning Imported References to Another Folder</div> <p>When you click <span class="ScreenElement">Yes</span>, the following confirmation message is displayed.</p> <p><img alt="RW-3833_14.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/82713/RW-3833_14.png?revision=1" /></p> <div class="FigureCaption">Import in Progress Message</div> <p>For more information on importing references, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0400_Managing_References#Importing_References" href="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_User_Guide/0400_Managing_References#Importing_References" rel="internal">Importing References</a>.</p> </div></div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Disabling_Full-Text_Sharing_Hides_Attachments"></span><h3 class="editable">Disabling Full-Text Sharing Hides Attachments</h3> <p>When an administrator disables the Full-text sharing feature, RefWorks now hides the attachment icon and any attached files.</p> <div class="Note style-wrap"> <p>Full-text sharing can only be disabled at the institution level.</p> </div> <p>For more information about disabling full-text sharing, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_Administration_Guide#Configuring_Site_Settings" href="https://knowledge.exlibrisgroup.com/RefWorks/Product_Documentation/RefWorks_Administration_Guide#Configuring_Site_Settings" rel="internal">Configuring Site Settings</a>.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="New_and_Updated_Citation_Styles_3"></span><h3 class="editable">New and Updated Citation Styles</h3> <p>RefWorks now supports the following new styles:</p> <ul> <li>作業療法</li> <li>作業行動研究</li> <li>日本認知症ケア学会誌</li> <li>沖縄県立看護大学紀要 - Journal of Okinawa Prefectural College of Nursing</li> <li>APA 7th - No Case Changes (No Title Casing), DOI: empty</li> <li>APA 7th - No Case Changes (No Title Casing), DOI: https://</li> <li>APA 7th - Sentence Casing, DOI: empty</li> <li>APA 7th - Sentence Casing, DOI: https://</li> <li>APA 7th - Sentence Casing, DOI: <a title="https://doi.org/" href="https://doi.org/" target="_blank" rel="external noopener nofollow" class="link-https">https://doi.org/</a></li> <li>APA 7th - Sentence Casing, DOI: <a title="https://doi.org/" href="https://doi.org/" target="_blank" rel="external noopener nofollow" class="link-https">https://doi.org/</a>, Annotated</li> </ul> <p>RefWorks now supports the following updated styles:</p> <ul> <li>地理学評論 - Geographical Review of Japan</li> <li>APA 7th - No Case Changes (No Title Casing), <a title="https://doi.org/" href="https://doi.org/" target="_blank" rel="external noopener nofollow" class="link-https">https://doi.org/</a></li> <li>APA 7th - No Case Changes (No Title Casing), <a title="https://doi.org/" href="https://doi.org/" target="_blank" rel="external noopener nofollow" class="link-https">https://doi.org/</a>, Annotated</li> <li>Frontiers in Microbiology</li> <li>Journal of Experimental Biology</li> </ul> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Fixes_3"></span><h3 class="editable">Fixes</h3> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Shibboleth_Redirects_to_Legacy_in_Case_of_an_Error"></span><h4 class="editable">Shibboleth Redirects to Legacy in Case of an Error</h4> <p>If an error occurs while logging in to Shibboleth, an error message is displayed in RefWorks instead of redirecting you to legacy RefWorks.</p> </div></div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="February_12.2C_2020"></span><h2 class="editable">February 12, 2020</h2> <div class="Note style-wrap"> <p>The updated RCM is just around the corner and is pending release by the Microsoft store. The January release notes below will be updated as soon as it is available in the store.</p> </div> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Folder_Name_Validation"></span><h3 class="editable">Folder Name Validation</h3> <p>When a user creates a new folder with an existing name, RefWorks displays a message that the folder name already exists and lets the user keep the existing name or change it. Because folder names are not case-sensitive, the message is displayed whether the folder name is written in lower or upper-case letters.</p> <p><img class="mt-disabled" rel="broken" /></p> <div class="FigureCaption">Folder Name Validation Message</div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Updated_Decision_Export_Screen"></span><h3 class="editable">Updated Decision Export Screen</h3> <p>The <span class="ScreenElement">Don't ask me again </span>check box is now anchored in a more easily visible region of the export decision screen. The screen is responsive ensuring that the check box always stays within easy view.</p> <p><img class="mt-disabled" rel="broken" /></p> <div class="FigureCaption">Don't Ask Me Again Check Box More Visible on Export Decision Screen</div> <p>For more information on the updated decision export screen, see <a title="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/2019_RefWorks_Release_Information#Updated_Export_Page" href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/090_2019_RefWorks_Release_Information#Updated_Export_Page" rel="internal">Updated Export Page</a>.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Updated_Cookie_Policy_and_Terms_and_Conditions_Information"></span><h3 class="editable">Updated Cookie Policy and Terms and Conditions Information</h3> <p>The <span class="ScreenElement">Cookie Policy</span> and <span class="ScreenElement">Terms and Conditions</span> information was updated.</p> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Fixes_4"></span><h3 class="editable">Fixes</h3> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Ampersands_Displayed_Correctly"></span><h4 class="editable">Ampersands Displayed Correctly</h4> <p>When you enter an ampersand into a field (in any browser) when creating a bibliography, or when viewing the field in Citation View, ampersands are now no longer displayed as <span class="EnteredText">&amp</span>.</p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="Period_Correctly_Included_in_APA_Citation_Style"></span><h3 class="editable">Period Correctly Included in APA Citation Style</h3> <p>For print books, the APA Citation Style no longer omits a period between the book title and the location/publisher.</p> </div></div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="January_7.2C_2020"></span><h2 class="editable">January 7, 2020</h2> <div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="RefWorks_Citation_Manager_Update_3"></span><h3 class="editable">RefWorks Citation Manager Update</h3> <p>An updated RefWorks Citation Manager (RCM) version was released to the Microsoft Store and will be available to users in the coming days. Users who have already RCM installed will automatically be upgraded once the version is released by Microsoft.</p> <div class="Note style-wrap"> <p>These release notes will be updated when the version is available.</p> </div> </div><div mt-section-origin="RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information" class="mt-section"><span id="RefWorks_Citation_Manager_Now_Available_for_Hangul_(Korea)"></span><h3 class="editable">RefWorks Citation Manager Now Available for Hangul (Korea)</h3> <p>The RefWorks Citation Manager is now available for Hangul for both RefWorks and Legacy users. Similar in functionality to Write-N-Cite, RefWorks Citation Manager is a plugin for Hangul that lets you run a simplified version of RefWorks inside Hangul. RefWorks Citation Manager is a newer, more modern version of Write-N-Cite.</p> <p>The following are some of the features of RefWorks Citation Manager Hangul:</p> <ul> <li>Provides read-only access to your RefWorks account, enabling you to view and insert your previously collated references into your document, formatted using previously defined citation styles.</li> <li>You can add inline citations as well as footnote citations. You can configure RefWorks Citation Manager Hangul to add the cited reference automatically to a bibliography at the end of the document. As you add or remove references, the plugin automatically updates the bibliography. This is off by default to improve processing time for documents with many citations. </li> <li>Every time you log into RefWorks Citation Manager Hangul, it automatically synchronizes with your RefWorks account. You can also sync your account a by clicking the refresh button or selecting the<span class="ScreenElement"> Update Document and References</span> option in the Main Menu.</li> <li>Users can use citations from multiple projects and can work on multiple documents.</li> <li>When editing a citation, you can add references to the citation and delete the citation. <p><img alt="editing_citation_functions_hangul.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/78438/editing_citation_functions_hangul.png?revision=1" /></p> <div class="FigureCaption">Editing Citation Functions</div> </li> <li>The RefWorks Citation Manager Hangul pane allows you to turn the bibliography on and off, change the language, and contact support. <p><img alt="refworks_citation_manager_hangul_pane.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/78439/refworks_citation_manager_hangul_pane.png?revision=1" /></p> <div class="FigureCaption">RefWorks Citation Manager Hangul Pane</div> </li> </ul> <p>To install RefWorks Citation Manager Hangul from RefWorks:</p> <ol> <li>Do one of the following: <ul> <li>For RefWorks: select Tools > Cite references in your word processor > Hangul tab. <p><img alt="installing_refWorks_citation_manager.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/78413/installing_refWorks_citation_manager.png?revision=1" /></p> <div class="FigureCaption">Installing RefWorks Citation Manager Hangul</div> </li> <li>For Legacy RefWorks: select Tools > Writing Tool Add-ons > RCM Hangul section. <p><img alt="installing_legacy_refWorks_citation_manager.png" class="internal default" loading="lazy" src="https://knowledge.exlibrisgroup.com/@api/deki/files/78468/installing_legacy_refWorks_citation_manager.png?revision=1" /></p> <div class="FigureCaption">Installing Legacy RefWorks Citation Manager Hangul</div> </li> </ul> </li> <li>Select <span class="ScreenElement">Download and Install</span>.</li> </ol> </div></div></div> </div></div> </div></div></div> </div></div></div> </div> </div> <div class="mt-content-footer"> <div style="display: none"><a class="rss-page-link internal mt-self-link" href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/080_2020_RefWorks_Release_Information?v=51" rel="internal">View article in the Exlibris Knowledge Center</a></div> </div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="Jump back to top of this article">Back to top</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/070_2021_RefWorks_Release_Information" title="2021 RefWorks Release Information"><span>2021 RefWorks Release Information</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://knowledge.exlibrisgroup.com/RefWorks/Release_Notes/RefWorks_Release_Information/090_2019_RefWorks_Release_Information" title="2019 RefWorks Release Information"><span>2019 RefWorks Release Information</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">© Copyright 2024 Ex Libris Knowledge Center</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> Powered by CXone Expert <span class="mt-registered">®</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"><footer><div class="elm-nav-container"><div class="exlibris-footer"><ul id="useful_links"><li><a target="_self" href="https://knowledge.exlibrisgroup.com/TERMS_OF_USE" rel="internal">Term of Use</a></li><li><a target="_blank" href="https://www.exlibrisgroup.com/privacy-policy/" rel="external noopener nofollow" class="link-https">Privacy Policy</a></li><li id="teconsent"></li><li><a href="https://knowledge.exlibrisgroup.com/Cross-Product/Knowledge_Articles/How_to_contact_Ex_Libris_for_assistance_or_to_discuss_technical_matters" rel="internal">Contact Us</a></li></ul><span class="reserved">2024 Ex Libris. All rights reserved</span></div></div></footer> </div> <script>/*<![CDATA[*/ initOptional(); (function(){ var x = document.getElementsByClassName('lastModified'); for (var i = 0; i < x.length; i++) { var d = new Date(x[i].innerText); x[i].setAttribute('sorttable_customkey', d.toISOString().substring(0, 10)); } })(); /*]]>*/</script> <!--Feedback--> <script type="text/javascript">/*<![CDATA[*/ window.doorbellOptions = { "id": "2602", "appKey": "Qo1eqHoGxyAyBumYthdr9YjCAxeowyUw8hdj2EJ2bgPomMf5IeNGpABlK1QGmq42" }; (function(w, d, t) { var hasLoaded = false; function l() { if (hasLoaded) { return; } hasLoaded = true; window.doorbellOptions.windowLoaded = true; var g = d.createElement(t);g.id = 'doorbellScript';g.type = 'text/javascript';g.async = true;g.src = 'https://embed.doorbell.io/button/'+window.doorbellOptions['id']+'?t='+(new Date().getTime());(d.getElementsByTagName('head')[0]||d.getElementsByTagName('body')[0]).appendChild(g); } if (w.attachEvent) { w.attachEvent('onload', l); } else if (w.addEventListener) { w.addEventListener('load', l, false); } else { l(); } if (d.readyState == 'complete') { l(); } }(window, document, 'script')); /*]]>*/</script> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KXCRM3P" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> </body> </html>