CINXE.COM

J | Les zones grises des relations de travail et d鈥檈mploi

<!DOCTYPE html> <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> <!--[if lt IE 7 ]> <html lang="fr-FR" class="no-js ie6"> <![endif]--> <!--[if IE 7 ]> <html lang="fr-FR" class="no-js ie7"> <![endif]--> <!--[if IE 8 ]> <html lang="fr-FR" class="no-js ie8"> <![endif]--> <!--[if IE 9 ]> <html lang="fr-FR" class="no-js ie9"> <![endif]--> <!--[if (gt IE 9)|!(IE)]><!--><html lang="fr-FR" class="no-js"> <!--<![endif]--> <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script> <![endif]--> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/favicon.ico" /> <title>J | Les zones grises des relations de travail et d鈥檈mploi</title> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="https://www.teseopress.com/dictionnaire2/xmlrpc.php" /> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//cdn.jsdelivr.net' /> <link rel='dns-prefetch' href='//cdnjs.cloudflare.com' /> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='dns-prefetch' href='//s.w.org' /> <link rel="alternate" type="application/rss+xml" title="Les zones grises des relations de travail et d鈥檈mploi &raquo; J Comments Feed" href="https://www.teseopress.com/dictionnaire2/part/j/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.teseopress.com\/dictionnaire2\/wp-includes\/js\/wp-emoji.js?ver=5.8.2","twemoji":"https:\/\/www.teseopress.com\/dictionnaire2\/wp-includes\/js\/twemoji.js?ver=5.8.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ ( function( window, document, settings ) { var src, ready, ii, tests; // Create a canvas element for testing native browser support of emoji. var canvas = document.createElement( 'canvas' ); var context = canvas.getContext && canvas.getContext( '2d' ); /** * Checks if two sets of Emoji characters render the same visually. * * @since 4.9.0 * * @private * * @param {number[]} set1 Set of Emoji character codes. * @param {number[]} set2 Set of Emoji character codes. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( set1, set2 ) { var stringFromCharCode = String.fromCharCode; // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); var rendered1 = canvas.toDataURL(); // Cleanup from previous test. context.clearRect( 0, 0, canvas.width, canvas.height ); context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); var rendered2 = canvas.toDataURL(); return rendered1 === rendered2; } /** * Detects if the browser supports rendering emoji or flag emoji. * * Flag emoji are a single glyph made of two characters, so some browsers * (notably, Firefox OS X) don't support them. * * @since 4.2.0 * * @private * * @param {string} type Whether to test for support of "flag" or "emoji". * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( type ) { var isIdentical; if ( ! context || ! context.fillText ) { return false; } /* * 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'; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec, * but has landed in Twemoji early, so we can add support for it, too. * * 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( [ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ], [ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ] ); 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( [ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ], [ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ] ); 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 an 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( [ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ], [ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ] ); return ! isIdentical; case 'emoji': /* * Burning Love: Just a hunk, a hunk of burnin' love. * * To test for Emoji 13.1 support, try to render a new emoji: Heart on Fire! * * The Heart on Fire emoji is a ZWJ sequence combining 鉂わ笍 Red Heart, a Zero Width Joiner and 馃敟 Fire. * * 0x2764, 0xfe0f == Red Heart emoji. * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0xD83D, 0xDD25 == Fire. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( [0x2764, 0xfe0f, 0x200D, 0xD83D, 0xDD25], [0x2764, 0xfe0f, 0x200B, 0xD83D, 0xDD25] ); return ! isIdentical; } return false; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {Object} src The url where the script is located. * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = script.type = 'text/javascript'; document.getElementsByTagName( 'head' )[0].appendChild( script ); } tests = Array( 'flag', 'emoji' ); settings.supports = { everything: true, everythingExceptFlag: true }; /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for( ii = 0; ii < tests.length; ii++ ) { settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; if ( 'flag' !== tests[ ii ] ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; } } 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; }; // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { ready = function() { settings.readyCallback(); }; /* * Cross-browser version of adding a dom ready event. */ if ( document.addEventListener ) { document.addEventListener( 'DOMContentLoaded', ready, false ); window.addEventListener( 'load', ready, false ); } else { window.attachEvent( 'onload', ready ); document.attachEvent( 'onreadystatechange', function() { if ( 'complete' === document.readyState ) { settings.readyCallback(); } } ); } 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 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 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.teseopress.com/dictionnaire2/wp-includes/css/dist/block-library/style.css?ver=5.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='book-info-fonts-css' href='https://fonts.googleapis.com/css?family=Droid+Serif%3A400%2C700%2C400i%2C700i%7COswald%3A300%2C400%2C700%2C300i%2C400i%2C700i&#038;ver=5.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://www.teseopress.com/dictionnaire2/wp-includes/css/dashicons.css?ver=5.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='wp-jquery-ui-dialog-css' href='https://www.teseopress.com/dictionnaire2/wp-includes/css/jquery-ui-dialog.css?ver=5.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='footnotetooltip-css-css' href='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/tooltip/css/tooltipster.bundle.min.css?ver=20130713' type='text/css' media='all' /> <link rel='stylesheet' id='footnotetooltip-css2-css' href='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/tooltip/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-shadow.min.css?ver=20130713' type='text/css' media='all' /> <link rel='stylesheet' id='pressbooks-css' href='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/style.css' type='text/css' media='screen' /> <link rel='stylesheet' id='jsfancy-css-css' href='https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.1.20/jquery.fancybox.min.css' type='text/css' media='screen' /> <link rel='stylesheet' id='jsswipe-css-css' href='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/css/spn.css' type='text/css' media='screen' /> <link rel='stylesheet' id='cookie-notice-front-css' href='https://www.teseopress.com/dictionnaire2/wp-content/plugins/cookie-notice/css/front.css?ver=2.4.13' type='text/css' media='all' /> <link rel='stylesheet' id='simplemodal-login-css' href='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/simplemodal-login/css/default.css?ver=2022.1.0.7.003' type='text/css' media='screen' /> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/jquery.js?ver=3.6.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/symbionts/jquery/jquery.columnizer.js?ver=1.6.0' id='columnizer-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/tooltip/js/tooltipster.bundle.js?ver=20130819' id='footnotetooltip-js-js'></script> <script type='text/javascript' src='https://cdn.jsdelivr.net/npm/anchor-js/anchor.min.js?ver=2' id='anchor-js-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/js/script.js?ver=1.0' id='pressbooks-script-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/js/pop-out.js?ver=1.0' id='pb-pop-out-toc-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/js/js.cookie.js?ver=1.0' id='jscookie-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/js/spn.js?ver=1.0' id='jsswipe-js'></script> <script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.1.20/jquery.fancybox.min.js?ver=1.0' id='jsfancy-js'></script> <script async type='text/javascript' id='cookie-notice-front-js-before'> var cnArgs = {"ajaxUrl":"https:\/\/www.teseopress.com\/dictionnaire2\/wp-admin\/admin-ajax.php","nonce":"30da57ac31","hideEffect":"fade","position":"bottom","onScroll":false,"onScrollOffset":100,"onClick":false,"cookieName":"cookie_notice_accepted","cookieTime":2592000,"cookieTimeRejected":2592000,"globalCookie":false,"redirection":false,"cache":false,"revokeCookies":false,"revokeCookiesOpt":"automatic"}; </script> <script async type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/cookie-notice/js/front.js?ver=2.4.13v2' id='cookie-notice-front-js'></script> <link rel="https://api.w.org/" href="https://www.teseopress.com/dictionnaire2/wp-json/" /><meta name="generator" content="WordPress 5.8.2" /> <link rel="canonical" href="https://www.teseopress.com/dictionnaire2/part/j/" /> <link rel='shortlink' href='https://www.teseopress.com/dictionnaire2/?p=37' /> <link rel="alternate" type="application/json+oembed" href="https://www.teseopress.com/dictionnaire2/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.teseopress.com%2Fdictionnaire2%2Fpart%2Fj%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://www.teseopress.com/dictionnaire2/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.teseopress.com%2Fdictionnaire2%2Fpart%2Fj%2F&#038;format=xml" /> <script src="https://www.google.com/recaptcha/api.js?onload=recaptchaLoaded&render=explicit" async defer> </script> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous"> <style> .frontpagelogo img { max-height: 84px; } </style> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-T2T43MLL');</script> <!-- End Google Tag Manager --> </head> <body class="part-template-default single single-part postid-37 cookies-not-set" id="j"> <link href='//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <div class="nav-container"> <nav> <!-- Book Title --> <h1 class="book-title"> <a href="https://www.teseopress.com/dictionnaire2/" title="Les zones grises des relations de travail et d鈥檈mploi" rel="home">Les zones grises des relations de travail et d鈥檈mploi</a> </h1> <div class="sub-nav-left"> <!-- Logo --> <h2 class="pressbooks-logo"><a href="/">TeseoPress</a></h2> </div> <!-- end .sub-nav-left --> <div class="sub-nav-right"> <h2 class="bookHeaderRight"> <a target="_blank" href="https://www.editorialteseo.com/envio-de-proyectos">Soumettre un projet</a> <div class="log-wrap"> <!-- Login/Logout --> <a href="https://www.teseopress.com/dictionnaire2/wp-login.php" class="simplemodal-login">login</a> </div> </h2> <!-- Buy --> <div class="buy"> <!-- <a href="https://www.teseopress.com/dictionnaire2/buy" class="button-red">Acheter</a>--> </div> <!-- --> </div> <!-- end .sub-nav-right --> </nav> <div class="sub-nav"> <!-- Author Name --> <div class="author-wrap"> <h3>Marie-Christine Bureau, Antonella Corsani, Olivier Giraud (directeurs)</h3> </div> <!-- end .author-name --> <!-- social inner pages --> <div class="social-icon-wrapper social-inner-pages"> <div class="social-icon"><a target="_blank" href="https://www.facebook.com/pages/Editorial-Teseo/174160315967464"><img src="https://www.editorialteseo.com/wp-content/themes/modernize/images/icon/dark/social/facebook.png" alt="facebook"></a></div><div class="social-icon"><a target="_blank" href="https://twitter.com/editorialteseo"><img src="https://www.editorialteseo.com/wp-content/themes/modernize/images/icon/dark/social/twitter.png" alt="twitter"></a></div><div class="social-icon"><a target="_blank" href="https://www.youtube.com/channel/UCpWlC0Zqr6EPtRTm-vv32vw"><img src="https://www.editorialteseo.com/wp-content/themes/modernize/images/icon/dark/social/youtube.png" alt="youtube"></a></div><div class="social-icon"><a target="_blank" href="mailto:info@editorialteseo.com"><img src="https://www.editorialteseo.com/wp-content/themes/modernize/images/icon/dark/social/email.png" alt="email"></a></div><div class="social-icon"><a target="_blank" href="https://www.instagram.com/teseoeditorial/"><img src="https://www.editorialteseo.com/wp-content/themes/modernize/images/icon/dark/social/instagram.png" alt="Instagram"></a></div> </div> </div><!-- end sub-nav --> </div> <!-- end .nav-container --> <div class="wrapper"><!-- for sitting footer at the bottom of the page --> <style> .lbar{ color: rgb(171, 51, 51); text-align: center; font-size: 1.5em; font-family: 'Oswald', sans-serif; font-style: normal; font-variant: normal; font-weight: normal; float: left;display:block; margin-left: 5%; } @media screen and (max-width: 1024px) { .lbar{ float:initial; } } </style> <!-- banner --> <div class="divbanner"> <!----> </div> <div class="divbanner_right"> </div> <div id="wrap"> <div id="content" class="annoAllowed hyphenate" lang="fr"> <h2 class="entry-title" style="font-size:2.6em">J</h2> <div class="nav"> <span class="previous"><a title="Informalit茅s dans les Suds" href="https://www.teseopress.com/dictionnaire2/chapter/informalites-dans-les-suds/">Pr茅c茅dent</a></span> <span class="fontdec"> <img width="42" src="/wp-content/plugins/teseopress/themes-book/pressbooks-book/images/fontdec.png"> </span> <span class="up"><a href="#">Up</a></span> <span class="fontinc"> <img width="42" src="/wp-content/plugins/teseopress/themes-book/pressbooks-book/images/fontinc.png"> </span> <!-- <h2 class="entry-title">J</h2> --> <span class="next"><a title="Jeunes" href="https://www.teseopress.com/dictionnaire2/chapter/jeunes/">Suivant</a></span> </div> <script> (function(){ //jQuery(document).ready(function(){ var zoomLevel = 5; //1-4 5 6-9 var levelarg = []; levelarg[1] = ['0.6em','1.4em']; levelarg[2] = ['0.7em','1.4em']; levelarg[3] = ['0.8em','1.4em']; levelarg[4] = ['0.9em','']; levelarg[5] = ['','']; levelarg[6] = ['1.2em','1.3em']; levelarg[7] = ['1.3em','1.3em']; levelarg[8] = ['1.4em','1.3em']; levelarg[9] = ['1.5em','1.3em']; jQuery('.fontdec').click(function(e){ //alert('hee'); e.preventDefault(); if (zoomLevel <= 1) return ; // zoomLevel--; jQuery('#content').css('font-size',levelarg[zoomLevel][0]); jQuery('#content').css('line-height',levelarg[zoomLevel][1]); }); jQuery('.fontinc').click(function(e){ e.preventDefault(); if (zoomLevel >= 9) return ; // zoomLevel++; jQuery('#content').css('font-size',levelarg[zoomLevel][0]); jQuery('#content').css('line-height',levelarg[zoomLevel][1]); }); //}) }()) </script> <div id="post-37" class="part post-37 type-part status-publish hentry"> <div class="entry-content"> </div><!-- .entry-content --> </div><!-- #post-## --> </br></br> </div><!-- #content --> <div id="comments"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Laisser un commentaire <small><a rel="nofollow" id="cancel-comment-reply-link" href="/dictionnaire2/part/j/#respond" style="display:none;">Annuler la r茅ponse</a></small></h3><p class="must-log-in">Vous devez <a href="https://www.teseopress.com/dictionnaire2/wp-login.php?redirect_to=https%3A%2F%2Fwww.teseopress.com%2Fdictionnaire2%2Fpart%2Fj%2F" class="simplemodal-login">锚tre connect茅</a> pour ajouter un commentaire.</p> </div><!-- #respond --> </div><!-- #comments --> <div id="sidebar_background_sticky" style="display: none"></div> <div id="sidebar" class="menu_sticky"> <ul id="booknav"> <!-- If Logged in show ADMIN --> <!-- --> <li class="home-btn"><a href="https://www.teseopress.com/dictionnaire2" title="Accueil">&nbsp;</a></li> <!-- TOC button always there --> <li class="toc-btn"><a href="https://www.teseopress.com/dictionnaire2/table-of-contents" title="Table des mati猫res">&nbsp;</a></li> <!-- download --> <li class="dl-btn"><a id="openbox1" href="javascript:void()" title="T茅l茅charger">&nbsp;</a></li> <script> function openbox1(){ //jQuery.fancybox.open( jQuery('#box1') ,{width:800,height:100, autoHeight:false, autoWidth:false, autoDimensions:false, autoSize:false}); jQuery.fancybox.open( jQuery('#box1') ,{ autoHeight:true, width:300, autoDimensions:true, autoSize:false, helpers: { overlay: { locked: false } }}); return false; } jQuery('#openbox1').click(function(e){ e.preventDefault(); openbox1(); }) </script> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.css" /> <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.pack.js" > </script> <div id="box1" style="display:none;text-align: center;"> <a class="bookdlphp" style="display: block" href="https://www.teseopress.com/dictionnaire2/dl.php?type=1&file=%2B8onPk3kGZlLgNJAK4ZDyX%2Fppn%2BrICcdGFg5PToGwPuB%2BLhx0%2Fouk8eBiSZ3sGlM8njH%2Fq4zPifssG0tJLTTtBY6Poct5e1FRL6vIuT3fIT%2Fn9yN%2BfUyW1DMSacTfZJ%2FncEJWT1dcfnvMjLKBoW5yNQblKNui4txuUCfgwYfSK4pmWYhdXwkmXBE4P0fxf%2F8mY9YNd3anFEYSzRmALx3Yg%3D%3D"><img src="https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/images/download_pdf_notext.png" /></a> <a class="bookdlphp" style="display: block" href="https://www.teseopress.com/dictionnaire2/dl.php?type=2&file=%2B8onPk3kGZlLgNJAK4ZDyX%2Fppn%2BrICcdGFg5PToGwPuB%2BLhx0%2Fouk8eBiSZ3sGlM8njH%2Fq4zPifssG0tJLTTtBY6Poct5e1FRL6vIuT3fIT%2Fn9yN%2BfUyW1DMSacTfZJ%2FncEJWT1dcfnvMjLKBoW5yNQblKNui4txuUCfgwYfSK51OIw%2BS9c521ypaYrSflcgU8CQ1Nc6q9e%2BoObcA2Uzmg%3D%3D"><img src="https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/images/download_epub_notext.png" /></a> </div> <!-- popup download book --> <li class="buy-book-btn"><a id="openbox2" href="javascript:void()" title="Version papier">&nbsp;</a></li> <script> function openbox2(){ //jQuery.fancybox.open( jQuery('#box2') ,{width:800,height:200, autoHeight:false, autoWidth:false, autoDimensions:false, autoSize:false}); jQuery.fancybox.open( jQuery('#box2') ,{ autoHeight:true, width:300, autoDimensions:true, autoSize:false, helpers: { overlay: { locked: false } }}); return false; } jQuery('#openbox2').click(function(e){ e.preventDefault(); openbox2(); }) </script> <div id="box2" style="display:none;text-align: center;"> <a class="tracker_google" data-tracker="Amazon button" target="_blank" href="https://www.amazon.com/dp/1911693409"><img src="https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/images/comprar_amazon_papel.png" /></a> </div> <!-- show anno --> <li class="anno-btn"><a href="javascript:showANNO();" title="Voir commentaires">&nbsp;</a></li> </ul> <!-- Pop out TOC only on READ pages --> <div id="toc"> <a href="#" class="close">Fermer</a> <h2 class="h2toc">Table des mati猫res</h2> <ul> <li><h4><!-- Front-matter --></h4></li> <li> <ul> <li class="front-matter acknowledgements"><a href="https://www.teseopress.com/dictionnaire2/front-matter/remerciements/">Remerciements <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="9"/></a></li> <li class="front-matter introduction"><a href="https://www.teseopress.com/dictionnaire2/front-matter/introduction/">Introduction (Marie-Christine Bureau, Antonella Corsani et Olivier Giraud) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="11"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="13" href="https://www.teseopress.com/dictionnaire2/part/a/">A <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="13"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="13"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/administrateur-representant-les-salaries/"> <span >Administrateur repr茅sentant les salari茅s</span> (Laetitia Driguez) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="14"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="16" href="https://www.teseopress.com/dictionnaire2/part/c/">C <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="16"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="16"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/cheque-emploi-service-universel-cesu/"> <span >Ch猫que emploi service universel (Cesu)</span> (Olivier Crasset) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="17"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="19" href="https://www.teseopress.com/dictionnaire2/part/e/">E <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="19"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="19"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/entreprise-a-but-demploi/"> <span >Entreprise 脿 but d鈥檈mploi</span> (Marie-Christine Bureau, Laurent Grouet et Carole Tuchszirer) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="20"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/extension-du-domaine-de-la-formation-professionnelle/"> <span >Extension du domaine de la formation professionnelle</span> (Carole Tuchszirer) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="22"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="24" href="https://www.teseopress.com/dictionnaire2/part/f/">F <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="24"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="24"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/flexworker-migrant/"> <span ><em>Flexworker</em> migrant</span> (Jose-Angel Calderon, Pablo L贸pez-Calle et Antonio Ramirez-Melgarejo) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="25"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/freelance/"> <span >Freelance</span> (Yannick Fondeur) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="26"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="29" href="https://www.teseopress.com/dictionnaire2/part/g/">G <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="29"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="29"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/genre/"> <span >Genre</span> (Tania Toffanin) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="30"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="32" href="https://www.teseopress.com/dictionnaire2/part/i/">I <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="32"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="32"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/im-mobilite/"> <span >Im/mobilit茅</span> (Ferruccio Ricciardi) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="33"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/informalites-dans-les-suds/"> <span >Informalit茅s dans les Suds</span> (Isabel Georges) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="34"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="37" href="https://www.teseopress.com/dictionnaire2/part/j/">J <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="37"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="37"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/jeunes/"> <span >Jeunes</span> (L茅a Lima) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="38"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="40" href="https://www.teseopress.com/dictionnaire2/part/l/">L <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="40"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="40"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/livreurs-et-chauffeurs-sur-une-plateforme-numerique/"> <span >Livreurs et chauffeurs sur une plateforme num茅rique</span> (Pierre Grilo) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="41"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="43" href="https://www.teseopress.com/dictionnaire2/part/m/">M <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="43"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="43"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/musiciens-en-turquie/"> <span >Musiciens en Turquie</span> (Selcan Peksan) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="44"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="46" href="https://www.teseopress.com/dictionnaire2/part/p/">P <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="46"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="46"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/plateforme/"> <span >Plateforme</span> (Patrick Cingolani) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="47"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="49" href="https://www.teseopress.com/dictionnaire2/part/r/">R <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="49"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="49"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/remuneration-du-travail/"> <span >R茅mun茅ration du travail</span> (Antonella Corsani) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="50"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/reseaux-et-acces-a-lemploi/"> <span >R茅seaux et acc猫s 脿 l鈥檈mploi</span> (Quentin Chapus et Nathalie Chauvac) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="51"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="54" href="https://www.teseopress.com/dictionnaire2/part/s/">S <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="54"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="54"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/sante-au-travail/"> <span >Sant茅 au travail</span> (Marc Loriol) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="55"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/societe-cooperative-dinteret-collectif-scic/"> <span >Soci茅t茅 coop茅rative d鈥檌nt茅r锚t collectif (SCIC)</span> (Armelle Ripart) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="56"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/syndicalisme-des-travailleurs-des-plateformes/"> <span >Syndicalisme des travailleurs des plateformes</span> (Jean-Michel Denis) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="57"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="61" href="https://www.teseopress.com/dictionnaire2/part/t/">T <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="61"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="61"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/teletravail-a-domicile/"> <span >T茅l茅travail 脿 domicile</span> (Patrick Cingolani et Antonella Corsani) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="62"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-decent/"> <span >Travail d茅cent</span> (Catherine Spieser) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="63"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-detache/"> <span >Travail d茅tach茅</span> (Catherine Spieser) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="64"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-monetarise-des-proches-aidantes-et-aidants/"> <span >Travail mon茅taris茅 des proches aidantes et aidants</span> (Olivier Giraud) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="67"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-protege/"> <span >Travail prot茅g茅</span> (Math茅a Boudinet et Fanny Jaffr猫s) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="68"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travailleurs-de-la-logistique/"> <span >Travailleurs de la logistique</span> (Carlotta Benvegn霉) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="65"/></a></li> <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travailleurs-du-nettoyage/"> <span >Travailleurs du nettoyage</span> (Fran莽ois-Xavier Devetter et Julie Valentin) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="66"/></a></li> </ul> </li> <li><h4><a style="" class="sidebar_toc_part" data-ref="76" href="https://www.teseopress.com/dictionnaire2/part/w/">W <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="76"/></a></h4></li> <li class="sidebar_toc_part_li" data-ref="76"> <ul > <li style='padding-top: 4px;padding-bottom: 2px;' class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/wwoofing/"> <span >WWOOfing</span> (Lucas Bento de Carvalho) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="77"/></a></li> </ul> </li> <li><h4><!-- Back-matter --></h4></li> <li> <ul> <li class="back-matter about-the-author"><a href="https://www.teseopress.com/dictionnaire2/back-matter/a-propos-des-auteurs/">脌 propos des auteurs <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="79"/></a></li> </ul> </li> </ul> </div><!-- end #toc --> </div><!-- end #sidebar --> <!-- bookmark --> <div title="Agregar se帽alador" id="chapter_bookmark" data-bookmarked="0" class="simplemodal-login cp_unbookmarked "> <div id="chapter_bookmark_img"></div> </div> </div><!-- #wrap --> <div class="push"></div> </div><!-- .wrapper for sitting footer at the bottom of the page --> <div id="popup_toc" style="display: none"> <a href="#" class="close">Fermer</a> <style> #table-of-content ul, #table-of-content li{ text-align:left!important; } </style> <section id="toc_third-block-wrap" class="third-block-wrap"> <div class="third-block clearfix"> <h2>Table des mati猫res</h2> <ul class="table-of-content" id="table-of-content"> <li> <ul class="front-matter"> <li class="front-matter acknowledgements"><a href="https://www.teseopress.com/dictionnaire2/front-matter/remerciements/">Remerciements <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="9"/></a></li> <li class="front-matter introduction"><a href="https://www.teseopress.com/dictionnaire2/front-matter/introduction/">Introduction (Marie-Christine Bureau, Antonella Corsani et Olivier Giraud) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="11"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/a/">A <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="13"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/administrateur-representant-les-salaries/"> Administrateur repr茅sentant les salari茅s (Laetitia Driguez) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="14"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/c/">C <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="16"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/cheque-emploi-service-universel-cesu/"> Ch猫que emploi service universel (Cesu) (Olivier Crasset) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="17"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/e/">E <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="19"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/entreprise-a-but-demploi/"> Entreprise 脿 but d鈥檈mploi (Marie-Christine Bureau, Laurent Grouet et Carole Tuchszirer) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="20"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/extension-du-domaine-de-la-formation-professionnelle/"> Extension du domaine de la formation professionnelle (Carole Tuchszirer) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="22"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/f/">F <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="24"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/flexworker-migrant/"> <em>Flexworker</em> migrant (Jose-Angel Calderon, Pablo L贸pez-Calle et Antonio Ramirez-Melgarejo) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="25"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/freelance/"> Freelance (Yannick Fondeur) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="26"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/g/">G <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="29"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/genre/"> Genre (Tania Toffanin) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="30"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/i/">I <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="32"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/im-mobilite/"> Im/mobilit茅 (Ferruccio Ricciardi) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="33"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/informalites-dans-les-suds/"> Informalit茅s dans les Suds (Isabel Georges) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="34"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/j/">J <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="37"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/jeunes/"> Jeunes (L茅a Lima) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="38"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/l/">L <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="40"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/livreurs-et-chauffeurs-sur-une-plateforme-numerique/"> Livreurs et chauffeurs sur une plateforme num茅rique (Pierre Grilo) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="41"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/m/">M <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="43"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/musiciens-en-turquie/"> Musiciens en Turquie (Selcan Peksan) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="44"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/p/">P <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="46"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/plateforme/"> Plateforme (Patrick Cingolani) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="47"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/r/">R <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="49"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/remuneration-du-travail/"> R茅mun茅ration du travail (Antonella Corsani) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="50"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/reseaux-et-acces-a-lemploi/"> R茅seaux et acc猫s 脿 l鈥檈mploi (Quentin Chapus et Nathalie Chauvac) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="51"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/s/">S <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="54"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/sante-au-travail/"> Sant茅 au travail (Marc Loriol) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="55"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/societe-cooperative-dinteret-collectif-scic/"> Soci茅t茅 coop茅rative d鈥檌nt茅r锚t collectif (SCIC) (Armelle Ripart) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="56"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/syndicalisme-des-travailleurs-des-plateformes/"> Syndicalisme des travailleurs des plateformes (Jean-Michel Denis) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="57"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/t/">T <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="61"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/teletravail-a-domicile/"> T茅l茅travail 脿 domicile (Patrick Cingolani et Antonella Corsani) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="62"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-decent/"> Travail d茅cent (Catherine Spieser) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="63"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-detache/"> Travail d茅tach茅 (Catherine Spieser) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="64"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-monetarise-des-proches-aidantes-et-aidants/"> Travail mon茅taris茅 des proches aidantes et aidants (Olivier Giraud) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="67"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travail-protege/"> Travail prot茅g茅 (Math茅a Boudinet et Fanny Jaffr猫s) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="68"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travailleurs-de-la-logistique/"> Travailleurs de la logistique (Carlotta Benvegn霉) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="65"/></a></li> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/travailleurs-du-nettoyage/"> Travailleurs du nettoyage (Fran莽ois-Xavier Devetter et Julie Valentin) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="66"/></a></li> </ul> </li> <li><h4><a style="font-weight: normal;" href="https://www.teseopress.com/dictionnaire2/part/w/">W <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="76"/></a></h4></li> <li> <ul> <li class="chapter type-1"><a href="https://www.teseopress.com/dictionnaire2/chapter/wwoofing/"> WWOOfing (Lucas Bento de Carvalho) <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="77"/></a></li> </ul> </li> <li><h4><!-- Back-matter --></h4></li> <li> <ul class="back-matter"> <li class="back-matter about-the-author"><a href="https://www.teseopress.com/dictionnaire2/back-matter/a-propos-des-auteurs/">脌 propos des auteurs <img style="display:none" src="/wp-content/plugins/teseopress/assets/images/bookmark_red2.png" class="img_bookmarked" data-postid="79"/></a></li> </ul> </li> </ul><!-- end #toc --> </div><!-- end .third-block --> </section> <!-- end .third-block --> </div> <div class="footer"> <div class="inner"> <table> <tr> <td>Titre de la publication<!--T&iacute;tulo del libro--></td> <td>Les zones grises des relations de travail et d鈥檈mploi</td> </tr> <tr> <td data-key="pb_author">Auteur</td> <td>Marie-Christine Bureau, Antonella Corsani, Olivier Giraud (directeurs)</td> <tr> <td data-key="pb_publication_date">Date</td> <td>mai 28, 2024</td> <tr> <td data-key="pb_print_isbn">ISBN livre imprim茅</td> <td>9781911693406</td> <tr> <td data-key="pb_ebook_isbn">ISBN ebook</td> <td>9781911693413</td> <tr> <td data-key="pb_ebook_doi">DOI</td> <td><a class="footer_doi_link" href="https://www.doi.org/10.55778/ts911693406">10.55778/ts911693406</a></td> </tr> <tr><td>Droit d'auteur</td><td>2024</td></tr> </table> <p style="text-align: center"><img src="/wp-content/plugins/teseopress/assets/images/cc8.png" style="width: 100px"/></p> <p class="cie-name"><a href="https://www.teseopress.com">TeseoPress</a></p> <p class="cie-disclosure">Le contenu de cette publication est de la responsabilit茅 exclusive de leur/s auteur/s.</p> </div><!-- #inner --> </div><!-- #footer --> <div id="simplemodal-login-form" style="display:none"> <form name="loginform" id="loginform" action="https://www.teseopress.com/dictionnaire2/wp-login.php" method="post"> <div class="title">Connexion avec nom d'utilisateur<br><span style="color:#777;font-size: 14px;">(Vous pouvez vous inscrire gratuitement)</span></div> <div class="simplemodal-login-fields"> <p> <label>Nom d'utilisateur<br /> <input type="text" name="log" class="user_login input" value="" size="20" tabindex="10" /></label> </p> <p> <label>Mot de passe<br /> <input type="password" name="pwd" class="user_pass input" value="" size="20" tabindex="20" /></label> </p> <br /> <div class="captchaSizeDivLarge"> <div class="googlerecaptcha cap-log g-recaptcha" data-sitekey="6LeJaTwUAAAAADOZC1sMjV6W-IKpE2s-MnNY_yd3"></div><script> function recaptchaLoaded(){ if (jQuery('.googlerecaptcha:visible').length > 0){ jQuery('.googlerecaptcha:visible').each(function(){ if (jQuery(this).children().length > 0){ grecaptcha.reset( jQuery(this).data('nid') ); } else { var nid=grecaptcha.render(this, { }); jQuery(this).data('nid', nid); } }) } } </script></div> <br /> <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" class="rememberme" value="forever" tabindex="90" /> Se souvenir de moi</label></p> <p class="submit"> <input type="submit" name="wp-submit" value="Se connecter" tabindex="100" /> <input type="button" class="simplemodal-close" value="Annuler" tabindex="101" /> <input type="hidden" name="testcookie" value="1" /> </p> <p class="nav"><a href="https://www.teseopress.com/dictionnaire2/wp-signup.php?user_lasturl=https%3A%2F%2Fwww.teseopress.com%2Fdictionnaire2%2Fpart%2Fj%2F">Inscrivez-vous gratuitement</a> | <a class="simplemodal-forgotpw" href="https://www.teseopress.com/dictionnaire2/wp-login.php?action=lostpassword" title="Password Lost and Found">Mot de passe oubli茅?</a> </p> </div> <div class="simplemodal-login-activity" style="display:none;"></div> </form> <form name="registerform" id="registerform" action="https://www.teseopress.com/dictionnaire2/wp-login.php?action=register" method="post"> <div class="title">Register</div> <div class="simplemodal-login-fields"> <p> <label>Username<br /> <input type="text" name="user_login" class="user_login input" value="" size="20" tabindex="10" /></label> </p> <p> <label>E-mail<br /> <input type="text" name="user_email" class="user_email input" value="" size="25" tabindex="20" /></label> </p> <br /> <div class="captchaSizeDivLarge"> <div class="googlerecaptcha cap-reg g-recaptcha" data-sitekey="6LeJaTwUAAAAADOZC1sMjV6W-IKpE2s-MnNY_yd3"></div><script> function recaptchaLoaded(){ if (jQuery('.googlerecaptcha:visible').length > 0){ jQuery('.googlerecaptcha:visible').each(function(){ if (jQuery(this).children().length > 0){ grecaptcha.reset( jQuery(this).data('nid') ); } else { var nid=grecaptcha.render(this, { }); jQuery(this).data('nid', nid); } }) } } </script></div> <p class="reg_passmail">A password will be e-mailed to you.</p> <p class="submit"> <input type="submit" name="wp-submit" value="Register" tabindex="100" /> <input type="button" class="simplemodal-close" value="Annuler" tabindex="101" /> </p> <p class="nav"> <a class="simplemodal-login" href="https://www.teseopress.com/dictionnaire2/wp-login.php">Log in</a> | <a class="simplemodal-forgotpw" href="https://www.teseopress.com/dictionnaire2/wp-login.php?action=lostpassword" title="Password Lost and Found">Lost your password?</a> </p> </div> <div class="simplemodal-login-activity" style="display:none;"></div> </form> <form name="lostpasswordform" id="lostpasswordform" action="https://www.teseopress.com/dictionnaire2/wp-login.php?action=lostpassword" method="post"> <div class="title">Obtenir un nouveau mot de passe</div> <div class="simplemodal-login-fields"> <p> <label>Nom d'utilisateur ou email:<br /> <input type="text" name="user_login" class="user_login input" value="" size="20" tabindex="10" /></label> </p> <br /> <div class="captchaSizeDivLarge"> <div class="googlerecaptcha cap-reg g-recaptcha" data-sitekey="6LeJaTwUAAAAADOZC1sMjV6W-IKpE2s-MnNY_yd3"></div><script> function recaptchaLoaded(){ if (jQuery('.googlerecaptcha:visible').length > 0){ jQuery('.googlerecaptcha:visible').each(function(){ if (jQuery(this).children().length > 0){ grecaptcha.reset( jQuery(this).data('nid') ); } else { var nid=grecaptcha.render(this, { }); jQuery(this).data('nid', nid); } }) } } </script></div> <p class="submit"> <input type="submit" name="wp-submit" value="Obtenir un nouveau mot de passe" tabindex="100" /> <input type="button" class="simplemodal-close" value="Annuler" tabindex="101" /> </p> <p class="nav"> <a class="simplemodal-login" href="https://www.teseopress.com/dictionnaire2/wp-login.php">Se connecter</a> | <a class="simplemodal-register" href="https://www.teseopress.com/dictionnaire2/wp-login.php?action=register">Inscrivez-vous gratuitement</a> </p> </div> <div class="simplemodal-login-activity" style="display:none;"></div> </form></div><script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/core.js?ver=1.12.1' id='jquery-ui-core-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/mouse.js?ver=1.12.1' id='jquery-ui-mouse-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/resizable.js?ver=1.12.1' id='jquery-ui-resizable-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/draggable.js?ver=1.12.1' id='jquery-ui-draggable-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/controlgroup.js?ver=1.12.1' id='jquery-ui-controlgroup-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/checkboxradio.js?ver=1.12.1' id='jquery-ui-checkboxradio-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/button.js?ver=1.12.1' id='jquery-ui-button-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/jquery/ui/dialog.js?ver=1.12.1' id='jquery-ui-dialog-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/themes-book/pressbooks-book/js/keyboard-nav.js?ver=20130306' id='keyboard-nav-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/simplemodal-login/js/jquery.simplemodal.js?ver=1.4.3' id='jquery-simplemodal-js'></script> <script type='text/javascript' id='simplemodal-login-js-extra'> /* <![CDATA[ */ var SimpleModalLoginL10n = {"shortcut":"true","logged_in":"false","admin_url":"https:\/\/www.teseopress.com\/dictionnaire2\/wp-admin\/","empty_username":"<strong>ERROR<\/strong>: The username field is empty.","empty_password":"<strong>ERROR<\/strong>: The password field is empty.","empty_email":"<strong>ERROR<\/strong>: The email field is empty.","empty_all":"<strong>ERROR<\/strong>: All fields are required."}; /* ]]> */ </script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-content/plugins/teseopress/simplemodal-login/js/default.js?ver=2022.1.0.7.003' id='simplemodal-login-js'></script> <script type='text/javascript' src='https://www.teseopress.com/dictionnaire2/wp-includes/js/wp-embed.js?ver=5.8.2' id='wp-embed-js'></script> <!-- Cookie Notice plugin v2.4.13 by Hu-manity.co https://hu-manity.co/ --> <div id="cookie-notice" role="dialog" class="cookie-notice-hidden cookie-revoke-hidden cn-position-bottom" aria-label="Cookie Notice" style="background-color: rgba(50,50,58,1);"><div class="cookie-notice-container" style="color: #fff"><span id="cn-notice-text" class="cn-text-container">Usamos cookies para asegurar que te damos la mejor experiencia en nuestra web. Si contin煤as usando este sitio, asumiremos que est谩s de acuerdo con ello.</span><span id="cn-notice-buttons" class="cn-buttons-container"><a href="#" id="cn-accept-cookie" data-cookie-set="accept" class="cn-set-cookie cn-button" aria-label="Aceptar" style="background-color: #00a99d">Aceptar</a></span><span id="cn-close-notice" data-cookie-set="accept" class="cn-close-icon" title="No"></span></div> </div> <!-- / Cookie Notice plugin --><!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T2T43MLL" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-52T17TPYEK"></script> --> <script> window.teseo_blog_id = 1380; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-52T17TPYEK', { 'blog_id' : window.teseo_blog_id }); // gtag('event', 'page_view', { 'send_to': 'TAG_ID' }); </script> <script> // (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ // (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), // m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) // })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); // // ga('create', 'UA-42337717-3', 'teseopress.com'); // ga('send', 'pageview'); // // ga('create', 'UA-152683376-1', 'auto', 'ez'); // ga('ez.send', 'pageview'); jQuery(document).ready(function(){ function handleOutboundLinkClicks(link) { // ga('send', 'event', { // eventCategory: 'Banner', // eventAction: 'click', // eventLabel: link //event.target.href // }); gtag('event', 'click', { 'event_category': 'Banner', 'event_label': link //event.target.href }); } jQuery('.divbanner a, .divbanner_right a').click(function(e) { var link = jQuery(this).attr('href'); handleOutboundLinkClicks(link); }); //dl.php jQuery('a[href*="dl.php"]').click(function(){ var link = jQuery(this).attr('href'); var linkType = 'other'; if (link.indexOf('type=1') !== -1) linkType = 'PDF'; if (link.indexOf('type=2') !== -1) linkType = 'EPUB'; if (link.indexOf('type=4') !== -1) linkType = 'PDF'; if (link.indexOf('type=5') !== -1) linkType = 'EPUB'; //ga('send', 'event', 'File Download', 'Download', //, { // 'pageTitle': window.document.title, // 'linkType' : linkType, // 'bookId' : //, //}); //ga('send', 'event', 'File Download', 'Download', //, { // 'dimension1': window.document.title, // 'dimension2' : linkType, // 'dimension3' : //, //}); //ga('trackerName.send', 'event', [eventCategory], [eventAction], [eventLabel], [eventValue], [fieldsObject]); gtag('event', 'Download', { 'event_category': 'File Download', 'event_label': 1380, 'dimension1': window.document.title, 'dimension2' : linkType, 'dimension3' : 1380, }); //ga('ez.send', 'event', 'File Download', 'Download', //, { // 'dimension1': window.document.title, // 'dimension2' : linkType, // 'dimension3' : //, //}); }); jQuery('a.tracker_google').click(function(){ var link = jQuery(this).attr('href'); var linkType = jQuery(this).attr('data-tracker'); //ga('send', 'event', linkType, 'Clicked', //, { // 'dimension1': window.document.title, // 'dimension2' : linkType, // 'dimension3' : //, //}); //ga('trackerName.send', 'event', [eventCategory], [eventAction], [eventLabel], [eventValue], [fieldsObject]); gtag('event', 'Clicked', { 'event_category': linkType, 'event_label': 1380, 'dimension1': window.document.title, 'dimension2' : linkType, 'dimension3' : 1380, }); //ga('ez.send', 'event', linkType, 'Clicked', //, { // 'dimension1': window.document.title, // 'dimension2' : linkType, // 'dimension3' : //, //}); }); jQuery('audio.wp-audio-shortcode').on('play',function(){ gtag('event', 'Clicked', { 'event_category': 'Audio', 'event_label': 1380, 'dimension1': window.document.title, 'dimension2' : 'Audio', 'dimension3' : 1380, }); }); }) </script> <script> //jQuery(document).ready(function(){ //jQuery('a').attr('target','_blank'); //jQuery('.nav a').attr('target',''); //margin if (jQuery('h2.chapter_subtitle, h2.chapter_author').length == 0){ jQuery('.entry-content:not(.nopadding)').css('padding-top','30px'); } if (jQuery('div.entry-content.copyright').length == 0) jQuery('div.entry-content > p img').parents('p').addClass('no-indent'); jQuery('.entry-content p > a > img').each(function(i,v){ var p = jQuery(v).parents('p'); var n = p.next(); if (n.prop('tagName') == 'P' && !n.hasClass('manual-caption')) p.css('margin-bottom','20px') }); //}); </script> <style> body { font: 1em/1.4em "Georgia", "Times New Roman", serif; } </style> <script> _xAnnotationisOn = false; //function showANNO(){ jQuery('.anno-btn a').click(function(e){ e.preventDefault(); e.stopPropagation(); // if (_xAnnotationisOn){ // //console.log('showANNO before'); // jQuery('.annotator-frame-button--sidebar_toggle').trigger('click'); // //console.log('showANNO after'); // } else { jQuery('html, body').animate({ scrollTop: jQuery("#comments").offset().top }, 1000); // } }); </script> <style> /*li.anno-btn a {*/ /* background-image: url(/wp-content/plugins/teseopress/themes-book/pressbooks-book/images/icon-comments-small.png);*/ /* !* background-clip: content-box; *!*/ /* background-size: 20px 20px;*/ /* background-position: 24px 16px;*/ /* background-repeat: no-repeat;*/ /*}*/ /*@media screen and (min-width: 720px) {*/ /*li.anno-btn {*/ /*display: none;*/ /*}*/ /*}*/ @media screen and (max-width: 320px){ li.anno-btn a { background-position: 12px 12px; } li.dl-btn a { background-position: 12px 10px; } } </style> <style> @media screen and (max-width: 768px) { nav{ min-height:66px; } h1.book-title{ padding: 15px 60px; } nav .sub-nav-left { height: 100%; } } h1.book-title{ padding: 15px 60px; } p.nav.fancybox-margin, #simplemodal-login-form .nav { left: 0; margin-left: 0; position: relative; top: 0; width: 100%; } .fancybox-margin { margin-right: 0; } .fancybox-lock { overflow: scroll !important; overflow-x: hidden!important; width: auto; } .fancybox-lock .fancybox-overlay { overflow-x: hidden; overflow-y: hidden; } </style> <script> jQuery(document).ready(function(){ function xlogoTop(){ if (jQuery(window).width() <= 768 ){ if (jQuery('nav').height() == 66){ //top the text... if ( 66 > (jQuery('nav .book-title').height() + 30)){ jQuery('nav .book-title').css('padding-top', Math.ceil((66 - (jQuery('nav .book-title').height() + 30)) /2) + 17 ); } else { jQuery('nav .book-title').css('padding-top', 17 ); } } jQuery('nav .pressbooks-logo').css('padding-top', Math.ceil((jQuery('nav').height() - 41) /2) ); } else { // jQuery('nav .book-title').css('padding-top', // 17 // ); jQuery('nav .pressbooks-logo').css('padding-top', Math.ceil((jQuery('nav').height() - 44) /2) ); jQuery('nav .book-title').css('padding-top', '' ); jQuery('nav .bookHeaderRight').css('padding-top', Math.ceil((jQuery('nav').height() - 41) /2) ); } } xlogoTop(); jQuery(window).resize( xlogoTop); //jQuery('div.entry-content h2 br, div.entry-content h3 br, div.entry-content h4 br, div.entry-content h5 br, div.entry-content h6 br').remove(); }); function x_NewAnno(anno){ //debugger; //console.log(anno); //TODO var data = { 'action': 'anno_created', 'url': anno.uri, 'anno': anno.text, 'title': anno.document.title[0] }; // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php jQuery.post(wp_ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } </script> <a class="simplemodal-login hiddenLogin" style="display: none">login</a> <style> blockquote { background: 10px 10px #f4f4f3; /*padding: 20px 5px 30px 20px;*/ padding: 20px 40px 30px 45px; border-left: 30px solid #e9e9e9; } </style> <div id="toTop"><a href="#"></a></div> <script> jQuery('#toTop a, .nav span.up a').click(function(e){ e.preventDefault(); jQuery('body,html').stop().animate({ scrollTop:0 },800); return false; }); jQuery(window).scroll(function() { var scrollPosition = jQuery(window).scrollTop(); if (scrollPosition > 300) { jQuery('#toTop, .nav span.up').css({ 'display': 'block' }); } else if (scrollPosition < 300) { jQuery('#toTop, .nav span.up').css({ 'display': 'none' }); } }); jQuery('#commentCount').click(function(e){ e.preventDefault(); e.preventDefault(); e.stopPropagation(); if (_xAnnotationisOn){ //console.log('showANNO before'); jQuery('.annotator-frame-button--sidebar_toggle').trigger('click'); //console.log('showANNO after'); } else { jQuery('html, body').animate({ scrollTop: jQuery("#comments").offset().top }, 1000); } }) </script> <script type="text/javascript"> function loadScript(url, callback){ var script = document.createElement("script") script.type = "text/javascript"; if (script.readyState){ //IE script.onreadystatechange = function(){ if (script.readyState == "loaded" || script.readyState == "complete"){ script.onreadystatechange = null; callback(); } }; } else { //Others script.onload = function(){ callback(); }; } script.src = url; document.getElementsByTagName("head")[0].appendChild(script); } jQuery('div.footnotes ol li').each(function(i,v){ jQuery(v).data('html',jQuery(v).html()); }); //move from line 745 jQuery('h2.entry-title br, h2.chapter_author br, h2.chapter_subtitle br, h1.book-title br').replaceWith(' '); jQuery('h2.entry-title, h2.chapter_author, h2.chapter_subtitle, h1.book-title').each(function(i,v){ let c = jQuery(v).html().replace(/\s{2,}/g, ' '); jQuery(v).html(c); }); loadScript( "https://www.teseopress.com/h/Hyphenator.js", function() { if (jQuery('.hyphenate').length > 0){ jQuery('.hyphenate [style*=text-align]').addClass('donthyphenate'); jQuery('.hyphenate h1, .hyphenate h2, .hyphenate h3, .hyphenate h4, .hyphenate h5, .hyphenate h6').addClass('donthyphenate'); jQuery('.hyphenate p:not(.donthyphenate)').css('text-align','justify'); jQuery('.footnotes ol li').css('text-align','justify'); } Hyphenator.config({ 'leftmin': 3, 'minwordlength': 6, 'orphancontrol': 2, 'compound':'hyphen', useCSS3hyphenation: false, onerrorhandler: function(e){ throw e; }, onhyphenationdonecallback: function(){ internal_footnote_popup_init(); } }); Hyphenator.run(); }); </script> <script> jQuery(document).ready(function(){ jQuery('.bookdlphp').click(function(event){ if (jQuery(this).hasClass('waitcursor')){ alert('Please wait...'); event.preventDefault(); return false; } else { jQuery(this).addClass('waitcursor'); var _t = jQuery(this); setTimeout(function () { _t.removeClass('waitcursor'); }, 10000); return true; } }); var spwords = "a,ante,bajo,cabe,con,contra,de,desde,en,entre,hacia,hasta,para,por,sin,so,sobre,tras,lo,of,the,and,this,these,those,that,in,al,el,la,los,las,y,con,frente,ni,que,este,ese,esta,esa,estos,esos,un,una,unos,del,se,e,o,sino,about,above,across,after,against,among,around,at,before,behind,below,beside,between,by,down,during,except,for,from,in,inside,into,near,of,off,on,out,over,through,to,toward,under,up,with,avant,avec,chez,contre,dans,au,\u00e0,depuis,devant,durant,jusque,par,parmi,pendant,pour,sans,sur,le,les,ce,ces,cette,et,non,su,sus,his,her,their,ses,son,sa,como,du,A,Ante,Bajo,Cabe,Con,Contra,De,Desde,En,Entre,Hacia,Hasta,Para,Por,Sin,So,Sobre,Tras,Lo,Of,The,And,This,These,Those,That,In,A,El,La,Las,Los,Y,Con,Ni,Que,Este,Ese,Esta,Esa,Estos,Esos,Un,Una,Unos,Del,Se,E,O,Sino,About,Above,Across,After,Against,Among,Around,At,Before,Behind,Below,Beside,Between,By,Down,During,Except,For,From,In,Inside,Into,Near,Of,Off,On,Out,Over,Through,To,Toward,Under,Up,With,Avant,Avec,Chez,Contre,Dans,Depuis,Devant,Durant,Jusque,Par,Parmi,Pendant,Pour,Sans,Sur,Le,Les,Ce,Ces,Cette,Et,Non,Su,Sus,His,Her,Their,Ses,Son,Sa,Como,Du,des,Des,une,Une"; var ws = spwords.split(','); array1 = jQuery( '#content h2, #content h3, #content h4, #content h5, #content h6, body.home.page h1, body.home.page h2, body.home.page h3, body.home.page h4, body.home.page h5, body.home.page h6, h1.book-title, .author-wrap , p.book-subtitle '+ ', #content h2 *, #content h3 *, #content h4 *, #content h5 *, #content h6 *, body.home.page h1 *, body.home.page h2 *, body.home.page h3 *, body.home.page h4 *, body.home.page h5 *, body.home.page h6 *, h1.book-title *, .author-wrap *, p.book-subtitle *' ).contents().filter(function() { return this.nodeType === 3; }); //.each(function(v,i){ for (i_pointer = 0; i_pointer< array1.length; i_pointer++){ i = array1[i_pointer]; o = i.nodeValue; //jQuery(ws).each(function(i,v){ for (i_pointer2 = 0; i_pointer2< ws.length; i_pointer2++) { v = ws[i_pointer2]; o = o.replace(RegExp('(\\s)(' + v + ')(\\s)', 'g'), '$1$2\u00a0'); } //}); i.nodeValue = o; //(i.nodeValue.replace(exp, '$1$2\u00a0')); } //}); array1 = jQuery( '.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 ' ); //.each(function(v,i){ for (i_pointer = 0; i_pointer< array1.length; i_pointer++) { i = array1[i_pointer]; if (jQuery(i).hasClass('chapter_subtitle')) return; if (jQuery(i).hasClass('chapter_author')) return; o = jQuery(i).html(); o = o.replace(RegExp('<br>', 'g'), ' '); jQuery(i).html(o); } // }); array1 = jQuery( '#content h2, #content h3, #content h4, #content h5, #content h6, body.home.page h1, body.home.page h2, body.home.page h3, body.home.page h4, body.home.page h5, body.home.page h6, h1.book-title, .author-wrap , p.book-subtitle '+ ', #content h2 *, #content h3 *, #content h4 *, #content h5 *, #content h6 *, body.home.page h1 *, body.home.page h2 *, body.home.page h3 *, body.home.page h4 *, body.home.page h5 *, body.home.page h6 *, h1.book-title *, .author-wrap *, p.book-subtitle *' ); //.each(function(v,i){ for (i_pointer = 0; i_pointer< array1.length; i_pointer++) { i = array1[i_pointer]; o = jQuery(i).html(); o = o.replace(RegExp(' ( )*', 'g'), ' '); o = o.replace('&nbsp; ', '&nbsp;'); jQuery(i).html(o); } // }); }) </script> <script> function internal_footnote_popup_init(){ jQuery('a.footnote').click(function(e){ e.preventDefault(); }); jQuery('a.footnote').tooltipster({ animation: 'fade', interactive: true, delay: 200, theme: 'tooltipster-shadow', trigger: 'click', side : 'bottom', maxWidth: 400, 'contentAsHTML' : true, functionFormat: function(instance, helper, content){ var displayedContent =jQuery(jQuery(helper.origin).attr('href')).data('html'); return displayedContent ; //return '<blockquote class="footnotepopup">'+displayedContent+'</blockquote>'; }, functionReady: function(instance, helper){ if (jQuery('#content').length > 0 && jQuery('#content').hasClass('hyphenate')){ //poopup hyphen jQuery('.tooltipster-content').attr('lang', jQuery('#content').attr('lang') ); try{ Hyphenator.hyphenate(jQuery('.tooltipster-content')[0], jQuery('#content').attr('lang')); } catch(err){ //Hyphenator.hyphenate(jQuery('.tooltipster-content')[0], document.getElementsByTagName('html')[0].lang); Hyphenator.hyphenate(jQuery('.tooltipster-content')[0], Object.keys(Hyphenator.languages)[0]); } instance.reposition(); //Hyphenator.hyphenate(jQuery('.tooltipster-content')[0], jQuery('#content').attr('lang')); } } }); } function doAutoLink(){ var sl = '.entry-content h1, .entry-content h2:not(.chapter_subtitle):not(.chapter_author), .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6'; jQuery(sl).each(function(i,v){ var l = jQuery(v).children().last(); if (l.is('br')) l.remove(); }); anchors.add(sl); } doAutoLink(); function jumpAnchor(){ var hash = jQuery(location).attr('hash'); if ( hash != '' && hash.indexOf('#') === 0){ jQuery(document).scrollTop( jQuery(decodeURI(hash)).offset().top ); } } jumpAnchor(); </script> <style> .footnotepopup{ /* margin-top: 0; margin-bottom: 0; */ } .tooltipster-sidetip .tooltipster-content { padding: 14px 14px /* 14px 14px; 0 14px 0 0; */ text-align: justify; } .tooltipster-sidetip .tooltipster-content .return-footnote{ display: none; } .tooltipster-sidetip.tooltipster-shadow .tooltipster-content{ color: #1F1F1D; } .tooltipster-content { background-color: #fdf6e9; border-radius: 5px; } .tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border { border-bottom-color: #f4f4f4; } .tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border { border-left-color: #f4f4f4; } .tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border { border-right-color: #f4f4f4; } .tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border { border-top-color: #f4f4f4; } </style> <script> var ajaxLoginForceRedirect = true; </script> <script> if ('' != window.location.hash && '#' != window.location.hash){ if ('scrollRestoration' in history) { history.scrollRestoration = 'manual'; jQuery('html, body').animate({ scrollTop: jQuery(window.location.hash).offset().top }, 50); } } jQuery('.divbanner a, .divbanner_right a').attr('target', '_blank'); /* //swipe jQuery("div.wrapper").swipe( { //Single swipe handler for left swipes swipeLeft:function(event, direction, distance, duration, fingerCount) { if (jQuery('.nav .next a').length > 0) { window.location.href = jQuery('.nav .next a').attr('href'); } }, swipeRight:function(event, direction, distance, duration, fingerCount) { if (jQuery('.nav .previous a').length > 0) { window.location.href = jQuery('.nav .previous a').attr('href'); } }, //Default is 75px, set to 0 for demo so any distance triggers swipe threshold:75 }); */ </script> </body> </html>

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