CINXE.COM
Page not found | CERN Scientific Information Service (SIS)
<!DOCTYPE html> <html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# "> <head> <meta charset="utf-8" /> <script>(function () { class AccessibilityMenu { settings = { fontSizeLimit: 30, }; defaults = { fontSize: [1.15, 1.35, 1.55, 1.7], lineHeight: [1.25, 1.5, 1.75], letterSpacing: [1.25, 1.75, 2.25], fontFamily: ['serif', 'sans-serif'], }; map = { fontSize: 'font_size', lineHeight: 'line_height', letterSpacing: 'letter_spacing', fontFamily: 'font_style', }; constructor(element) { this.wrapper = element; this.buttons = {}; this.buttons.close = this.wrapper.querySelector('.js-accessibility-close'); this.buttons.open = document.querySelector('.js-accessibility-btn'); this.buttons.reset = this.wrapper.querySelector('.js-accessibility-reset'); this.container = this.wrapper.querySelector('.b-accessibility-menu'); this.init(); } init = function () { const self = this; document.addEventListener('click', (e) => { if (!e.target.closest('.js-accessibility-menu') && !e.target.closest('.js-accessibility-btn')) { self.close(); } }); self.buttons.open.addEventListener('click', self.open.bind(self)); self.buttons.close.addEventListener('click', self.close.bind(self)); self.buttons.reset.addEventListener('click', () => { self.reset(); }); self.container.addEventListener('click', (e) => { const target = e.target.closest('.b-accessibility-menu__item'); if (target) { self.itemClick(target); self.refresh(); } }); self.refresh(); }; refresh = function () { const self = this; self.container.querySelectorAll('.b-accessibility-menu__item').forEach((element) => { self.itemClick(element, false); }); let storage = localStorage.getItem('accessibility_menu'); storage = JSON.parse(storage) ?? {}; let elements = document.querySelectorAll('body *'); elements.forEach((element) => { let styles = getComputedStyle(element); if (!element.prepare) { element.prepare = {}; } for (let type in self.defaults) { if (styles[type] !== undefined) { if (!element.initialStyles) { element.initialStyles = {}; } if (!element?.initialStyles[type]) { let propertyValue = styles[type]; switch (type) { case 'letterSpacing': if (propertyValue === 'normal') { propertyValue = 1; } element.initialStyles[type] = parseFloat(propertyValue); break; default: element.initialStyles[type] = parseFloat(propertyValue); break; } } let value = element.initialStyles[type]; let coef = self.defaults[type][storage[self.map[type]]]; if (coef === undefined) { element.prepare[type] = ''; } else { switch (type) { case 'fontFamily': element.prepare[type] = coef; break; case 'fontSize': let max = value > self.settings.fontSizeLimit ? value : self.settings.fontSizeLimit; element.prepare[type] = ((value * coef) > max ? max : value * coef) + 'px'; break; default: element.prepare[type] = (coef * value) + 'px'; break; } } } } }); document.body.classList.remove('images-grayscale'); document.body.classList.remove('images-none'); switch (storage['images']) { case 0: document.body.classList.add('images-grayscale'); break; case 1: document.body.classList.add('images-none'); break; } delete document.body.dataset.am_theme; if (storage?.contrast !== undefined) { document.body.dataset.am_theme = 'theme_' + storage['contrast']; } elements.forEach((element) => { if (element.prepare) { if (element.closest('.js-accessibility-menu')) { return; } for (let style in element.prepare) { element.style[style] = element.prepare[style]; } } }); }; _getElementIndex = function (node) { let index = 0; while ((node = node.previousElementSibling)) { index++; } return index; }; getValue = function (item) { const type = item.dataset.type; let storage = localStorage.getItem('accessibility_menu'); storage = JSON.parse(storage) ?? {}; if (storage[type] !== undefined) { return storage[type]; } return undefined; }; setValue = function (item, value) { const type = item.dataset.type; let storage = localStorage.getItem('accessibility_menu'); storage = JSON.parse(storage) ?? {}; storage[type] = value; if (value === undefined) { delete (storage[type]); } storage = JSON.stringify(storage); if (storage === '{}') { localStorage.removeItem('accessibility_menu'); } else { localStorage.setItem('accessibility_menu', storage); } }; reset = function () { const self = this; localStorage.removeItem('accessibility_menu'); self.refresh(); }; itemClick = function (item, increase = true) { const self = this; let value = self.getValue(item); if (increase) { if (value !== undefined) { value++; } else { value = 0; } } let title = item.dataset?.title ?? ''; let setValue = undefined; let links = item.querySelectorAll('.js-accessibility-link'); links.forEach((element) => { element.classList.remove('is-active'); const index = self._getElementIndex(element); if (index === value) { title = element.dataset.title ?? title; setValue = index; } if (index <= value) { element.classList.add('is-active'); } }); self.setValue(item, setValue); item.querySelector('.b-accessibility-menu__title span').innerText = title; if (setValue !== undefined) { item.classList.add('is-active'); } else { item.classList.remove('is-active'); } }; open = function () { const self = this; if (!self.wrapper.classList.contains('is-open')) { self.wrapper.classList.add('is-open'); setTimeout(() => { self.container.classList.add('is-open'); }, 16); } }; close = function () { const self = this; if (self.wrapper.classList.contains('is-open')) { self.container.classList.remove('is-open'); setTimeout(() => { self.wrapper.classList.remove('is-open'); }, 500); } }; } document.addEventListener('DOMContentLoaded', function (event) { const menuContainer = document.querySelector('.js-accessibility-menu'); if (menuContainer) { const menu = new AccessibilityMenu(menuContainer); } }); })(); </script> <script>var _paq = _paq || [];(function(){var u=(("https:" == document.location.protocol) ? "https://piwik.web.cern.ch/" : "http://piwik.web.cern.ch/");_paq.push(["setSiteId", "6624"]);_paq.push(["setTrackerUrl", u+"matomo.php"]);_paq.push(["setDocumentTitle", "404/URL = " + encodeURIComponent(document.location.pathname+document.location.search) + "/From = " + encodeURIComponent(document.referrer)]);_paq.push(["setDoNotTrack", 1]);if (!window.matomo_search_results_active) {_paq.push(["trackPageView"]);}_paq.push(["setIgnoreClasses", ["no-tracking","colorbox"]]);_paq.push(["enableLinkTracking"]);var d=document,g=d.createElement("script"),s=d.getElementsByTagName("script")[0];g.type="text/javascript";g.defer=true;g.async=true;g.src=u+"matomo.js";s.parentNode.insertBefore(g,s);})();</script> <link rel="canonical" href="https://sis.web.cern.ch/" /> <link rel="shortlink" href="https://sis.web.cern.ch/" /> <meta name="Generator" content="Drupal 10 (https://www.drupal.org)" /> <meta name="MobileOptimized" content="width" /> <meta name="HandheldFriendly" content="true" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="icon" href="/sites/default/files/sis.ico" type="image/vnd.microsoft.icon" /> <title>Page not found | CERN Scientific Information Service (SIS)</title> <link rel="stylesheet" media="all" href="/sites/default/modules/accessibility_menu/misc/accessibility_menu.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/custom/cern-loading/css/cern_loading.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/align.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/fieldgroup.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/container-inline.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/clearfix.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/details.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/hidden.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/item-list.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/js.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/nowrap.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/position-container.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/progress.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/reset-appearance.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/resize.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/sticky-header.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/system-status-counter.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/system-status-report-counters.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/system-status-report-general-info.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/tablesort.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/core/modules/system/css/components/tree-child.module.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/custom/cern-dev-status/css/dev_styling.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/custom/cern-components/patterns/templates/simple/css/simple.component.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/custom/cern-toolbar/assets/css/screen.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/custom/cern-toolbar/assets/css/cookieconsent.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/contrib/colorbox/styles/default/colorbox_style.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/contrib/extlink/extlink.css?sl37c0" /> <link rel="stylesheet" media="all" href="/modules/contrib/webform/modules/webform_bootstrap/css/webform_bootstrap.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/color/colors.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/base.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/layout.css?sl37c0" /> <link rel="stylesheet" media="all" href="//framework.web.cern.ch/framework/3.0/js/prism/prism.css" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/footer.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/header.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/pagination.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/forms.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/fields.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/dropdown.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/progress.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/accordion.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/components/social-sharing.css?sl37c0" /> <link rel="stylesheet" media="all" href="//framework.web.cern.ch/framework/3.0/js/colorbox/colorbox.css" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/theme.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/cookies.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/viewspage.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/faq-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/agenda-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/news-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/stories-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/resources-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/taxonomies-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/search-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/common-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-base-theme/css/views/generic-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/header.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/layout.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/common-views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/fields.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/forms.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/views.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/blocks.css?sl37c0" /> <link rel="stylesheet" media="all" href="/themes/custom/cern-theme/css/comments.css?sl37c0" /> <script src="/core/assets/vendor/jquery/jquery.min.js?v=3.7.1"></script> <script src="/sites/default/files/asset_injector/js/fix_logo_column_issue-826092ac4a8b15af6c02ec2ae808fbdc.js?sl37c0"></script> <link rel="preload" href="//framework.web.cern.ch/framework/3.0/images/loader.gif" as="image"> </head> <body class="cern-theme-on path-library has-glyphicons"> <a href="#main-content" class="visually-hidden focusable skip-link"> Skip to main content </a> <div id="cern-global-loading-layout"><span><span></span></span><span></span></div><div id="cern-toolbar" role="group" aria-label="CERN Toolbar" class="user-not-authenticated"> <h1> <a href="//home.cern" title="CERN"> CERN <span>Accelerating science</span> </a> </h1> <ul> <li class="signin"> <div class="item-list item-list-length-1"> <ul class="cern-signedin toolbar-submenu"><li class="cern-account-links"><a href="https://sis.web.cern.ch/user/login?destination=library/OpenAccess/SubmitPaper.html" class="cern-account cern-signin cern-single-mobile-signin">Sign in</a></li></ul> </div> </li> <li><a href="//cern.ch/directory" class="cern-directory" title="Search CERN resources and browse the directory">Directory</a></li> </ul> </div> <div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas> <div class="container-fluid"> </div> <header role="banner"> <div class="header-wrapper"> <div class="site-info col-sm-3"> <div class="site-info__logo col-lg-12 col-md-12 col-sm-12"> <a href="/" title="Home" rel="home"> <img src="/sites/default/files/logo/SIS%20Header%202022_0.png" alt="home"/> </a> </div> </div> <div class="site-nav col-sm-9 has-search"> <div class="region region-header"> <nav role="navigation" aria-labelledby="block-cernclean-main-menu-menu" id="block-cernclean-main-menu"> <h2 class="sr-only" id="block-cernclean-main-menu-menu">Main navigation</h2> <nav class="navbar navbar-default main-menu"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="dropdown"> <a href="/search-and-read" class="dropdown-toggle" data-drupal-link-system-path="node/118"> Search & Read <span class="caret"></span> </a> <ul class="dropdown-menu"> <li class="dropdown"> <a href="https://catalogue.library.cern" class="dropdown-toggle"> Library collections <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="https://catalogue.library.cern/search?q=&f=doctype%3ABOOK&l=grid&order=desc&p=1&s=15&sort=created">E-books & books</a> </li> <li> <a href="https://catalogue.library.cern/search?q=&f=doctype%3APERIODICAL&l=grid&order=desc&p=1&s=15&sort=created">Journals</a> </li> <li> <a href="https://catalogue.library.cern/search?q=&f=doctype%3ASTANDARD&l=grid&order=desc&p=1&s=15&sort=created">Standards</a> </li> </ul> </li> <li class="dropdown"> <a href="https://cds.cern.ch/" class="dropdown-toggle"> CERN Document Server (CDS) <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="https://cds.cern.ch/collection/CERN%20Articles%20%26%20Preprints">CERN articles & preprints</a> </li> <li> <a href="https://cds.cern.ch/collection/CERN%20Yellow%20Reports">CERN Yellow Reports</a> </li> </ul> </li> <li> <a href="https://inspirehep.net/">High energy physics literature (INSPIRE)</a> </li> <li> <a href="/search-and-read/online-resources" data-drupal-link-system-path="search-and-read/online-resources">Online resources</a> </li> <li class="dropdown"> <a href="/search-and-read/not-found-what-you-are-looking-for" class="dropdown-toggle" data-drupal-link-system-path="node/113"> Not found what you are looking for? <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/search-and-read/not-found-what-you-are-looking-for/get-a-document" data-drupal-link-system-path="node/28">How to get a document not available at CERN</a> </li> <li> <a href="/search-and-read/not-found-what-you-are-looking-for/recommend" data-drupal-link-system-path="node/22">Recommend a book or a journal</a> </li> </ul> </li> <li> <a href="/search-and-read/borrow-and-renew" data-drupal-link-system-path="node/199">Borrow and renew</a> </li> <li> <a href="/search-and-read/buy-book-standard-journal" data-drupal-link-system-path="node/27">Buy a book, standard, journal</a> </li> <li> <a href="/search-and-read/order-pdg" data-drupal-link-system-path="node/23">Order PDG booklet & review</a> </li> </ul> </li> <li class="dropdown"> <a href="/submit-and-publish" class="dropdown-toggle" data-drupal-link-system-path="node/138"> Submit & Publish <span class="caret"></span> </a> <ul class="dropdown-menu"> <li class="dropdown"> <a href="/submit-and-publish/how-and-where-submit" class="dropdown-toggle" data-drupal-link-system-path="node/131"> How and where to submit your document/data <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/submit-and-publish/how-and-where-submit/document" data-drupal-link-system-path="node/132">Submit your document, report, paper</a> </li> <li> <a href="/submit-and-publish/how-and-where-submit/thesis" data-drupal-link-system-path="node/133">Submit your thesis</a> </li> <li> <a href="/submit-and-publish/how-and-where-submit/data-code-software" data-drupal-link-system-path="node/198">Submit your data, code, software</a> </li> </ul> </li> <li> <a href="/submit-and-publish/publish-open-access" data-drupal-link-system-path="node/163">Publish open access</a> </li> <li> <a href="/practical-information/faq-open-access-publishing">FAQ on open access</a> </li> <li> <a href="/submit-and-publish/author-guidelines" data-drupal-link-system-path="node/162">Author guidelines</a> </li> <li class="dropdown"> <a href="/submit-and-publish/how-and-where-publish" class="dropdown-toggle" data-drupal-link-system-path="node/169"> How and where to publish <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/submit-and-publish/how-and-where-publish/arrangements-with-publishers" data-drupal-link-system-path="node/174">Arrangements with publishers</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/books" data-drupal-link-system-path="node/234">Books</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/conference-proceedings" data-drupal-link-system-path="node/167">Conference proceedings</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/yellow-reports" data-drupal-link-system-path="node/175">Yellow Reports</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/accelerators" data-drupal-link-system-path="node/171">Accelerators</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/instrumentation" data-drupal-link-system-path="node/168">Instrumentation</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/physics" data-drupal-link-system-path="node/170">Physics</a> </li> <li> <a href="/submit-and-publish/how-and-where-publish/other-disciplines" data-drupal-link-system-path="node/173">Other disciplines</a> </li> </ul> </li> <li class="dropdown"> <a href="/submit-and-publish/authoring-tools-and-services" class="dropdown-toggle" data-drupal-link-system-path="node/166"> Authoring tools and services <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="https://www.overleaf.com/org/cern" title="Overleaf start page">Overleaf</a> </li> <li> <a href="/submit-and-publish/authoring-services/templates" data-drupal-link-system-path="node/164">Templates</a> </li> <li> <a href="/submit-and-publish/authoring-services/copy-editing" data-drupal-link-system-path="node/165">Copy-editing</a> </li> </ul> </li> <li class="dropdown"> <a href="/submit-and-publish/persistent-identifiers" class="dropdown-toggle" data-drupal-link-system-path="node/128"> Persistent identifiers (ISBN, DOI, ORCID, etc.) <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/submit-and-publish/persistent-identifiers/what-are-pids" data-drupal-link-system-path="node/196">What are PIDs?</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/why-pids" data-drupal-link-system-path="node/120">Why use PIDs?</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/pids-for-objects" data-drupal-link-system-path="node/121">PIDs for objects</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/pids-for-people" data-drupal-link-system-path="node/122">PIDs for people</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/pids-for-grants" data-drupal-link-system-path="node/123">PIDs for grants</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/pids-for-organizations" data-drupal-link-system-path="node/124">PIDs for organizations</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/doi" data-drupal-link-system-path="node/126">DOI</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/orcid" data-drupal-link-system-path="node/127">ORCID</a> </li> <li> <a href="/submit-and-publish/persistent-identifiers/isbn-issn" data-drupal-link-system-path="node/125">ISBN/ISSN</a> </li> </ul> </li> </ul> </li> <li class="dropdown"> <a href="/archives" class="dropdown-toggle" data-drupal-link-system-path="node/11018"> Archives <span class="caret"></span> </a> <ul class="dropdown-menu"> <li class="dropdown"> <a href="/archives/CERN_archive" class="dropdown-toggle" data-drupal-link-system-path="node/15113"> CERN Archives <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/CERN_archive/guide" data-drupal-link-system-path="node/11016">Archives guide</a> </li> <li> <a href="/archives/CERN_archive/about" data-drupal-link-system-path="node/15109">About the CERN Archives</a> </li> <li> <a href="https://cds.cern.ch/collection/Archives">CDS Archives</a> </li> <li> <a href="mailto:archive.enquiries@cern.ch">Ask our archivist</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/Pauli_archive" class="dropdown-toggle" data-drupal-link-system-path="node/15112"> Wolfgang Pauli Archive <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/Pauli_archive/biography" data-drupal-link-system-path="node/15212">Biography</a> </li> <li> <a href="/archives/Pauli_archive/guide" data-drupal-link-system-path="node/15213">Pauli Archive guide</a> </li> <li> <a href="/archives/Pauli_archive/committee" data-drupal-link-system-path="node/15211">Pauli Committee</a> </li> <li> <a href="mailto:anita.hollier@cern.ch">Ask our archivist</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/history_CERN" class="dropdown-toggle" data-drupal-link-system-path="node/11017"> History of CERN <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/history_CERN/internal_organisation" data-drupal-link-system-path="node/15210">Internal organisation of CERN - Historical charts</a> </li> <li> <a href="/archives/history_CERN/DG" data-drupal-link-system-path="node/15155">List of Directors-General (biographies)</a> </li> <li class="dropdown"> <a href="/archives/history_CERN/Scientific_committees" class="dropdown-toggle" data-drupal-link-system-path="node/15140"> CERN Scientific Committees <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/history_CERN/Scientific_committees-table" data-drupal-link-system-path="node/15545">CERN Scientific Committees - Table</a> </li> </ul> </li> <li> <a href="/archives/history_CERN/Exp-Programme-01" data-drupal-link-system-path="node/15477">The CERN Experimental Programme</a> </li> <li> <a href="/archives/history_CERN/who_is_who" data-drupal-link-system-path="node/15086">Who is who at CERN</a> </li> <li> <a href="/archives/history_CERN/history_project" data-drupal-link-system-path="node/15138">CERN History project</a> </li> <li> <a href="/archives/history_CERN/physics_coordinators" data-drupal-link-system-path="node/15137">CERN Physics Co-ordinators</a> </li> <li> <a href="/archives/history_CERN/links" data-drupal-link-system-path="node/15128">Other links on the history of CERN</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/divisional_records_officers" class="dropdown-toggle" data-drupal-link-system-path="node/15136"> Divisional Records Officers (DRO) <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/divisional_records_officers/guidelines_DRO" data-drupal-link-system-path="node/15135">Guidelines for DRO</a> </li> <li> <a href="/archives/divisional_records_officers#What" data-drupal-link-system-path="node/15136">What does a DRO?</a> </li> <li> <a href="/archives/divisional_records_officers#officers" data-drupal-link-system-path="node/15136">CERN鈥檚 DROs</a> </li> <li> <a href="/archives/divisional_records_officers#officers" data-drupal-link-system-path="node/15136">Transfer list</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/your_records" class="dropdown-toggle" data-drupal-link-system-path="node/15133"> Your records <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/your_records" data-drupal-link-system-path="node/15133">Do you have records that may be of interest to the Archives?</a> </li> <li> <a href="/archives/your_records" data-drupal-link-system-path="node/15133">Here are a few questions to ask when appraising records</a> </li> <li> <a href="/archives/your_records" data-drupal-link-system-path="node/15133">Do you want to know how to manage your records?</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/web_archives" class="dropdown-toggle" data-drupal-link-system-path="node/15130"> Web archives <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="http://waybackmachine.org/*/http://www.cern.ch">CERN's public web pages 1996-> in the Internet </a> </li> <li> <a href="https://home.cern/topics/birth-web">The birth of the Web</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/online-resources" class="dropdown-toggle" data-drupal-link-system-path="node/15099"> Online resources <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="https://cds.cern.ch/collection/Council-related%20Committees?ln=en">CERN Council and its Committees</a> </li> <li> <a href="/archives/history_CERN/internal_organisation" data-drupal-link-system-path="node/15210">CERN Departmental and Group reports</a> </li> <li> <a href="https://cds.cern.ch/record/330625?ln=en">The CERN Convention </a> </li> <li> <a href="https://cds.cern.ch/collection/Press%20Releases?ln=en">CERN press releases</a> </li> <li> <a href="https://cds.cern.ch/search?ln=en&cc=CERN%20Annual%20Personnel%20Statistics&p=&action_search=Search&op1=a&m1=a&p1=&f1=&c=&sf=&so=d&rm=&rg=50&sc=0&of=hb">CERN Annual Personnel Statistics</a> </li> <li> <a href="https://cds.cern.ch/collection/CERN Annual Reports">CERN Annual reports</a> </li> <li> <a href="https://cds.cern.ch/collection/FC%20-%20Finance%20Committee?ln=en">CERN accounts</a> </li> <li> <a href="http://cds.cern.ch/collection/CERN%20Courier%20Issues">CERN Courier</a> </li> <li> <a href="http://cds.cern.ch/journal/CERNBulletin/2015/24/News%20Articles/">CERN Bulletin</a> </li> <li> <a href="https://cds.cern.ch/collection/CERN%20Yellow%20Reports?ln=en">CERN Yellow Reports</a> </li> </ul> </li> <li class="dropdown"> <a href="/archives/history_CERN/lists-cern-documents" class="dropdown-toggle" data-drupal-link-system-path="node/15511"> Access to CERN documents <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/history_CERN/lists_reports" data-drupal-link-system-path="node/15139">By division / department</a> </li> <li class="dropdown"> <a href="/archives/lists-cern-documents/by-accelerator" class="dropdown-toggle" data-drupal-link-system-path="node/15548"> By accelerator <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/archives/history_CERN/SC-Structure" data-drupal-link-system-path="node/15519">SC</a> </li> <li> <a href="/archives/history_CERN/PS-Digitization-Project" data-drupal-link-system-path="node/15499">PS</a> </li> <li> <a href="/archives/history_CERN/BOOSTER-Structure" data-drupal-link-system-path="node/15562">Booster</a> </li> <li> <a href="/archives/history_CERN/ISR-Structure" data-drupal-link-system-path="node/15515">ISR</a> </li> <li> <a href="/archives/history_CERN/SPS-Structure" data-drupal-link-system-path="node/15514">SPS</a> </li> <li> <a href="/archives/history_CERN/LEP-Structure" data-drupal-link-system-path="node/15518">LEP</a> </li> <li> <a href="/archives/history_CERN/LHC-Structure" data-drupal-link-system-path="node/15520">LHC</a> </li> </ul> </li> <li> <a href="/archives/history_CERN/Scientific_committees" data-drupal-link-system-path="node/15140">By Scientific Committees</a> </li> <li> <a href="/archives/history_CERN/Exp-Programme-01" data-drupal-link-system-path="node/15477">By experimental programme</a> </li> </ul> </li> </ul> </li> <li class="dropdown"> <a href="/about-us" class="dropdown-toggle" data-drupal-link-system-path="node/114"> About us <span class="caret"></span> </a> <ul class="dropdown-menu"> <li> <a href="/about-us/contact-us" data-drupal-link-system-path="node/10">Contact us</a> </li> <li> <a href="/about-us/mission" data-drupal-link-system-path="node/7">Mission</a> </li> <li> <a href="/about-us/structure" data-drupal-link-system-path="node/9">Structure</a> </li> <li class="dropdown"> <a href="/about-us/sipb" class="dropdown-toggle" data-drupal-link-system-path="node/8"> Scientific Information Policy Board <span class="caret"></span> </a> <font face="CERNIcons, CernIcons, cern-icons"> b </font> <ul class="dropdown-menu"> <li> <a href="/about-us/sipb/mandate" data-drupal-link-system-path="node/139">Mandate of the SIPB</a> </li> <li> <a href="/about-us/sipb/cern-objects-preservation-policy" data-drupal-link-system-path="node/194">CERN Objects Preservation Policy</a> </li> <li> <a href="/about-us/sipb/history-sipb" data-drupal-link-system-path="node/195">History of the SIPB</a> </li> </ul> </li> <li> <a href="/about-us/projects" data-drupal-link-system-path="node/155">Current projects</a> </li> </ul> </li> <li class="dropdown"> <a href="/practical-information" class="dropdown-toggle" data-drupal-link-system-path="node/117"> Practical info <span class="caret"></span> </a> <ul class="dropdown-menu"> <li> <a href="/search-and-read/borrow-from-library">Borrow and renew</a> </li> <li> <a href="/practical-information/remote-access-e-resources" data-drupal-link-system-path="node/16">Remote access to e-resources</a> </li> <li> <a href="/practical-information/faq" data-drupal-link-system-path="practical-information/faq">FAQ</a> </li> <li> <a href="/practical-information/glossary" data-drupal-link-system-path="practical-information/glossary">Glossary</a> </li> <li> <a href="/practical-information/library-opening-hours" data-drupal-link-system-path="node/11">Library location and opening hours</a> </li> </ul> </li> <li class="dropdown-toggle search-item cern-search"> <a href="#" class="cern-item-search search-link" onClick="openSearch()">SEARCH</a> <div id="cern-search-overlay"> <div class="close-cern-search" onClick="closeSearch()"></div> <div class="col-md-offset-2 col-md-8"> <div role="search" class="block block-search block-search-form-block"> <form class="search-block-form" data-drupal-selector="search-block-form" action="/search/node" method="get" id="search-block-form" accept-charset="UTF-8" data-drupal-form-fields="edit-keys"> <div class="form-item js-form-item form-type-search js-form-type-search form-item-keys js-form-item-keys form-no-label form-group"> <input title="Enter the terms you wish to search for." data-drupal-selector="edit-keys" class="form-search form-control" placeholder='E.G.BIRTH OF WEB, LHC PAGE 1, BULLETIN...' type="search" id="edit-keys" name="keys" value="" size="15" maxlength="128"> </div> <div id="edit-keys--description" class="description help-block">Enter the terms you wish to search for.</div> </form> </div> </div> </div> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container-fluid --> </nav> </nav> </div> </div> </div> </div> </header> <main role="main"> <a id="main-content" tabindex="-1"></a> <div class="container"> <div class="wrapper-center col-md-12 col-sm-12 col-xs-12"> <div class="region region-content"> <div data-drupal-messages-fallback class="hidden"></div> The requested page could not be found. </div> </div> </div> <div class="content-footer-wrapper"> <div> <div class="col-md-12 content-footer-container"> </div> </div> </div> </main> <footer role="contentinfo"> <div class="row cern-footer"> <div class="col-xs-12 col-sm-3 col-md-3 col-lg-3 footer-first-col"> <div class="region region-footercolumn1"> <section id="block-licensewebpages" class="block block-block-content block-block-content38912a05-b33b-4fab-b7a3-7ffd1cfc727f clearfix"> <div id="simple"> <h2>license webpages</h2><div class="tex2jax_process"><p><a href="http://creativecommons.org/licenses/by/4.0/">CC-BY-4.0</a>, for some of the illustrations a different license might apply.</p><div> </div></div> </div> </section> <section id="block-followus" class="block block-block-content block-block-content802f6eb2-a630-4eb3-b6fc-8583d5b5cda7 clearfix"> <div id="simple--2"> <h2>Follow us</h2><div class="tex2jax_process"><div class="field field--name-body field--type-text-with-summary field--label-hidden field--item"> <p><span style="font-size:36px;"><span style="font-family: CERNIcons, CernIcons, cern-icons;"><a href="https://www.facebook.com/CERNLibrary/">v </a><a href="https://mattermost.web.cern.ch/sis-team"><img alt="RCS-SIS Mattermost channel" data-entity-type="file" data-entity-uuid="22180ca7-10e4-4f41-b73a-178de33b1b5d" height="36" width="36" src="/sites/default/files/inline-images/mattermost-logomark-white_0.png" loading="lazy"></a></span></span></p> </div></div> </div> </section> </div> </div> <div class="col-xs-12 col-sm-8 col-md-8 col-lg-8 footer-second-col"> <div class="row"> <!-- CONTACT US --> <div class="col-sm-5 col-md-4 col-md-offset-0 col-lg-4 col-lg-offset-0"> <div class="region region-footercolumn2"> <section id="block-address" class="block block-block-content block-block-content33f99833-f03d-40b5-a541-6ede91de4f0b clearfix"> <div id="simple--3"> <h2>Address</h2><div class="tex2jax_process"><p>CERN<br> Scientific Information Service<br> Building 52/1-052<br> Esplanade des Particules 1<br> P.O. Box<br> 1211 Geneva 23<br> Switzerland</p> <p>Tel.: +41 22 767 2444</p> </div> </div> </section> </div> </div> <!-- general info --> <div class="col-sm-6 col-sm-offset-1 col-md-4 col-md-offset-0 col-lg-4"> <div class=" mb-4"> <div class="region region-footercolumn3"> <nav role="navigation" aria-labelledby="block-quicklinks-menu" id="block-quicklinks"> <h2 id="block-quicklinks-menu">Quick links</h2> <ul class="menu nav"> <li> <a href="/practical-information/faq" data-drupal-link-system-path="practical-information/faq">FAQ</a> </li> <li> <a href="/events" data-drupal-link-system-path="node/105">Events</a> </li> <li> <a href="/search-and-read/online-resources" data-drupal-link-system-path="search-and-read/online-resources">Online resources</a> </li> <li> <a href="http://cern.ch/n-wnd">Library newsletter</a> </li> <li> <a href="/about-us/structure" data-drupal-link-system-path="node/9">Structure</a> </li> </ul> </ul> </nav> <nav role="navigation" aria-labelledby="block-credits-menu" id="block-credits"> <h2 id="block-credits-menu">Credits</h2> <ul class="menu nav"> <li> <a href="/credits-pictures" data-drupal-link-system-path="node/153">Pictures</a> </li> </ul> </ul> </nav> </div> </div> </div> <!-- cern and you --> <div class="col-sm-6 col-sm-offset-6 col-md-4 col-md-offset-0 col-lg-4 col-lg-offset-0"> <div class=" mb-4"> <div class="region region-footercolumn4"> <nav role="navigation" aria-labelledby="block-generallinks-menu" id="block-generallinks"> <h2 id="block-generallinks-menu">GENERAL LINKS</h2> <ul class="menu nav"> <li> <a href="https://home.cern/data-privacy-protection-policy">Data Privacy Protection Policy</a> </li> <li> <a href="/privacy-notices" data-drupal-link-system-path="node/15485">Privacy notices</a> </li> <li> <a href="https://home.cern/cookies">Cookies</a> </li> <li> <a href="mailto:abuse@cern.ch">Report abuse</a> </li> </ul> </ul> </nav> <nav role="navigation" aria-labelledby="block-reachus-menu" id="block-reachus"> <h2 id="block-reachus-menu">Reach us</h2> <ul class="menu nav"> <li> <a href="/about-us/contact-us" data-drupal-link-system-path="node/10">Contact us</a> </li> <li> <a href="https://maps.web.cern.ch/?xmin=2493041.38&ymin=1120926.86&xmax=2493335.06&ymax=1121072.38&basemap=plan&mode=2D">Building 52 (MapCERN)</a> </li> </ul> </ul> </nav> </div> </div> </div> </div> </div> <div class="col-xs-1 col-sm-1 col-md-1 col-lg-1 footer-last-logo"> <a href="https://home.cern/" title="CERN" target="_blank"><img src="/themes/custom/cern-theme/logo.svg" alt="CERN"/></a> </div> </div> <div class="copy-wrapper light"> <a href="https://copyright.web.cern.ch/"> Copyright </a> © 2024 CERN</div> </footer> </div> <div class="b-accessibility-menu__button js-accessibility-btn am-skip" id="b-accessibility-menu"></div> <div class="b-accessibility-menu__wrapper js-accessibility-menu am-skip"> <div class="b-accessibility-menu am-skip"> <div class="b-accessibility-menu__header am-skip"> <div class="b-accessibility-menu__title am-skip">Accessibility menu</div> <div class="b-accessibility-menu__close js-accessibility-close am-skip"></div> </div> <div class="b-accessibility-menu__content am-skip"> <div class="b-accessibility-menu__items am-skip"> <div class="b-accessibility-menu__item-wrapper am-skip"> <div class="b-accessibility-menu__item am-skip type-contrast" data-type="contrast" data-title="Contrast settings"> <div class="b-accessibility-menu__title am-skip"><span class="am-skip">Contrast settings</span></div> <div class="b-accessibility-menu__links am-skip"> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="High contrast"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Inversion"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="White"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Comfort"></div> </div> </div> </div> <div class="b-accessibility-menu__item-wrapper am-skip"> <div class="b-accessibility-menu__item am-skip type-font_size" data-type="font_size" data-title="Font size"> <div class="b-accessibility-menu__title am-skip"><span class="am-skip">Font size</span></div> <div class="b-accessibility-menu__links am-skip"> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Font size"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Font size"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Font size"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Font size"></div> </div> </div> </div> <div class="b-accessibility-menu__item-wrapper am-skip"> <div class="b-accessibility-menu__item am-skip type-letter_spacing" data-type="letter_spacing" data-title="Letter spacing"> <div class="b-accessibility-menu__title am-skip"><span class="am-skip">Letter spacing</span></div> <div class="b-accessibility-menu__links am-skip"> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Increased interval"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Moderate interval"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Wide interval"></div> </div> </div> </div> <div class="b-accessibility-menu__item-wrapper am-skip"> <div class="b-accessibility-menu__item am-skip type-line_height" data-type="line_height" data-title="Line height"> <div class="b-accessibility-menu__title am-skip"><span class="am-skip">Line height</span></div> <div class="b-accessibility-menu__links am-skip"> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Line height (1.5x)"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Line height (1.75x)"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Line height (2x)"></div> </div> </div> </div> <div class="b-accessibility-menu__item-wrapper am-skip"> <div class="b-accessibility-menu__item am-skip type-images" data-type="images" data-title="Images"> <div class="b-accessibility-menu__title am-skip"><span class="am-skip">Images</span></div> <div class="b-accessibility-menu__links am-skip"> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Grayscale"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Disabled"></div> </div> </div> </div> <div class="b-accessibility-menu__item-wrapper am-skip"> <div class="b-accessibility-menu__item am-skip type-font_style" data-type="font_style" data-title="Font"> <div class="b-accessibility-menu__title am-skip"><span class="am-skip">Font</span></div> <div class="b-accessibility-menu__links am-skip"> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Serif"></div> <div class="b-accessibility-menu__link js-accessibility-link am-skip" data-title="Sans serif"></div> </div> </div> </div> </div> <div class="b-accessibility-menu__reset js-accessibility-reset am-skip">Reset the settings</div> </div> </div> </div> <script type="application/json" data-drupal-selector="drupal-settings-json">{"path":{"baseUrl":"\/","pathPrefix":"","currentPath":"","currentPathIsAdmin":false,"isFront":false,"currentLanguage":"en"},"pluralDelimiter":"\u0003","suppressDeprecationErrors":true,"ajaxPageState":{"libraries":"eJxlkFFywyAMRC9EoiMxAssOrkAMEqlz--I4TT3NByM97bCgxRhJNYXEyR4-U-kQVR2qkvlUVoomDVaFOW2eZREfhXsuPql2ckHE1BpWqFLlTu00MRG2VF2kVvxEd6-G1hV2vgy-HHzoLDilsjzFV38Iu0vABmd4KgGVYGEJyMPpwb83IhOWD0Em0pJqJYNTf72l5cbj2Dr-ISwtyAYTzdjZ3oORwzAh-MeONhv1C6bWK_L1hS6j3VbcYCTY606SBY7iJMxdIxp5ypj4_ZQ-1CjDvpPryVc0G6soaMqV6XoU901hlpb9X8Yfkx8rlrgH","theme":"cernclean","theme_token":null},"ajaxTrustedUrl":[],"colorbox":{"opacity":"0.85","current":"{current} of {total}","previous":"\u00ab Prev","next":"Next \u00bb","close":"Close","maxWidth":"98%","maxHeight":"98%","fixed":true,"mobiledetect":true,"mobiledevicewidth":"480px"},"matomo":{"disableCookies":false,"trackMailto":true,"trackColorbox":true},"data":{"extlink":{"extTarget":true,"extTargetNoOverride":false,"extNofollow":false,"extNoreferrer":false,"extFollowNoOverride":false,"extClass":"0","extLabel":"(link is external)","extImgClass":false,"extSubdomains":false,"extExclude":"","extInclude":"","extCssExclude":"","extCssExplicit":"","extAlert":false,"extAlertText":"This link will take you to an external web site. We are not responsible for their content.","mailtoClass":"0","mailtoLabel":"(link sends email)","extUseFontAwesome":false,"extIconPlacement":"append","extFaLinkClasses":"fa fa-external-link","extFaMailtoClasses":"fa fa-envelope-o","whitelistedDomains":[]}},"bootstrap":{"forms_has_error_value_toggle":1,"modal_animation":1,"modal_backdrop":"true","modal_focus_input":1,"modal_keyboard":1,"modal_select_text":1,"modal_show":1,"modal_size":"","popover_enabled":1,"popover_animation":1,"popover_auto_close":1,"popover_container":"body","popover_content":"","popover_delay":"0","popover_html":0,"popover_placement":"right","popover_selector":"","popover_title":"","popover_trigger":"click","tooltip_enabled":1,"tooltip_animation":1,"tooltip_container":"body","tooltip_delay":"0","tooltip_html":0,"tooltip_placement":"auto left","tooltip_selector":"","tooltip_trigger":"hover"},"mathjax":{"config_type":0,"config":{"tex2jax":{"inlineMath":[["$","$"],["\\(","\\)"]],"processEscapes":"true"},"showProcessingMessages":"false","messageStyle":"none"}},"user":{"uid":0,"permissionsHash":"f525f4f72b1f8f00744826c1e915db4416929091db3787c36c475786f77af2fe"}}</script> <script src="/core/assets/vendor/underscore/underscore-min.js?v=1.13.6"></script> <script src="/core/assets/vendor/once/once.min.js?v=1.0.1"></script> <script src="/core/misc/drupalSettingsLoader.js?v=10.2.8"></script> <script src="/core/misc/drupal.js?v=10.2.8"></script> <script src="/core/misc/drupal.init.js?v=10.2.8"></script> <script src="/core/assets/vendor/tabbable/index.umd.min.js?v=6.2.0"></script> <script src="/core/assets/vendor/js-cookie/js.cookie.min.js?v=3.0.5"></script> <script src="/modules/custom/cern-dev-status/js/cern_dev_status.js?v=3.1.2"></script> <script src="/modules/custom/cern-dev-status/js/cern_dev_status_expand.js?v=3.1.2"></script> <script src="/modules/custom/cern-loading/js/cern_loading.js?sl37c0"></script> <script src="/modules/contrib/colorbox/js/colorbox.js?v=10.2.8"></script> <script src="/modules/contrib/colorbox/styles/default/colorbox_style.js?v=10.2.8"></script> <script src="/libraries/colorbox/jquery.colorbox-min.js?v=10.2.8"></script> <script src="/sites/default/modules/colorbox_inline/js/colorbox_inline.js?sl37c0"></script> <script src="/modules/contrib/matomo/js/matomo.js?v=10.2.8"></script> <script src="/core/misc/progress.js?v=10.2.8"></script> <script src="/themes/contrib/bootstrap/js/misc/progress.js?sl37c0"></script> <script src="/core/assets/vendor/loadjs/loadjs.min.js?v=4.2.0"></script> <script src="/core/misc/debounce.js?v=10.2.8"></script> <script src="/core/misc/announce.js?v=10.2.8"></script> <script src="/core/misc/message.js?v=10.2.8"></script> <script src="/themes/contrib/bootstrap/js/misc/message.js?sl37c0"></script> <script src="/core/misc/ajax.js?v=10.2.8"></script> <script src="/themes/contrib/bootstrap/js/misc/ajax.js?sl37c0"></script> <script src="//framework.web.cern.ch/framework/3.0/js/prism/prism.js"></script> <script src="/themes/custom/cern-base-theme/js/cernbase.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/components/social-sharing.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/components/footer.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/agenda-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/faq-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/news-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/resources-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/stories-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/taxonomies-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/search-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/views/common-views.js?sl37c0"></script> <script src="/themes/custom/cern-base-theme/js/box-effects.js?sl37c0"></script> <script src="//framework.web.cern.ch/framework/3.0/js/colorbox/jquery.colorbox-min.js"></script> <script src="//framework.web.cern.ch/framework/3.0/js/scroll-magic/ScrollMagic.min.js"></script> <script src="//framework.web.cern.ch/framework/3.0/js/scroll-magic/text-effects.js"></script> <script src="/themes/custom/cern-theme/js/anchor-fix.js?sl37c0"></script> <script src="/themes/custom/cern-theme/js/cernclean.js?sl37c0"></script> <script src="/modules/contrib/extlink/extlink.js?v=10.2.8"></script> <script src="/modules/contrib/webform/js/webform.behaviors.js?v=10.2.8"></script> <script src="/core/misc/states.js?v=10.2.8"></script> <script src="/themes/contrib/bootstrap/js/misc/states.js?sl37c0"></script> <script src="/modules/contrib/webform/js/webform.states.js?v=10.2.8"></script> <script src="/modules/contrib/webform/modules/webform_bootstrap/js/webform_bootstrap.states.js?v=10.2.8"></script> <script src="/sites/default/modules/skat__obfuscate_email/js/obfuscate_email.js?v=10.2.8"></script> <script src="/themes/custom/cern-base-theme/sass/bootstrap/javascripts/bootstrap.min.js?sl37c0"></script> <script src="/themes/contrib/bootstrap/js/drupal.bootstrap.js?sl37c0"></script> <script src="/themes/contrib/bootstrap/js/attributes.js?sl37c0"></script> <script src="/themes/contrib/bootstrap/js/theme.js?sl37c0"></script> <script src="/themes/contrib/bootstrap/js/popover.js?sl37c0"></script> <script src="/themes/contrib/bootstrap/js/tooltip.js?sl37c0"></script> <script src="/sites/default/modules/mathjax/js/config.js?v=10.2.8"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script src="/sites/default/modules/mathjax/js/setup.js?v=10.2.8"></script> <script src="/modules/custom/cern-toolbar/assets/js/cern_toolbar.js?v=1.x"></script> <script src="/libraries/codesnippet/lib/highlight/highlight.pack.js?v=10.2.8"></script> <script src="/modules/contrib/codesnippet/js/codesnippet.js?v=10.2.8"></script> </body> </html>