CINXE.COM

Web of Science Master Journal List - WoS MJL by Clarivate

<!DOCTYPE html><html lang="en"><head> <base href="/"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="icon" type="image/x-icon" href="/mjl/assets/favicon.ico"> <link rel="icon" type="image/png" sizes="16x16" href="/mjl/assets/favicon.png"> <link rel="preconnect" href="https://cdn.digital-experience.clarivate.io" crossorigin=""> <link rel="canonical" href=""> <meta name="description" content=""> <meta name="author" content="Web of Science Group, a Clarivate company"> <script type="text/javascript" async="" src="https://play.vidyard.com/embed/v4.js"></script> <title>Web of Science Master Journal List - WoS MJL by Clarivate</title> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What Is Master Journal List?", "acceptedAnswer": { "@type": "Answer", "text": "The Master Journal List is an invaluable tool to help you to find the right journal for your needs across multiple indices hosted on the Web of Science platform. Spanning all disciplines and regions, Web of Science Core Collection is at the heart of the Web of Science platform. Curated with care by an expert team of in-house editors, Web of Science Core Collection includes only journals that demonstrate high levels of editorial rigor and best practice. As well as the Web of Science Core Collection, you can search across the following specialty collections: Biological Abstracts, BIOSIS Previews, Zoological Record, and Current Contents Connect, as well as the Chemical Information products." } }, { "@type": "Question", "name": "Which Journals Are Included in Master Journal聽List?", "acceptedAnswer": { "@type": "Answer", "text": "The Master Journal List includes all journals indexed in Web of Science, including the complete list of journal in the Web of Science Core Collection (including Science Citation Index Expanded, Social Sciences Citation Index, Arts & Humanities Citation Index, and Emerging Sources Citation Index), Biological Abstracts, BIOSIS Previews, Zoological Record, and Current Contents Connect, as well as the Chemical Information products." } }, { "@type": "Question", "name": "Do I Have to Create an Account to Use Master Journal List?", "acceptedAnswer": { "@type": "Answer", "text": "Users are required to create a free account and log in to use Manuscript Matcher, view journal profile pages, submit journals for evaluation, and request status of journal evaluation; all other information is available to view without logging in." } }, { "@type": "Question", "name": "Can I Submit to a Journal for Inclusion Directly Through Master Journal List?", "acceptedAnswer": { "@type": "Answer", "text": "No. Publishers may submit journals to Web of Science for evaluation via the journal submission form." } }, { "@type": "Question", "name": "Can I Download the Master Journal List?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. Please visit the Collection List Downloads page. Each collection list download includes the journal title, ISSN/eISSN, publisher name and address. You will need a free Master Journal List login to access the download files." } } ] } </script> <script> // // Function here used only for IE with some tweaks so it'll work for login page // function runForLoginIFrameForIE() { let eventMethod = window.addEventListener ? 'addEventListener' : 'attachEvent'; let eventer = window[eventMethod]; let messageEvent = eventMethod === 'attachEvent' ? 'onmessage' : 'message'; let errorTimeout; let loginFrame; let iframeErrorMsg; let spinner; let isIframeAlreadyRendered = false; // check if iframe is loaded or not setTimeout(function () { errorTimeout = setTimeout(error, 8000); }, 10); // Listen to message from child window window.addEventListener('message', function (e) { let urlRegex = new RegExp('access\.(.*)\.?clarivate\.com', 'g'); let isClarivateDomain = urlRegex.test(e.origin) || e.origin == 'http://local.1p.clarivate.com:1981'; spinner = document.getElementById('iframe-spinner'); loginFrame = document.getElementById('loginIframe'); if (isClarivateDomain && e.data === 'loaded') { spinner.style.display = 'none'; loginFrame.style.display = 'block'; isIframeAlreadyRendered = true; clearTimeout(errorTimeout); e.source.postMessage('url:' + window.location.href, '*'); } else if (isClarivateDomain && e.data.length) { localStorage.setItem('ca.token', e.data); window.location.href = window['base-href'] + 'login-redirect'; } }); function error() { loginFrame = document.getElementById('loginIframe'); iframeErrorMsg = document.getElementById('iframe-error-msg'); spinner = document.getElementById('iframe-spinner'); loginFrame.style.display = 'none'; iframeErrorMsg.style.display = 'block'; spinner.style.display = 'none'; } } </script> <!-- Google RecaptchaV2 --> <script src="https://www.google.com/recaptcha/api.js?" async="" defer></script> <!-- Google Tag Manager --> <!-- <script> (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-MQ9MX8S'); </script> --> <!-- End Google Tag Manager --> <!-- Datadog --> <!-- <script src="https://www.datadoghq-browser-agent.com/datadog-rum-us.js" type="text/javascript"> </script> <script> window.DD_RUM.init({ clientToken: 'pub11718c179e1bfb129f286ec03f4ec018', applicationId: '2c9397a4-13d1-4cce-9e3f-ba5cea6f005f', }); </script> --> <!-- Handle browser back button --> <script> // // Handle legacy case where we start app at /mjl-beta/xxx then set base-href which sets APP_BASE_HREF in app // Otherwise set default app base path to / (new way) // TODO: Once we remove old app paths and // // var winLocationPathname = window.location.pathname; var winLocationPathname = window.location.pathname; if (winLocationPathname.indexOf('/mjl') > -1) { winLocationPathname ='/mjl/'; window['base-href'] = winLocationPathname; } else { window['base-href'] ='/'; } console.log('App set root base-href: ' + window['base-href']); console.log("Deploy url", winLocationPathname); window.addEventListener( 'popstate', function (e) { console.log( '*** window.onpopstate + ' + window.location.href + ' ' + e.state.search_id ); localStorage.setItem('search_back_hash', e.state.search_id); if (document.getElementById('hiddenBackButton') !== null) { document.getElementById('hiddenBackButton').click(); // Primary way to do it (works nicest) } else { localStorage.setItem('hiddenBackButtonPress', 'Y'); // Fallback way when we are going back to search results from another page } }, false ); // // Grab browser events for push/pop state // This also handles back button where 2 replaceStates() come in for same page - one has our search hash and one does not. We need to preserve it. // // JS: Note: Does not work on IE11 // const isIEOrEdge2 = /msie\s|trident\/|edge\//i.test( window.navigator.userAgent ); if (!isIEOrEdge2) { var _wr = function (type) { var orig = history[type]; return function () { var rv = orig.apply(this, arguments); var e = new Event(type); e.arguments = arguments; window.dispatchEvent(e); return rv; }; }; (history.pushState = _wr('pushState')), (history.replaceState = _wr('replaceState')); window.addEventListener('replaceState', function (e) { if ( e.arguments != null && e.arguments[0] && e.arguments[0].search_id ) { console.log( '*** window.replace state = ' + e.arguments[0].search_id ); } else { console.log('*** window.replace state = ' + e); // We did a replace state. Sometimes this gets doubled second time without search id hash // If we're on search results AND we have no search hash and we have one in memory from last time then set that... if ( window.location.href.indexOf('search-results') > -1 || window.location.href.indexOf('manuscript-matcher') > -1 ) { if ( localStorage.getItem('search_back_hash') && localStorage.getItem('search_back_hash').length > 0 ) { console.log( '*** window.replace state did not find old search id.. resetting to ' + localStorage.getItem('search_back_hash') ); history.replaceState( { search_id: localStorage.getItem('search_back_hash'), search_text: '', }, null, window.location.href ); } } } }); /* Uncomment for debugging * window.addEventListener('pushState', function(e) { if (e.arguments != null && e.arguments[0] && e.arguments[0].search_id) { console.log('*** window.push state = ' + e.arguments[0].search_id); } else { console.log('*** window.push state = ' + e); } });*/ } </script> <style>@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Light.ttf.e98371e58df310eb.woff2) format("woff2"),url(SourceSansPro-Light.ttf.28e90ad3e1bde8cd.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-LightIt.ttf.354ab57da8f5712b.woff2) format("woff2"),url(SourceSansPro-LightIt.ttf.5e398f802d046d18.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Regular.ttf.fc4fcb8f84070998.woff2) format("woff2"),url(SourceSansPro-Regular.ttf.9c30d7d058d49577.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-It.ttf.a381e68c5cdefc5a.woff2) format("woff2"),url(SourceSansPro-It.ttf.67748b12eb263dcd.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Semibold.ttf.f14b8ff9c12e754a.woff2) format("woff2"),url(SourceSansPro-Semibold.ttf.53382818bf77879d.woff) format("woff");font-weight:600;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-SemiboldIt.ttf.d4fb7e7427eeb81b.woff2) format("woff2"),url(SourceSansPro-SemiboldIt.ttf.11cfa16d8a07d6b9.woff) format("woff");font-weight:600;font-style:italic}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Bold.ttf.0c62c0b956ab4890.woff2) format("woff2"),url(SourceSansPro-Bold.ttf.da0324292f994779.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-BoldIt.ttf.cf7f957750b023f6.woff2) format("woff2"),url(SourceSansPro-BoldIt.ttf.e2dae436f2f49131.woff) format("woff");font-weight:700;font-style:italic}.mat-typography{font:400 14px/20px Source Sans Pro,sans-serif;letter-spacing:normal}*{box-sizing:border-box;margin:0}*:before,*:after{box-sizing:inherit}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Light.ttf.e98371e58df310eb.woff2) format("woff2"),url(SourceSansPro-Light.ttf.28e90ad3e1bde8cd.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-LightIt.ttf.354ab57da8f5712b.woff2) format("woff2"),url(SourceSansPro-LightIt.ttf.5e398f802d046d18.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Regular.ttf.fc4fcb8f84070998.woff2) format("woff2"),url(SourceSansPro-Regular.ttf.9c30d7d058d49577.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-It.ttf.a381e68c5cdefc5a.woff2) format("woff2"),url(SourceSansPro-It.ttf.67748b12eb263dcd.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Semibold.ttf.f14b8ff9c12e754a.woff2) format("woff2"),url(SourceSansPro-Semibold.ttf.53382818bf77879d.woff) format("woff");font-weight:600;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-SemiboldIt.ttf.d4fb7e7427eeb81b.woff2) format("woff2"),url(SourceSansPro-SemiboldIt.ttf.11cfa16d8a07d6b9.woff) format("woff");font-weight:600;font-style:italic}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-Bold.ttf.0c62c0b956ab4890.woff2) format("woff2"),url(SourceSansPro-Bold.ttf.da0324292f994779.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Source Sans Pro;src:url(SourceSansPro-BoldIt.ttf.cf7f957750b023f6.woff2) format("woff2"),url(SourceSansPro-BoldIt.ttf.e2dae436f2f49131.woff) format("woff");font-weight:700;font-style:italic}</style><link rel="stylesheet" href="/mjl/styles.851696b13862e22c.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="/mjl/styles.851696b13862e22c.css"></noscript></head> <body class="mat-typography"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MQ9MX8S" height="0" width="0" style="display: none; visibility: hidden" ></iframe ></noscript> <!-- End Google Tag Manager (noscript) --> <cdx-app></cdx-app> <script src="/mjl/runtime.6f87f10827c31c25.js" type="module"></script><script src="/mjl/polyfills.545cc04c5c94e11c.js" type="module"></script><script src="/mjl/main.b1dc8a5adf74700b.js" type="module"></script> </body></html>