-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
569 lines (569 loc) · 23.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr-FR" xml:lang="fr-FR">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Cédric Eyssette" />
<link rel="icon" href="favicon.ico" />
<title>Ressources pour l’enseignement de la philosophie</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
</style>
<style type="text/css">
:root {
--nc-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--nc-font-mono: Consolas, monaco, "Ubuntu Mono", "Liberation Mono",
"Courier New", Courier, monospace;
--nc-tx-1: #000000;
--nc-tx-2: #1a1a1a;
--nc-bg-1: #ffffff;
--nc-bg-2: #f6f8fa;
--nc-bg-3: #e5e7eb;
--nc-lk-1: #0070f3;
--nc-lk-2: #0366d6;
--nc-lk-tx: #ffffff;
--nc-ac-1: #79ffe1;
--nc-ac-tx: #0c4047;
}
@media (prefers-color-scheme: dark) {
:root {
--nc-tx-1: #ffffff;
--nc-tx-2: #eeeeee;
--nc-bg-1: #000000;
--nc-bg-2: #111111;
--nc-bg-3: #222222;
--nc-lk-1: #3291ff;
--nc-lk-2: #0070f3;
--nc-lk-tx: #ffffff;
--nc-ac-1: #7928ca;
--nc-ac-tx: #ffffff;
}
}
* {
margin: 0;
padding: 0;
}
address,
area,
article,
aside,
audio,
blockquote,
datalist,
details,
dl,
fieldset,
figure,
form,
iframe,
img,
input,
meter,
nav,
ol,
optgroup,
option,
output,
p,
pre,
progress,
ruby,
section,
table,
textarea,
ul,
video {
margin-bottom: 1rem;
}
button,
html,
input,
select {
font-family: var(--nc-font-sans);
}
body {
margin: 0 auto;
max-width: 750px;
padding: 2rem;
border-radius: 6px;
overflow-x: hidden;
word-break: break-word;
overflow-wrap: break-word;
background: var(--nc-bg-1);
color: var(--nc-tx-2);
font-size: 1.03rem;
line-height: 1.5;
}
::selection {
background: var(--nc-ac-1);
color: var(--nc-ac-tx);
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1;
color: var(--nc-tx-1);
padding-top: 0.875rem;
}
h1,
h2,
h3 {
color: var(--nc-tx-1);
padding-bottom: 2px;
margin-bottom: 8px;
}
h4,
h5,
h6 {
margin-bottom: 0.3rem;
}
h1 {
font-size: 2.25rem;
}
h2 {
font-size: 1.85rem;
}
h3 {
font-size: 1.55rem;
}
h4 {
font-size: 1.25rem;
}
h5 {
font-size: 1rem;
}
h6 {
font-size: 0.875rem;
}
a {
color: var(--nc-lk-1);
}
a:hover {
color: var(--nc-lk-2);
}
abbr:hover {
cursor: help;
}
blockquote {
padding: 1.5rem;
background: var(--nc-bg-2);
border-left: 5px solid var(--nc-bg-3);
}
abbr {
cursor: help;
}
blockquote :last-child {
padding-bottom: 0;
margin-bottom: 0;
}
header {
background: var(--nc-bg-2);
border-bottom: 1px solid var(--nc-bg-3);
padding: 2rem 1.5rem;
margin: -2rem calc(0px - (50vw - 50%)) 2rem;
padding-left: calc(50vw - 50%);
padding-right: calc(50vw - 50%);
}
header h1,
header h2,
header h3 {
padding-bottom: 0;
border-bottom: 0;
}
header > :first-child {
margin-top: 0;
padding-top: 0;
}
header > :last-child {
margin-bottom: 0;
}
a button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
font-size: 1rem;
display: inline-block;
padding: 6px 12px;
text-align: center;
text-decoration: none;
white-space: nowrap;
background: var(--nc-lk-1);
color: var(--nc-lk-tx);
border: 0;
border-radius: 4px;
box-sizing: border-box;
cursor: pointer;
color: var(--nc-lk-tx);
}
a button[disabled],
button[disabled],
input[type="button"][disabled],
input[type="reset"][disabled],
input[type="submit"][disabled] {
cursor: default;
opacity: 0.5;
cursor: not-allowed;
}
.button:focus,
.button:hover,
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
background: var(--nc-lk-2);
}
code,
kbd,
pre,
samp {
font-family: var(--nc-font-mono);
}
code,
kbd,
pre,
samp {
background: var(--nc-bg-2);
border: 1px solid var(--nc-bg-3);
border-radius: 4px;
padding: 3px 6px;
font-size: 0.9rem;
}
kbd {
border-bottom: 3px solid var(--nc-bg-3);
}
pre {
padding: 1rem 1.4rem;
max-width: 100%;
overflow: auto;
}
pre code {
background: inherit;
font-size: inherit;
color: inherit;
border: 0;
padding: 0;
margin: 0;
}
code pre {
display: inline;
background: inherit;
font-size: inherit;
color: inherit;
border: 0;
padding: 0;
margin: 0;
}
details {
padding: 0.6rem 1rem;
background: var(--nc-bg-2);
border: 1px solid var(--nc-bg-3);
border-radius: 4px;
}
summary {
cursor: pointer;
font-weight: 700;
}
details[open] {
padding-bottom: 0.75rem;
}
details[open] summary {
margin-bottom: 6px;
}
details[open] > :last-child {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd::before {
content: "→ ";
}
hr {
border: 0;
border-bottom: 1px solid var(--nc-bg-3);
margin: 1rem auto;
}
fieldset {
margin-top: 1rem;
padding: 2rem;
border: 1px solid var(--nc-bg-3);
border-radius: 4px;
}
legend {
padding: auto 0.5rem;
}
table {
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid var(--nc-bg-3);
text-align: left;
padding: 0.5rem;
}
th {
background: var(--nc-bg-2);
}
tr:nth-child(even) {
background: var(--nc-bg-2);
}
table caption {
font-weight: 700;
margin-bottom: 0.5rem;
}
textarea {
max-width: 100%;
}
ol,
ul {
padding-left: 2rem;
}
li {
margin-top: 0.4rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
margin-bottom: 0;
}
mark {
padding: 3px 6px;
background: var(--nc-ac-1);
color: var(--nc-ac-tx);
}
input,
select,
textarea {
padding: 6px 12px;
margin-bottom: 0.5rem;
background: var(--nc-bg-2);
color: var(--nc-tx-2);
border: 1px solid var(--nc-bg-3);
border-radius: 4px;
box-shadow: none;
box-sizing: border-box;
}
img {
max-width: 100%;
}
.info {
color: var(--nc-lk-2);
border: 1px solid var(--nc-lk-2);
padding: 10px 15px;
padding-top: 1.5rem;
border-radius: 15px;
margin: 1rem 0;
}
.danger {
color: #b94a48;
border: 1px solid #b94a48;
padding: 10px 15px;
padding-top: 1.5rem;
border-radius: 15px;
margin: 1rem 0;
}
.success {
color: #018739;
border: 1px solid #018739;
padding: 10px 15px;
padding-top: 1.5rem;
border-radius: 15px;
margin: 1rem 0;
}
@media (prefers-color-scheme: dark) {
.info,
.danger,
.success {
background-color: var(--nc-bg-2);
}
}
#footnotes {
margin-top: 3rem;
}
a.footnote-back {
margin-left: 1em;
opacity: 0.7;
}
figcaption {
text-align: center;
margin-top: -6rem;
display: none;
position: absolute;
margin-left: 1em;
color: white;
background-color: rgba(0, 0, 0, 0.5);
padding: 10px;
}
figure:hover figcaption {
display: block;
}
h2,
h3 {
margin-top: 2.5rem;
margin-bottom: 2rem;
padding-bottom: 0.6em;
border-bottom: 1px solid #9998;
}
h3 {
border-color: var(--nc-bg-3);
}
h4,
h5,
h6 {
margin-top: 2rem;
margin-bottom: 1.5rem;
}
.general-toc {
background-color: var(--nc-bg-2);
padding: 20px;
margin: 1em;
}
@media screen and (min-width: 800px) {
.general-toc {
margin: 3em;
}
}
.author {
font-size:1.5em;
}</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
<style type="text/css">html.slides,html.slides section{all:unset;margin:0;padding:0;}html.slides h1,html.slides h2,html.slides h3,html.slides h4,html.slides h5,html.slides h6{all:unset;font-size:100%;font-weight:normal;}html.slides button,html.slides input,html.slides select{all:unset;margin:0;}html.slides{box-sizing:border-box;}html.slides header,html.slides blockquote,html.slides div,html.slides p,html.slides a,html.slides figure,html.slides figcaption{all:unset;}html.slides p{overflow-wrap:break-word;}html.slides *,html.slides *::before,html.slides *::after{box-sizing:inherit;}html.slides img,html.slides video,html.slides figure{all:unset;overflow:clip!important;}html.slides iframe{all:unset;border:0;}html.slides table{all:unset;border-collapse:collapse;border-spacing:0;display:table;}html.slides td,html.slides th,html.slides tr{all:unset;padding:0;border:2px solid grey;}html.slides th{font-weight:700;}html.slides tr{display:table-row;}html.slides td,html.slides th{display:table-cell;}html.slides ul,html.slides ol{all:unset;display:block;}html.slides ol{list-style:decimal;margin-left:.9em!important;}html.slides pre,html.slides code{overflow:inherit;font-size:inherit;box-sizing:inherit;}html.slides code{margin-right:.2em;padding:0 .1em!important;}html.slides span.math.display{font-size:inherit!important;text-align:center;display:block;}html.slides{background-color:#33333a;}html.slides body{margin:auto;margin-top:5vh;background-color:#f5f5f5;height:85vh;width:85vw;max-width:85vw;border-radius:50px;padding:5vh;font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}html.slides body>*{margin:auto;color:black;padding:5vh 5vw;width:75vw;max-width:75vw;hyphenate-character:"-";}html.slides body>section{background-color:transparent;}html.slides body{line-height:1.2;}html.slides h1,html.slides h2,html.slides h3,html.slides h4,html.slides h5,html.slides h6{line-height:1;font-weight:700;display:block;margin-bottom:.5em;}html.slides h1{color:#75140c;text-align:center;}html.slides a{cursor:pointer;color:#0d719c;}html.slides blockquote{font-family:"ETBembo","et-book","Minion Pro","Times New Roman",Times,serif;background-color:#00000009;border-radius:15px;}html.slides blockquote p{display:block;}html.slides img,html.slides video,html.slides figure{max-width:75vw;max-height:75vh;text-align:center;}html.slides figcaption{font-size:5vw!important;text-align:center;top:50%;left:20%;display:none;position:absolute;color:white;background-color:rgba(0,0,0,.5);padding:10px;margin-left:1em;}html.slides figure:hover figcaption{display:block;}html.slides table{width:100%;margin-top:1vh;}html.slides pre,html.slides code{background-color:white;width:70vw;margin-top:3vh;font-size:.9em;}html.slides mark{background-color:#f1f3bd;color:black;}html.slides ul{list-style:none;}html.slides ul li:before{content:"- ";}html.slides ul ul{margin-left:1em;}html.slides dd{margin-left:10vw;}html.slides dd:before{content:"→ ";margin-left:-10vw;}html.slides .info{background-color:#1505a1;color:white;border-radius:15px;margin-top:1.5vh;}html.slides .danger{background-color:#b94a48;color:white;border-radius:15px;margin-top:1.5vh;}html.slides .success{background-color:#02461f;color:white;border-radius:15px;margin-top:1.5vh;}html.slides .footnote-back{display:none;}html.slides svg{max-width:75vw!important;max-height:75vh!important;}.mermaidTooltip{display:none!important;}</style>
<script>const auto=!1;var slide,start=!1,position=1,slides={};if(function(t,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?module.exports=e():t.textFit=e()}("object"==typeof global?global:this,(function(){"use strict";var t={alignVert:!1,alignHoriz:!1,multiLine:!1,detectMultiLine:!0,minFontSize:6,maxFontSize:80,reProcess:!0,widthOnly:!1,alignVertWithFlexbox:!1};return function(i,n){n||(n={});var o={};for(var l in t)n.hasOwnProperty(l)?o[l]=n[l]:o[l]=t[l];"function"==typeof i.toArray&&(i=i.toArray());var a=Object.prototype.toString.call(i);"[object Array]"!==a&&"[object NodeList]"!==a&&"[object HTMLCollection]"!==a&&(i=[i]);for(var r=0;r<i.length;r++)e(i[r],o)};function e(t,e){if(n=t,!("object"==typeof HTMLElement?n instanceof HTMLElement:n&&"object"==typeof n&&null!==n&&1===n.nodeType&&"string"==typeof n.nodeName)||!e.reProcess&&t.getAttribute("textFitted"))return!1;var n,o,l,a,r,s,d,c;if(e.reProcess||t.setAttribute("textFitted",1),a=t.innerHTML,r=function(t){var e=window.getComputedStyle(t,null);return t.clientWidth-parseInt(e.getPropertyValue("padding-left"),10)-parseInt(e.getPropertyValue("padding-right"),10)}(t),l=function(t){var e=window.getComputedStyle(t,null);return t.clientHeight-parseInt(e.getPropertyValue("padding-top"),10)-parseInt(e.getPropertyValue("padding-bottom"),10)}(t),!r||!e.widthOnly&&!l)throw e.widthOnly?new Error("Set a static width on the target element "+t.outerHTML+" before using textFit!"):new Error("Set a static height and width on the target element "+t.outerHTML+" before using textFit!");-1===a.indexOf("textFitted")?((o=document.createElement("span")).className="textFitted",o.style.display="inline-block",o.innerHTML=a,t.innerHTML="",t.appendChild(o)):i(o=t.querySelector("span.textFitted"),"textFitAlignVert")&&(o.className=o.className.replace("textFitAlignVert",""),o.style.height="",t.className.replace("textFitAlignVertFlex","")),e.alignHoriz&&(t.style["text-align"]="center",o.style["text-align"]="center");var m=e.multiLine;e.detectMultiLine&&!m&&o.scrollHeight>=2*parseInt(window.getComputedStyle(o)["font-size"],10)&&(m=!0),m||(t.style["white-space"]="nowrap"),s=e.minFontSize,c=e.maxFontSize;for(var p=s;s<=c;)d=c+s>>1,o.style.fontSize=d+"px",o.scrollWidth<=r&&(e.widthOnly||o.scrollHeight<=l)?(p=d,s=d+1):c=d-1;if(o.style.fontSize!=p+"px"&&(o.style.fontSize=p+"px"),e.alignVert){!function(){if(document.getElementById("textFitStyleSheet"))return;var t=[".textFitAlignVert{","position: absolute;","top: 0; right: 0; bottom: 0; left: 0;","margin: auto;","display: flex;","justify-content: center;","flex-direction: column;","}",".textFitAlignVertFlex{","display: flex;","}",".textFitAlignVertFlex .textFitAlignVert{","position: static;","}"].join(""),e=document.createElement("style");e.type="text/css",e.id="textFitStyleSheet",e.innerHTML=t,document.body.appendChild(e)}();var u=o.scrollHeight;"static"===window.getComputedStyle(t).position&&(t.style.position="relative"),i(o,"textFitAlignVert")||(o.className=o.className+" textFitAlignVert"),o.style.height=u+"px",e.alignVertWithFlexbox&&!i(t,"textFitAlignVertFlex")&&(t.className=t.className+" textFitAlignVertFlex")}}function i(t,e){return(" "+t.className+" ").indexOf(" "+e+" ")>-1}})),0){var defaultStylesheet=document.styleSheets[0];defaultStylesheet&&defaultStylesheet.insertRule("html:not(.slides) {display:none}",defaultStylesheet.cssRules.length)}function handleClick(){start||slideStart()}function load(){if(0)slideStart();else{const e=document.querySelectorAll(".startSlides"),i=e.length;for(var t=0;t<i;t++)e[t].addEventListener("click",handleClick)}}document.addEventListener("DOMContentLoaded",load),document.addEventListener("keydown",handleKeydown),document.addEventListener("touchstart",handleTouchstart);const FORWARD=1,BACKWARD=-1,keyToSlideDirection={ArrowRight:1,ArrowLeft:-1,PageDown:1,PageUp:-1,ArrowUp:-1,ArrowDown:1};function handleKeydown(t){start?"Escape"===t.key||"Esc"===t.key||27===t.keyCode?setTimeout((function(){location.reload()}),100):(position=slide+keyToSlideDirection[t.key])in slides&&(location.hash=position):!t.altKey||"p"!==t.key&&80!==t.keyCode||slideStart()}function handleTouchstart(t){if(!t.target.href){var e=slide+(t.touches[0].pageX>innerWidth/2?1:-1);e in slides&&(location.hash=e)}}function longer(t,e){return e.length>t.length?e:t}function longestWord(t){return t.split(" ").reduce(longer)}var smallScreen=!1;function calculateStyles(t){var e,i,n=t.style,o=300;for(window.innerWidth<1400&&(o=100,smallScreen=!0),n.display="inline","svg"==t.nodeName||window.mermaid&&t.classList.contains("mermaid")||(n.fontSize=o+"px",n.position="absolute");!(!t.textContent||"svg"===t.nodeName||window.mermaid&&t.classList.contains("mermaid")||("P"!==t.nodeName&&"BLOCKQUOTE"!==t.nodeName||(o=smallScreen?Math.min(o,80):Math.min(o,150)),i=innerWidth-t.offsetWidth,(e=innerHeight-t.offsetHeight-60)>0&&i>0||o<10));)n.fontSize=(o-=.05*o)+"px";window.mermaid&&t.classList.contains("mermaid")||(n.display="block",n.top=e/2+"px",n.left=i/2+"px"),tagName=t.tagName,"H1"!=tagName&&"H2"!=tagName&&"H3"!=tagName&&"H4"!=tagName&&"H5"!=tagName&&"H6"!=tagName||smallScreen||(n.fontSize=o-40+"px",longestWordLength=longestWord(t.textContent).length,longestWordLength>12&&(n.fontSize=o-70+"px"),longestWordLength>16&&(n.fontSize=o-100+"px")),t._styles={display:n.display,fontSize:n.fontSize,position:n.position,top:n.top,left:n.left}}function slideStart(){start=!0;var t=document.body;document.getElementsByTagName("html")[0].classList.add("slides");for(var e,i=0;e=t.firstChild;)1==e.nodeType&&(calculateStyles(e),slides[++i]=e),t.removeChild(e);t.appendChild(document.createComment("")),function e(){window.mermaid&&window.mermaid.run(),setTimeout(e,10);var n=0|location.hash.match(/\d+/);if(slide!=n){n=Math.max(Math.min(i,n),1),n=slides[location.hash=slide=n],t.replaceChild(n,t.firstChild);var o=n._styles;n.style.display=o.display,n.style.fontSize=o.fontSize,n.style.position=o.position,n.style.top=o.top,n.style.left=o.left;var l=document.getElementsByTagName("pre");l&&textFit(l,{multiLine:!0});var a=document.querySelectorAll(".math.display");a&&textFit(a,{multiLine:!0,maxFontSize:150})}}()}</script>
</head>
<body>
<header id="title-block-header">
<h1 class="title">Ressources pour l’enseignement de la philosophie</h1>
<p class="author">Cédric Eyssette</p>
</header>
<p>Voici quelques ressources que je
<span style="white-space:nowrap">partage :</span> n’hésitez pas à
<a href="http://eyssette.github.io/">me contacter</a> si vous avez des
remarques, des questions ou une proposition.</p>
<h2 id="préparation-de-ses-cours">Préparation de ses cours</h2>
<ul>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/checklist">Checklist</a>
pour vérifier certains points importants quand on prépare un cours</li>
<li><a href="https://eyssette.github.io/cours/">Mes cours</a> sont en
partie en ligne si cela peut servir</li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/programme-philosophie-serie-generale">Le
programme officiel en série générale</a></li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/programme-philosophie-series-technologiques">Le
programme officiel en séries technologiques</a></li>
</ul>
<h2 id="méthodologie-de-la-dissertation-et-de-lexplication-de-texte">Méthodologie
de la dissertation et de l’explication de texte</h2>
<ul>
<li><a href="https://eyssette.github.io/chatMD/#https://eyssette.forge.aeif.fr/chatbot/dissertation-philosophie.md">Chatbot
pour poser ses questions à propos de la méthode de la dissertation en
philosophie</a></li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/outil-aide-ecriture-philosophie">Outil
d’aide à l’écriture d’un devoir en philosophie</a></li>
</ul>
<h2 id="introduction-à-la-philosophie">Introduction à la
philosophie</h2>
<ul>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/conseils-lectures-initiation-philosophie">Des
conseils de lecture pour une initiation à la philosophie</a></li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/chaines-video-interessantes">Des
chaînes vidéo intéressantes</a></li>
<li><a href="https://public.flourish.studio/visualisation/8516736/">Les
philosophes au programme en
<span style="white-space:nowrap">terminale :</span> une
visualisation</a></li>
<li><a href="https://eyssette.github.io/frise-philo/terminale.html">Frise
chronologique des philosophes au programme en terminale</a></li>
<li><a href="https://eyssette.github.io/frise-philo/">Frise
chronologique plus générale</a>, avec plus de philosophes</li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/manuels">Répertoire
des manuels en Philosophie et HLP</a>
<!-- - [Histoire de la philosophie : première approche](https://eyssette.github.io/timelines/philosophie-occidentale.html) : en cours de construction --></li>
</ul>
<h2 id="textes-de-philosophie">Textes de philosophie</h2>
<ul>
<li><a href="https://eyssette.github.io/dossiers/">Des dossiers de
textes sélectionnés et classés par thématiques, notions, et
auteurs</a></li>
<li><a href="https://eyssette.github.io/sujets-philosophie-bac/explications.html">Base
de données des sujets du bac pour les explications de texte</a></li>
</ul>
<h2 id="sujets-de-dissertation">Sujets de dissertation</h2>
<ul>
<li><a href="https://eyssette.github.io/sujets-philosophie/">Base de
données générale de sujets de dissertation</a>, tous niveaux (bac et
supérieur)</li>
<li><a href="https://eyssette.github.io/sujets-philosophie-bac/dissertations.html">Base
de données des sujets du bac pour les dissertations</a></li>
</ul>
<h2 id="pour-un-bac-blanc">Pour un bac blanc</h2>
<ul>
<li><a href="https://github.com/eyssette/ressources-generales-enseignement-philosophie/blob/master/modele-bac-blanc-series-generales.tex">Un
modèle Latex pour un sujet de bac blanc en séries générales</a> : à
utiliser avec <a href="https://www.overleaf.com/read/jsyvznxsxghn">overleaf</a> par
exemple (<a href="https://texlive2020.latexonline.cc/compile?git=https://github.com/eyssette/ressources-generales-enseignement-philosophie&target=modele-bac-blanc-series-generales.tex&command=pdflatex">rendu
en PDF</a>)</li>
<li><a href="https://github.com/eyssette/ressources-generales-enseignement-philosophie/blob/master/modele-bac-blanc-series-technologiques.tex">Un
modèle Latex pour un sujet de bac blanc en séries technologiques</a> : à
utiliser avec <a href="https://www.overleaf.com/read/mjkndwrjkkrh">overleaf</a> par
exemple (<a href="https://texlive2020.latexonline.cc/compile?git=https://github.com/eyssette/ressources-generales-enseignement-philosophie&target=modele-bac-blanc-series-technologiques.tex&command=pdflatex">rendu
en PDF</a>)</li>
</ul>
<h2 id="correction-des-copies">Correction des copies</h2>
<ul>
<li><a href="https://eyssette.github.io/mark-down-papers/">Un outil pour
annoter en ligne une
<span style="white-space:nowrap">copie :</span>
Mark(down)Papers</a></li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/liste-appreciations-courantes">Une
liste d’appréciations courantes pour la correction de dissertations ou
d’explications de texte</a></li>
<li><a href="https://eyssette.github.io/evaluation-rapide/">Un outil
d’aide à l’évaluation globale d’une copie</a></li>
<li><a href="https://eyssette.github.io/ressources-generales-enseignement-philosophie/remarques-sur-le-plagiat">Remarques
sur le plagiat</a></li>
</ul>
<h2 id="outils-numériques">Outils numériques</h2>
<ul>
<li><a href="https://eyssette.github.io/cours/form-num/c/">Utiliser le
numérique en philosophie</a> : site pour la formation et <a href="https://eyssette.github.io/marp-slides/slides/Formation_num%C3%A9rique.html">diaporama</a></li>
<li><a href="https://eyssette.github.io/myMarkmap/">Outil de carte
mentale</a></li>
<li><a href="https://text2quiz.vercel.app/">Logiciel de quiz en
ligne</a></li>
<li><a href="https://eyssette.forge.aeif.fr/a4/convert.html">Outil pour
imprimer du texte sur une page A4</a> (<a href="https://eyssette.github.io/a4/">explications du
fonctionnement</a>)</li>
<li><a href="https://eyssette.github.io/argument-map/">Application en
ligne pour créer des schémas d’arguments</a></li>
<li><a href="https://eyssette.github.io/combiendemots/">Un compteur de
mots</a> pour évaluer des temps de lecture, d’écriture, ou évaluer la
complexité d’un texte.</li>
<li><a href="https://eyssette.github.io/start-page/">Page d’accueil
personnalisée</a></li>
</ul>
</body>
</html>