CINXE.COM

Welcome to the Schoop Lab

<!DOCTYPE html> <html itemscope="itemscope" itemtype="http://schema.org/WebPage"lang="en"> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <title>Welcome to the Schoop Lab</title> <style type='text/css'> </style> <meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" type="application/rss+xml" title="Welcome to the Schoop Lab &raquo; Feed" href="https://schoop.princeton.edu/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/schoop.princeton.edu\/wp-includes\/js\/wp-emoji.js","twemoji":"https:\/\/schoop.princeton.edu\/wp-includes\/js\/twemoji.js"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://schoop.princeton.edu/wp-includes/css/dist/block-library/style.css' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='contact-form-7-css' href='https://schoop.princeton.edu/wp-content/plugins/contact-form-7/includes/css/styles.css' type='text/css' media='all' /> <link rel='stylesheet' id='evolve-bootstrap-css' href='https://schoop.princeton.edu/wp-content/themes/evolve/assets/css/bootstrap.min.css' type='text/css' media='all' /> <link rel='stylesheet' id='evolve-fw-css' href='https://schoop.princeton.edu/wp-content/themes/evolve/assets/css/fw-all.min.css' type='text/css' media='all' /> <link rel='stylesheet' id='evolve-style-css' href='https://schoop.princeton.edu/wp-content/themes/evolve/style.css' type='text/css' media='all' /> <style id='evolve-style-inline-css' type='text/css'> .navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover, .navbar-nav .active > .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show > .nav-link, .navbar-nav li.menu-item.current-menu-item > a, .navbar-nav li.menu-item.current-menu-parent > a, .navbar-nav li.menu-item.current-menu-ancestor > a, .navbar-nav li a:hover, .navbar-nav li:hover > a, .navbar-nav li:hover, .social-media-links a:hover { color: #ffffff; } .thumbnail-post:hover img { -webkit-transform: scale(1.1,1.1); -ms-transform: scale(1.1,1.1); transform: scale(1.1,1.1); } .thumbnail-post:hover .mask { opacity: 1; } .thumbnail-post:hover .icon { opacity: 1; top: 50%; margin-top: -25px; } .content { background-color: #ffffff; } .content { padding-top: 35px; padding-bottom: 0px; } .navbar-nav .dropdown-menu { background-color: #273039; } .navbar-nav .dropdown-item:focus, .navbar-nav .dropdown-item:hover { background: none; } .menu-header, .sticky-header { background-color: #273039; } .header-v1 .header-search .form-control:focus, .sticky-header .header-search .form-control:focus { background-color: #1b242d; } .header-pattern { background-color: #2e0f54; } .header-search .form-control, .header-search .form-control:focus, .header-search .form-control::placeholder { color: #999999; } body { font-size: 1rem; font-family: Roboto; font-weight: 300; color: #212529; } #website-title, #website-title a { font-size: 39px; font-family: Roboto; font-weight: 400; color: #ffffff; } #tagline { font-size: 13px; font-family: Roboto; font-weight: 400; color: #aaaaaa; } .post-title, .post-title a, .blog-title { font-size: 28px; font-family: Roboto; font-weight: 400; color: #51545c; } .post-title { margin: 0; } .post-content { font-size: 16px; font-family: Roboto; font-weight: 400; color: #333333; } body{ color:#333333; } #sticky-title { font-size: 25px; font-family: Roboto; font-weight: 400; color: #ffffff; } .page-nav a, .navbar-nav .nav-link, .navbar-nav .dropdown-item, .navbar-nav .dropdown-menu, .menu-header, .header-wrapper .header-search, .sticky-header, .navbar-toggler { font-size: 15px; font-family: Roboto; font-weight: 400; color: #999999; } #bootstrap-slider .carousel-caption h5 { font-size: 36px; font-family: Roboto; } #bootstrap-slider .carousel-caption p { font-size: 18px; font-family: Roboto; color: #ffffff; } #parallax-slider .carousel-caption h5 { font-size: 36px; font-family: Roboto; } #parallax-slider .carousel-caption p { font-size: 18px; font-family: Roboto; } #posts-slider h5 a { font-size: 36px; font-family: Roboto; } #posts-slider p { font-size: 18px; font-family: Roboto; } .widget-title, .widget-title a.rsswidget { font-size: 19px; font-family: Roboto; font-weight: 400; color: #333333; } .widget-content, .aside, .aside a { font-size: 13px; font-family: Roboto; font-weight: 400; color: #333333; }.widget-content, .widget-content a, .widget-content .tab-holder .news-list li .post-holder a, .widget-content .tab-holder .news-list li .post-holder .meta{ color:#333333; } .content-box h5.card-title { font-size: 30px; font-family: Roboto; font-weight: 400; color: #6b6b6b; } .content-box p { font-size: 22px; font-family: Roboto; font-weight: 400; color: #888888; } h3.content-box-section-title { font-size: 30px; font-family: Roboto; font-style: 700; text-align: center; color: #333333; } h3.testimonials-section-title { font-size: 30px; font-family: Roboto; font-style: 700; text-align: center; color: #ffffff; } h3.counter-circle-section-title { font-size: 30px; font-family: Roboto; font-style: 700; text-align: center; color: #ffffff; } .counter-circle-text, .counter-circle-text h5 { font-size: 1.5rem; font-family: Roboto; font-weight: 300; color: #ffffff; } h3.custom-content-section-title { font-size: 30px; font-family: Roboto; font-style: 700; text-align: center; color: #ffffff; } h1 { font-size: 46px; font-family: Roboto; font-weight: 400; color: #333333; } h2 { font-size: 40px; font-family: Roboto; font-weight: 400; color: #333333; } h3 { font-size: 34px; font-family: Roboto; font-weight: 400; color: #333333; } h4 { font-size: 27px; font-family: Roboto; font-weight: 400; color: #333333; } h5 { font-size: 20px; font-family: Roboto; font-weight: 400; color: #333333; } h6 { font-size: 14px; font-family: Roboto; font-weight: 400; color: #333333; } #copyright, #copyright a { font-size: .7rem; font-family: Roboto; font-weight: 300; color: #999999; } .home-content-boxes .card { background: #efefef; } .home-content-boxes { padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; } .content-box-1 [class*=" fa-"] { color: #afbbc1; } .content-box-2 [class*=" fa-"] { color: #afbbc1; } .content-box-3 [class*=" fa-"] { color: #afbbc1; } .content-box-4 [class*=" fa-"] { color: #afbbc1; } .home-testimonials { background-color: #8bb9c1; padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; } .home-testimonials .carousel { background-color:#71989e; padding: 2rem; } .home-testimonials blockquote, .home-testimonials blockquote footer { color:#ffffff } .home-counter-circle { background-color: #f0f0f0; padding-top: 40px; padding-bottom: 40px; padding-left: 0px; padding-right: 0px; } .home-custom-content { background-color: #93f2d7; padding-top: 40px; padding-bottom: 40px; padding-left: 0px; padding-right: 0px; } #backtotop { right: 2rem; } .widget-content { background: none; border: none; -webkit-box-shadow: none; box-shadow: none; } .widget::before { -webkit-box-shadow: none; box-shadow: none; } a, .page-link, .page-link:hover, code, .widget_calendar tbody a, .page-numbers.current { color: #0bb697; } .breadcrumb-item:last-child, .breadcrumb-item+.breadcrumb-item::before, .widget a, .post-meta, .post-meta a, .navigation a, .post-content .number-pagination a:link, #wp-calendar td, .no-comment, .comment-meta, .comment-meta a, blockquote, .price del { color: #999999; } a:hover { color: #1fcaab; } .header { padding-top: 40px; padding-bottom: 40px; } .header.container { padding-left: 30px; padding-right: 30px; } .page-nav ul > li, .navbar-nav > li { padding: 0 8px; } .header-block { background-color: #273039; background: -o-radial-gradient(circle, #273039, #18212a); background: radial-gradient(circle, #273039, #18212a); background-repeat: no-repeat; } .btn, a.btn, button, .button, .widget .button, input#submit, input[type=submit], .post-content a.btn, .woocommerce .button { background: #73a09c; background-image: -webkit-gradient( linear, left bottom, left top, from(#73a09c), to(#73a09c) ); background-image: -o-linear-gradient( bottom, #73a09c, #73a09c ); background-image: linear-gradient( to top, #73a09c, #73a09c ); color: #f4f4f4; text-shadow: none; border-color: #73a09c; border-radius: .3em; border-width: 1pxpx; border-style: solid; -webkit-box-shadow: 0 2px 0 #638c88; box-shadow: 0 2px 0 #638c88; } .btn:hover, a.btn:hover, button:hover, .button:hover, .widget .button:hover, input#submit:hover, input[type=submit]:hover, .carousel-control-button:hover, .header-wrapper .woocommerce-menu .btn:hover { color: #ffffff; border-color: #313a43; background: #313a43; background-image: -webkit-gradient( linear, left bottom, left top, from( #313a43 ), to( #313a43 ) ); background-image: -o-linear-gradient( bottom, #313a43, #313a43 ); background-image: linear-gradient( to top, #313a43, #313a43 ); -webkit-box-shadow: 0 2px 0 #313a43; box-shadow: 0 2px 0 #313a43; border-width: 1pxpx; border-style: solid; } input[type=text], input[type=email], input[type=url], input[type=password], input[type=file], input[type=tel], textarea, select, .form-control, .form-control:focus, .select2-container--default .select2-selection--single, a.wpml-ls-item-toggle, .wpml-ls-sub-menu a { background-color: #ffffff; border-color: #E0E0E0; color: #888888; } .custom-checkbox .custom-control-input:checked~.custom-control-label::before, .custom-radio .custom-control-input:checked~.custom-control-label::before, .nav-pills .nav-link.active, .dropdown-item.active, .dropdown-item:active, .woocommerce-store-notice, .comment-author .fn .badge-primary, .widget.woocommerce .count, .woocommerce-review-link, .woocommerce .onsale, .stars a:hover, .stars a.active { background: #492fb1; } .form-control:focus, .input-text:focus, input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=file]:focus, input[type=tel]:focus, textarea:focus, .page-link:focus, select:focus { border-color: transparent; box-shadow: 0 0 .7rem rgba(73, 47, 177, 0.9); } .custom-control-input:focus~.custom-control-label::before { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(73, 47, 177, 0.25); } .btn.focus, .btn:focus { box-shadow: 0 0 0 0.2rem rgba(73, 47, 177, 0.25); } :focus { outline-color: rgba(73, 47, 177, 0.25); } code { border-left-color: #492fb1; } #bootstrap-slider .carousel-caption h5 { display: block; } #bootstrap-slider .carousel-caption h5 { background: rgba(0, 0, 0, 0.24); padding: 1rem; } #bootstrap-slider .carousel-caption p { background: rgba(70, 5, 177, 1); padding: 1rem; } #parallax-slider .carousel-caption h5 { display: block; } #posts-slider .carousel-caption h5 { display: block; } @media (min-width: 992px), (min-width: 1200px), (min-width: 1260px) and (max-width: 1198.98px) { .container, #wrapper { width: 100%; max-width: 1200px; } .posts.card-deck > .card { min-width: calc(50% - 30px); max-width: calc(50% - 30px); } .posts.card-deck > .card.p-4 { min-width: calc(50% - 2rem); max-width: calc(50% - 2rem); }} @media (max-width: 991.98px) { .posts.card-deck > .card { min-width: calc(50% - 30px); max-width: calc(50% - 30px); } .posts.card-deck > .card.p-4 { min-width: calc(50% - 2rem); max-width: calc(50% - 2rem); }} @media (min-width: 768px) { .sticky-header { width: 100%; left: 0; right: 0; margin: 0 auto; z-index: 99999; } .page-nav, .header-wrapper .main-menu { padding-top: 8px; padding-bottom: 8px; } a:hover .link-effect, a:focus .link-effect { -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .posts.card-columns { -webkit-column-count: 2; column-count: 2; } .header-logo-container img { float: right; margin: 15px 0; } .header-v1 .social-media-links li:last-child a { padding-right: 0; }} @media (max-width: 767.98px) { .page-nav ul li, .page-nav ul, .navbar-nav li, .navbar-nav, .navbar-nav .dropdown-menu, .navbar-toggler { border-color: #1b242d; } .navbar-toggler, .page-nav ul li, .page-nav ul, .navbar-nav li, .navbar-nav, .navbar-nav .dropdown-menu { background: #1f2831; } .posts.card-columns { -webkit-column-count: 1; column-count: 1; } .posts.card-deck > .card { min-width: calc(100% - 30px); max-width: 100%; } .posts.card-deck > .card.p-4 { min-width: calc(100% - 2rem); max-width: 100%; } #bootstrap-slider .carousel-caption h5, #parallax-slider .carousel-caption h5, #posts-slider .carousel-caption h5 { font-size: 1.8rem; }} @media (min-width: 576px) {} @media (max-width: 575.98px) { .header-v1 .search-form .form-control { background-color: #1f2831; } #bootstrap-slider .carousel-caption h5, #parallax-slider .carousel-caption h5, #posts-slider .carousel-caption h5 a { font-size: 1.5rem; margin: 0; }} </style> <link rel="https://api.w.org/" href="https://schoop.princeton.edu/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://schoop.princeton.edu/wp-json/wp/v2/pages/2" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://schoop.princeton.edu/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel="canonical" href="https://schoop.princeton.edu/" /> <link rel='shortlink' href='https://schoop.princeton.edu/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://schoop.princeton.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fschoop.princeton.edu%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://schoop.princeton.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fschoop.princeton.edu%2F&#038;format=xml" /> <meta name="generator" content="Redux 4.5.6" /><style> #primary { display: none; } .content { display: none; } </style> <style type="text/css" id="wp-custom-css"> body { background-color:gainsboro; } </style> <style id="sccss">.col-md-6 { width: 50%; display: none; }</style> </head> <body class="home page-template-default page page-id-2" itemscope="itemscope" itemtype="http://schema.org/WebPage"> <script type="text/javascript" id="bbp-swap-no-js-body-class"> document.body.className = document.body.className.replace( 'bbp-no-js', 'bbp-js' ); </script> <a class="btn screen-reader-text sr-only sr-only-focusable" href="#primary">Skip to main content</a> <div id="wrapper"><div class="sticky-header"><div class="container"><div class="row align-items-center"><div class="col-auto"><div class="row align-items-center"><div class="col-auto pr-0"><a href="https://schoop.princeton.edu"><img src="https://schoopcpanel.deptcpanel.princeton.edu/wp-content/uploads/2017/08/Picture1_325x66.png" alt="Welcome to the Schoop Lab" /></a></div><div class="col-auto pr-0"><a id="sticky-title" href="https://schoop.princeton.edu">Welcome to the Schoop Lab</a></div></div></div><nav class="navbar navbar-expand-md col"> <div class="navbar-toggler" data-toggle="collapse" data-target="#sticky-menu" aria-controls="primary-menu" aria-expanded="false" aria-label="Sticky"> <span class="navbar-toggler-icon-svg"></span> </div><div id="sticky-menu" class="collapse navbar-collapse" data-hover="dropdown" data-animations="fadeInUp fadeInDown fadeInDown fadeInDown"><ul id="menu-topmenu" class="navbar-nav mr-auto align-items-center"><li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-46" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item active menu-item-46 nav-item"><a href="https://schoop.princeton.edu/" class="nav-link"><span class="link-effect" data-hover="Home">Home</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-47" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-47 nav-item"><a href="https://schoop.princeton.edu/people/" class="nav-link"><span class="link-effect" data-hover="People">People</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-45" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45 nav-item"><a href="https://schoop.princeton.edu/research/" class="nav-link"><span class="link-effect" data-hover="Research">Research</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-44" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44 nav-item"><a href="https://schoop.princeton.edu/publications/" class="nav-link"><span class="link-effect" data-hover="Publications">Publications</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-186" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-186 nav-item"><a href="https://schoop.princeton.edu/news/" class="nav-link"><span class="link-effect" data-hover="News">News</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-43" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43 nav-item"><a href="https://schoop.princeton.edu/photos/" class="nav-link"><span class="link-effect" data-hover="Photos">Photos</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-298" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-298 nav-item"><a href="https://schoop.princeton.edu/lab-fun/" class="nav-link"><span class="link-effect" data-hover="Lab Fun">Lab Fun</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" id="menu-item-1059" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1059 nav-item"><a href="https://schoop.princeton.edu/forum/" class="nav-link"><span class="link-effect" data-hover="Forum">Forum</span></a></li> </ul></div></nav><form action="https://schoop.princeton.edu" method="get" class="header-search search-form col-auto ml-auto"><label><input type="text" aria-label="Search" name="s" class="form-control" placeholder="Type your search"/><svg class="icon icon-search" aria-hidden="true" role="img"> <use xlink:href="https://schoop.princeton.edu/wp-content/themes/evolve/assets/images/icons.svg#icon-search"></use> </svg></label></form></div></div></div><!-- .sticky-header --><div class="header-height"><div class="header-block"></div><header class="header-v1 header-wrapper" role="banner" itemscope="itemscope" itemtype="http://schema.org/WPHeader"> <div class="header-pattern"> <div class="header container"> <div class="row align-items-center justify-content-between"> <div class="col-12 order-1"></div><div class='col col-md-6 col-sm-12 order-2 order-md-3 header-logo-container'><a href=https://schoop.princeton.edu><img alt='Welcome to the Schoop Lab' src=https://schoopcpanel.deptcpanel.princeton.edu/wp-content/uploads/2017/08/Picture1_325x66.png /></a></div><div class='col-md-auto mr-md-auto order-2 order-md-1'><h1 id="website-title"><a href="https://schoop.princeton.edu">Welcome to the Schoop Lab</a> </h1></div> </div><!-- .row .align-items-center --> </div><!-- .header .container --> </div><!-- .header-pattern --> <div class="menu-header"> <div class="container"> <div class="row align-items-md-center"> <nav class="navbar navbar-expand-md main-menu mr-auto col-12 col-sm"><button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#primary-menu" aria-controls="primary-menu" aria-expanded="false" aria-label="Primary"> <svg class="icon icon-menu" aria-hidden="true" role="img"> <use xlink:href="https://schoop.princeton.edu/wp-content/themes/evolve/assets/images/icons.svg#icon-menu"></use> </svg> </button> <div id="primary-menu" class="collapse navbar-collapse" data-hover="dropdown" data-animations="fadeInUp fadeInDown fadeInDown fadeInDown"><ul id="menu-topmenu-1" class="navbar-nav mr-auto"><li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item active menu-item-46 nav-item"><a href="https://schoop.princeton.edu/" class="nav-link"><span class="link-effect" data-hover="Home">Home</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-47 nav-item"><a href="https://schoop.princeton.edu/people/" class="nav-link"><span class="link-effect" data-hover="People">People</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-45 nav-item"><a href="https://schoop.princeton.edu/research/" class="nav-link"><span class="link-effect" data-hover="Research">Research</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44 nav-item"><a href="https://schoop.princeton.edu/publications/" class="nav-link"><span class="link-effect" data-hover="Publications">Publications</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-186 nav-item"><a href="https://schoop.princeton.edu/news/" class="nav-link"><span class="link-effect" data-hover="News">News</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43 nav-item"><a href="https://schoop.princeton.edu/photos/" class="nav-link"><span class="link-effect" data-hover="Photos">Photos</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-298 nav-item"><a href="https://schoop.princeton.edu/lab-fun/" class="nav-link"><span class="link-effect" data-hover="Lab Fun">Lab Fun</span></a></li> <li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1059 nav-item"><a href="https://schoop.princeton.edu/forum/" class="nav-link"><span class="link-effect" data-hover="Forum">Forum</span></a></li> </ul></div></nav> </div><!-- .row .align-items-center --> </div><!-- .container --> </div><!-- .menu-header --> </header><!-- .header-v1 --></div><!-- header-height --><div class="header-block"><div id='bootstrap-slider' class='carousel slide' data-ride='carousel' data-interval='5000'><div class='carousel-inner carousel-resize'><div class='carousel-item item-2 active'><img class='d-block w-100' src='https://schoopcpanel.deptcpanel.princeton.edu/wp-content/uploads/2017/09/WebsiteGraphic.png' alt='' /><div class="carousel-caption layout-left"><p class='d-none d-md-block'>We are working on the interface between chemistry and physics, using chemical principles to find new materials with exotic physical properties in close collaboration with the Physics Department, located across the street in Jadwin Hall</p></div></div></div></div></div><div class='home-content-boxes'><div class='container'><div class='row'><div class='card-deck mb-0 mb-lg-3'></div></div></div></div> <div class="content"> <div class="container"> <div class="row"> <div id="primary" class="col-sm-12 col-md-8"> <article id="post-2" class="post-2 page type-page status-publish hentry" itemscope="itemscope" itemtype="http://schema.org/Article"> <div class="post-content" itemprop="description"> </div><!-- .post-content --> </article><!-- .post --> </div><!-- #primary --> <aside id="secondary" class="aside col-sm-12 col-md-4"> <div id="recent-posts-3" class="widget widget_recent_entries"><div class="widget-content"> <div class="widget-before-title"><div class="widget-title-background"></div><h3 class="widget-title">Recent News</h3></div> <ul> <li> <a href="https://schoop.princeton.edu/2022/09/30/1067/">A clever chemical route for making thin sheets out of a 3D solid &#8211; Brriana&#8217;s new paper in the focus issue of JPhys Material on Women’s Perspective in Quantum Materials</a> </li> <li> <a href="https://schoop.princeton.edu/2021/06/24/introducing-a-new-mechanism-to-design-nonsymmorphic-topological-semimetals-with-help-from-some-of-our-awesome-collaborators/">Introducing a new mechanism to design nonsymmorphic topological semimetals, with help from some of our awesome collaborators!</a> </li> <li> <a href="https://schoop.princeton.edu/2021/04/16/topological-semimetals-gdsbxte2-x-exhibit-crazy-magnetism-see-details-in-our-newest-paper-that-just-appeared-in-phys-rev-b/">Topological semimetals GdSbxTe2-x exhibit crazy magnetism&#8230; See details in our newest paper that just appeared in Phys. Rev. B.</a> </li> <li> <a href="https://schoop.princeton.edu/2021/03/01/schoop-lab-featured-invited-review-about-the-prospects-of-chemical-exfoliation-for-2d-quantum-materials-in-applied-physics-review/">Schoop Lab Featured Invited Review about the prospects of chemical exfoliation for 2D quantum materials in Applied Physics Review</a> </li> <li> <a href="https://schoop.princeton.edu/2021/01/05/huge-quantum-oscillations-discovered-in-a-2d-topological-insulator-could-this-be-a-sign-of-neutral-fermions-schoop-lab-collaborates-with-princeton-physics-department/">Huge quantum oscillations discovered in a 2D topological insulator! Could this be a sign of neutral fermions &#8211; Schoop Lab collaborates with Princeton Physics Department</a> </li> </ul> </div></div> </aside><!-- #secondary --> </div><!-- .row --> </div><!-- .container --> </div><!-- .content --> <footer class="footer" itemscope="itemscope" itemtype="http://schema.org/WPFooter" role="contentinfo"><div class="container"><div class="row"><div class="col custom-footer"><p id="copyright"><span class="credits">&copy;2017 Schoop Lab &bull; Chemistry Department &bull; Princeton University &bull; Princeton, NJ 08544</span></p></div></div></div><!-- .container --></footer><!-- .footer --><a href="#" id="backtotop" class="btn" role="button">&nbsp;</a></div><!-- #wrapper --><link rel='stylesheet' id='evolve-google-fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A300%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A300%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%7CRoboto%7CRoboto%7CRoboto%7CRoboto%7CRoboto%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A700%7CRoboto%3A700%7CRoboto%3A300%7CRoboto%3A700%7CRoboto%3A700%7CRoboto%3A300%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A300%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%7CRoboto%7CRoboto%7CRoboto%7CRoboto%7CRoboto%7CRoboto%3A400%7CRoboto%3A400%7CRoboto%3A700%7CRoboto%3A700%7CRoboto%3A300%7CRoboto%3A700%7CRoboto%3A700&#038;ver=6.7.2' type='text/css' media='all' /> <link rel='stylesheet' id='evolve-animate-css' href='https://schoop.princeton.edu/wp-content/themes/evolve/assets/css/animate.min.css' type='text/css' media='all' /> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="https://schoop.princeton.edu/wp-includes/js/dist/hooks.js" id="wp-hooks-js"></script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-includes/js/dist/i18n.js" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-content/plugins/contact-form-7/includes/swv/js/index.js" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/schoop.princeton.edu\/wp-json\/", "namespace": "contact-form-7\/v1" } }; /* ]]> */ </script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-content/plugins/contact-form-7/includes/js/index.js" id="contact-form-7-js"></script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-includes/js/jquery/jquery.js" id="jquery-core-js"></script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-includes/js/jquery/jquery-migrate.js" id="jquery-migrate-js"></script> <script type="text/javascript" id="main-js-extra"> /* <![CDATA[ */ var evolve_js_local_vars = {"theme_url":"https:\/\/schoop.princeton.edu\/wp-content\/themes\/evolve","sticky_header":"1","buttons_effect":"animated pulse","scroll_to_top":"1","parallax_slider":"1","footer_reveal":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-content/themes/evolve/assets/js/main.min.js" id="main-js"></script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-content/themes/evolve/assets/fonts/fontawesome/font-awesome-all.min.js" id="evolve-font-awesome-js"></script> <script type="text/javascript" src="https://schoop.princeton.edu/wp-content/themes/evolve/assets/fonts/fontawesome/font-awesome-shims.min.js" id="evolve-font-awesome-shims-js"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10