Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This not only provides a nice pedagogical discussion point about how articles are grouped into issues and journals but also a great serendipitous discovery path to perhaps find other articles in that same issue which may be of interest to the researcher as well as all the advantages of BrowZine outlined above (allowing them to find other journals in their research area, tracking the journal for new articles to be published, a consistent browsing experience, etc.)

Note: When using the general Summon search, both the "View Journal Contents" and the "View Issue Contents" links will appear based on the resulting material (journals or articles). 







Info
The articles are matched in BrowZine via their DOI.  If the article does not contain a DOI either because the publisher does not utilize one or Summon does not have this information, no matching can occur.

...

This link is only displayed if this integration (articleLinkEnabled) is set to "true".  If your configuration is missing this parameter, the default is set to FALSE for backwards compatibility with older integration configuration scripts.

The wording to this integration, like the other features can be modified with the integration code below for localization purposes.  Additionally, this feature is optional and can also be disabled in the integration code.


...

Anchor
Unpaywall
Unpaywall

"Download Now/Read Now (via Unpaywall)" to provide one-click article linking to articles in Summon via Unpaywall

If an article is not available via the open access or subscribed content access knowledge of LibKey, the Summon integration of LibKey Discovery also checks Unpaywall for additional open access discovery.Image Added

To turn this feature on, be sure you are using the latest version of the integration code posted below and have put in a custom email address in the configuration script as this is requested by the developers on Unpaywall.

There is separate wording for whether the article is available from the publisher site versus being an "accepted manuscript" copy that is held (usually) in a repository.

The wording to this integration, like the other features can be modified with the integration code below for localization purposes.  Additionally, this feature is optional and can also be disabled in the integration code.

...

Anchor
step-by-step
step-by-step
Step-by-Step Implementation Guide

...

Code Block
languagejs
themeMidnight
var browzine = {
  api: "https://public-api.thirdiron.com/public/v1/libraries/XXX",
  apiKey: "ENTER API KEY",

  journalCoverImagesEnabled: true,

  journalBrowZineWebLinkTextEnabled: true,
  journalWording: "View the Journal",
  articleWordingjournalBrowZineWebLinkText: "Browse Now"View Complete Issue",

  articleBrowZineWebLinkTextEnabled: true,
  journalBrowZineWebLinkTextarticleWording: "BrowseView Complete NowIssue",
  articleBrowZineWebLinkText: "Browse Now",

  articlePDFDownloadLinkEnabled: true,
  articlePDFDownloadWording: "Article PDF",
  articlePDFDownloadLinkText: "Download Now",

  articleLinkEnabled: true,
  articleLinkTextWording: "Article Link",
  articleLinkText: "Read Article",

  unpaywallEmailAddressKey: "enter-your-email@your-institution-domain.edu",

  articlePDFDownloadViaUnpaywallEnabled: true,
  articlePDFDownloadViaUnpaywallWording: "Article PDF",
  articlePDFDownloadViaUnpaywallLinkText: "Download Now (via Unpaywall)",

  articleLinkViaUnpaywallEnabled: true,
  articleLinkViaUnpaywallWording: "Article Link",
  articleLinkViaUnpaywallLinkText: "Read Article (via Unpaywall)",

  articleAcceptedManuscriptPDFViaUnpaywallEnabled: true,
  articleAcceptedManuscriptPDFViaUnpaywallWording: "Article PDF",
  articleAcceptedManuscriptPDFViaUnpaywallLinkText: "Download Now (Accepted Manuscript via Unpaywall)",

  articleAcceptedManuscriptArticleLinkViaUnpaywallEnabled: true,
  articleAcceptedManuscriptArticleLinkViaUnpaywallWording: "Article Link",
  articleAcceptedManuscriptArticleLinkViaUnpaywallLinkText: "Read Article (Accepted Manuscript via Unpaywall)",
};

browzine.script = document.createElement("script");
browzine.script.src = "https://s3.amazonaws.com/browzine-adapters/summon/browzine-summon-adapter.js";
document.head.appendChild(browzine.script);

As an example, with BrowZine Library 221 (replacing the "XXX" on the second line) and API key d690efde-2f6f-124b-z87b-8df112f4f42f your code would look like this:the below.

Additionally, please insert a unique email address for use of the Unpaywall API as this is requested by the developers of Unpaywall.

Code Block
languagejs
themeMidnight
var browzine = {
  api: "https://public-api.thirdiron.com/public/v1/libraries/221",
  apiKey: "d690efde-2f6f-124b-z87b-8df112f4f42f",

  journalCoverImagesEnabled: true,

  journalBrowZineWebLinkTextEnabled: true,
  journalWording: "View the Journal",
  articleWordingjournalBrowZineWebLinkText: "View Complete Issue"Browse Now",

  articleBrowZineWebLinkTextEnabled: true,
  journalBrowZineWebLinkTextarticleWording: "BrowseView Complete NowIssue",
  articleBrowZineWebLinkText: "Browse Now",

  articlePDFDownloadLinkEnabled: true,
  articlePDFDownloadWording: "Article PDF",
  articlePDFDownloadLinkText: "Download Now",

  articleLinkEnabled: true,
  articleLinkTextWording: "Article Link",
  articleLinkText: "Read Article",

  unpaywallEmailAddressKey: "melvil.dewey@greatuniversity.edu",

  articlePDFDownloadViaUnpaywallEnabled: true,
  articlePDFDownloadViaUnpaywallWording: "Article PDF",
  articlePDFDownloadViaUnpaywallLinkText: "Download Now (via Unpaywall)",

  articleLinkViaUnpaywallEnabled: true,
  articleLinkViaUnpaywallWording: "Article Link",
  articleLinkViaUnpaywallLinkText: "Read Article (via Unpaywall)",

  articleAcceptedManuscriptPDFViaUnpaywallEnabled: true,
  articleAcceptedManuscriptPDFViaUnpaywallWording: "Article PDF",
  articleAcceptedManuscriptPDFViaUnpaywallLinkText: "Download Now (Accepted Manuscript via Unpaywall)",

  articleAcceptedManuscriptArticleLinkViaUnpaywallEnabled: true,
  articleAcceptedManuscriptArticleLinkViaUnpaywallWording: "Article Link",
  articleAcceptedManuscriptArticleLinkViaUnpaywallLinkText: "Read Article (Accepted Manuscript via Unpaywall)",
};

browzine.script = document.createElement("script");
browzine.script.src = "https://s3.amazonaws.com/browzine-adapters/summon/browzine-summon-adapter.js";
document.head.appendChild(browzine.script);

...