]> git.lyx.org Git - lyx.git/blob - lib/examples/fr_mathed.lyx
french updates
[lyx.git] / lib / examples / fr_mathed.lyx
1 #LyX 1.2 created this file. For more info see http://www.lyx.org/
2 \lyxformat 220
3 \textclass article
4 \language frenchb
5 \inputencoding latin1
6 \fontscheme default
7 \graphics default
8 \float_placement H
9 \paperfontsize default
10 \spacing single 
11 \papersize Default
12 \paperpackage widemarginsa4
13 \use_geometry 0
14 \use_amsmath 1
15 \use_natbib 0
16 \use_numerical_citations 0
17 \paperorientation portrait
18 \secnumdepth 3
19 \tocdepth 3
20 \paragraph_separation indent
21 \defskip medskip
22 \quotes_language french
23 \quotes_times 2
24 \papercolumns 1
25 \papersides 1
26 \paperpagestyle default
27
28 \layout Section
29
30 Conversion de et vers Mathed
31 \begin_inset Note
32 collapsed true
33
34 \layout Standard
35
36 Informations de révision :
37 \layout Standard
38
39 Traduction : Mise à jour Date : 16/06/2002
40 \layout Standard
41
42 Original : Révision: 1.5, Date : 21/03/2002
43 \end_inset 
44
45  
46 \layout Standard
47
48 Vous pouvez taper des maths dans le corps du document puis les convertir
49  en Mathed en les sélectionnant et en tapant 
50 \family sans 
51 M-c\SpecialChar ~
52 m
53 \family default 
54 .
55  Le texte peut être séparé par des délimiteurs ou non.
56  Ainsi, en sélectionnant les formules ci-dessous :
57 \layout Standard
58 \align center 
59
60 \begin_inset  Tabular
61 <lyxtabular version="3" rows="5" columns="1">
62 <features>
63 <column alignment="left" valignment="top" width="0pt">
64 <row>
65 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
66 \begin_inset Text
67
68 \layout Standard
69
70
71 \backslash 
72 begin{math} 
73 \backslash 
74 frac{abc}{xyz} 
75 \backslash 
76 end{math}
77 \end_inset 
78 </cell>
79 </row>
80 <row>
81 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
82 \begin_inset Text
83
84 \layout Standard
85
86
87 \backslash 
88
89 \backslash 
90 frac{abc}{xyz} 
91 \backslash 
92 )
93 \end_inset 
94 </cell>
95 </row>
96 <row>
97 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
98 \begin_inset Text
99
100 \layout Standard
101
102
103 \backslash 
104 frac{abc}{xyz} $
105 \end_inset 
106 </cell>
107 </row>
108 <row>
109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
110 \begin_inset Text
111
112 \layout Standard
113
114
115 \backslash 
116 begin{displaymath} 
117 \backslash 
118 frac{abc}{xyz} 
119 \backslash 
120 end{displaymath}
121 \end_inset 
122 </cell>
123 </row>
124 <row>
125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
126 \begin_inset Text
127
128 \layout Standard
129
130
131 \backslash 
132
133 \backslash 
134 frac{abc}{xyz} 
135 \backslash 
136 ]
137 \end_inset 
138 </cell>
139 </row>
140 </lyxtabular>
141
142 \end_inset 
143
144
145 \layout Standard
146
147 vous obtiendrez :
148 \layout Standard
149
150
151 \begin_inset Formula \[
152 \frac{abc}{xyz}\]
153
154 \end_inset 
155
156
157 \layout Standard
158
159 Pour l'instant, il n'y a aucun moyen officiel de reconvertir le contenu
160  d'un insert mathématique en texte standard.
161  Cependant vous pouvez y arriver par des voies détournées.
162  Sélectionnez le contenu de l'insert mathématique (pas l'insert lui-même,
163  seulement son contenu), mais ne le copiez 
164 \emph on 
165 pas
166 \emph default 
167  dans le tampon LyX.
168  Il est maintenant en mémoire dans le tampon du système X et peut être recollé
169  dans le document avec le bouton milieu de la souris.
170 \layout Section
171
172 Afficher les symboles LaTeX
173 \layout Standard
174
175 Jusqu'à présent, LyX fournissait un équivalent visuel pour une petite partie
176  des symboles mathématiques disponibles en LaTeX.
177  À partir de la version 1.2, il offre l'affichage de la plupart des symboles
178  définis en LaTeX basique et 
179 \emph on 
180 tous
181 \emph default 
182  les symboles supplémentaires définis par l'AMS.
183  Par souci d'exhaustivité, nous vous reproduisons plus bas les tableaux
184  de symboles qui se trouvent dans les livres de Lamport et de Goossen.
185 \layout Standard
186
187 Cependant pour afficher ces symboles supplémentaires, il faut que les polices
188  nécessaires soient visibles par LyX.
189  Vous pouvez créer un répertoire contenant des liens symboliques vers les
190  polices requises avec le script suivant
191 \layout LyX-Code
192
193 #!/bin/sh
194 \layout LyX-Code
195
196 \layout LyX-Code
197
198 LYXDIR=`pwd`
199 \layout LyX-Code
200
201 LYX_XFONTS=$LYXDIR/xfonts
202 \layout LyX-Code
203
204 \layout LyX-Code
205
206 if [ ! -d $LYX_XFONTS ]; then
207 \layout LyX-Code
208
209     mkdir $LYX_XFONTS || exit
210 \layout LyX-Code
211
212 fi
213 \layout LyX-Code
214
215 \layout LyX-Code
216
217 rm -f $LYX_XFONTS/fonts.dir $LYX_XFONTS/fonts.scale
218 \layout LyX-Code
219
220 \layout LyX-Code
221
222 for file in `sed -e 's/^
223 \backslash 
224 (.*
225 \backslash 
226 .pf[ab]
227 \backslash 
228 ) .*$/
229 \backslash 
230 1/' < fonts-xlfd`; do
231 \layout LyX-Code
232
233     filepath=`kpsewhich $file`
234 \layout LyX-Code
235
236     if [ $? -eq 0 ]; then
237 \layout LyX-Code
238
239         if [ ! -e $LYX_XFONTS/$file ]; then
240 \layout LyX-Code
241
242             ln -s $filepath $LYX_XFONTS/$file
243 \layout LyX-Code
244
245         fi
246 \layout LyX-Code
247
248         echo `grep -e $file fonts-xlfd` >> $LYX_XFONTS/fonts.scale
249 \layout LyX-Code
250
251         echo "$file found."
252 \layout LyX-Code
253
254     fi
255 \layout LyX-Code
256
257 done
258 \layout LyX-Code
259
260 \layout LyX-Code
261
262 awk "/
263 \backslash 
264 .pf/ { nlines++ }
265 \backslash 
266
267 \layout LyX-Code
268
269 END { print nlines }" < $LYX_XFONTS/fonts.scale > $LYX_XFONTS/fonts.dir
270 \layout LyX-Code
271
272 \layout LyX-Code
273
274 cat $LYX_XFONTS/fonts.scale >> $LYX_XFONTS/fonts.dir
275 \layout LyX-Code
276
277 cp $LYX_XFONTS/fonts.dir $LYX_XFONTS/fonts.scale
278 \layout Standard
279
280 où le fichier 
281 \family typewriter 
282 fonts-xlfd
283 \family default 
284  contient
285 \layout LyX-Code
286
287 cmr10.pfb -bluesky-cmr-medium-r-normal--0-0-0-0-m-0-adobe-fontspecific
288 \layout LyX-Code
289
290 cmmi10.pfb -bluesky-cmmi-medium-i-normal--0-0-0-0-m-0-adobe-fontspecific
291 \layout LyX-Code
292
293 cmsy10.pfb -bluesky-cmsy-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
294 \layout LyX-Code
295
296 cmex10.pfb -bluesky-cmex-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
297 \layout LyX-Code
298
299 eufr10.pfb -bluesky-eufrak--medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
300 \layout LyX-Code
301
302 eufb10.pfb -bluesky-eufrak-bold-r-normal--0-0-0-0-p-0-adobe-fontspecific
303 \layout LyX-Code
304
305 eusr10.pfb -bluesky-eus-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
306 \layout LyX-Code
307
308 eusb10.pfb -bluesky-eus-bold-r-normal--0-0-0-0-p-0-adobe-fontspecific
309 \layout LyX-Code
310
311 msam10.pfb -bluesky-msam-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
312 \layout LyX-Code
313
314 msbm10.pfb -bluesky-msbm-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
315 \layout LyX-Code
316
317 marvosym.pfb -marvo-marvosym-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
318 \layout LyX-Code
319
320 wasy10.pfb -hoekwater-wasy-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
321 \layout LyX-Code
322
323 wasyb10.pfb -hoekwater-wasy-bold-r-normal--0-0-0-0-p-0-adobe-fontspecific
324 \layout LyX-Code
325
326 logo10.pfb -hoekwater-logo-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
327 \layout LyX-Code
328
329 logobf10.pfb -hoekwater-logo-bold-r-normal--0-0-0-0-p-0-adobe-fontspecific
330 \layout LyX-Code
331
332 plcrm.pfa -adobe-lcrm-medium-i-normal--0-0-0-0-p-0-adobe-fontspecific
333 \layout LyX-Code
334
335 plcry.pfa -adobe-lcry-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
336 \layout LyX-Code
337
338 plcrv.pfa -adobe-lcrv-medium-r-normal--0-0-0-0-p-0-adobe-fontspecific
339 \layout Standard
340
341 Ensuite, vous devez dire indiquer au serveur X l'emplacement de ce répertoire
342  et des polices s'y trouvant.
343  Tapez
344 \layout LyX-Code
345
346 xset +fp LYX_XFONTS; xset fp rehash
347 \layout Standard
348
349 à la console, redémarrez LyX, chargez ce document et savourez !
350 \layout Section
351
352 Quelques tableaux de symboles mathématiques
353 \layout Standard
354
355 Si vous avez suivi les instructions qui précèdent, les tableaux ci-dessous
356  extraits du livre 
357 \begin_inset Quotes fld
358 \end_inset 
359
360 The LaTeX companion
361 \begin_inset Quotes frd
362 \end_inset 
363
364  de Goossen et al.
365  apparaîtront dans toute leur splendeur.
366  Dans le cas contraire vous verrez un paquet de texte en rouge !
367 \layout Standard
368
369
370 \begin_inset ERT
371 status Open
372
373 \layout Standard
374
375 \backslash 
376 setcounter{table}{1}
377 \layout Standard
378
379 \backslash 
380 renewcommand{
381 \backslash 
382 thetable}{8.
383 \backslash 
384 arabic{table}}
385 \end_inset 
386
387
388 \layout Standard
389
390
391 \begin_inset Float table
392 placement H
393 wide false
394 collapsed false
395
396 \layout Standard
397
398
399 \begin_inset  Tabular
400 <lyxtabular version="3" rows="2" columns="10">
401 <features>
402 <column alignment="right" valignment="top" width="0pt">
403 <column alignment="left" valignment="top" width="0pt">
404 <column alignment="right" valignment="top" width="0pt">
405 <column alignment="left" valignment="top" width="0pt">
406 <column alignment="right" valignment="top" width="0pt">
407 <column alignment="left" valignment="top" width="0pt">
408 <column alignment="right" valignment="top" width="0pt">
409 <column alignment="left" valignment="top" width="0pt">
410 <column alignment="right" valignment="top" width="0pt">
411 <column alignment="left" valignment="top" width="0pt">
412 <row>
413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
414 \begin_inset Text
415
416 \layout Standard
417
418
419 \family typewriter 
420
421 \begin_inset Formula $\hat{a}$
422 \end_inset 
423
424
425 \end_inset 
426 </cell>
427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
428 \begin_inset Text
429
430 \layout Standard
431
432
433 \family typewriter 
434
435 \backslash 
436 hat{a}
437 \end_inset 
438 </cell>
439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
440 \begin_inset Text
441
442 \layout Standard
443
444
445 \family typewriter 
446
447 \begin_inset Formula $\acute{a}$
448 \end_inset 
449
450
451 \end_inset 
452 </cell>
453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
454 \begin_inset Text
455
456 \layout Standard
457
458
459 \family typewriter 
460
461 \backslash 
462 acute{a}
463 \end_inset 
464 </cell>
465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
466 \begin_inset Text
467
468 \layout Standard
469
470
471 \family typewriter 
472
473 \begin_inset Formula $\bar{a}$
474 \end_inset 
475
476
477 \end_inset 
478 </cell>
479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
480 \begin_inset Text
481
482 \layout Standard
483
484
485 \family typewriter 
486
487 \backslash 
488 bar{a}
489 \end_inset 
490 </cell>
491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
492 \begin_inset Text
493
494 \layout Standard
495
496
497 \family typewriter 
498
499 \begin_inset Formula $\dot{a}$
500 \end_inset 
501
502
503 \end_inset 
504 </cell>
505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
506 \begin_inset Text
507
508 \layout Standard
509
510
511 \family typewriter 
512
513 \backslash 
514 dot{a}
515 \end_inset 
516 </cell>
517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
518 \begin_inset Text
519
520 \layout Standard
521
522
523 \family typewriter 
524
525 \begin_inset Formula $\breve{a}$
526 \end_inset 
527
528
529 \end_inset 
530 </cell>
531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
532 \begin_inset Text
533
534 \layout Standard
535
536
537 \family typewriter 
538
539 \backslash 
540 breve{a}
541 \end_inset 
542 </cell>
543 </row>
544 <row>
545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
546 \begin_inset Text
547
548 \layout Standard
549
550
551 \family typewriter 
552
553 \begin_inset Formula $\check{a}$
554 \end_inset 
555
556
557 \end_inset 
558 </cell>
559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
560 \begin_inset Text
561
562 \layout Standard
563
564
565 \family typewriter 
566
567 \backslash 
568 check{a}
569 \end_inset 
570 </cell>
571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
572 \begin_inset Text
573
574 \layout Standard
575
576
577 \family typewriter 
578
579 \begin_inset Formula $\grave{a}$
580 \end_inset 
581
582
583 \end_inset 
584 </cell>
585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
586 \begin_inset Text
587
588 \layout Standard
589
590
591 \family typewriter 
592
593 \backslash 
594 grave{a}
595 \end_inset 
596 </cell>
597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
598 \begin_inset Text
599
600 \layout Standard
601
602
603 \family typewriter 
604
605 \begin_inset Formula $\vec{a}$
606 \end_inset 
607
608
609 \end_inset 
610 </cell>
611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
612 \begin_inset Text
613
614 \layout Standard
615
616
617 \family typewriter 
618
619 \backslash 
620 vec{a}
621 \end_inset 
622 </cell>
623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
624 \begin_inset Text
625
626 \layout Standard
627
628
629 \family typewriter 
630
631 \begin_inset Formula $\ddot{a}$
632 \end_inset 
633
634
635 \end_inset 
636 </cell>
637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
638 \begin_inset Text
639
640 \layout Standard
641
642
643 \family typewriter 
644
645 \backslash 
646 ddot{a}
647 \end_inset 
648 </cell>
649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
650 \begin_inset Text
651
652 \layout Standard
653
654
655 \family typewriter 
656
657 \begin_inset Formula $\tilde{a}$
658 \end_inset 
659
660
661 \end_inset 
662 </cell>
663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
664 \begin_inset Text
665
666 \layout Standard
667
668
669 \family typewriter 
670
671 \backslash 
672 tilde{a}
673 \end_inset 
674 </cell>
675 </row>
676 </lyxtabular>
677
678 \end_inset 
679
680
681 \layout Caption
682
683 Accents en mode mathématique
684 \end_inset 
685
686
687 \layout Standard
688
689
690 \begin_inset Float table
691 placement H
692 wide false
693 collapsed false
694
695 \layout Standard
696
697
698 \begin_inset  Tabular
699 <lyxtabular version="3" rows="11" columns="8">
700 <features>
701 <column alignment="right" valignment="top" width="0pt">
702 <column alignment="left" valignment="top" width="0pt">
703 <column alignment="right" valignment="top" width="0pt">
704 <column alignment="left" valignment="top" width="0pt">
705 <column alignment="right" valignment="top" width="0pt">
706 <column alignment="left" valignment="top" width="0pt">
707 <column alignment="right" valignment="top" width="0pt">
708 <column alignment="left" valignment="top" width="0pt">
709 <row>
710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
711 \begin_inset Text
712
713 \layout Standard
714
715
716 \begin_inset Formula $\alpha $
717 \end_inset 
718
719
720 \end_inset 
721 </cell>
722 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
723 \begin_inset Text
724
725 \layout Standard
726
727
728 \family typewriter 
729
730 \backslash 
731 alpha
732 \end_inset 
733 </cell>
734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
735 \begin_inset Text
736
737 \layout Standard
738
739
740 \begin_inset Formula $\beta $
741 \end_inset 
742
743
744 \end_inset 
745 </cell>
746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
747 \begin_inset Text
748
749 \layout Standard
750
751
752 \family typewriter 
753
754 \backslash 
755 beta
756 \end_inset 
757 </cell>
758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
759 \begin_inset Text
760
761 \layout Standard
762
763
764 \begin_inset Formula $\gamma $
765 \end_inset 
766
767
768 \end_inset 
769 </cell>
770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
771 \begin_inset Text
772
773 \layout Standard
774
775
776 \family typewriter 
777
778 \backslash 
779 gamma
780 \end_inset 
781 </cell>
782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
783 \begin_inset Text
784
785 \layout Standard
786
787
788 \begin_inset Formula $\delta $
789 \end_inset 
790
791
792 \end_inset 
793 </cell>
794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
795 \begin_inset Text
796
797 \layout Standard
798
799
800 \family typewriter 
801
802 \backslash 
803 delta
804 \end_inset 
805 </cell>
806 </row>
807 <row>
808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
809 \begin_inset Text
810
811 \layout Standard
812
813
814 \begin_inset Formula $\epsilon $
815 \end_inset 
816
817
818 \end_inset 
819 </cell>
820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
821 \begin_inset Text
822
823 \layout Standard
824
825
826 \family typewriter 
827
828 \backslash 
829 epsilon
830 \end_inset 
831 </cell>
832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
833 \begin_inset Text
834
835 \layout Standard
836
837
838 \begin_inset Formula $\varepsilon $
839 \end_inset 
840
841
842 \end_inset 
843 </cell>
844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
845 \begin_inset Text
846
847 \layout Standard
848
849
850 \family typewriter 
851
852 \backslash 
853 varepsilon
854 \end_inset 
855 </cell>
856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
857 \begin_inset Text
858
859 \layout Standard
860
861
862 \begin_inset Formula $\zeta $
863 \end_inset 
864
865
866 \end_inset 
867 </cell>
868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
869 \begin_inset Text
870
871 \layout Standard
872
873
874 \family typewriter 
875
876 \backslash 
877 zeta
878 \end_inset 
879 </cell>
880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
881 \begin_inset Text
882
883 \layout Standard
884
885
886 \begin_inset Formula $\eta $
887 \end_inset 
888
889
890 \end_inset 
891 </cell>
892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
893 \begin_inset Text
894
895 \layout Standard
896
897
898 \family typewriter 
899
900 \backslash 
901 eta
902 \end_inset 
903 </cell>
904 </row>
905 <row>
906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
907 \begin_inset Text
908
909 \layout Standard
910
911
912 \begin_inset Formula $\theta $
913 \end_inset 
914
915
916 \end_inset 
917 </cell>
918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
919 \begin_inset Text
920
921 \layout Standard
922
923
924 \family typewriter 
925
926 \backslash 
927 theta
928 \end_inset 
929 </cell>
930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
931 \begin_inset Text
932
933 \layout Standard
934
935
936 \begin_inset Formula $\vartheta $
937 \end_inset 
938
939
940 \end_inset 
941 </cell>
942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
943 \begin_inset Text
944
945 \layout Standard
946
947
948 \family typewriter 
949
950 \backslash 
951 vartheta
952 \end_inset 
953 </cell>
954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
955 \begin_inset Text
956
957 \layout Standard
958
959
960 \begin_inset Formula $\iota $
961 \end_inset 
962
963
964 \end_inset 
965 </cell>
966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
967 \begin_inset Text
968
969 \layout Standard
970
971
972 \family typewriter 
973
974 \backslash 
975 iota
976 \end_inset 
977 </cell>
978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
979 \begin_inset Text
980
981 \layout Standard
982
983
984 \begin_inset Formula $\kappa $
985 \end_inset 
986
987
988 \end_inset 
989 </cell>
990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
991 \begin_inset Text
992
993 \layout Standard
994
995
996 \family typewriter 
997
998 \backslash 
999 kappa
1000 \end_inset 
1001 </cell>
1002 </row>
1003 <row>
1004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1005 \begin_inset Text
1006
1007 \layout Standard
1008
1009
1010 \begin_inset Formula $\lambda $
1011 \end_inset 
1012
1013
1014 \end_inset 
1015 </cell>
1016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1017 \begin_inset Text
1018
1019 \layout Standard
1020
1021
1022 \family typewriter 
1023
1024 \backslash 
1025 lambda
1026 \end_inset 
1027 </cell>
1028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1029 \begin_inset Text
1030
1031 \layout Standard
1032
1033
1034 \begin_inset Formula $\mu $
1035 \end_inset 
1036
1037
1038 \end_inset 
1039 </cell>
1040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1041 \begin_inset Text
1042
1043 \layout Standard
1044
1045
1046 \family typewriter 
1047
1048 \backslash 
1049 mu
1050 \end_inset 
1051 </cell>
1052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1053 \begin_inset Text
1054
1055 \layout Standard
1056
1057
1058 \begin_inset Formula $\nu $
1059 \end_inset 
1060
1061
1062 \end_inset 
1063 </cell>
1064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1065 \begin_inset Text
1066
1067 \layout Standard
1068
1069
1070 \family typewriter 
1071
1072 \backslash 
1073 nu
1074 \end_inset 
1075 </cell>
1076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1077 \begin_inset Text
1078
1079 \layout Standard
1080
1081
1082 \begin_inset Formula $\xi $
1083 \end_inset 
1084
1085
1086 \end_inset 
1087 </cell>
1088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1089 \begin_inset Text
1090
1091 \layout Standard
1092
1093
1094 \family typewriter 
1095
1096 \backslash 
1097 xi
1098 \end_inset 
1099 </cell>
1100 </row>
1101 <row>
1102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1103 \begin_inset Text
1104
1105 \layout Standard
1106
1107
1108 \begin_inset Formula $o$
1109 \end_inset 
1110
1111
1112 \end_inset 
1113 </cell>
1114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1115 \begin_inset Text
1116
1117 \layout Standard
1118
1119 o
1120 \end_inset 
1121 </cell>
1122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1123 \begin_inset Text
1124
1125 \layout Standard
1126
1127
1128 \begin_inset Formula $\pi $
1129 \end_inset 
1130
1131
1132 \end_inset 
1133 </cell>
1134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1135 \begin_inset Text
1136
1137 \layout Standard
1138
1139
1140 \family typewriter 
1141
1142 \backslash 
1143 pi
1144 \end_inset 
1145 </cell>
1146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1147 \begin_inset Text
1148
1149 \layout Standard
1150
1151
1152 \begin_inset Formula $\varpi $
1153 \end_inset 
1154
1155
1156 \end_inset 
1157 </cell>
1158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1159 \begin_inset Text
1160
1161 \layout Standard
1162
1163
1164 \family typewriter 
1165
1166 \backslash 
1167 varpi
1168 \end_inset 
1169 </cell>
1170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1171 \begin_inset Text
1172
1173 \layout Standard
1174
1175
1176 \begin_inset Formula $\rho $
1177 \end_inset 
1178
1179
1180 \end_inset 
1181 </cell>
1182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1183 \begin_inset Text
1184
1185 \layout Standard
1186
1187
1188 \family typewriter 
1189
1190 \backslash 
1191 rho
1192 \end_inset 
1193 </cell>
1194 </row>
1195 <row>
1196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1197 \begin_inset Text
1198
1199 \layout Standard
1200
1201
1202 \begin_inset Formula $\varrho $
1203 \end_inset 
1204
1205
1206 \end_inset 
1207 </cell>
1208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1209 \begin_inset Text
1210
1211 \layout Standard
1212
1213
1214 \family typewriter 
1215
1216 \backslash 
1217 varrho
1218 \end_inset 
1219 </cell>
1220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1221 \begin_inset Text
1222
1223 \layout Standard
1224
1225
1226 \begin_inset Formula $\sigma $
1227 \end_inset 
1228
1229
1230 \end_inset 
1231 </cell>
1232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1233 \begin_inset Text
1234
1235 \layout Standard
1236
1237
1238 \family typewriter 
1239
1240 \backslash 
1241 sigma
1242 \end_inset 
1243 </cell>
1244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1245 \begin_inset Text
1246
1247 \layout Standard
1248
1249
1250 \begin_inset Formula $\varsigma $
1251 \end_inset 
1252
1253
1254 \end_inset 
1255 </cell>
1256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1257 \begin_inset Text
1258
1259 \layout Standard
1260
1261
1262 \family typewriter 
1263
1264 \backslash 
1265 varsigma
1266 \end_inset 
1267 </cell>
1268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1269 \begin_inset Text
1270
1271 \layout Standard
1272
1273
1274 \begin_inset Formula $\tau $
1275 \end_inset 
1276
1277
1278 \end_inset 
1279 </cell>
1280 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1281 \begin_inset Text
1282
1283 \layout Standard
1284
1285
1286 \family typewriter 
1287
1288 \backslash 
1289 tau
1290 \end_inset 
1291 </cell>
1292 </row>
1293 <row>
1294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1295 \begin_inset Text
1296
1297 \layout Standard
1298
1299
1300 \begin_inset Formula $\upsilon $
1301 \end_inset 
1302
1303
1304 \end_inset 
1305 </cell>
1306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1307 \begin_inset Text
1308
1309 \layout Standard
1310
1311
1312 \family typewriter 
1313
1314 \backslash 
1315 upsilon
1316 \end_inset 
1317 </cell>
1318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1319 \begin_inset Text
1320
1321 \layout Standard
1322
1323
1324 \begin_inset Formula $\phi $
1325 \end_inset 
1326
1327
1328 \end_inset 
1329 </cell>
1330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1331 \begin_inset Text
1332
1333 \layout Standard
1334
1335
1336 \family typewriter 
1337
1338 \backslash 
1339 phi
1340 \end_inset 
1341 </cell>
1342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1343 \begin_inset Text
1344
1345 \layout Standard
1346
1347
1348 \begin_inset Formula $\varphi $
1349 \end_inset 
1350
1351
1352 \end_inset 
1353 </cell>
1354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1355 \begin_inset Text
1356
1357 \layout Standard
1358
1359
1360 \family typewriter 
1361
1362 \backslash 
1363 varphi
1364 \end_inset 
1365 </cell>
1366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1367 \begin_inset Text
1368
1369 \layout Standard
1370
1371
1372 \begin_inset Formula $\chi $
1373 \end_inset 
1374
1375
1376 \end_inset 
1377 </cell>
1378 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1379 \begin_inset Text
1380
1381 \layout Standard
1382
1383
1384 \family typewriter 
1385
1386 \backslash 
1387 chi
1388 \end_inset 
1389 </cell>
1390 </row>
1391 <row>
1392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1393 \begin_inset Text
1394
1395 \layout Standard
1396
1397
1398 \begin_inset Formula $\psi $
1399 \end_inset 
1400
1401
1402 \end_inset 
1403 </cell>
1404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1405 \begin_inset Text
1406
1407 \layout Standard
1408
1409
1410 \family typewriter 
1411
1412 \backslash 
1413 psi
1414 \end_inset 
1415 </cell>
1416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1417 \begin_inset Text
1418
1419 \layout Standard
1420
1421
1422 \begin_inset Formula $\omega $
1423 \end_inset 
1424
1425
1426 \end_inset 
1427 </cell>
1428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1429 \begin_inset Text
1430
1431 \layout Standard
1432
1433
1434 \family typewriter 
1435
1436 \backslash 
1437 omega
1438 \end_inset 
1439 </cell>
1440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1441 \begin_inset Text
1442
1443 \layout Standard
1444
1445 \end_inset 
1446 </cell>
1447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1448 \begin_inset Text
1449
1450 \layout Standard
1451
1452 \end_inset 
1453 </cell>
1454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1455 \begin_inset Text
1456
1457 \layout Standard
1458
1459 \end_inset 
1460 </cell>
1461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1462 \begin_inset Text
1463
1464 \layout Standard
1465
1466 \end_inset 
1467 </cell>
1468 </row>
1469 <row>
1470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1471 \begin_inset Text
1472
1473 \layout Standard
1474
1475
1476 \begin_inset Formula $\Gamma $
1477 \end_inset 
1478
1479
1480 \end_inset 
1481 </cell>
1482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1483 \begin_inset Text
1484
1485 \layout Standard
1486
1487
1488 \family typewriter 
1489
1490 \backslash 
1491 Gamma
1492 \end_inset 
1493 </cell>
1494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1495 \begin_inset Text
1496
1497 \layout Standard
1498
1499
1500 \begin_inset Formula $\Delta $
1501 \end_inset 
1502
1503
1504 \end_inset 
1505 </cell>
1506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1507 \begin_inset Text
1508
1509 \layout Standard
1510
1511
1512 \family typewriter 
1513
1514 \backslash 
1515 Delta
1516 \end_inset 
1517 </cell>
1518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1519 \begin_inset Text
1520
1521 \layout Standard
1522
1523
1524 \begin_inset Formula $\Theta $
1525 \end_inset 
1526
1527
1528 \end_inset 
1529 </cell>
1530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1531 \begin_inset Text
1532
1533 \layout Standard
1534
1535
1536 \family typewriter 
1537
1538 \backslash 
1539 Theta
1540 \end_inset 
1541 </cell>
1542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1543 \begin_inset Text
1544
1545 \layout Standard
1546
1547
1548 \begin_inset Formula $\Lambda $
1549 \end_inset 
1550
1551
1552 \end_inset 
1553 </cell>
1554 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1555 \begin_inset Text
1556
1557 \layout Standard
1558
1559
1560 \family typewriter 
1561
1562 \backslash 
1563 Lambda
1564 \end_inset 
1565 </cell>
1566 </row>
1567 <row>
1568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1569 \begin_inset Text
1570
1571 \layout Standard
1572
1573
1574 \begin_inset Formula $\Xi $
1575 \end_inset 
1576
1577
1578 \end_inset 
1579 </cell>
1580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1581 \begin_inset Text
1582
1583 \layout Standard
1584
1585
1586 \family typewriter 
1587
1588 \backslash 
1589 Xi
1590 \end_inset 
1591 </cell>
1592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1593 \begin_inset Text
1594
1595 \layout Standard
1596
1597
1598 \begin_inset Formula $\Pi $
1599 \end_inset 
1600
1601
1602 \end_inset 
1603 </cell>
1604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1605 \begin_inset Text
1606
1607 \layout Standard
1608
1609
1610 \family typewriter 
1611
1612 \backslash 
1613 Pi
1614 \end_inset 
1615 </cell>
1616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1617 \begin_inset Text
1618
1619 \layout Standard
1620
1621
1622 \begin_inset Formula $\Sigma $
1623 \end_inset 
1624
1625
1626 \end_inset 
1627 </cell>
1628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1629 \begin_inset Text
1630
1631 \layout Standard
1632
1633
1634 \family typewriter 
1635
1636 \backslash 
1637 Sigma
1638 \end_inset 
1639 </cell>
1640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1641 \begin_inset Text
1642
1643 \layout Standard
1644
1645
1646 \begin_inset Formula $\Upsilon $
1647 \end_inset 
1648
1649
1650 \end_inset 
1651 </cell>
1652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1653 \begin_inset Text
1654
1655 \layout Standard
1656
1657
1658 \family typewriter 
1659
1660 \backslash 
1661 Upsilon
1662 \end_inset 
1663 </cell>
1664 </row>
1665 <row>
1666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1667 \begin_inset Text
1668
1669 \layout Standard
1670
1671
1672 \begin_inset Formula $\Phi $
1673 \end_inset 
1674
1675
1676 \end_inset 
1677 </cell>
1678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1679 \begin_inset Text
1680
1681 \layout Standard
1682
1683
1684 \family typewriter 
1685
1686 \backslash 
1687 Phi
1688 \end_inset 
1689 </cell>
1690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1691 \begin_inset Text
1692
1693 \layout Standard
1694
1695
1696 \begin_inset Formula $\Psi $
1697 \end_inset 
1698
1699
1700 \end_inset 
1701 </cell>
1702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1703 \begin_inset Text
1704
1705 \layout Standard
1706
1707
1708 \family typewriter 
1709
1710 \backslash 
1711 Psi
1712 \end_inset 
1713 </cell>
1714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1715 \begin_inset Text
1716
1717 \layout Standard
1718
1719
1720 \begin_inset Formula $\Omega $
1721 \end_inset 
1722
1723
1724 \end_inset 
1725 </cell>
1726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1727 \begin_inset Text
1728
1729 \layout Standard
1730
1731
1732 \family typewriter 
1733
1734 \backslash 
1735 Omega
1736 \end_inset 
1737 </cell>
1738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1739 \begin_inset Text
1740
1741 \layout Standard
1742
1743 \end_inset 
1744 </cell>
1745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1746 \begin_inset Text
1747
1748 \layout Standard
1749
1750 \end_inset 
1751 </cell>
1752 </row>
1753 </lyxtabular>
1754
1755 \end_inset 
1756
1757
1758 \layout Caption
1759
1760 Lettres grecques
1761 \end_inset 
1762
1763
1764 \layout Standard
1765
1766
1767 \begin_inset Float table
1768 placement H
1769 wide false
1770 collapsed false
1771
1772 \layout Standard
1773
1774
1775 \begin_inset  Tabular
1776 <lyxtabular version="3" rows="9" columns="8">
1777 <features>
1778 <column alignment="right" valignment="top" width="0pt">
1779 <column alignment="left" valignment="top" width="0pt">
1780 <column alignment="right" valignment="top" width="0pt">
1781 <column alignment="left" valignment="top" width="0pt">
1782 <column alignment="right" valignment="top" width="0pt">
1783 <column alignment="left" valignment="top" width="0pt">
1784 <column alignment="right" valignment="top" width="0pt">
1785 <column alignment="left" valignment="top" width="0pt">
1786 <row>
1787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1788 \begin_inset Text
1789
1790 \layout Standard
1791
1792
1793 \begin_inset Formula $\pm $
1794 \end_inset 
1795
1796
1797 \end_inset 
1798 </cell>
1799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1800 \begin_inset Text
1801
1802 \layout Standard
1803
1804
1805 \family typewriter 
1806
1807 \backslash 
1808 pm
1809 \end_inset 
1810 </cell>
1811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1812 \begin_inset Text
1813
1814 \layout Standard
1815
1816
1817 \begin_inset Formula $\cap $
1818 \end_inset 
1819
1820
1821 \end_inset 
1822 </cell>
1823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1824 \begin_inset Text
1825
1826 \layout Standard
1827
1828
1829 \family typewriter 
1830
1831 \backslash 
1832 cap
1833 \end_inset 
1834 </cell>
1835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1836 \begin_inset Text
1837
1838 \layout Standard
1839
1840
1841 \begin_inset Formula $\diamond $
1842 \end_inset 
1843
1844
1845 \end_inset 
1846 </cell>
1847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1848 \begin_inset Text
1849
1850 \layout Standard
1851
1852
1853 \family typewriter 
1854
1855 \backslash 
1856 diamond
1857 \end_inset 
1858 </cell>
1859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1860 \begin_inset Text
1861
1862 \layout Standard
1863
1864
1865 \begin_inset Formula $\oplus $
1866 \end_inset 
1867
1868
1869 \end_inset 
1870 </cell>
1871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1872 \begin_inset Text
1873
1874 \layout Standard
1875
1876
1877 \family typewriter 
1878
1879 \backslash 
1880 oplus
1881 \end_inset 
1882 </cell>
1883 </row>
1884 <row>
1885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1886 \begin_inset Text
1887
1888 \layout Standard
1889
1890
1891 \begin_inset Formula $\mp $
1892 \end_inset 
1893
1894
1895 \end_inset 
1896 </cell>
1897 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1898 \begin_inset Text
1899
1900 \layout Standard
1901
1902
1903 \family typewriter 
1904
1905 \backslash 
1906 mp
1907 \end_inset 
1908 </cell>
1909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1910 \begin_inset Text
1911
1912 \layout Standard
1913
1914
1915 \begin_inset Formula $\cup $
1916 \end_inset 
1917
1918
1919 \end_inset 
1920 </cell>
1921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1922 \begin_inset Text
1923
1924 \layout Standard
1925
1926
1927 \family typewriter 
1928
1929 \backslash 
1930 cup
1931 \end_inset 
1932 </cell>
1933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1934 \begin_inset Text
1935
1936 \layout Standard
1937
1938
1939 \begin_inset Formula $\bigtriangleup $
1940 \end_inset 
1941
1942
1943 \end_inset 
1944 </cell>
1945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1946 \begin_inset Text
1947
1948 \layout Standard
1949
1950
1951 \family typewriter 
1952
1953 \backslash 
1954 bigtriangleup
1955 \end_inset 
1956 </cell>
1957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1958 \begin_inset Text
1959
1960 \layout Standard
1961
1962
1963 \begin_inset Formula $\ominus $
1964 \end_inset 
1965
1966
1967 \end_inset 
1968 </cell>
1969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1970 \begin_inset Text
1971
1972 \layout Standard
1973
1974
1975 \family typewriter 
1976
1977 \backslash 
1978 ominus
1979 \end_inset 
1980 </cell>
1981 </row>
1982 <row>
1983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1984 \begin_inset Text
1985
1986 \layout Standard
1987
1988
1989 \begin_inset Formula $\times $
1990 \end_inset 
1991
1992
1993 \end_inset 
1994 </cell>
1995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1996 \begin_inset Text
1997
1998 \layout Standard
1999
2000
2001 \family typewriter 
2002
2003 \backslash 
2004 times
2005 \end_inset 
2006 </cell>
2007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2008 \begin_inset Text
2009
2010 \layout Standard
2011
2012
2013 \begin_inset Formula $\uplus $
2014 \end_inset 
2015
2016
2017 \end_inset 
2018 </cell>
2019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2020 \begin_inset Text
2021
2022 \layout Standard
2023
2024
2025 \family typewriter 
2026
2027 \backslash 
2028 uplus
2029 \end_inset 
2030 </cell>
2031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2032 \begin_inset Text
2033
2034 \layout Standard
2035
2036
2037 \begin_inset Formula $\bigtriangledown $
2038 \end_inset 
2039
2040
2041 \end_inset 
2042 </cell>
2043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2044 \begin_inset Text
2045
2046 \layout Standard
2047
2048
2049 \family typewriter 
2050
2051 \backslash 
2052 bigtriangledown
2053 \end_inset 
2054 </cell>
2055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2056 \begin_inset Text
2057
2058 \layout Standard
2059
2060
2061 \begin_inset Formula $\otimes $
2062 \end_inset 
2063
2064
2065 \end_inset 
2066 </cell>
2067 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2068 \begin_inset Text
2069
2070 \layout Standard
2071
2072
2073 \family typewriter 
2074
2075 \backslash 
2076 otimes
2077 \end_inset 
2078 </cell>
2079 </row>
2080 <row>
2081 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2082 \begin_inset Text
2083
2084 \layout Standard
2085
2086
2087 \begin_inset Formula $\div $
2088 \end_inset 
2089
2090
2091 \end_inset 
2092 </cell>
2093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2094 \begin_inset Text
2095
2096 \layout Standard
2097
2098
2099 \family typewriter 
2100
2101 \backslash 
2102 div
2103 \end_inset 
2104 </cell>
2105 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2106 \begin_inset Text
2107
2108 \layout Standard
2109
2110
2111 \begin_inset Formula $\sqcap $
2112 \end_inset 
2113
2114
2115 \end_inset 
2116 </cell>
2117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2118 \begin_inset Text
2119
2120 \layout Standard
2121
2122
2123 \family typewriter 
2124
2125 \backslash 
2126 sqcap
2127 \end_inset 
2128 </cell>
2129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2130 \begin_inset Text
2131
2132 \layout Standard
2133
2134
2135 \begin_inset Formula $\triangleleft $
2136 \end_inset 
2137
2138
2139 \end_inset 
2140 </cell>
2141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2142 \begin_inset Text
2143
2144 \layout Standard
2145
2146
2147 \family typewriter 
2148
2149 \backslash 
2150 triangleleft
2151 \end_inset 
2152 </cell>
2153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2154 \begin_inset Text
2155
2156 \layout Standard
2157
2158
2159 \begin_inset Formula $\oslash $
2160 \end_inset 
2161
2162
2163 \end_inset 
2164 </cell>
2165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2166 \begin_inset Text
2167
2168 \layout Standard
2169
2170
2171 \family typewriter 
2172
2173 \backslash 
2174 oslash
2175 \end_inset 
2176 </cell>
2177 </row>
2178 <row>
2179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2180 \begin_inset Text
2181
2182 \layout Standard
2183
2184
2185 \begin_inset Formula $\ast $
2186 \end_inset 
2187
2188
2189 \end_inset 
2190 </cell>
2191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2192 \begin_inset Text
2193
2194 \layout Standard
2195
2196
2197 \family typewriter 
2198
2199 \backslash 
2200 ast
2201 \end_inset 
2202 </cell>
2203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2204 \begin_inset Text
2205
2206 \layout Standard
2207
2208
2209 \begin_inset Formula $\sqcup $
2210 \end_inset 
2211
2212
2213 \end_inset 
2214 </cell>
2215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2216 \begin_inset Text
2217
2218 \layout Standard
2219
2220
2221 \family typewriter 
2222
2223 \backslash 
2224 sqcup
2225 \end_inset 
2226 </cell>
2227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2228 \begin_inset Text
2229
2230 \layout Standard
2231
2232
2233 \begin_inset Formula $\triangleright $
2234 \end_inset 
2235
2236
2237 \end_inset 
2238 </cell>
2239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2240 \begin_inset Text
2241
2242 \layout Standard
2243
2244
2245 \family typewriter 
2246
2247 \backslash 
2248 triangleright
2249 \end_inset 
2250 </cell>
2251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2252 \begin_inset Text
2253
2254 \layout Standard
2255
2256
2257 \begin_inset Formula $\odot $
2258 \end_inset 
2259
2260
2261 \end_inset 
2262 </cell>
2263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2264 \begin_inset Text
2265
2266 \layout Standard
2267
2268
2269 \family typewriter 
2270
2271 \backslash 
2272 odot
2273 \end_inset 
2274 </cell>
2275 </row>
2276 <row>
2277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2278 \begin_inset Text
2279
2280 \layout Standard
2281
2282
2283 \begin_inset Formula $\star $
2284 \end_inset 
2285
2286
2287 \end_inset 
2288 </cell>
2289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2290 \begin_inset Text
2291
2292 \layout Standard
2293
2294
2295 \family typewriter 
2296
2297 \backslash 
2298 star
2299 \end_inset 
2300 </cell>
2301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2302 \begin_inset Text
2303
2304 \layout Standard
2305
2306
2307 \begin_inset Formula $\vee $
2308 \end_inset 
2309
2310
2311 \end_inset 
2312 </cell>
2313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2314 \begin_inset Text
2315
2316 \layout Standard
2317
2318
2319 \family typewriter 
2320
2321 \backslash 
2322 vee
2323 \end_inset 
2324 </cell>
2325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2326 \begin_inset Text
2327
2328 \layout Standard
2329
2330
2331 \begin_inset Formula $\lhd $
2332 \end_inset 
2333
2334
2335 \end_inset 
2336 </cell>
2337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2338 \begin_inset Text
2339
2340 \layout Standard
2341
2342
2343 \family typewriter 
2344
2345 \backslash 
2346 lhd
2347 \end_inset 
2348 </cell>
2349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2350 \begin_inset Text
2351
2352 \layout Standard
2353
2354
2355 \begin_inset Formula $\bigcirc $
2356 \end_inset 
2357
2358
2359 \end_inset 
2360 </cell>
2361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2362 \begin_inset Text
2363
2364 \layout Standard
2365
2366
2367 \family typewriter 
2368
2369 \backslash 
2370 bigcirc
2371 \end_inset 
2372 </cell>
2373 </row>
2374 <row>
2375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2376 \begin_inset Text
2377
2378 \layout Standard
2379
2380
2381 \begin_inset Formula $\circ $
2382 \end_inset 
2383
2384
2385 \end_inset 
2386 </cell>
2387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2388 \begin_inset Text
2389
2390 \layout Standard
2391
2392
2393 \family typewriter 
2394
2395 \backslash 
2396 circ
2397 \end_inset 
2398 </cell>
2399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2400 \begin_inset Text
2401
2402 \layout Standard
2403
2404
2405 \begin_inset Formula $\wedge $
2406 \end_inset 
2407
2408
2409 \end_inset 
2410 </cell>
2411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2412 \begin_inset Text
2413
2414 \layout Standard
2415
2416
2417 \family typewriter 
2418
2419 \backslash 
2420 wedge
2421 \end_inset 
2422 </cell>
2423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2424 \begin_inset Text
2425
2426 \layout Standard
2427
2428
2429 \begin_inset Formula $\rhd $
2430 \end_inset 
2431
2432
2433 \end_inset 
2434 </cell>
2435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2436 \begin_inset Text
2437
2438 \layout Standard
2439
2440
2441 \family typewriter 
2442
2443 \backslash 
2444 rhd
2445 \end_inset 
2446 </cell>
2447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2448 \begin_inset Text
2449
2450 \layout Standard
2451
2452
2453 \begin_inset Formula $\dagger $
2454 \end_inset 
2455
2456
2457 \end_inset 
2458 </cell>
2459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2460 \begin_inset Text
2461
2462 \layout Standard
2463
2464
2465 \family typewriter 
2466
2467 \backslash 
2468 dagger
2469 \end_inset 
2470 </cell>
2471 </row>
2472 <row>
2473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2474 \begin_inset Text
2475
2476 \layout Standard
2477
2478
2479 \begin_inset Formula $\bullet $
2480 \end_inset 
2481
2482
2483 \end_inset 
2484 </cell>
2485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2486 \begin_inset Text
2487
2488 \layout Standard
2489
2490
2491 \family typewriter 
2492
2493 \backslash 
2494 bullet
2495 \end_inset 
2496 </cell>
2497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2498 \begin_inset Text
2499
2500 \layout Standard
2501
2502
2503 \begin_inset Formula $\setminus $
2504 \end_inset 
2505
2506
2507 \end_inset 
2508 </cell>
2509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2510 \begin_inset Text
2511
2512 \layout Standard
2513
2514
2515 \family typewriter 
2516
2517 \backslash 
2518 setminus
2519 \end_inset 
2520 </cell>
2521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2522 \begin_inset Text
2523
2524 \layout Standard
2525
2526
2527 \begin_inset Formula $\unlhd $
2528 \end_inset 
2529
2530
2531 \end_inset 
2532 </cell>
2533 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2534 \begin_inset Text
2535
2536 \layout Standard
2537
2538
2539 \family typewriter 
2540
2541 \backslash 
2542 unlhd
2543 \end_inset 
2544 </cell>
2545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2546 \begin_inset Text
2547
2548 \layout Standard
2549
2550
2551 \begin_inset Formula $\ddagger $
2552 \end_inset 
2553
2554
2555 \end_inset 
2556 </cell>
2557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2558 \begin_inset Text
2559
2560 \layout Standard
2561
2562
2563 \family typewriter 
2564
2565 \backslash 
2566 ddagger
2567 \end_inset 
2568 </cell>
2569 </row>
2570 <row>
2571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2572 \begin_inset Text
2573
2574 \layout Standard
2575
2576
2577 \begin_inset Formula $\cdot $
2578 \end_inset 
2579
2580
2581 \end_inset 
2582 </cell>
2583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2584 \begin_inset Text
2585
2586 \layout Standard
2587
2588
2589 \family typewriter 
2590
2591 \backslash 
2592 cdot
2593 \end_inset 
2594 </cell>
2595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2596 \begin_inset Text
2597
2598 \layout Standard
2599
2600
2601 \begin_inset Formula $\wr $
2602 \end_inset 
2603
2604
2605 \end_inset 
2606 </cell>
2607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2608 \begin_inset Text
2609
2610 \layout Standard
2611
2612
2613 \family typewriter 
2614
2615 \backslash 
2616 wr
2617 \end_inset 
2618 </cell>
2619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2620 \begin_inset Text
2621
2622 \layout Standard
2623
2624
2625 \begin_inset Formula $\unrhd $
2626 \end_inset 
2627
2628
2629 \end_inset 
2630 </cell>
2631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2632 \begin_inset Text
2633
2634 \layout Standard
2635
2636
2637 \family typewriter 
2638
2639 \backslash 
2640 unrhd
2641 \end_inset 
2642 </cell>
2643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2644 \begin_inset Text
2645
2646 \layout Standard
2647
2648
2649 \begin_inset Formula $\amalg $
2650 \end_inset 
2651
2652
2653 \end_inset 
2654 </cell>
2655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2656 \begin_inset Text
2657
2658 \layout Standard
2659
2660
2661 \family typewriter 
2662
2663 \backslash 
2664 amalg
2665 \end_inset 
2666 </cell>
2667 </row>
2668 </lyxtabular>
2669
2670 \end_inset 
2671
2672
2673 \layout Caption
2674
2675 Symboles d'opérations binaires
2676 \end_inset 
2677
2678
2679 \layout Standard
2680
2681
2682 \begin_inset Float table
2683 placement H
2684 wide false
2685 collapsed false
2686
2687 \layout Standard
2688
2689
2690 \begin_inset  Tabular
2691 <lyxtabular version="3" rows="8" columns="10">
2692 <features>
2693 <column alignment="right" valignment="top" width="0pt">
2694 <column alignment="left" valignment="top" width="0pt">
2695 <column alignment="right" valignment="top" width="0pt">
2696 <column alignment="left" valignment="top" width="0pt">
2697 <column alignment="right" valignment="top" width="0pt">
2698 <column alignment="left" valignment="top" width="0pt">
2699 <column alignment="right" valignment="top" width="0pt">
2700 <column alignment="left" valignment="top" width="0pt">
2701 <column alignment="right" valignment="top" width="0pt">
2702 <column alignment="left" valignment="top" width="0pt">
2703 <row>
2704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2705 \begin_inset Text
2706
2707 \layout Standard
2708
2709
2710 \begin_inset Formula $\leq $
2711 \end_inset 
2712
2713
2714 \end_inset 
2715 </cell>
2716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2717 \begin_inset Text
2718
2719 \layout Standard
2720
2721
2722 \family typewriter 
2723
2724 \backslash 
2725 leq
2726 \backslash 
2727 le
2728 \end_inset 
2729 </cell>
2730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2731 \begin_inset Text
2732
2733 \layout Standard
2734
2735
2736 \begin_inset Formula $\geq $
2737 \end_inset 
2738
2739
2740 \end_inset 
2741 </cell>
2742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2743 \begin_inset Text
2744
2745 \layout Standard
2746
2747
2748 \family typewriter 
2749
2750 \backslash 
2751 geq
2752 \end_inset 
2753 </cell>
2754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2755 \begin_inset Text
2756
2757 \layout Standard
2758
2759
2760 \begin_inset Formula $\equiv $
2761 \end_inset 
2762
2763
2764 \end_inset 
2765 </cell>
2766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2767 \begin_inset Text
2768
2769 \layout Standard
2770
2771
2772 \family typewriter 
2773
2774 \backslash 
2775 equiv
2776 \end_inset 
2777 </cell>
2778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2779 \begin_inset Text
2780
2781 \layout Standard
2782
2783
2784 \begin_inset Formula $\models $
2785 \end_inset 
2786
2787
2788 \end_inset 
2789 </cell>
2790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2791 \begin_inset Text
2792
2793 \layout Standard
2794
2795
2796 \family typewriter 
2797
2798 \backslash 
2799 models
2800 \end_inset 
2801 </cell>
2802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2803 \begin_inset Text
2804
2805 \layout Standard
2806
2807
2808 \begin_inset Formula $\prec $
2809 \end_inset 
2810
2811
2812 \end_inset 
2813 </cell>
2814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2815 \begin_inset Text
2816
2817 \layout Standard
2818
2819
2820 \family typewriter 
2821
2822 \backslash 
2823 prec
2824 \end_inset 
2825 </cell>
2826 </row>
2827 <row>
2828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2829 \begin_inset Text
2830
2831 \layout Standard
2832
2833
2834 \begin_inset Formula $\succ $
2835 \end_inset 
2836
2837
2838 \end_inset 
2839 </cell>
2840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2841 \begin_inset Text
2842
2843 \layout Standard
2844
2845
2846 \family typewriter 
2847
2848 \backslash 
2849 succ
2850 \end_inset 
2851 </cell>
2852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2853 \begin_inset Text
2854
2855 \layout Standard
2856
2857
2858 \begin_inset Formula $\sim $
2859 \end_inset 
2860
2861
2862 \end_inset 
2863 </cell>
2864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2865 \begin_inset Text
2866
2867 \layout Standard
2868
2869
2870 \family typewriter 
2871
2872 \backslash 
2873 sim
2874 \end_inset 
2875 </cell>
2876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2877 \begin_inset Text
2878
2879 \layout Standard
2880
2881
2882 \begin_inset Formula $\perp $
2883 \end_inset 
2884
2885
2886 \end_inset 
2887 </cell>
2888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2889 \begin_inset Text
2890
2891 \layout Standard
2892
2893
2894 \family typewriter 
2895
2896 \backslash 
2897 perp
2898 \end_inset 
2899 </cell>
2900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2901 \begin_inset Text
2902
2903 \layout Standard
2904
2905
2906 \begin_inset Formula $\preceq $
2907 \end_inset 
2908
2909
2910 \end_inset 
2911 </cell>
2912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2913 \begin_inset Text
2914
2915 \layout Standard
2916
2917
2918 \family typewriter 
2919
2920 \backslash 
2921 preceq
2922 \end_inset 
2923 </cell>
2924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2925 \begin_inset Text
2926
2927 \layout Standard
2928
2929
2930 \begin_inset Formula $\succeq $
2931 \end_inset 
2932
2933
2934 \end_inset 
2935 </cell>
2936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2937 \begin_inset Text
2938
2939 \layout Standard
2940
2941
2942 \family typewriter 
2943
2944 \backslash 
2945 succeq
2946 \end_inset 
2947 </cell>
2948 </row>
2949 <row>
2950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2951 \begin_inset Text
2952
2953 \layout Standard
2954
2955
2956 \begin_inset Formula $\simeq $
2957 \end_inset 
2958
2959
2960 \end_inset 
2961 </cell>
2962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2963 \begin_inset Text
2964
2965 \layout Standard
2966
2967
2968 \family typewriter 
2969
2970 \backslash 
2971 simeq
2972 \end_inset 
2973 </cell>
2974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2975 \begin_inset Text
2976
2977 \layout Standard
2978
2979
2980 \begin_inset Formula $\mid $
2981 \end_inset 
2982
2983
2984 \end_inset 
2985 </cell>
2986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2987 \begin_inset Text
2988
2989 \layout Standard
2990
2991
2992 \family typewriter 
2993
2994 \backslash 
2995 mid
2996 \end_inset 
2997 </cell>
2998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2999 \begin_inset Text
3000
3001 \layout Standard
3002
3003
3004 \begin_inset Formula $\ll $
3005 \end_inset 
3006
3007
3008 \end_inset 
3009 </cell>
3010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3011 \begin_inset Text
3012
3013 \layout Standard
3014
3015
3016 \family typewriter 
3017
3018 \backslash 
3019 ll
3020 \end_inset 
3021 </cell>
3022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3023 \begin_inset Text
3024
3025 \layout Standard
3026
3027
3028 \begin_inset Formula $\gg $
3029 \end_inset 
3030
3031
3032 \end_inset 
3033 </cell>
3034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3035 \begin_inset Text
3036
3037 \layout Standard
3038
3039
3040 \family typewriter 
3041
3042 \backslash 
3043 gg
3044 \end_inset 
3045 </cell>
3046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3047 \begin_inset Text
3048
3049 \layout Standard
3050
3051
3052 \begin_inset Formula $\asymp $
3053 \end_inset 
3054
3055
3056 \end_inset 
3057 </cell>
3058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3059 \begin_inset Text
3060
3061 \layout Standard
3062
3063
3064 \family typewriter 
3065
3066 \backslash 
3067 asymp
3068 \end_inset 
3069 </cell>
3070 </row>
3071 <row>
3072 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3073 \begin_inset Text
3074
3075 \layout Standard
3076
3077
3078 \begin_inset Formula $\parallel $
3079 \end_inset 
3080
3081
3082 \end_inset 
3083 </cell>
3084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3085 \begin_inset Text
3086
3087 \layout Standard
3088
3089
3090 \family typewriter 
3091
3092 \backslash 
3093 parallel
3094 \end_inset 
3095 </cell>
3096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3097 \begin_inset Text
3098
3099 \layout Standard
3100
3101
3102 \begin_inset Formula $\subset $
3103 \end_inset 
3104
3105
3106 \end_inset 
3107 </cell>
3108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3109 \begin_inset Text
3110
3111 \layout Standard
3112
3113
3114 \family typewriter 
3115
3116 \backslash 
3117 subset
3118 \end_inset 
3119 </cell>
3120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3121 \begin_inset Text
3122
3123 \layout Standard
3124
3125
3126 \begin_inset Formula $\supset $
3127 \end_inset 
3128
3129
3130 \end_inset 
3131 </cell>
3132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3133 \begin_inset Text
3134
3135 \layout Standard
3136
3137
3138 \family typewriter 
3139
3140 \backslash 
3141 supset
3142 \end_inset 
3143 </cell>
3144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3145 \begin_inset Text
3146
3147 \layout Standard
3148
3149
3150 \begin_inset Formula $\approx $
3151 \end_inset 
3152
3153
3154 \end_inset 
3155 </cell>
3156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3157 \begin_inset Text
3158
3159 \layout Standard
3160
3161
3162 \family typewriter 
3163
3164 \backslash 
3165 approx
3166 \end_inset 
3167 </cell>
3168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3169 \begin_inset Text
3170
3171 \layout Standard
3172
3173
3174 \begin_inset Formula $\bowtie $
3175 \end_inset 
3176
3177
3178 \end_inset 
3179 </cell>
3180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3181 \begin_inset Text
3182
3183 \layout Standard
3184
3185
3186 \family typewriter 
3187
3188 \backslash 
3189 bowtie
3190 \end_inset 
3191 </cell>
3192 </row>
3193 <row>
3194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3195 \begin_inset Text
3196
3197 \layout Standard
3198
3199
3200 \begin_inset Formula $\subseteq $
3201 \end_inset 
3202
3203
3204 \end_inset 
3205 </cell>
3206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3207 \begin_inset Text
3208
3209 \layout Standard
3210
3211
3212 \family typewriter 
3213
3214 \backslash 
3215 subseteq
3216 \end_inset 
3217 </cell>
3218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3219 \begin_inset Text
3220
3221 \layout Standard
3222
3223
3224 \begin_inset Formula $\supseteq $
3225 \end_inset 
3226
3227
3228 \end_inset 
3229 </cell>
3230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3231 \begin_inset Text
3232
3233 \layout Standard
3234
3235
3236 \family typewriter 
3237
3238 \backslash 
3239 supseteq
3240 \end_inset 
3241 </cell>
3242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3243 \begin_inset Text
3244
3245 \layout Standard
3246
3247
3248 \begin_inset Formula $\cong $
3249 \end_inset 
3250
3251
3252 \end_inset 
3253 </cell>
3254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3255 \begin_inset Text
3256
3257 \layout Standard
3258
3259
3260 \family typewriter 
3261
3262 \backslash 
3263 cong
3264 \end_inset 
3265 </cell>
3266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3267 \begin_inset Text
3268
3269 \layout Standard
3270
3271
3272 \begin_inset Formula $\Join $
3273 \end_inset 
3274
3275
3276 \end_inset 
3277 </cell>
3278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3279 \begin_inset Text
3280
3281 \layout Standard
3282
3283
3284 \family typewriter 
3285
3286 \backslash 
3287 Join
3288 \end_inset 
3289 </cell>
3290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3291 \begin_inset Text
3292
3293 \layout Standard
3294
3295
3296 \begin_inset Formula $\sqsubset $
3297 \end_inset 
3298
3299
3300 \end_inset 
3301 </cell>
3302 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3303 \begin_inset Text
3304
3305 \layout Standard
3306
3307
3308 \family typewriter 
3309
3310 \backslash 
3311 sqsubset
3312 \end_inset 
3313 </cell>
3314 </row>
3315 <row>
3316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3317 \begin_inset Text
3318
3319 \layout Standard
3320
3321
3322 \begin_inset Formula $\sqsupset $
3323 \end_inset 
3324
3325
3326 \end_inset 
3327 </cell>
3328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3329 \begin_inset Text
3330
3331 \layout Standard
3332
3333
3334 \family typewriter 
3335
3336 \backslash 
3337 sqsupset
3338 \end_inset 
3339 </cell>
3340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3341 \begin_inset Text
3342
3343 \layout Standard
3344
3345
3346 \begin_inset Formula $\neq $
3347 \end_inset 
3348
3349
3350 \end_inset 
3351 </cell>
3352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3353 \begin_inset Text
3354
3355 \layout Standard
3356
3357
3358 \family typewriter 
3359
3360 \backslash 
3361 neq
3362 \end_inset 
3363 </cell>
3364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3365 \begin_inset Text
3366
3367 \layout Standard
3368
3369
3370 \begin_inset Formula $\smile $
3371 \end_inset 
3372
3373
3374 \end_inset 
3375 </cell>
3376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3377 \begin_inset Text
3378
3379 \layout Standard
3380
3381
3382 \family typewriter 
3383
3384 \backslash 
3385 smile
3386 \end_inset 
3387 </cell>
3388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3389 \begin_inset Text
3390
3391 \layout Standard
3392
3393
3394 \begin_inset Formula $\sqsubseteq $
3395 \end_inset 
3396
3397
3398 \end_inset 
3399 </cell>
3400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3401 \begin_inset Text
3402
3403 \layout Standard
3404
3405
3406 \family typewriter 
3407
3408 \backslash 
3409 sqsubseteq
3410 \end_inset 
3411 </cell>
3412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3413 \begin_inset Text
3414
3415 \layout Standard
3416
3417
3418 \begin_inset Formula $\sqsupseteq $
3419 \end_inset 
3420
3421
3422 \end_inset 
3423 </cell>
3424 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3425 \begin_inset Text
3426
3427 \layout Standard
3428
3429
3430 \family typewriter 
3431
3432 \backslash 
3433 sqsupseteq
3434 \end_inset 
3435 </cell>
3436 </row>
3437 <row>
3438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3439 \begin_inset Text
3440
3441 \layout Standard
3442
3443
3444 \begin_inset Formula $\doteq $
3445 \end_inset 
3446
3447
3448 \end_inset 
3449 </cell>
3450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3451 \begin_inset Text
3452
3453 \layout Standard
3454
3455
3456 \family typewriter 
3457
3458 \backslash 
3459 doteq
3460 \end_inset 
3461 </cell>
3462 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3463 \begin_inset Text
3464
3465 \layout Standard
3466
3467
3468 \begin_inset Formula $\frown $
3469 \end_inset 
3470
3471
3472 \end_inset 
3473 </cell>
3474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3475 \begin_inset Text
3476
3477 \layout Standard
3478
3479
3480 \family typewriter 
3481
3482 \backslash 
3483 frown
3484 \end_inset 
3485 </cell>
3486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3487 \begin_inset Text
3488
3489 \layout Standard
3490
3491
3492 \begin_inset Formula $\in $
3493 \end_inset 
3494
3495
3496 \end_inset 
3497 </cell>
3498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3499 \begin_inset Text
3500
3501 \layout Standard
3502
3503
3504 \family typewriter 
3505
3506 \backslash 
3507 in
3508 \end_inset 
3509 </cell>
3510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3511 \begin_inset Text
3512
3513 \layout Standard
3514
3515
3516 \begin_inset Formula $\ni $
3517 \end_inset 
3518
3519
3520 \end_inset 
3521 </cell>
3522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3523 \begin_inset Text
3524
3525 \layout Standard
3526
3527
3528 \family typewriter 
3529
3530 \backslash 
3531 ni
3532 \end_inset 
3533 </cell>
3534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3535 \begin_inset Text
3536
3537 \layout Standard
3538
3539
3540 \begin_inset Formula $\propto $
3541 \end_inset 
3542
3543
3544 \end_inset 
3545 </cell>
3546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3547 \begin_inset Text
3548
3549 \layout Standard
3550
3551
3552 \family typewriter 
3553
3554 \backslash 
3555 propto
3556 \end_inset 
3557 </cell>
3558 </row>
3559 <row>
3560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3561 \begin_inset Text
3562
3563 \layout Standard
3564
3565
3566 \begin_inset Formula $=$
3567 \end_inset 
3568
3569
3570 \end_inset 
3571 </cell>
3572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3573 \begin_inset Text
3574
3575 \layout Standard
3576
3577
3578 \family typewriter 
3579 =
3580 \end_inset 
3581 </cell>
3582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3583 \begin_inset Text
3584
3585 \layout Standard
3586
3587
3588 \begin_inset Formula $\vdash $
3589 \end_inset 
3590
3591
3592 \end_inset 
3593 </cell>
3594 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3595 \begin_inset Text
3596
3597 \layout Standard
3598
3599
3600 \family typewriter 
3601
3602 \backslash 
3603 vdash
3604 \end_inset 
3605 </cell>
3606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3607 \begin_inset Text
3608
3609 \layout Standard
3610
3611
3612 \begin_inset Formula $\dashv $
3613 \end_inset 
3614
3615
3616 \end_inset 
3617 </cell>
3618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3619 \begin_inset Text
3620
3621 \layout Standard
3622
3623
3624 \family typewriter 
3625
3626 \backslash 
3627 dashv
3628 \end_inset 
3629 </cell>
3630 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3631 \begin_inset Text
3632
3633 \layout Standard
3634
3635
3636 \begin_inset Formula $<$
3637 \end_inset 
3638
3639
3640 \end_inset 
3641 </cell>
3642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3643 \begin_inset Text
3644
3645 \layout Standard
3646
3647
3648 \family typewriter 
3649 <
3650 \end_inset 
3651 </cell>
3652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3653 \begin_inset Text
3654
3655 \layout Standard
3656
3657
3658 \begin_inset Formula $>$
3659 \end_inset 
3660
3661
3662 \end_inset 
3663 </cell>
3664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3665 \begin_inset Text
3666
3667 \layout Standard
3668
3669
3670 \family typewriter 
3671 >
3672 \end_inset 
3673 </cell>
3674 </row>
3675 </lyxtabular>
3676
3677 \end_inset 
3678
3679
3680 \layout Caption
3681
3682 Symboles de relations
3683 \end_inset 
3684
3685
3686 \layout Standard
3687
3688
3689 \begin_inset Float table
3690 placement H
3691 wide false
3692 collapsed false
3693
3694 \layout Standard
3695
3696
3697 \begin_inset  Tabular
3698 <lyxtabular version="3" rows="10" columns="6">
3699 <features>
3700 <column alignment="right" valignment="top" width="0pt">
3701 <column alignment="left" valignment="top" width="0pt">
3702 <column alignment="right" valignment="top" width="0pt">
3703 <column alignment="left" valignment="top" width="0pt">
3704 <column alignment="right" valignment="top" width="0pt">
3705 <column alignment="left" valignment="top" width="0pt">
3706 <row>
3707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3708 \begin_inset Text
3709
3710 \layout Standard
3711
3712
3713 \begin_inset Formula $\leftarrow $
3714 \end_inset 
3715
3716
3717 \end_inset 
3718 </cell>
3719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3720 \begin_inset Text
3721
3722 \layout Standard
3723
3724
3725 \family typewriter 
3726
3727 \backslash 
3728 leftarrow
3729 \end_inset 
3730 </cell>
3731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3732 \begin_inset Text
3733
3734 \layout Standard
3735
3736
3737 \begin_inset Formula $\longleftarrow $
3738 \end_inset 
3739
3740
3741 \end_inset 
3742 </cell>
3743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3744 \begin_inset Text
3745
3746 \layout Standard
3747
3748
3749 \family typewriter 
3750
3751 \backslash 
3752 longleftarrow
3753 \end_inset 
3754 </cell>
3755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3756 \begin_inset Text
3757
3758 \layout Standard
3759
3760
3761 \begin_inset Formula $\uparrow $
3762 \end_inset 
3763
3764
3765 \end_inset 
3766 </cell>
3767 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3768 \begin_inset Text
3769
3770 \layout Standard
3771
3772
3773 \family typewriter 
3774
3775 \backslash 
3776 uparrow
3777 \end_inset 
3778 </cell>
3779 </row>
3780 <row>
3781 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3782 \begin_inset Text
3783
3784 \layout Standard
3785
3786
3787 \begin_inset Formula $\Leftarrow $
3788 \end_inset 
3789
3790
3791 \end_inset 
3792 </cell>
3793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3794 \begin_inset Text
3795
3796 \layout Standard
3797
3798
3799 \family typewriter 
3800
3801 \backslash 
3802 Leftarrow
3803 \end_inset 
3804 </cell>
3805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3806 \begin_inset Text
3807
3808 \layout Standard
3809
3810
3811 \begin_inset Formula $\Longleftarrow $
3812 \end_inset 
3813
3814
3815 \end_inset 
3816 </cell>
3817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3818 \begin_inset Text
3819
3820 \layout Standard
3821
3822
3823 \family typewriter 
3824
3825 \backslash 
3826 Longleftarrow
3827 \end_inset 
3828 </cell>
3829 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3830 \begin_inset Text
3831
3832 \layout Standard
3833
3834
3835 \begin_inset Formula $\Uparrow $
3836 \end_inset 
3837
3838
3839 \end_inset 
3840 </cell>
3841 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3842 \begin_inset Text
3843
3844 \layout Standard
3845
3846
3847 \family typewriter 
3848
3849 \backslash 
3850 Uparrow
3851 \end_inset 
3852 </cell>
3853 </row>
3854 <row>
3855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3856 \begin_inset Text
3857
3858 \layout Standard
3859
3860
3861 \begin_inset Formula $\rightarrow $
3862 \end_inset 
3863
3864
3865 \end_inset 
3866 </cell>
3867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3868 \begin_inset Text
3869
3870 \layout Standard
3871
3872
3873 \family typewriter 
3874
3875 \backslash 
3876 rightarrow
3877 \end_inset 
3878 </cell>
3879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3880 \begin_inset Text
3881
3882 \layout Standard
3883
3884
3885 \begin_inset Formula $\longrightarrow $
3886 \end_inset 
3887
3888
3889 \end_inset 
3890 </cell>
3891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3892 \begin_inset Text
3893
3894 \layout Standard
3895
3896
3897 \family typewriter 
3898
3899 \backslash 
3900 longrightarrow
3901 \end_inset 
3902 </cell>
3903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3904 \begin_inset Text
3905
3906 \layout Standard
3907
3908
3909 \begin_inset Formula $\downarrow $
3910 \end_inset 
3911
3912
3913 \end_inset 
3914 </cell>
3915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3916 \begin_inset Text
3917
3918 \layout Standard
3919
3920
3921 \family typewriter 
3922
3923 \backslash 
3924 downarrow
3925 \end_inset 
3926 </cell>
3927 </row>
3928 <row>
3929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3930 \begin_inset Text
3931
3932 \layout Standard
3933
3934
3935 \begin_inset Formula $\Rightarrow $
3936 \end_inset 
3937
3938
3939 \end_inset 
3940 </cell>
3941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3942 \begin_inset Text
3943
3944 \layout Standard
3945
3946
3947 \family typewriter 
3948
3949 \backslash 
3950 Rightarrow
3951 \end_inset 
3952 </cell>
3953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3954 \begin_inset Text
3955
3956 \layout Standard
3957
3958
3959 \begin_inset Formula $\Longrightarrow $
3960 \end_inset 
3961
3962
3963 \end_inset 
3964 </cell>
3965 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3966 \begin_inset Text
3967
3968 \layout Standard
3969
3970
3971 \family typewriter 
3972
3973 \backslash 
3974 Longrightarrow
3975 \end_inset 
3976 </cell>
3977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3978 \begin_inset Text
3979
3980 \layout Standard
3981
3982
3983 \begin_inset Formula $\Downarrow $
3984 \end_inset 
3985
3986
3987 \end_inset 
3988 </cell>
3989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3990 \begin_inset Text
3991
3992 \layout Standard
3993
3994
3995 \family typewriter 
3996
3997 \backslash 
3998 Downarrow
3999 \end_inset 
4000 </cell>
4001 </row>
4002 <row>
4003 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4004 \begin_inset Text
4005
4006 \layout Standard
4007
4008
4009 \begin_inset Formula $\leftrightarrow $
4010 \end_inset 
4011
4012
4013 \end_inset 
4014 </cell>
4015 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4016 \begin_inset Text
4017
4018 \layout Standard
4019
4020
4021 \family typewriter 
4022
4023 \backslash 
4024 leftrightarrow
4025 \end_inset 
4026 </cell>
4027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4028 \begin_inset Text
4029
4030 \layout Standard
4031
4032
4033 \begin_inset Formula $\longleftrightarrow $
4034 \end_inset 
4035
4036
4037 \end_inset 
4038 </cell>
4039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4040 \begin_inset Text
4041
4042 \layout Standard
4043
4044
4045 \family typewriter 
4046
4047 \backslash 
4048 longleftrightarrow
4049 \end_inset 
4050 </cell>
4051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4052 \begin_inset Text
4053
4054 \layout Standard
4055
4056
4057 \begin_inset Formula $\updownarrow $
4058 \end_inset 
4059
4060
4061 \end_inset 
4062 </cell>
4063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4064 \begin_inset Text
4065
4066 \layout Standard
4067
4068
4069 \family typewriter 
4070
4071 \backslash 
4072 updownarrow
4073 \end_inset 
4074 </cell>
4075 </row>
4076 <row>
4077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4078 \begin_inset Text
4079
4080 \layout Standard
4081
4082
4083 \begin_inset Formula $\Leftrightarrow $
4084 \end_inset 
4085
4086
4087 \end_inset 
4088 </cell>
4089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4090 \begin_inset Text
4091
4092 \layout Standard
4093
4094
4095 \family typewriter 
4096
4097 \backslash 
4098 Leftrightarrow
4099 \end_inset 
4100 </cell>
4101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4102 \begin_inset Text
4103
4104 \layout Standard
4105
4106
4107 \begin_inset Formula $\Longleftrightarrow $
4108 \end_inset 
4109
4110
4111 \end_inset 
4112 </cell>
4113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4114 \begin_inset Text
4115
4116 \layout Standard
4117
4118
4119 \family typewriter 
4120
4121 \backslash 
4122 Longleftrightarrow
4123 \end_inset 
4124 </cell>
4125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4126 \begin_inset Text
4127
4128 \layout Standard
4129
4130
4131 \begin_inset Formula $\Updownarrow $
4132 \end_inset 
4133
4134
4135 \end_inset 
4136 </cell>
4137 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4138 \begin_inset Text
4139
4140 \layout Standard
4141
4142
4143 \family typewriter 
4144
4145 \backslash 
4146 Updownarrow
4147 \end_inset 
4148 </cell>
4149 </row>
4150 <row>
4151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4152 \begin_inset Text
4153
4154 \layout Standard
4155
4156
4157 \begin_inset Formula $\mapsto $
4158 \end_inset 
4159
4160
4161 \end_inset 
4162 </cell>
4163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4164 \begin_inset Text
4165
4166 \layout Standard
4167
4168
4169 \family typewriter 
4170
4171 \backslash 
4172 mapsto
4173 \end_inset 
4174 </cell>
4175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4176 \begin_inset Text
4177
4178 \layout Standard
4179
4180
4181 \begin_inset Formula $\longmapsto $
4182 \end_inset 
4183
4184
4185 \end_inset 
4186 </cell>
4187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4188 \begin_inset Text
4189
4190 \layout Standard
4191
4192
4193 \family typewriter 
4194
4195 \backslash 
4196 longmapsto
4197 \end_inset 
4198 </cell>
4199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4200 \begin_inset Text
4201
4202 \layout Standard
4203
4204
4205 \begin_inset Formula $\nearrow $
4206 \end_inset 
4207
4208
4209 \end_inset 
4210 </cell>
4211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4212 \begin_inset Text
4213
4214 \layout Standard
4215
4216
4217 \family typewriter 
4218
4219 \backslash 
4220 nearrow
4221 \end_inset 
4222 </cell>
4223 </row>
4224 <row>
4225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4226 \begin_inset Text
4227
4228 \layout Standard
4229
4230
4231 \begin_inset Formula $\hookleftarrow $
4232 \end_inset 
4233
4234
4235 \end_inset 
4236 </cell>
4237 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4238 \begin_inset Text
4239
4240 \layout Standard
4241
4242
4243 \family typewriter 
4244
4245 \backslash 
4246 hookleftarrow
4247 \end_inset 
4248 </cell>
4249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4250 \begin_inset Text
4251
4252 \layout Standard
4253
4254
4255 \begin_inset Formula $\hookrightarrow $
4256 \end_inset 
4257
4258
4259 \end_inset 
4260 </cell>
4261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4262 \begin_inset Text
4263
4264 \layout Standard
4265
4266
4267 \family typewriter 
4268
4269 \backslash 
4270 hookrightarrow
4271 \end_inset 
4272 </cell>
4273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4274 \begin_inset Text
4275
4276 \layout Standard
4277
4278
4279 \begin_inset Formula $\searrow $
4280 \end_inset 
4281
4282
4283 \end_inset 
4284 </cell>
4285 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4286 \begin_inset Text
4287
4288 \layout Standard
4289
4290
4291 \family typewriter 
4292
4293 \backslash 
4294 searrow
4295 \end_inset 
4296 </cell>
4297 </row>
4298 <row>
4299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4300 \begin_inset Text
4301
4302 \layout Standard
4303
4304
4305 \begin_inset Formula $\leftharpoonup $
4306 \end_inset 
4307
4308
4309 \end_inset 
4310 </cell>
4311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4312 \begin_inset Text
4313
4314 \layout Standard
4315
4316
4317 \family typewriter 
4318
4319 \backslash 
4320 leftharpoonup
4321 \end_inset 
4322 </cell>
4323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4324 \begin_inset Text
4325
4326 \layout Standard
4327
4328
4329 \begin_inset Formula $\rightharpoonup $
4330 \end_inset 
4331
4332
4333 \end_inset 
4334 </cell>
4335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4336 \begin_inset Text
4337
4338 \layout Standard
4339
4340
4341 \family typewriter 
4342
4343 \backslash 
4344 rightharpoonup
4345 \end_inset 
4346 </cell>
4347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4348 \begin_inset Text
4349
4350 \layout Standard
4351
4352
4353 \begin_inset Formula $\swarrow $
4354 \end_inset 
4355
4356
4357 \end_inset 
4358 </cell>
4359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4360 \begin_inset Text
4361
4362 \layout Standard
4363
4364
4365 \family typewriter 
4366
4367 \backslash 
4368 swarrow
4369 \end_inset 
4370 </cell>
4371 </row>
4372 <row>
4373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4374 \begin_inset Text
4375
4376 \layout Standard
4377
4378
4379 \begin_inset Formula $\leftharpoondown $
4380 \end_inset 
4381
4382
4383 \end_inset 
4384 </cell>
4385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4386 \begin_inset Text
4387
4388 \layout Standard
4389
4390
4391 \family typewriter 
4392
4393 \backslash 
4394 leftharpoondown
4395 \end_inset 
4396 </cell>
4397 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4398 \begin_inset Text
4399
4400 \layout Standard
4401
4402
4403 \begin_inset Formula $\rightharpoondown $
4404 \end_inset 
4405
4406
4407 \end_inset 
4408 </cell>
4409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4410 \begin_inset Text
4411
4412 \layout Standard
4413
4414
4415 \family typewriter 
4416
4417 \backslash 
4418 rightharpoondown
4419 \end_inset 
4420 </cell>
4421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4422 \begin_inset Text
4423
4424 \layout Standard
4425
4426
4427 \begin_inset Formula $\nwarrow $
4428 \end_inset 
4429
4430
4431 \end_inset 
4432 </cell>
4433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4434 \begin_inset Text
4435
4436 \layout Standard
4437
4438
4439 \family typewriter 
4440
4441 \backslash 
4442 nwarrow
4443 \end_inset 
4444 </cell>
4445 </row>
4446 </lyxtabular>
4447
4448 \end_inset 
4449
4450
4451 \layout Caption
4452
4453 Symboles flèches
4454 \end_inset 
4455
4456
4457 \layout Standard
4458
4459
4460 \begin_inset Float table
4461 placement H
4462 wide false
4463 collapsed false
4464
4465 \layout Standard
4466
4467
4468 \begin_inset  Tabular
4469 <lyxtabular version="3" rows="7" columns="10">
4470 <features>
4471 <column alignment="right" valignment="top" width="0pt">
4472 <column alignment="left" valignment="top" width="0pt">
4473 <column alignment="right" valignment="top" width="0pt">
4474 <column alignment="left" valignment="top" width="0pt">
4475 <column alignment="right" valignment="top" width="0pt">
4476 <column alignment="left" valignment="top" width="0pt">
4477 <column alignment="right" valignment="top" width="0pt">
4478 <column alignment="left" valignment="top" width="0pt">
4479 <column alignment="right" valignment="top" width="0pt">
4480 <column alignment="left" valignment="top" width="0pt">
4481 <row>
4482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4483 \begin_inset Text
4484
4485 \layout Standard
4486
4487
4488 \begin_inset Formula $\ldots $
4489 \end_inset 
4490
4491
4492 \end_inset 
4493 </cell>
4494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4495 \begin_inset Text
4496
4497 \layout Standard
4498
4499
4500 \family typewriter 
4501
4502 \backslash 
4503 ldots
4504 \end_inset 
4505 </cell>
4506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4507 \begin_inset Text
4508
4509 \layout Standard
4510
4511
4512 \begin_inset Formula $\cdots $
4513 \end_inset 
4514
4515
4516 \end_inset 
4517 </cell>
4518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4519 \begin_inset Text
4520
4521 \layout Standard
4522
4523
4524 \family typewriter 
4525
4526 \backslash 
4527 cdots
4528 \end_inset 
4529 </cell>
4530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4531 \begin_inset Text
4532
4533 \layout Standard
4534
4535
4536 \begin_inset Formula $\vdots $
4537 \end_inset 
4538
4539
4540 \end_inset 
4541 </cell>
4542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4543 \begin_inset Text
4544
4545 \layout Standard
4546
4547
4548 \family typewriter 
4549
4550 \backslash 
4551 vdots
4552 \end_inset 
4553 </cell>
4554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4555 \begin_inset Text
4556
4557 \layout Standard
4558
4559
4560 \begin_inset Formula $\ddots $
4561 \end_inset 
4562
4563
4564 \end_inset 
4565 </cell>
4566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4567 \begin_inset Text
4568
4569 \layout Standard
4570
4571
4572 \family typewriter 
4573
4574 \backslash 
4575 ddots
4576 \end_inset 
4577 </cell>
4578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4579 \begin_inset Text
4580
4581 \layout Standard
4582
4583
4584 \begin_inset Formula $\aleph $
4585 \end_inset 
4586
4587
4588 \end_inset 
4589 </cell>
4590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4591 \begin_inset Text
4592
4593 \layout Standard
4594
4595
4596 \family typewriter 
4597
4598 \backslash 
4599 aleph
4600 \end_inset 
4601 </cell>
4602 </row>
4603 <row>
4604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4605 \begin_inset Text
4606
4607 \layout Standard
4608
4609
4610 \begin_inset Formula $\prime $
4611 \end_inset 
4612
4613
4614 \end_inset 
4615 </cell>
4616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4617 \begin_inset Text
4618
4619 \layout Standard
4620
4621
4622 \family typewriter 
4623
4624 \backslash 
4625 prime
4626 \end_inset 
4627 </cell>
4628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4629 \begin_inset Text
4630
4631 \layout Standard
4632
4633
4634 \begin_inset Formula $\forall $
4635 \end_inset 
4636
4637
4638 \end_inset 
4639 </cell>
4640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4641 \begin_inset Text
4642
4643 \layout Standard
4644
4645
4646 \family typewriter 
4647
4648 \backslash 
4649 forall
4650 \end_inset 
4651 </cell>
4652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4653 \begin_inset Text
4654
4655 \layout Standard
4656
4657
4658 \begin_inset Formula $\infty $
4659 \end_inset 
4660
4661
4662 \end_inset 
4663 </cell>
4664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4665 \begin_inset Text
4666
4667 \layout Standard
4668
4669
4670 \family typewriter 
4671
4672 \backslash 
4673 infty
4674 \end_inset 
4675 </cell>
4676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4677 \begin_inset Text
4678
4679 \layout Standard
4680
4681
4682 \begin_inset Formula $\hbar $
4683 \end_inset 
4684
4685
4686 \end_inset 
4687 </cell>
4688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4689 \begin_inset Text
4690
4691 \layout Standard
4692
4693
4694 \family typewriter 
4695
4696 \backslash 
4697 hbar
4698 \end_inset 
4699 </cell>
4700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4701 \begin_inset Text
4702
4703 \layout Standard
4704
4705
4706 \begin_inset Formula $\emptyset $
4707 \end_inset 
4708
4709
4710 \end_inset 
4711 </cell>
4712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4713 \begin_inset Text
4714
4715 \layout Standard
4716
4717
4718 \family typewriter 
4719
4720 \backslash 
4721 emptyset
4722 \end_inset 
4723 </cell>
4724 </row>
4725 <row>
4726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4727 \begin_inset Text
4728
4729 \layout Standard
4730
4731
4732 \begin_inset Formula $\exists $
4733 \end_inset 
4734
4735
4736 \end_inset 
4737 </cell>
4738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4739 \begin_inset Text
4740
4741 \layout Standard
4742
4743
4744 \family typewriter 
4745
4746 \backslash 
4747 exists
4748 \end_inset 
4749 </cell>
4750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4751 \begin_inset Text
4752
4753 \layout Standard
4754
4755
4756 \begin_inset Formula $\nabla $
4757 \end_inset 
4758
4759
4760 \end_inset 
4761 </cell>
4762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4763 \begin_inset Text
4764
4765 \layout Standard
4766
4767
4768 \family typewriter 
4769
4770 \backslash 
4771 nabla
4772 \end_inset 
4773 </cell>
4774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4775 \begin_inset Text
4776
4777 \layout Standard
4778
4779
4780 \begin_inset Formula $\surd $
4781 \end_inset 
4782
4783
4784 \end_inset 
4785 </cell>
4786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4787 \begin_inset Text
4788
4789 \layout Standard
4790
4791
4792 \family typewriter 
4793
4794 \backslash 
4795 surd
4796 \end_inset 
4797 </cell>
4798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4799 \begin_inset Text
4800
4801 \layout Standard
4802
4803
4804 \begin_inset Formula $\Box $
4805 \end_inset 
4806
4807
4808 \end_inset 
4809 </cell>
4810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4811 \begin_inset Text
4812
4813 \layout Standard
4814
4815
4816 \family typewriter 
4817
4818 \backslash 
4819 Box
4820 \end_inset 
4821 </cell>
4822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4823 \begin_inset Text
4824
4825 \layout Standard
4826
4827
4828 \begin_inset Formula $\triangle $
4829 \end_inset 
4830
4831
4832 \end_inset 
4833 </cell>
4834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4835 \begin_inset Text
4836
4837 \layout Standard
4838
4839
4840 \family typewriter 
4841
4842 \backslash 
4843 triangle
4844 \end_inset 
4845 </cell>
4846 </row>
4847 <row>
4848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4849 \begin_inset Text
4850
4851 \layout Standard
4852
4853
4854 \begin_inset Formula $\Diamond $
4855 \end_inset 
4856
4857
4858 \end_inset 
4859 </cell>
4860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4861 \begin_inset Text
4862
4863 \layout Standard
4864
4865
4866 \family typewriter 
4867
4868 \backslash 
4869 Diamond
4870 \end_inset 
4871 </cell>
4872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4873 \begin_inset Text
4874
4875 \layout Standard
4876
4877
4878 \begin_inset Formula $\imath $
4879 \end_inset 
4880
4881
4882 \end_inset 
4883 </cell>
4884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4885 \begin_inset Text
4886
4887 \layout Standard
4888
4889
4890 \family typewriter 
4891
4892 \backslash 
4893 imath
4894 \end_inset 
4895 </cell>
4896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4897 \begin_inset Text
4898
4899 \layout Standard
4900
4901
4902 \begin_inset Formula $\jmath $
4903 \end_inset 
4904
4905
4906 \end_inset 
4907 </cell>
4908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4909 \begin_inset Text
4910
4911 \layout Standard
4912
4913
4914 \family typewriter 
4915
4916 \backslash 
4917 jmath
4918 \end_inset 
4919 </cell>
4920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4921 \begin_inset Text
4922
4923 \layout Standard
4924
4925
4926 \begin_inset Formula $\ell $
4927 \end_inset 
4928
4929
4930 \end_inset 
4931 </cell>
4932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4933 \begin_inset Text
4934
4935 \layout Standard
4936
4937
4938 \family typewriter 
4939
4940 \backslash 
4941 ell
4942 \end_inset 
4943 </cell>
4944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4945 \begin_inset Text
4946
4947 \layout Standard
4948
4949
4950 \begin_inset Formula $\neg $
4951 \end_inset 
4952
4953
4954 \end_inset 
4955 </cell>
4956 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4957 \begin_inset Text
4958
4959 \layout Standard
4960
4961
4962 \family typewriter 
4963
4964 \backslash 
4965 neg
4966 \end_inset 
4967 </cell>
4968 </row>
4969 <row>
4970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4971 \begin_inset Text
4972
4973 \layout Standard
4974
4975
4976 \begin_inset Formula $\top $
4977 \end_inset 
4978
4979
4980 \end_inset 
4981 </cell>
4982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4983 \begin_inset Text
4984
4985 \layout Standard
4986
4987
4988 \family typewriter 
4989
4990 \backslash 
4991 top
4992 \end_inset 
4993 </cell>
4994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4995 \begin_inset Text
4996
4997 \layout Standard
4998
4999
5000 \begin_inset Formula $\flat $
5001 \end_inset 
5002
5003
5004 \end_inset 
5005 </cell>
5006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5007 \begin_inset Text
5008
5009 \layout Standard
5010
5011
5012 \family typewriter 
5013
5014 \backslash 
5015 flat
5016 \end_inset 
5017 </cell>
5018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5019 \begin_inset Text
5020
5021 \layout Standard
5022
5023
5024 \begin_inset Formula $\natural $
5025 \end_inset 
5026
5027
5028 \end_inset 
5029 </cell>
5030 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5031 \begin_inset Text
5032
5033 \layout Standard
5034
5035
5036 \family typewriter 
5037
5038 \backslash 
5039 natural
5040 \end_inset 
5041 </cell>
5042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5043 \begin_inset Text
5044
5045 \layout Standard
5046
5047
5048 \begin_inset Formula $\sharp $
5049 \end_inset 
5050
5051
5052 \end_inset 
5053 </cell>
5054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5055 \begin_inset Text
5056
5057 \layout Standard
5058
5059
5060 \family typewriter 
5061
5062 \backslash 
5063 sharp
5064 \end_inset 
5065 </cell>
5066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5067 \begin_inset Text
5068
5069 \layout Standard
5070
5071
5072 \begin_inset Formula $\wp $
5073 \end_inset 
5074
5075
5076 \end_inset 
5077 </cell>
5078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5079 \begin_inset Text
5080
5081 \layout Standard
5082
5083
5084 \family typewriter 
5085
5086 \backslash 
5087 wp
5088 \end_inset 
5089 </cell>
5090 </row>
5091 <row>
5092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5093 \begin_inset Text
5094
5095 \layout Standard
5096
5097
5098 \begin_inset Formula $\bot $
5099 \end_inset 
5100
5101
5102 \end_inset 
5103 </cell>
5104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5105 \begin_inset Text
5106
5107 \layout Standard
5108
5109
5110 \family typewriter 
5111
5112 \backslash 
5113 bot
5114 \end_inset 
5115 </cell>
5116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5117 \begin_inset Text
5118
5119 \layout Standard
5120
5121
5122 \begin_inset Formula $\clubsuit $
5123 \end_inset 
5124
5125
5126 \end_inset 
5127 </cell>
5128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5129 \begin_inset Text
5130
5131 \layout Standard
5132
5133
5134 \family typewriter 
5135
5136 \backslash 
5137 clubsuit
5138 \end_inset 
5139 </cell>
5140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5141 \begin_inset Text
5142
5143 \layout Standard
5144
5145
5146 \begin_inset Formula $\diamondsuit $
5147 \end_inset 
5148
5149
5150 \end_inset 
5151 </cell>
5152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5153 \begin_inset Text
5154
5155 \layout Standard
5156
5157
5158 \family typewriter 
5159
5160 \backslash 
5161 diamondsuit
5162 \end_inset 
5163 </cell>
5164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5165 \begin_inset Text
5166
5167 \layout Standard
5168
5169
5170 \begin_inset Formula $\heartsuit $
5171 \end_inset 
5172
5173
5174 \end_inset 
5175 </cell>
5176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5177 \begin_inset Text
5178
5179 \layout Standard
5180
5181
5182 \family typewriter 
5183
5184 \backslash 
5185 heartsuit
5186 \end_inset 
5187 </cell>
5188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5189 \begin_inset Text
5190
5191 \layout Standard
5192
5193
5194 \begin_inset Formula $\spadesuit $
5195 \end_inset 
5196
5197
5198 \end_inset 
5199 </cell>
5200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5201 \begin_inset Text
5202
5203 \layout Standard
5204
5205
5206 \family typewriter 
5207
5208 \backslash 
5209 spadesuit
5210 \end_inset 
5211 </cell>
5212 </row>
5213 <row>
5214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5215 \begin_inset Text
5216
5217 \layout Standard
5218
5219
5220 \begin_inset Formula $\mho $
5221 \end_inset 
5222
5223
5224 \end_inset 
5225 </cell>
5226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5227 \begin_inset Text
5228
5229 \layout Standard
5230
5231
5232 \family typewriter 
5233
5234 \backslash 
5235 mho
5236 \end_inset 
5237 </cell>
5238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5239 \begin_inset Text
5240
5241 \layout Standard
5242
5243
5244 \begin_inset Formula $\Re $
5245 \end_inset 
5246
5247
5248 \end_inset 
5249 </cell>
5250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5251 \begin_inset Text
5252
5253 \layout Standard
5254
5255
5256 \family typewriter 
5257
5258 \backslash 
5259 Re
5260 \end_inset 
5261 </cell>
5262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5263 \begin_inset Text
5264
5265 \layout Standard
5266
5267
5268 \begin_inset Formula $\Im $
5269 \end_inset 
5270
5271
5272 \end_inset 
5273 </cell>
5274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5275 \begin_inset Text
5276
5277 \layout Standard
5278
5279
5280 \family typewriter 
5281
5282 \backslash 
5283 Im
5284 \end_inset 
5285 </cell>
5286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5287 \begin_inset Text
5288
5289 \layout Standard
5290
5291
5292 \begin_inset Formula $\angle $
5293 \end_inset 
5294
5295
5296 \end_inset 
5297 </cell>
5298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5299 \begin_inset Text
5300
5301 \layout Standard
5302
5303
5304 \family typewriter 
5305
5306 \backslash 
5307 angle
5308 \end_inset 
5309 </cell>
5310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5311 \begin_inset Text
5312
5313 \layout Standard
5314
5315
5316 \begin_inset Formula $\partial $
5317 \end_inset 
5318
5319
5320 \end_inset 
5321 </cell>
5322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5323 \begin_inset Text
5324
5325 \layout Standard
5326
5327
5328 \family typewriter 
5329
5330 \backslash 
5331 partial
5332 \end_inset 
5333 </cell>
5334 </row>
5335 </lyxtabular>
5336
5337 \end_inset 
5338
5339
5340 \layout Caption
5341
5342 Symboles divers
5343 \end_inset 
5344
5345
5346 \layout Standard
5347
5348
5349 \begin_inset Float table
5350 placement H
5351 wide false
5352 collapsed false
5353
5354 \layout Standard
5355
5356
5357 \begin_inset  Tabular
5358 <lyxtabular version="3" rows="3" columns="10">
5359 <features>
5360 <column alignment="right" valignment="top" width="0pt">
5361 <column alignment="left" valignment="top" width="0pt">
5362 <column alignment="right" valignment="top" width="0pt">
5363 <column alignment="left" valignment="top" width="0pt">
5364 <column alignment="right" valignment="top" width="0pt">
5365 <column alignment="left" valignment="top" width="0pt">
5366 <column alignment="right" valignment="top" width="0pt">
5367 <column alignment="left" valignment="top" width="0pt">
5368 <column alignment="right" valignment="top" width="0pt">
5369 <column alignment="left" valignment="top" width="0pt">
5370 <row>
5371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5372 \begin_inset Text
5373
5374 \layout Standard
5375
5376
5377 \begin_inset Formula $\sum $
5378 \end_inset 
5379
5380
5381 \end_inset 
5382 </cell>
5383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5384 \begin_inset Text
5385
5386 \layout Standard
5387
5388
5389 \family typewriter 
5390
5391 \backslash 
5392 sum
5393 \end_inset 
5394 </cell>
5395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5396 \begin_inset Text
5397
5398 \layout Standard
5399
5400
5401 \begin_inset Formula $\prod $
5402 \end_inset 
5403
5404
5405 \end_inset 
5406 </cell>
5407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5408 \begin_inset Text
5409
5410 \layout Standard
5411
5412
5413 \family typewriter 
5414
5415 \backslash 
5416 prod
5417 \end_inset 
5418 </cell>
5419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5420 \begin_inset Text
5421
5422 \layout Standard
5423
5424
5425 \begin_inset Formula $\coprod $
5426 \end_inset 
5427
5428
5429 \end_inset 
5430 </cell>
5431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5432 \begin_inset Text
5433
5434 \layout Standard
5435
5436
5437 \family typewriter 
5438
5439 \backslash 
5440 coprod
5441 \end_inset 
5442 </cell>
5443 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5444 \begin_inset Text
5445
5446 \layout Standard
5447
5448
5449 \begin_inset Formula $\int $
5450 \end_inset 
5451
5452
5453 \end_inset 
5454 </cell>
5455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5456 \begin_inset Text
5457
5458 \layout Standard
5459
5460
5461 \family typewriter 
5462
5463 \backslash 
5464 int
5465 \end_inset 
5466 </cell>
5467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5468 \begin_inset Text
5469
5470 \layout Standard
5471
5472
5473 \begin_inset Formula $\oint $
5474 \end_inset 
5475
5476
5477 \end_inset 
5478 </cell>
5479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5480 \begin_inset Text
5481
5482 \layout Standard
5483
5484
5485 \family typewriter 
5486
5487 \backslash 
5488 oint
5489 \end_inset 
5490 </cell>
5491 </row>
5492 <row>
5493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5494 \begin_inset Text
5495
5496 \layout Standard
5497
5498
5499 \begin_inset Formula $\bigcap $
5500 \end_inset 
5501
5502
5503 \end_inset 
5504 </cell>
5505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5506 \begin_inset Text
5507
5508 \layout Standard
5509
5510
5511 \family typewriter 
5512
5513 \backslash 
5514 bigcap
5515 \end_inset 
5516 </cell>
5517 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5518 \begin_inset Text
5519
5520 \layout Standard
5521
5522
5523 \begin_inset Formula $\bigcup $
5524 \end_inset 
5525
5526
5527 \end_inset 
5528 </cell>
5529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5530 \begin_inset Text
5531
5532 \layout Standard
5533
5534
5535 \family typewriter 
5536
5537 \backslash 
5538 bigcup
5539 \end_inset 
5540 </cell>
5541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5542 \begin_inset Text
5543
5544 \layout Standard
5545
5546
5547 \begin_inset Formula $\bigsqcup $
5548 \end_inset 
5549
5550
5551 \end_inset 
5552 </cell>
5553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5554 \begin_inset Text
5555
5556 \layout Standard
5557
5558
5559 \family typewriter 
5560
5561 \backslash 
5562 bigsqcup
5563 \end_inset 
5564 </cell>
5565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5566 \begin_inset Text
5567
5568 \layout Standard
5569
5570
5571 \begin_inset Formula $\bigvee $
5572 \end_inset 
5573
5574
5575 \end_inset 
5576 </cell>
5577 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5578 \begin_inset Text
5579
5580 \layout Standard
5581
5582
5583 \family typewriter 
5584
5585 \backslash 
5586 bigvee
5587 \end_inset 
5588 </cell>
5589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5590 \begin_inset Text
5591
5592 \layout Standard
5593
5594
5595 \begin_inset Formula $\bigwedge $
5596 \end_inset 
5597
5598
5599 \end_inset 
5600 </cell>
5601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5602 \begin_inset Text
5603
5604 \layout Standard
5605
5606
5607 \family typewriter 
5608
5609 \backslash 
5610 bigwedge
5611 \end_inset 
5612 </cell>
5613 </row>
5614 <row>
5615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5616 \begin_inset Text
5617
5618 \layout Standard
5619
5620
5621 \begin_inset Formula $\bigodot $
5622 \end_inset 
5623
5624
5625 \end_inset 
5626 </cell>
5627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5628 \begin_inset Text
5629
5630 \layout Standard
5631
5632
5633 \family typewriter 
5634
5635 \backslash 
5636 bigodot
5637 \end_inset 
5638 </cell>
5639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5640 \begin_inset Text
5641
5642 \layout Standard
5643
5644
5645 \begin_inset Formula $\bigotimes $
5646 \end_inset 
5647
5648
5649 \end_inset 
5650 </cell>
5651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5652 \begin_inset Text
5653
5654 \layout Standard
5655
5656
5657 \family typewriter 
5658
5659 \backslash 
5660 bigotimes
5661 \end_inset 
5662 </cell>
5663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5664 \begin_inset Text
5665
5666 \layout Standard
5667
5668
5669 \begin_inset Formula $\bigoplus $
5670 \end_inset 
5671
5672
5673 \end_inset 
5674 </cell>
5675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5676 \begin_inset Text
5677
5678 \layout Standard
5679
5680
5681 \family typewriter 
5682
5683 \backslash 
5684 bigoplus
5685 \end_inset 
5686 </cell>
5687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5688 \begin_inset Text
5689
5690 \layout Standard
5691
5692
5693 \begin_inset Formula $\biguplus $
5694 \end_inset 
5695
5696
5697 \end_inset 
5698 </cell>
5699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5700 \begin_inset Text
5701
5702 \layout Standard
5703
5704
5705 \family typewriter 
5706
5707 \backslash 
5708 biguplus
5709 \end_inset 
5710 </cell>
5711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5712 \begin_inset Text
5713
5714 \layout Standard
5715
5716 \end_inset 
5717 </cell>
5718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5719 \begin_inset Text
5720
5721 \layout Standard
5722
5723 \end_inset 
5724 </cell>
5725 </row>
5726 </lyxtabular>
5727
5728 \end_inset 
5729
5730
5731 \layout Caption
5732
5733 Symboles de taille variable
5734 \end_inset 
5735
5736
5737 \layout Standard
5738
5739
5740 \begin_inset Float table
5741 placement H
5742 wide false
5743 collapsed false
5744
5745 \layout Standard
5746
5747
5748 \begin_inset  Tabular
5749 <lyxtabular version="3" rows="4" columns="8">
5750 <features>
5751 <column alignment="left" valignment="top" width="0pt">
5752 <column alignment="left" valignment="top" width="0pt">
5753 <column alignment="left" valignment="top" width="0pt">
5754 <column alignment="left" valignment="top" width="0pt">
5755 <column alignment="left" valignment="top" width="0pt">
5756 <column alignment="left" valignment="top" width="0pt">
5757 <column alignment="left" valignment="top" width="0pt">
5758 <column alignment="left" valignment="top" width="0pt">
5759 <row>
5760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5761 \begin_inset Text
5762
5763 \layout Standard
5764
5765
5766 \begin_inset Formula $\arccos $
5767 \end_inset 
5768
5769
5770 \end_inset 
5771 </cell>
5772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5773 \begin_inset Text
5774
5775 \layout Standard
5776
5777
5778 \begin_inset Formula $\cos $
5779 \end_inset 
5780
5781
5782 \end_inset 
5783 </cell>
5784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5785 \begin_inset Text
5786
5787 \layout Standard
5788
5789
5790 \begin_inset Formula $\csc $
5791 \end_inset 
5792
5793
5794 \end_inset 
5795 </cell>
5796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5797 \begin_inset Text
5798
5799 \layout Standard
5800
5801
5802 \begin_inset Formula $\exp $
5803 \end_inset 
5804
5805
5806 \end_inset 
5807 </cell>
5808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5809 \begin_inset Text
5810
5811 \layout Standard
5812
5813
5814 \begin_inset Formula $\ker $
5815 \end_inset 
5816
5817
5818 \end_inset 
5819 </cell>
5820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5821 \begin_inset Text
5822
5823 \layout Standard
5824
5825
5826 \begin_inset Formula $\limsup $
5827 \end_inset 
5828
5829
5830 \end_inset 
5831 </cell>
5832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5833 \begin_inset Text
5834
5835 \layout Standard
5836
5837
5838 \begin_inset Formula $\min $
5839 \end_inset 
5840
5841
5842 \end_inset 
5843 </cell>
5844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5845 \begin_inset Text
5846
5847 \layout Standard
5848
5849
5850 \begin_inset Formula $\sinh $
5851 \end_inset 
5852
5853
5854 \end_inset 
5855 </cell>
5856 </row>
5857 <row>
5858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5859 \begin_inset Text
5860
5861 \layout Standard
5862
5863
5864 \begin_inset Formula $\arcsin $
5865 \end_inset 
5866
5867
5868 \end_inset 
5869 </cell>
5870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5871 \begin_inset Text
5872
5873 \layout Standard
5874
5875
5876 \begin_inset Formula $\cosh $
5877 \end_inset 
5878
5879
5880 \end_inset 
5881 </cell>
5882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5883 \begin_inset Text
5884
5885 \layout Standard
5886
5887
5888 \begin_inset Formula $\deg $
5889 \end_inset 
5890
5891
5892 \end_inset 
5893 </cell>
5894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5895 \begin_inset Text
5896
5897 \layout Standard
5898
5899
5900 \begin_inset Formula $\gcd $
5901 \end_inset 
5902
5903
5904 \end_inset 
5905 </cell>
5906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5907 \begin_inset Text
5908
5909 \layout Standard
5910
5911
5912 \begin_inset Formula $\lg $
5913 \end_inset 
5914
5915
5916 \end_inset 
5917 </cell>
5918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5919 \begin_inset Text
5920
5921 \layout Standard
5922
5923
5924 \begin_inset Formula $\ln $
5925 \end_inset 
5926
5927
5928 \end_inset 
5929 </cell>
5930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5931 \begin_inset Text
5932
5933 \layout Standard
5934
5935
5936 \begin_inset Formula $\Pr $
5937 \end_inset 
5938
5939
5940 \end_inset 
5941 </cell>
5942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5943 \begin_inset Text
5944
5945 \layout Standard
5946
5947
5948 \begin_inset Formula $\sup $
5949 \end_inset 
5950
5951
5952 \end_inset 
5953 </cell>
5954 </row>
5955 <row>
5956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5957 \begin_inset Text
5958
5959 \layout Standard
5960
5961
5962 \begin_inset Formula $\arctan $
5963 \end_inset 
5964
5965
5966 \end_inset 
5967 </cell>
5968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5969 \begin_inset Text
5970
5971 \layout Standard
5972
5973
5974 \begin_inset Formula $\cot $
5975 \end_inset 
5976
5977
5978 \end_inset 
5979 </cell>
5980 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5981 \begin_inset Text
5982
5983 \layout Standard
5984
5985
5986 \begin_inset Formula $\det $
5987 \end_inset 
5988
5989
5990 \end_inset 
5991 </cell>
5992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5993 \begin_inset Text
5994
5995 \layout Standard
5996
5997
5998 \begin_inset Formula $\hom $
5999 \end_inset 
6000
6001
6002 \end_inset 
6003 </cell>
6004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6005 \begin_inset Text
6006
6007 \layout Standard
6008
6009
6010 \begin_inset Formula $\lim $
6011 \end_inset 
6012
6013
6014 \end_inset 
6015 </cell>
6016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6017 \begin_inset Text
6018
6019 \layout Standard
6020
6021
6022 \begin_inset Formula $\log $
6023 \end_inset 
6024
6025
6026 \end_inset 
6027 </cell>
6028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6029 \begin_inset Text
6030
6031 \layout Standard
6032
6033
6034 \begin_inset Formula $\sec $
6035 \end_inset 
6036
6037
6038 \end_inset 
6039 </cell>
6040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6041 \begin_inset Text
6042
6043 \layout Standard
6044
6045
6046 \begin_inset Formula $\tan $
6047 \end_inset 
6048
6049
6050 \end_inset 
6051 </cell>
6052 </row>
6053 <row>
6054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6055 \begin_inset Text
6056
6057 \layout Standard
6058
6059
6060 \begin_inset Formula $\arg $
6061 \end_inset 
6062
6063
6064 \end_inset 
6065 </cell>
6066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6067 \begin_inset Text
6068
6069 \layout Standard
6070
6071
6072 \begin_inset Formula $\coth $
6073 \end_inset 
6074
6075
6076 \end_inset 
6077 </cell>
6078 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6079 \begin_inset Text
6080
6081 \layout Standard
6082
6083
6084 \begin_inset Formula $\dim $
6085 \end_inset 
6086
6087
6088 \end_inset 
6089 </cell>
6090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6091 \begin_inset Text
6092
6093 \layout Standard
6094
6095
6096 \begin_inset Formula $\inf $
6097 \end_inset 
6098
6099
6100 \end_inset 
6101 </cell>
6102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6103 \begin_inset Text
6104
6105 \layout Standard
6106
6107
6108 \begin_inset Formula $\liminf $
6109 \end_inset 
6110
6111
6112 \end_inset 
6113 </cell>
6114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6115 \begin_inset Text
6116
6117 \layout Standard
6118
6119
6120 \begin_inset Formula $\max $
6121 \end_inset 
6122
6123
6124 \end_inset 
6125 </cell>
6126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6127 \begin_inset Text
6128
6129 \layout Standard
6130
6131
6132 \begin_inset Formula $\sin $
6133 \end_inset 
6134
6135
6136 \end_inset 
6137 </cell>
6138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6139 \begin_inset Text
6140
6141 \layout Standard
6142
6143
6144 \begin_inset Formula $\tanh $
6145 \end_inset 
6146
6147
6148 \end_inset 
6149 </cell>
6150 </row>
6151 </lyxtabular>
6152
6153 \end_inset 
6154
6155
6156 \layout Caption
6157
6158 Symboles de fonctions
6159 \end_inset 
6160
6161
6162 \layout Standard
6163
6164
6165 \begin_inset Float table
6166 placement H
6167 wide false
6168 collapsed false
6169
6170 \layout Standard
6171
6172
6173 \begin_inset  Tabular
6174 <lyxtabular version="3" rows="5" columns="8">
6175 <features>
6176 <column alignment="right" valignment="top" width="0pt">
6177 <column alignment="left" valignment="top" width="0pt">
6178 <column alignment="right" valignment="top" width="0pt">
6179 <column alignment="left" valignment="top" width="0pt">
6180 <column alignment="right" valignment="top" width="0pt">
6181 <column alignment="left" valignment="top" width="0pt">
6182 <column alignment="right" valignment="top" width="0pt">
6183 <column alignment="left" valignment="top" width="0pt">
6184 <row>
6185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6186 \begin_inset Text
6187
6188 \layout Standard
6189
6190
6191 \begin_inset Formula $\uparrow $
6192 \end_inset 
6193
6194
6195 \end_inset 
6196 </cell>
6197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6198 \begin_inset Text
6199
6200 \layout Standard
6201
6202
6203 \family typewriter 
6204
6205 \backslash 
6206 uparrow
6207 \end_inset 
6208 </cell>
6209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6210 \begin_inset Text
6211
6212 \layout Standard
6213
6214
6215 \begin_inset Formula $\Uparrow $
6216 \end_inset 
6217
6218
6219 \end_inset 
6220 </cell>
6221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6222 \begin_inset Text
6223
6224 \layout Standard
6225
6226
6227 \family typewriter 
6228
6229 \backslash 
6230 Uparrow
6231 \end_inset 
6232 </cell>
6233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6234 \begin_inset Text
6235
6236 \layout Standard
6237
6238
6239 \begin_inset Formula $\downarrow $
6240 \end_inset 
6241
6242
6243 \end_inset 
6244 </cell>
6245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6246 \begin_inset Text
6247
6248 \layout Standard
6249
6250
6251 \family typewriter 
6252
6253 \backslash 
6254 downarrow
6255 \end_inset 
6256 </cell>
6257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6258 \begin_inset Text
6259
6260 \layout Standard
6261
6262
6263 \begin_inset Formula $\Downarrow $
6264 \end_inset 
6265
6266
6267 \end_inset 
6268 </cell>
6269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6270 \begin_inset Text
6271
6272 \layout Standard
6273
6274
6275 \family typewriter 
6276
6277 \backslash 
6278 Downarrow
6279 \end_inset 
6280 </cell>
6281 </row>
6282 <row>
6283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6284 \begin_inset Text
6285
6286 \layout Standard
6287
6288
6289 \begin_inset Formula $\{$
6290 \end_inset 
6291
6292
6293 \end_inset 
6294 </cell>
6295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6296 \begin_inset Text
6297
6298 \layout Standard
6299
6300
6301 \family typewriter 
6302
6303 \backslash 
6304 {
6305 \end_inset 
6306 </cell>
6307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6308 \begin_inset Text
6309
6310 \layout Standard
6311
6312
6313 \begin_inset Formula $\}$
6314 \end_inset 
6315
6316
6317 \end_inset 
6318 </cell>
6319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6320 \begin_inset Text
6321
6322 \layout Standard
6323
6324
6325 \family typewriter 
6326
6327 \backslash 
6328 }
6329 \end_inset 
6330 </cell>
6331 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6332 \begin_inset Text
6333
6334 \layout Standard
6335
6336
6337 \begin_inset Formula $\updownarrow $
6338 \end_inset 
6339
6340
6341 \end_inset 
6342 </cell>
6343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6344 \begin_inset Text
6345
6346 \layout Standard
6347
6348
6349 \family typewriter 
6350
6351 \backslash 
6352 updownarrow
6353 \end_inset 
6354 </cell>
6355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6356 \begin_inset Text
6357
6358 \layout Standard
6359
6360
6361 \begin_inset Formula $\Updownarrow $
6362 \end_inset 
6363
6364
6365 \end_inset 
6366 </cell>
6367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6368 \begin_inset Text
6369
6370 \layout Standard
6371
6372
6373 \family typewriter 
6374
6375 \backslash 
6376 Updownarrow
6377 \end_inset 
6378 </cell>
6379 </row>
6380 <row>
6381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6382 \begin_inset Text
6383
6384 \layout Standard
6385
6386
6387 \begin_inset Formula $\lfloor $
6388 \end_inset 
6389
6390
6391 \end_inset 
6392 </cell>
6393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6394 \begin_inset Text
6395
6396 \layout Standard
6397
6398
6399 \family typewriter 
6400
6401 \backslash 
6402 lfloor
6403 \end_inset 
6404 </cell>
6405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6406 \begin_inset Text
6407
6408 \layout Standard
6409
6410
6411 \begin_inset Formula $\rfloor $
6412 \end_inset 
6413
6414
6415 \end_inset 
6416 </cell>
6417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6418 \begin_inset Text
6419
6420 \layout Standard
6421
6422
6423 \family typewriter 
6424
6425 \backslash 
6426 rfloor
6427 \end_inset 
6428 </cell>
6429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6430 \begin_inset Text
6431
6432 \layout Standard
6433
6434
6435 \begin_inset Formula $\lceil $
6436 \end_inset 
6437
6438
6439 \end_inset 
6440 </cell>
6441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6442 \begin_inset Text
6443
6444 \layout Standard
6445
6446
6447 \family typewriter 
6448
6449 \backslash 
6450 lceil
6451 \end_inset 
6452 </cell>
6453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6454 \begin_inset Text
6455
6456 \layout Standard
6457
6458
6459 \begin_inset Formula $\rceil $
6460 \end_inset 
6461
6462
6463 \end_inset 
6464 </cell>
6465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6466 \begin_inset Text
6467
6468 \layout Standard
6469
6470
6471 \family typewriter 
6472
6473 \backslash 
6474 rceil
6475 \end_inset 
6476 </cell>
6477 </row>
6478 <row>
6479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6480 \begin_inset Text
6481
6482 \layout Standard
6483
6484
6485 \begin_inset Formula $\langle $
6486 \end_inset 
6487
6488
6489 \end_inset 
6490 </cell>
6491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6492 \begin_inset Text
6493
6494 \layout Standard
6495
6496
6497 \family typewriter 
6498
6499 \backslash 
6500 langle
6501 \end_inset 
6502 </cell>
6503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6504 \begin_inset Text
6505
6506 \layout Standard
6507
6508
6509 \begin_inset Formula $\rangle $
6510 \end_inset 
6511
6512
6513 \end_inset 
6514 </cell>
6515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6516 \begin_inset Text
6517
6518 \layout Standard
6519
6520
6521 \family typewriter 
6522
6523 \backslash 
6524 rangle
6525 \end_inset 
6526 </cell>
6527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6528 \begin_inset Text
6529
6530 \layout Standard
6531
6532
6533 \begin_inset Formula $/$
6534 \end_inset 
6535
6536
6537 \end_inset 
6538 </cell>
6539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6540 \begin_inset Text
6541
6542 \layout Standard
6543
6544
6545 \family typewriter 
6546 /
6547 \end_inset 
6548 </cell>
6549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6550 \begin_inset Text
6551
6552 \layout Standard
6553
6554
6555 \begin_inset Formula $\backslash $
6556 \end_inset 
6557
6558
6559 \end_inset 
6560 </cell>
6561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6562 \begin_inset Text
6563
6564 \layout Standard
6565
6566
6567 \family typewriter 
6568
6569 \backslash 
6570 backslash
6571 \end_inset 
6572 </cell>
6573 </row>
6574 <row>
6575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6576 \begin_inset Text
6577
6578 \layout Standard
6579
6580
6581 \begin_inset Formula $|$
6582 \end_inset 
6583
6584
6585 \end_inset 
6586 </cell>
6587 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6588 \begin_inset Text
6589
6590 \layout Standard
6591
6592
6593 \family typewriter 
6594 |
6595 \end_inset 
6596 </cell>
6597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6598 \begin_inset Text
6599
6600 \layout Standard
6601
6602
6603 \begin_inset Formula $\| $
6604 \end_inset 
6605
6606
6607 \end_inset 
6608 </cell>
6609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6610 \begin_inset Text
6611
6612 \layout Standard
6613
6614
6615 \family typewriter 
6616
6617 \backslash 
6618 |
6619 \end_inset 
6620 </cell>
6621 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6622 \begin_inset Text
6623
6624 \layout Standard
6625
6626 \end_inset 
6627 </cell>
6628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6629 \begin_inset Text
6630
6631 \layout Standard
6632
6633 \end_inset 
6634 </cell>
6635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6636 \begin_inset Text
6637
6638 \layout Standard
6639
6640 \end_inset 
6641 </cell>
6642 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6643 \begin_inset Text
6644
6645 \layout Standard
6646
6647 \end_inset 
6648 </cell>
6649 </row>
6650 </lyxtabular>
6651
6652 \end_inset 
6653
6654
6655 \layout Caption
6656
6657 Délimiteurs
6658 \end_inset 
6659
6660
6661 \layout Standard
6662
6663
6664 \begin_inset Float table
6665 placement H
6666 wide false
6667 collapsed false
6668
6669 \layout Standard
6670
6671
6672 \begin_inset  Tabular
6673 <lyxtabular version="3" rows="2" columns="8">
6674 <features>
6675 <column alignment="right" valignment="top" width="0pt">
6676 <column alignment="left" valignment="top" width="0pt">
6677 <column alignment="right" valignment="top" width="0pt">
6678 <column alignment="left" valignment="top" width="0pt">
6679 <column alignment="right" valignment="top" width="0pt">
6680 <column alignment="left" valignment="top" width="0pt">
6681 <column alignment="right" valignment="top" width="0pt">
6682 <column alignment="left" valignment="top" width="0pt">
6683 <row>
6684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6685 \begin_inset Text
6686
6687 \layout Standard
6688
6689
6690 \begin_inset Formula $\rmoustache $
6691 \end_inset 
6692
6693
6694 \end_inset 
6695 </cell>
6696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6697 \begin_inset Text
6698
6699 \layout Standard
6700
6701
6702 \family typewriter 
6703
6704 \backslash 
6705 rmoustache
6706 \end_inset 
6707 </cell>
6708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6709 \begin_inset Text
6710
6711 \layout Standard
6712
6713
6714 \begin_inset Formula $\lmoustache $
6715 \end_inset 
6716
6717
6718 \end_inset 
6719 </cell>
6720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6721 \begin_inset Text
6722
6723 \layout Standard
6724
6725
6726 \family typewriter 
6727
6728 \backslash 
6729 lmoustache
6730 \end_inset 
6731 </cell>
6732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6733 \begin_inset Text
6734
6735 \layout Standard
6736
6737
6738 \begin_inset Formula $\rgroup $
6739 \end_inset 
6740
6741
6742 \end_inset 
6743 </cell>
6744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6745 \begin_inset Text
6746
6747 \layout Standard
6748
6749
6750 \family typewriter 
6751
6752 \backslash 
6753 rgroup
6754 \end_inset 
6755 </cell>
6756 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6757 \begin_inset Text
6758
6759 \layout Standard
6760
6761
6762 \begin_inset Formula $\lgroup $
6763 \end_inset 
6764
6765
6766 \end_inset 
6767 </cell>
6768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6769 \begin_inset Text
6770
6771 \layout Standard
6772
6773
6774 \family typewriter 
6775
6776 \backslash 
6777 lgroup
6778 \end_inset 
6779 </cell>
6780 </row>
6781 <row>
6782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6783 \begin_inset Text
6784
6785 \layout Standard
6786
6787
6788 \begin_inset Formula $\arrowvert $
6789 \end_inset 
6790
6791
6792 \end_inset 
6793 </cell>
6794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6795 \begin_inset Text
6796
6797 \layout Standard
6798
6799
6800 \family typewriter 
6801
6802 \backslash 
6803 arrowvert
6804 \end_inset 
6805 </cell>
6806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6807 \begin_inset Text
6808
6809 \layout Standard
6810
6811
6812 \begin_inset Formula $\Arrowvert $
6813 \end_inset 
6814
6815
6816 \end_inset 
6817 </cell>
6818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6819 \begin_inset Text
6820
6821 \layout Standard
6822
6823
6824 \family typewriter 
6825
6826 \backslash 
6827 Arrowvert
6828 \end_inset 
6829 </cell>
6830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6831 \begin_inset Text
6832
6833 \layout Standard
6834
6835
6836 \begin_inset Formula $\bracevert $
6837 \end_inset 
6838
6839
6840 \end_inset 
6841 </cell>
6842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6843 \begin_inset Text
6844
6845 \layout Standard
6846
6847
6848 \family typewriter 
6849
6850 \backslash 
6851 bracevert
6852 \end_inset 
6853 </cell>
6854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6855 \begin_inset Text
6856
6857 \layout Standard
6858
6859 \end_inset 
6860 </cell>
6861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6862 \begin_inset Text
6863
6864 \layout Standard
6865
6866 \end_inset 
6867 </cell>
6868 </row>
6869 </lyxtabular>
6870
6871 \end_inset 
6872
6873
6874 \layout Caption
6875
6876 Grands délimiteurs
6877 \end_inset 
6878
6879
6880 \layout Standard
6881
6882
6883 \begin_inset Float table
6884 placement H
6885 wide false
6886 collapsed false
6887
6888 \layout Standard
6889
6890
6891 \begin_inset  Tabular
6892 <lyxtabular version="3" rows="6" columns="4">
6893 <features>
6894 <column alignment="right" valignment="top" width="0pt">
6895 <column alignment="left" valignment="top" width="0pt">
6896 <column alignment="right" valignment="top" width="0pt">
6897 <column alignment="left" valignment="top" width="0pt">
6898 <row>
6899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6900 \begin_inset Text
6901
6902 \layout Standard
6903
6904
6905 \begin_inset Formula $\widetilde{abc}$
6906 \end_inset 
6907
6908
6909 \end_inset 
6910 </cell>
6911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6912 \begin_inset Text
6913
6914 \layout Standard
6915
6916
6917 \family typewriter 
6918
6919 \backslash 
6920 widetilde{abc}
6921 \end_inset 
6922 </cell>
6923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6924 \begin_inset Text
6925
6926 \layout Standard
6927
6928
6929 \begin_inset Formula $\widehat{abc}$
6930 \end_inset 
6931
6932
6933 \end_inset 
6934 </cell>
6935 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6936 \begin_inset Text
6937
6938 \layout Standard
6939
6940
6941 \family typewriter 
6942
6943 \backslash 
6944 widehat{abc}
6945 \end_inset 
6946 </cell>
6947 </row>
6948 <row>
6949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6950 \begin_inset Text
6951
6952 \layout Standard
6953
6954
6955 \begin_inset Formula $\overleftarrow{abc}$
6956 \end_inset 
6957
6958
6959 \end_inset 
6960 </cell>
6961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6962 \begin_inset Text
6963
6964 \layout Standard
6965
6966
6967 \family typewriter 
6968
6969 \backslash 
6970 overleftarrow{abc}
6971 \end_inset 
6972 </cell>
6973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6974 \begin_inset Text
6975
6976 \layout Standard
6977
6978
6979 \begin_inset Formula $\overrightarrow{abc}$
6980 \end_inset 
6981
6982
6983 \end_inset 
6984 </cell>
6985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6986 \begin_inset Text
6987
6988 \layout Standard
6989
6990
6991 \family typewriter 
6992
6993 \backslash 
6994 overrightarrow{abc}
6995 \end_inset 
6996 </cell>
6997 </row>
6998 <row>
6999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7000 \begin_inset Text
7001
7002 \layout Standard
7003
7004
7005 \begin_inset Formula $\overline{abc}$
7006 \end_inset 
7007
7008
7009 \end_inset 
7010 </cell>
7011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7012 \begin_inset Text
7013
7014 \layout Standard
7015
7016
7017 \family typewriter 
7018
7019 \backslash 
7020 overline{abc}
7021 \end_inset 
7022 </cell>
7023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7024 \begin_inset Text
7025
7026 \layout Standard
7027
7028
7029 \begin_inset Formula $\underline{abc}$
7030 \end_inset 
7031
7032
7033 \end_inset 
7034 </cell>
7035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7036 \begin_inset Text
7037
7038 \layout Standard
7039
7040
7041 \family typewriter 
7042
7043 \backslash 
7044 underline{abc}
7045 \end_inset 
7046 </cell>
7047 </row>
7048 <row>
7049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7050 \begin_inset Text
7051
7052 \layout Standard
7053
7054
7055 \begin_inset Formula $\overbrace{abc}$
7056 \end_inset 
7057
7058
7059 \end_inset 
7060 </cell>
7061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7062 \begin_inset Text
7063
7064 \layout Standard
7065
7066
7067 \family typewriter 
7068
7069 \backslash 
7070 overbrace{abc}
7071 \end_inset 
7072 </cell>
7073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7074 \begin_inset Text
7075
7076 \layout Standard
7077
7078
7079 \begin_inset Formula $\underbrace{abc}$
7080 \end_inset 
7081
7082
7083 \end_inset 
7084 </cell>
7085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7086 \begin_inset Text
7087
7088 \layout Standard
7089
7090
7091 \family typewriter 
7092
7093 \backslash 
7094 underbrace{abc}
7095 \end_inset 
7096 </cell>
7097 </row>
7098 <row>
7099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7100 \begin_inset Text
7101
7102 \layout Standard
7103
7104
7105 \begin_inset Formula $\sqrt{abc}$
7106 \end_inset 
7107
7108
7109 \end_inset 
7110 </cell>
7111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7112 \begin_inset Text
7113
7114 \layout Standard
7115
7116
7117 \family typewriter 
7118
7119 \backslash 
7120 sqrt{abc}
7121 \end_inset 
7122 </cell>
7123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7124 \begin_inset Text
7125
7126 \layout Standard
7127
7128
7129 \begin_inset Formula $\sqrt[n]{abc}\sqrt[3]{abc}$
7130 \end_inset 
7131
7132
7133 \end_inset 
7134 </cell>
7135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7136 \begin_inset Text
7137
7138 \layout Standard
7139
7140
7141 \family typewriter 
7142
7143 \backslash 
7144 sqrt[n]{abc}
7145 \backslash 
7146 root3{abc}
7147 \end_inset 
7148 </cell>
7149 </row>
7150 <row>
7151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7152 \begin_inset Text
7153
7154 \layout Standard
7155
7156
7157 \begin_inset Formula $f'$
7158 \end_inset 
7159
7160
7161 \end_inset 
7162 </cell>
7163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7164 \begin_inset Text
7165
7166 \layout Standard
7167
7168
7169 \family typewriter 
7170 f'
7171 \end_inset 
7172 </cell>
7173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7174 \begin_inset Text
7175
7176 \layout Standard
7177
7178
7179 \begin_inset Formula $\frac{abc}{xyz}$
7180 \end_inset 
7181
7182
7183 \end_inset 
7184 </cell>
7185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7186 \begin_inset Text
7187
7188 \layout Standard
7189
7190
7191 \family typewriter 
7192
7193 \backslash 
7194 frac{abc}{xyz}
7195 \end_inset 
7196 </cell>
7197 </row>
7198 </lyxtabular>
7199
7200 \end_inset 
7201
7202
7203 \layout Caption
7204
7205 Constructions mathématiques LaTeX
7206 \end_inset 
7207
7208
7209 \layout Standard
7210
7211
7212 \begin_inset Float table
7213 placement H
7214 wide false
7215 collapsed false
7216
7217 \layout Standard
7218
7219
7220 \begin_inset  Tabular
7221 <lyxtabular version="3" rows="1" columns="10">
7222 <features>
7223 <column alignment="right" valignment="top" width="0pt">
7224 <column alignment="left" valignment="top" width="0pt">
7225 <column alignment="right" valignment="top" width="0pt">
7226 <column alignment="left" valignment="top" width="0pt">
7227 <column alignment="right" valignment="top" width="0pt">
7228 <column alignment="left" valignment="top" width="0pt">
7229 <column alignment="right" valignment="top" width="0pt">
7230 <column alignment="left" valignment="top" width="0pt">
7231 <column alignment="right" valignment="top" width="0pt">
7232 <column alignment="left" valignment="top" width="0pt">
7233 <row>
7234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7235 \begin_inset Text
7236
7237 \layout Standard
7238
7239
7240 \begin_inset Formula $\digamma $
7241 \end_inset 
7242
7243
7244 \end_inset 
7245 </cell>
7246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7247 \begin_inset Text
7248
7249 \layout Standard
7250
7251
7252 \family typewriter 
7253
7254 \backslash 
7255 digamma
7256 \end_inset 
7257 </cell>
7258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7259 \begin_inset Text
7260
7261 \layout Standard
7262
7263
7264 \begin_inset Formula $\varkappa $
7265 \end_inset 
7266
7267
7268 \end_inset 
7269 </cell>
7270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7271 \begin_inset Text
7272
7273 \layout Standard
7274
7275
7276 \family typewriter 
7277
7278 \backslash 
7279 varkappa
7280 \end_inset 
7281 </cell>
7282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7283 \begin_inset Text
7284
7285 \layout Standard
7286
7287
7288 \begin_inset Formula $\beth $
7289 \end_inset 
7290
7291
7292 \end_inset 
7293 </cell>
7294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7295 \begin_inset Text
7296
7297 \layout Standard
7298
7299
7300 \family typewriter 
7301
7302 \backslash 
7303 beth
7304 \end_inset 
7305 </cell>
7306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7307 \begin_inset Text
7308
7309 \layout Standard
7310
7311
7312 \begin_inset Formula $\daleth $
7313 \end_inset 
7314
7315
7316 \end_inset 
7317 </cell>
7318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7319 \begin_inset Text
7320
7321 \layout Standard
7322
7323
7324 \family typewriter 
7325
7326 \backslash 
7327 daleth
7328 \end_inset 
7329 </cell>
7330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7331 \begin_inset Text
7332
7333 \layout Standard
7334
7335
7336 \begin_inset Formula $\gimel $
7337 \end_inset 
7338
7339
7340 \end_inset 
7341 </cell>
7342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7343 \begin_inset Text
7344
7345 \layout Standard
7346
7347
7348 \family typewriter 
7349
7350 \backslash 
7351 gimel
7352 \end_inset 
7353 </cell>
7354 </row>
7355 </lyxtabular>
7356
7357 \end_inset 
7358
7359
7360 \layout Caption
7361
7362 Grec et hébreu AMS
7363 \end_inset 
7364
7365
7366 \layout Standard
7367
7368
7369 \begin_inset Float table
7370 placement H
7371 wide false
7372 collapsed false
7373
7374 \layout Standard
7375
7376
7377 \begin_inset  Tabular
7378 <lyxtabular version="3" rows="1" columns="8">
7379 <features>
7380 <column alignment="right" valignment="top" width="0pt">
7381 <column alignment="left" valignment="top" width="0pt">
7382 <column alignment="right" valignment="top" width="0pt">
7383 <column alignment="left" valignment="top" width="0pt">
7384 <column alignment="right" valignment="top" width="0pt">
7385 <column alignment="left" valignment="top" width="0pt">
7386 <column alignment="right" valignment="top" width="0pt">
7387 <column alignment="left" valignment="top" width="0pt">
7388 <row>
7389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7390 \begin_inset Text
7391
7392 \layout Standard
7393
7394
7395 \begin_inset Formula $\ulcorner $
7396 \end_inset 
7397
7398
7399 \end_inset 
7400 </cell>
7401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7402 \begin_inset Text
7403
7404 \layout Standard
7405
7406
7407 \family typewriter 
7408
7409 \backslash 
7410 ulcorner
7411 \end_inset 
7412 </cell>
7413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7414 \begin_inset Text
7415
7416 \layout Standard
7417
7418
7419 \begin_inset Formula $\urcorner $
7420 \end_inset 
7421
7422
7423 \end_inset 
7424 </cell>
7425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7426 \begin_inset Text
7427
7428 \layout Standard
7429
7430
7431 \family typewriter 
7432
7433 \backslash 
7434 urcorner
7435 \end_inset 
7436 </cell>
7437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7438 \begin_inset Text
7439
7440 \layout Standard
7441
7442
7443 \begin_inset Formula $\llcorner $
7444 \end_inset 
7445
7446
7447 \end_inset 
7448 </cell>
7449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7450 \begin_inset Text
7451
7452 \layout Standard
7453
7454
7455 \family typewriter 
7456
7457 \backslash 
7458 llcorner
7459 \end_inset 
7460 </cell>
7461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7462 \begin_inset Text
7463
7464 \layout Standard
7465
7466
7467 \begin_inset Formula $\lrcorner $
7468 \end_inset 
7469
7470
7471 \end_inset 
7472 </cell>
7473 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7474 \begin_inset Text
7475
7476 \layout Standard
7477
7478
7479 \family typewriter 
7480
7481 \backslash 
7482 lrcorner
7483 \end_inset 
7484 </cell>
7485 </row>
7486 </lyxtabular>
7487
7488 \end_inset 
7489
7490
7491 \layout Caption
7492
7493 Délimiteurs AMS
7494 \end_inset 
7495
7496
7497 \layout Standard
7498
7499
7500 \begin_inset Float table
7501 placement H
7502 wide false
7503 collapsed false
7504
7505 \layout Standard
7506
7507
7508 \begin_inset  Tabular
7509 <lyxtabular version="3" rows="11" columns="6">
7510 <features>
7511 <column alignment="right" valignment="top" width="0pt">
7512 <column alignment="left" valignment="top" width="0pt">
7513 <column alignment="right" valignment="top" width="0pt">
7514 <column alignment="left" valignment="top" width="0pt">
7515 <column alignment="right" valignment="top" width="0pt">
7516 <column alignment="left" valignment="top" width="0pt">
7517 <row>
7518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7519 \begin_inset Text
7520
7521 \layout Standard
7522
7523
7524 \begin_inset Formula $\dashrightarrow $
7525 \end_inset 
7526
7527
7528 \end_inset 
7529 </cell>
7530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7531 \begin_inset Text
7532
7533 \layout Standard
7534
7535
7536 \family typewriter 
7537
7538 \backslash 
7539 dashrightarrow
7540 \end_inset 
7541 </cell>
7542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7543 \begin_inset Text
7544
7545 \layout Standard
7546
7547
7548 \begin_inset Formula $\dashleftarrow $
7549 \end_inset 
7550
7551
7552 \end_inset 
7553 </cell>
7554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7555 \begin_inset Text
7556
7557 \layout Standard
7558
7559
7560 \family typewriter 
7561
7562 \backslash 
7563 dashleftarrow
7564 \end_inset 
7565 </cell>
7566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7567 \begin_inset Text
7568
7569 \layout Standard
7570
7571
7572 \begin_inset Formula $\leftleftarrows $
7573 \end_inset 
7574
7575
7576 \end_inset 
7577 </cell>
7578 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7579 \begin_inset Text
7580
7581 \layout Standard
7582
7583
7584 \family typewriter 
7585
7586 \backslash 
7587 leftleftarrows
7588 \end_inset 
7589 </cell>
7590 </row>
7591 <row>
7592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7593 \begin_inset Text
7594
7595 \layout Standard
7596
7597
7598 \begin_inset Formula $\leftrightarrows $
7599 \end_inset 
7600
7601
7602 \end_inset 
7603 </cell>
7604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7605 \begin_inset Text
7606
7607 \layout Standard
7608
7609
7610 \family typewriter 
7611
7612 \backslash 
7613 leftrightarrows
7614 \end_inset 
7615 </cell>
7616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7617 \begin_inset Text
7618
7619 \layout Standard
7620
7621
7622 \begin_inset Formula $\Lleftarrow $
7623 \end_inset 
7624
7625
7626 \end_inset 
7627 </cell>
7628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7629 \begin_inset Text
7630
7631 \layout Standard
7632
7633
7634 \family typewriter 
7635
7636 \backslash 
7637 Lleftarrow
7638 \end_inset 
7639 </cell>
7640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7641 \begin_inset Text
7642
7643 \layout Standard
7644
7645
7646 \begin_inset Formula $\twoheadleftarrow $
7647 \end_inset 
7648
7649
7650 \end_inset 
7651 </cell>
7652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7653 \begin_inset Text
7654
7655 \layout Standard
7656
7657
7658 \family typewriter 
7659
7660 \backslash 
7661 twoheadleftarrow
7662 \end_inset 
7663 </cell>
7664 </row>
7665 <row>
7666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7667 \begin_inset Text
7668
7669 \layout Standard
7670
7671
7672 \begin_inset Formula $\leftarrowtail $
7673 \end_inset 
7674
7675
7676 \end_inset 
7677 </cell>
7678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7679 \begin_inset Text
7680
7681 \layout Standard
7682
7683
7684 \family typewriter 
7685
7686 \backslash 
7687 leftarrowtail
7688 \end_inset 
7689 </cell>
7690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7691 \begin_inset Text
7692
7693 \layout Standard
7694
7695
7696 \begin_inset Formula $\looparrowleft $
7697 \end_inset 
7698
7699
7700 \end_inset 
7701 </cell>
7702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7703 \begin_inset Text
7704
7705 \layout Standard
7706
7707
7708 \family typewriter 
7709
7710 \backslash 
7711 looparrowleft
7712 \end_inset 
7713 </cell>
7714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7715 \begin_inset Text
7716
7717 \layout Standard
7718
7719
7720 \begin_inset Formula $\leftrightharpoons $
7721 \end_inset 
7722
7723
7724 \end_inset 
7725 </cell>
7726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7727 \begin_inset Text
7728
7729 \layout Standard
7730
7731
7732 \family typewriter 
7733
7734 \backslash 
7735 leftrightharpoons
7736 \end_inset 
7737 </cell>
7738 </row>
7739 <row>
7740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7741 \begin_inset Text
7742
7743 \layout Standard
7744
7745
7746 \begin_inset Formula $\curvearrowleft $
7747 \end_inset 
7748
7749
7750 \end_inset 
7751 </cell>
7752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7753 \begin_inset Text
7754
7755 \layout Standard
7756
7757
7758 \family typewriter 
7759
7760 \backslash 
7761 curvearrowleft
7762 \end_inset 
7763 </cell>
7764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7765 \begin_inset Text
7766
7767 \layout Standard
7768
7769
7770 \begin_inset Formula $\circlearrowleft $
7771 \end_inset 
7772
7773
7774 \end_inset 
7775 </cell>
7776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7777 \begin_inset Text
7778
7779 \layout Standard
7780
7781
7782 \family typewriter 
7783
7784 \backslash 
7785 circlearrowleft
7786 \end_inset 
7787 </cell>
7788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7789 \begin_inset Text
7790
7791 \layout Standard
7792
7793
7794 \begin_inset Formula $\Lsh $
7795 \end_inset 
7796
7797
7798 \end_inset 
7799 </cell>
7800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7801 \begin_inset Text
7802
7803 \layout Standard
7804
7805
7806 \family typewriter 
7807
7808 \backslash 
7809 Lsh
7810 \end_inset 
7811 </cell>
7812 </row>
7813 <row>
7814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7815 \begin_inset Text
7816
7817 \layout Standard
7818
7819
7820 \begin_inset Formula $\upuparrows $
7821 \end_inset 
7822
7823
7824 \end_inset 
7825 </cell>
7826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7827 \begin_inset Text
7828
7829 \layout Standard
7830
7831
7832 \family typewriter 
7833
7834 \backslash 
7835 upuparrows
7836 \end_inset 
7837 </cell>
7838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7839 \begin_inset Text
7840
7841 \layout Standard
7842
7843
7844 \begin_inset Formula $\upharpoonleft $
7845 \end_inset 
7846
7847
7848 \end_inset 
7849 </cell>
7850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7851 \begin_inset Text
7852
7853 \layout Standard
7854
7855
7856 \family typewriter 
7857
7858 \backslash 
7859 upharpoonleft
7860 \end_inset 
7861 </cell>
7862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7863 \begin_inset Text
7864
7865 \layout Standard
7866
7867
7868 \begin_inset Formula $\downharpoonleft $
7869 \end_inset 
7870
7871
7872 \end_inset 
7873 </cell>
7874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7875 \begin_inset Text
7876
7877 \layout Standard
7878
7879
7880 \family typewriter 
7881
7882 \backslash 
7883 downharpoonleft
7884 \end_inset 
7885 </cell>
7886 </row>
7887 <row>
7888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7889 \begin_inset Text
7890
7891 \layout Standard
7892
7893
7894 \begin_inset Formula $\multimap $
7895 \end_inset 
7896
7897
7898 \end_inset 
7899 </cell>
7900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7901 \begin_inset Text
7902
7903 \layout Standard
7904
7905
7906 \family typewriter 
7907
7908 \backslash 
7909 multimap
7910 \end_inset 
7911 </cell>
7912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7913 \begin_inset Text
7914
7915 \layout Standard
7916
7917
7918 \begin_inset Formula $\leftrightsquigarrow $
7919 \end_inset 
7920
7921
7922 \end_inset 
7923 </cell>
7924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7925 \begin_inset Text
7926
7927 \layout Standard
7928
7929
7930 \family typewriter 
7931
7932 \backslash 
7933 leftrightsquigarrow
7934 \end_inset 
7935 </cell>
7936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7937 \begin_inset Text
7938
7939 \layout Standard
7940
7941
7942 \begin_inset Formula $\rightrightarrows $
7943 \end_inset 
7944
7945
7946 \end_inset 
7947 </cell>
7948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7949 \begin_inset Text
7950
7951 \layout Standard
7952
7953
7954 \family typewriter 
7955
7956 \backslash 
7957 rightrightarrows
7958 \end_inset 
7959 </cell>
7960 </row>
7961 <row>
7962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7963 \begin_inset Text
7964
7965 \layout Standard
7966
7967
7968 \begin_inset Formula $\rightleftarrows $
7969 \end_inset 
7970
7971
7972 \end_inset 
7973 </cell>
7974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7975 \begin_inset Text
7976
7977 \layout Standard
7978
7979
7980 \family typewriter 
7981
7982 \backslash 
7983 rightleftarrows
7984 \end_inset 
7985 </cell>
7986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7987 \begin_inset Text
7988
7989 \layout Standard
7990
7991
7992 \begin_inset Formula $\rightrightarrows $
7993 \end_inset 
7994
7995
7996 \end_inset 
7997 </cell>
7998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7999 \begin_inset Text
8000
8001 \layout Standard
8002
8003
8004 \family typewriter 
8005
8006 \backslash 
8007 rightrightarrows
8008 \end_inset 
8009 </cell>
8010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8011 \begin_inset Text
8012
8013 \layout Standard
8014
8015
8016 \begin_inset Formula $\rightleftarrows $
8017 \end_inset 
8018
8019
8020 \end_inset 
8021 </cell>
8022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8023 \begin_inset Text
8024
8025 \layout Standard
8026
8027
8028 \family typewriter 
8029
8030 \backslash 
8031 rightleftarrows
8032 \end_inset 
8033 </cell>
8034 </row>
8035 <row>
8036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8037 \begin_inset Text
8038
8039 \layout Standard
8040
8041
8042 \begin_inset Formula $\twoheadrightarrow $
8043 \end_inset 
8044
8045
8046 \end_inset 
8047 </cell>
8048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8049 \begin_inset Text
8050
8051 \layout Standard
8052
8053
8054 \family typewriter 
8055
8056 \backslash 
8057 twoheadrightarrow
8058 \end_inset 
8059 </cell>
8060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8061 \begin_inset Text
8062
8063 \layout Standard
8064
8065
8066 \begin_inset Formula $\rightarrowtail $
8067 \end_inset 
8068
8069
8070 \end_inset 
8071 </cell>
8072 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8073 \begin_inset Text
8074
8075 \layout Standard
8076
8077
8078 \family typewriter 
8079
8080 \backslash 
8081 rightarrowtail
8082 \end_inset 
8083 </cell>
8084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8085 \begin_inset Text
8086
8087 \layout Standard
8088
8089
8090 \begin_inset Formula $\looparrowright $
8091 \end_inset 
8092
8093
8094 \end_inset 
8095 </cell>
8096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8097 \begin_inset Text
8098
8099 \layout Standard
8100
8101
8102 \family typewriter 
8103
8104 \backslash 
8105 looparrowright
8106 \end_inset 
8107 </cell>
8108 </row>
8109 <row>
8110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8111 \begin_inset Text
8112
8113 \layout Standard
8114
8115
8116 \begin_inset Formula $\rightleftharpoons $
8117 \end_inset 
8118
8119
8120 \end_inset 
8121 </cell>
8122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8123 \begin_inset Text
8124
8125 \layout Standard
8126
8127
8128 \family typewriter 
8129
8130 \backslash 
8131 rightleftharpoons
8132 \end_inset 
8133 </cell>
8134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8135 \begin_inset Text
8136
8137 \layout Standard
8138
8139
8140 \begin_inset Formula $\curvearrowright $
8141 \end_inset 
8142
8143
8144 \end_inset 
8145 </cell>
8146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8147 \begin_inset Text
8148
8149 \layout Standard
8150
8151
8152 \family typewriter 
8153
8154 \backslash 
8155 curvearrowright
8156 \end_inset 
8157 </cell>
8158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8159 \begin_inset Text
8160
8161 \layout Standard
8162
8163
8164 \begin_inset Formula $\circlearrowright $
8165 \end_inset 
8166
8167
8168 \end_inset 
8169 </cell>
8170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8171 \begin_inset Text
8172
8173 \layout Standard
8174
8175
8176 \family typewriter 
8177
8178 \backslash 
8179 circlearrowright
8180 \end_inset 
8181 </cell>
8182 </row>
8183 <row>
8184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8185 \begin_inset Text
8186
8187 \layout Standard
8188
8189
8190 \begin_inset Formula $\Rsh $
8191 \end_inset 
8192
8193
8194 \end_inset 
8195 </cell>
8196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8197 \begin_inset Text
8198
8199 \layout Standard
8200
8201
8202 \family typewriter 
8203
8204 \backslash 
8205 Rsh
8206 \end_inset 
8207 </cell>
8208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8209 \begin_inset Text
8210
8211 \layout Standard
8212
8213
8214 \begin_inset Formula $\downdownarrows $
8215 \end_inset 
8216
8217
8218 \end_inset 
8219 </cell>
8220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8221 \begin_inset Text
8222
8223 \layout Standard
8224
8225
8226 \family typewriter 
8227
8228 \backslash 
8229 downdownarrows
8230 \end_inset 
8231 </cell>
8232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8233 \begin_inset Text
8234
8235 \layout Standard
8236
8237
8238 \begin_inset Formula $\upharpoonright $
8239 \end_inset 
8240
8241
8242 \end_inset 
8243 </cell>
8244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8245 \begin_inset Text
8246
8247 \layout Standard
8248
8249
8250 \family typewriter 
8251
8252 \backslash 
8253 upharpoonright
8254 \end_inset 
8255 </cell>
8256 </row>
8257 <row>
8258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8259 \begin_inset Text
8260
8261 \layout Standard
8262
8263
8264 \begin_inset Formula $\downharpoonright $
8265 \end_inset 
8266
8267
8268 \end_inset 
8269 </cell>
8270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8271 \begin_inset Text
8272
8273 \layout Standard
8274
8275
8276 \family typewriter 
8277
8278 \backslash 
8279 downharpoonright
8280 \end_inset 
8281 </cell>
8282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8283 \begin_inset Text
8284
8285 \layout Standard
8286
8287
8288 \begin_inset Formula $\rightsquigarrow $
8289 \end_inset 
8290
8291
8292 \end_inset 
8293 </cell>
8294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8295 \begin_inset Text
8296
8297 \layout Standard
8298
8299
8300 \family typewriter 
8301
8302 \backslash 
8303 rightsquigarrow
8304 \end_inset 
8305 </cell>
8306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8307 \begin_inset Text
8308
8309 \layout Standard
8310
8311 \end_inset 
8312 </cell>
8313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8314 \begin_inset Text
8315
8316 \layout Standard
8317
8318 \end_inset 
8319 </cell>
8320 </row>
8321 </lyxtabular>
8322
8323 \end_inset 
8324
8325
8326 \layout Caption
8327
8328 Flèches AMS
8329 \end_inset 
8330
8331
8332 \layout Standard
8333
8334
8335 \begin_inset Float table
8336 placement H
8337 wide false
8338 collapsed false
8339
8340 \layout Standard
8341
8342
8343 \begin_inset  Tabular
8344 <lyxtabular version="3" rows="2" columns="6">
8345 <features>
8346 <column alignment="right" valignment="top" width="0pt">
8347 <column alignment="left" valignment="top" width="0pt">
8348 <column alignment="right" valignment="top" width="0pt">
8349 <column alignment="left" valignment="top" width="0pt">
8350 <column alignment="right" valignment="top" width="0pt">
8351 <column alignment="left" valignment="top" width="0pt">
8352 <row>
8353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8354 \begin_inset Text
8355
8356 \layout Standard
8357
8358
8359 \begin_inset Formula $\nleftarrow $
8360 \end_inset 
8361
8362
8363 \end_inset 
8364 </cell>
8365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8366 \begin_inset Text
8367
8368 \layout Standard
8369
8370
8371 \family typewriter 
8372
8373 \backslash 
8374 nleftarrow
8375 \end_inset 
8376 </cell>
8377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8378 \begin_inset Text
8379
8380 \layout Standard
8381
8382
8383 \begin_inset Formula $\nrightarrow $
8384 \end_inset 
8385
8386
8387 \end_inset 
8388 </cell>
8389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8390 \begin_inset Text
8391
8392 \layout Standard
8393
8394
8395 \family typewriter 
8396
8397 \backslash 
8398 nrightarrow
8399 \end_inset 
8400 </cell>
8401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8402 \begin_inset Text
8403
8404 \layout Standard
8405
8406
8407 \begin_inset Formula $\nLeftarrow $
8408 \end_inset 
8409
8410
8411 \end_inset 
8412 </cell>
8413 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8414 \begin_inset Text
8415
8416 \layout Standard
8417
8418
8419 \family typewriter 
8420
8421 \backslash 
8422 nLeftarrow
8423 \end_inset 
8424 </cell>
8425 </row>
8426 <row>
8427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8428 \begin_inset Text
8429
8430 \layout Standard
8431
8432
8433 \begin_inset Formula $\nRightarrow $
8434 \end_inset 
8435
8436
8437 \end_inset 
8438 </cell>
8439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8440 \begin_inset Text
8441
8442 \layout Standard
8443
8444
8445 \family typewriter 
8446
8447 \backslash 
8448 nRightarrow
8449 \end_inset 
8450 </cell>
8451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8452 \begin_inset Text
8453
8454 \layout Standard
8455
8456
8457 \begin_inset Formula $\nleftrightarrow $
8458 \end_inset 
8459
8460
8461 \end_inset 
8462 </cell>
8463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8464 \begin_inset Text
8465
8466 \layout Standard
8467
8468
8469 \family typewriter 
8470
8471 \backslash 
8472 nleftrightarrow
8473 \end_inset 
8474 </cell>
8475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8476 \begin_inset Text
8477
8478 \layout Standard
8479
8480
8481 \begin_inset Formula $\nLeftrightarrow $
8482 \end_inset 
8483
8484
8485 \end_inset 
8486 </cell>
8487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8488 \begin_inset Text
8489
8490 \layout Standard
8491
8492
8493 \family typewriter 
8494
8495 \backslash 
8496 nLeftrightarrow
8497 \end_inset 
8498 </cell>
8499 </row>
8500 </lyxtabular>
8501
8502 \end_inset 
8503
8504
8505 \layout Caption
8506
8507 Négations de flèches AMS
8508 \end_inset 
8509
8510
8511 \layout Standard
8512
8513
8514 \begin_inset Float table
8515 placement H
8516 wide false
8517 collapsed false
8518
8519 \layout Standard
8520
8521
8522 \begin_inset  Tabular
8523 <lyxtabular version="3" rows="22" columns="6">
8524 <features>
8525 <column alignment="right" valignment="top" width="0pt">
8526 <column alignment="left" valignment="top" width="0pt">
8527 <column alignment="right" valignment="top" width="0pt">
8528 <column alignment="left" valignment="top" width="0pt">
8529 <column alignment="right" valignment="top" width="0pt">
8530 <column alignment="left" valignment="top" width="0pt">
8531 <row>
8532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8533 \begin_inset Text
8534
8535 \layout Standard
8536
8537
8538 \begin_inset Formula $\leqq $
8539 \end_inset 
8540
8541
8542 \end_inset 
8543 </cell>
8544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8545 \begin_inset Text
8546
8547 \layout Standard
8548
8549
8550 \family typewriter 
8551
8552 \backslash 
8553 leqq
8554 \end_inset 
8555 </cell>
8556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8557 \begin_inset Text
8558
8559 \layout Standard
8560
8561
8562 \begin_inset Formula $\leqslant $
8563 \end_inset 
8564
8565
8566 \end_inset 
8567 </cell>
8568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8569 \begin_inset Text
8570
8571 \layout Standard
8572
8573
8574 \family typewriter 
8575
8576 \backslash 
8577 leqslant
8578 \end_inset 
8579 </cell>
8580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8581 \begin_inset Text
8582
8583 \layout Standard
8584
8585
8586 \begin_inset Formula $\eqslantless $
8587 \end_inset 
8588
8589
8590 \end_inset 
8591 </cell>
8592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8593 \begin_inset Text
8594
8595 \layout Standard
8596
8597
8598 \family typewriter 
8599
8600 \backslash 
8601 eqslantless
8602 \end_inset 
8603 </cell>
8604 </row>
8605 <row>
8606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8607 \begin_inset Text
8608
8609 \layout Standard
8610
8611
8612 \begin_inset Formula $\lesssim $
8613 \end_inset 
8614
8615
8616 \end_inset 
8617 </cell>
8618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8619 \begin_inset Text
8620
8621 \layout Standard
8622
8623
8624 \family typewriter 
8625
8626 \backslash 
8627 lesssim
8628 \end_inset 
8629 </cell>
8630 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8631 \begin_inset Text
8632
8633 \layout Standard
8634
8635
8636 \begin_inset Formula $\lessapprox $
8637 \end_inset 
8638
8639
8640 \end_inset 
8641 </cell>
8642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8643 \begin_inset Text
8644
8645 \layout Standard
8646
8647
8648 \family typewriter 
8649
8650 \backslash 
8651 lessapprox
8652 \end_inset 
8653 </cell>
8654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8655 \begin_inset Text
8656
8657 \layout Standard
8658
8659
8660 \begin_inset Formula $\approxeq $
8661 \end_inset 
8662
8663
8664 \end_inset 
8665 </cell>
8666 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8667 \begin_inset Text
8668
8669 \layout Standard
8670
8671
8672 \family typewriter 
8673
8674 \backslash 
8675 approxeq
8676 \end_inset 
8677 </cell>
8678 </row>
8679 <row>
8680 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8681 \begin_inset Text
8682
8683 \layout Standard
8684
8685
8686 \begin_inset Formula $\lessdot $
8687 \end_inset 
8688
8689
8690 \end_inset 
8691 </cell>
8692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8693 \begin_inset Text
8694
8695 \layout Standard
8696
8697
8698 \family typewriter 
8699
8700 \backslash 
8701 lessdot
8702 \end_inset 
8703 </cell>
8704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8705 \begin_inset Text
8706
8707 \layout Standard
8708
8709
8710 \begin_inset Formula $\lll $
8711 \end_inset 
8712
8713
8714 \end_inset 
8715 </cell>
8716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8717 \begin_inset Text
8718
8719 \layout Standard
8720
8721
8722 \family typewriter 
8723
8724 \backslash 
8725 lll
8726 \end_inset 
8727 </cell>
8728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8729 \begin_inset Text
8730
8731 \layout Standard
8732
8733
8734 \begin_inset Formula $\lessgtr $
8735 \end_inset 
8736
8737
8738 \end_inset 
8739 </cell>
8740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8741 \begin_inset Text
8742
8743 \layout Standard
8744
8745
8746 \family typewriter 
8747
8748 \backslash 
8749 lessgtr
8750 \end_inset 
8751 </cell>
8752 </row>
8753 <row>
8754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8755 \begin_inset Text
8756
8757 \layout Standard
8758
8759
8760 \begin_inset Formula $\lesseqgtr $
8761 \end_inset 
8762
8763
8764 \end_inset 
8765 </cell>
8766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8767 \begin_inset Text
8768
8769 \layout Standard
8770
8771
8772 \family typewriter 
8773
8774 \backslash 
8775 lesseqgtr
8776 \end_inset 
8777 </cell>
8778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8779 \begin_inset Text
8780
8781 \layout Standard
8782
8783
8784 \begin_inset Formula $\lesseqqgtr $
8785 \end_inset 
8786
8787
8788 \end_inset 
8789 </cell>
8790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8791 \begin_inset Text
8792
8793 \layout Standard
8794
8795
8796 \family typewriter 
8797
8798 \backslash 
8799 lesseqqgtr
8800 \end_inset 
8801 </cell>
8802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8803 \begin_inset Text
8804
8805 \layout Standard
8806
8807
8808 \begin_inset Formula $\doteqdot $
8809 \end_inset 
8810
8811
8812 \end_inset 
8813 </cell>
8814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8815 \begin_inset Text
8816
8817 \layout Standard
8818
8819
8820 \family typewriter 
8821
8822 \backslash 
8823 doteqdot
8824 \end_inset 
8825 </cell>
8826 </row>
8827 <row>
8828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8829 \begin_inset Text
8830
8831 \layout Standard
8832
8833
8834 \begin_inset Formula $\risingdotseq $
8835 \end_inset 
8836
8837
8838 \end_inset 
8839 </cell>
8840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8841 \begin_inset Text
8842
8843 \layout Standard
8844
8845
8846 \family typewriter 
8847
8848 \backslash 
8849 risingdotseq
8850 \end_inset 
8851 </cell>
8852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8853 \begin_inset Text
8854
8855 \layout Standard
8856
8857
8858 \begin_inset Formula $\fallingdotseq $
8859 \end_inset 
8860
8861
8862 \end_inset 
8863 </cell>
8864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8865 \begin_inset Text
8866
8867 \layout Standard
8868
8869
8870 \family typewriter 
8871
8872 \backslash 
8873 fallingdotseq
8874 \end_inset 
8875 </cell>
8876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8877 \begin_inset Text
8878
8879 \layout Standard
8880
8881
8882 \begin_inset Formula $\backsim $
8883 \end_inset 
8884
8885
8886 \end_inset 
8887 </cell>
8888 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8889 \begin_inset Text
8890
8891 \layout Standard
8892
8893
8894 \family typewriter 
8895
8896 \backslash 
8897 backsim
8898 \end_inset 
8899 </cell>
8900 </row>
8901 <row>
8902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8903 \begin_inset Text
8904
8905 \layout Standard
8906
8907
8908 \begin_inset Formula $\backsimeq $
8909 \end_inset 
8910
8911
8912 \end_inset 
8913 </cell>
8914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8915 \begin_inset Text
8916
8917 \layout Standard
8918
8919
8920 \family typewriter 
8921
8922 \backslash 
8923 backsimeq
8924 \end_inset 
8925 </cell>
8926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8927 \begin_inset Text
8928
8929 \layout Standard
8930
8931
8932 \begin_inset Formula $\subseteqq $
8933 \end_inset 
8934
8935
8936 \end_inset 
8937 </cell>
8938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8939 \begin_inset Text
8940
8941 \layout Standard
8942
8943
8944 \family typewriter 
8945
8946 \backslash 
8947 subseteqq
8948 \end_inset 
8949 </cell>
8950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8951 \begin_inset Text
8952
8953 \layout Standard
8954
8955
8956 \begin_inset Formula $\Subset $
8957 \end_inset 
8958
8959
8960 \end_inset 
8961 </cell>
8962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8963 \begin_inset Text
8964
8965 \layout Standard
8966
8967
8968 \family typewriter 
8969
8970 \backslash 
8971 Subset
8972 \end_inset 
8973 </cell>
8974 </row>
8975 <row>
8976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8977 \begin_inset Text
8978
8979 \layout Standard
8980
8981
8982 \begin_inset Formula $\sqsubset $
8983 \end_inset 
8984
8985
8986 \end_inset 
8987 </cell>
8988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8989 \begin_inset Text
8990
8991 \layout Standard
8992
8993
8994 \family typewriter 
8995
8996 \backslash 
8997 sqsubset
8998 \end_inset 
8999 </cell>
9000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9001 \begin_inset Text
9002
9003 \layout Standard
9004
9005
9006 \begin_inset Formula $\preccurlyeq $
9007 \end_inset 
9008
9009
9010 \end_inset 
9011 </cell>
9012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9013 \begin_inset Text
9014
9015 \layout Standard
9016
9017
9018 \family typewriter 
9019
9020 \backslash 
9021 preccurlyeq
9022 \end_inset 
9023 </cell>
9024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9025 \begin_inset Text
9026
9027 \layout Standard
9028
9029
9030 \begin_inset Formula $\curlyeqprec $
9031 \end_inset 
9032
9033
9034 \end_inset 
9035 </cell>
9036 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9037 \begin_inset Text
9038
9039 \layout Standard
9040
9041
9042 \family typewriter 
9043
9044 \backslash 
9045 curlyeqprec
9046 \end_inset 
9047 </cell>
9048 </row>
9049 <row>
9050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9051 \begin_inset Text
9052
9053 \layout Standard
9054
9055
9056 \begin_inset Formula $\precsim $
9057 \end_inset 
9058
9059
9060 \end_inset 
9061 </cell>
9062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9063 \begin_inset Text
9064
9065 \layout Standard
9066
9067
9068 \family typewriter 
9069
9070 \backslash 
9071 precsim
9072 \end_inset 
9073 </cell>
9074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9075 \begin_inset Text
9076
9077 \layout Standard
9078
9079
9080 \begin_inset Formula $\precapprox $
9081 \end_inset 
9082
9083
9084 \end_inset 
9085 </cell>
9086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9087 \begin_inset Text
9088
9089 \layout Standard
9090
9091
9092 \family typewriter 
9093
9094 \backslash 
9095 precapprox
9096 \end_inset 
9097 </cell>
9098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9099 \begin_inset Text
9100
9101 \layout Standard
9102
9103
9104 \begin_inset Formula $\vartriangleleft $
9105 \end_inset 
9106
9107
9108 \end_inset 
9109 </cell>
9110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9111 \begin_inset Text
9112
9113 \layout Standard
9114
9115
9116 \family typewriter 
9117
9118 \backslash 
9119 vartriangleleft
9120 \end_inset 
9121 </cell>
9122 </row>
9123 <row>
9124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9125 \begin_inset Text
9126
9127 \layout Standard
9128
9129
9130 \begin_inset Formula $\trianglelefteq $
9131 \end_inset 
9132
9133
9134 \end_inset 
9135 </cell>
9136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9137 \begin_inset Text
9138
9139 \layout Standard
9140
9141
9142 \family typewriter 
9143
9144 \backslash 
9145 trianglelefteq
9146 \end_inset 
9147 </cell>
9148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9149 \begin_inset Text
9150
9151 \layout Standard
9152
9153
9154 \begin_inset Formula $\vDash $
9155 \end_inset 
9156
9157
9158 \end_inset 
9159 </cell>
9160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9161 \begin_inset Text
9162
9163 \layout Standard
9164
9165
9166 \family typewriter 
9167
9168 \backslash 
9169 vDash
9170 \end_inset 
9171 </cell>
9172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9173 \begin_inset Text
9174
9175 \layout Standard
9176
9177
9178 \begin_inset Formula $\Vvdash $
9179 \end_inset 
9180
9181
9182 \end_inset 
9183 </cell>
9184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9185 \begin_inset Text
9186
9187 \layout Standard
9188
9189
9190 \family typewriter 
9191
9192 \backslash 
9193 Vvdash
9194 \end_inset 
9195 </cell>
9196 </row>
9197 <row>
9198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9199 \begin_inset Text
9200
9201 \layout Standard
9202
9203
9204 \begin_inset Formula $\smallsmile $
9205 \end_inset 
9206
9207
9208 \end_inset 
9209 </cell>
9210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9211 \begin_inset Text
9212
9213 \layout Standard
9214
9215
9216 \family typewriter 
9217
9218 \backslash 
9219 smallsmile
9220 \end_inset 
9221 </cell>
9222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9223 \begin_inset Text
9224
9225 \layout Standard
9226
9227
9228 \begin_inset Formula $\smallfrown $
9229 \end_inset 
9230
9231
9232 \end_inset 
9233 </cell>
9234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9235 \begin_inset Text
9236
9237 \layout Standard
9238
9239
9240 \family typewriter 
9241
9242 \backslash 
9243 smallfrown
9244 \end_inset 
9245 </cell>
9246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9247 \begin_inset Text
9248
9249 \layout Standard
9250
9251
9252 \begin_inset Formula $\bumpeq $
9253 \end_inset 
9254
9255
9256 \end_inset 
9257 </cell>
9258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9259 \begin_inset Text
9260
9261 \layout Standard
9262
9263
9264 \family typewriter 
9265
9266 \backslash 
9267 bumpeq
9268 \end_inset 
9269 </cell>
9270 </row>
9271 <row>
9272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9273 \begin_inset Text
9274
9275 \layout Standard
9276
9277
9278 \begin_inset Formula $\Bumpeq $
9279 \end_inset 
9280
9281
9282 \end_inset 
9283 </cell>
9284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9285 \begin_inset Text
9286
9287 \layout Standard
9288
9289
9290 \family typewriter 
9291
9292 \backslash 
9293 Bumpeq
9294 \end_inset 
9295 </cell>
9296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9297 \begin_inset Text
9298
9299 \layout Standard
9300
9301
9302 \begin_inset Formula $\geqq $
9303 \end_inset 
9304
9305
9306 \end_inset 
9307 </cell>
9308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9309 \begin_inset Text
9310
9311 \layout Standard
9312
9313
9314 \family typewriter 
9315
9316 \backslash 
9317 geqq
9318 \end_inset 
9319 </cell>
9320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9321 \begin_inset Text
9322
9323 \layout Standard
9324
9325
9326 \begin_inset Formula $\geqslant $
9327 \end_inset 
9328
9329
9330 \end_inset 
9331 </cell>
9332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9333 \begin_inset Text
9334
9335 \layout Standard
9336
9337
9338 \family typewriter 
9339
9340 \backslash 
9341 geqslant
9342 \end_inset 
9343 </cell>
9344 </row>
9345 <row>
9346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9347 \begin_inset Text
9348
9349 \layout Standard
9350
9351
9352 \begin_inset Formula $\eqslantgtr $
9353 \end_inset 
9354
9355
9356 \end_inset 
9357 </cell>
9358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9359 \begin_inset Text
9360
9361 \layout Standard
9362
9363
9364 \family typewriter 
9365
9366 \backslash 
9367 eqslantgtr
9368 \end_inset 
9369 </cell>
9370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9371 \begin_inset Text
9372
9373 \layout Standard
9374
9375
9376 \begin_inset Formula $\gtrsim $
9377 \end_inset 
9378
9379
9380 \end_inset 
9381 </cell>
9382 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9383 \begin_inset Text
9384
9385 \layout Standard
9386
9387
9388 \family typewriter 
9389
9390 \backslash 
9391 gtrsim
9392 \end_inset 
9393 </cell>
9394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9395 \begin_inset Text
9396
9397 \layout Standard
9398
9399
9400 \begin_inset Formula $\gtrapprox $
9401 \end_inset 
9402
9403
9404 \end_inset 
9405 </cell>
9406 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9407 \begin_inset Text
9408
9409 \layout Standard
9410
9411
9412 \family typewriter 
9413
9414 \backslash 
9415 gtrapprox
9416 \end_inset 
9417 </cell>
9418 </row>
9419 <row>
9420 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9421 \begin_inset Text
9422
9423 \layout Standard
9424
9425
9426 \begin_inset Formula $\gtrdot $
9427 \end_inset 
9428
9429
9430 \end_inset 
9431 </cell>
9432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9433 \begin_inset Text
9434
9435 \layout Standard
9436
9437
9438 \family typewriter 
9439
9440 \backslash 
9441 gtrdot
9442 \end_inset 
9443 </cell>
9444 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9445 \begin_inset Text
9446
9447 \layout Standard
9448
9449
9450 \begin_inset Formula $\ggg $
9451 \end_inset 
9452
9453
9454 \end_inset 
9455 </cell>
9456 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9457 \begin_inset Text
9458
9459 \layout Standard
9460
9461
9462 \family typewriter 
9463
9464 \backslash 
9465 ggg
9466 \end_inset 
9467 </cell>
9468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9469 \begin_inset Text
9470
9471 \layout Standard
9472
9473
9474 \begin_inset Formula $\gtrless $
9475 \end_inset 
9476
9477
9478 \end_inset 
9479 </cell>
9480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \layout Standard
9484
9485
9486 \family typewriter 
9487
9488 \backslash 
9489 gtrless
9490 \end_inset 
9491 </cell>
9492 </row>
9493 <row>
9494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9495 \begin_inset Text
9496
9497 \layout Standard
9498
9499
9500 \begin_inset Formula $\gtreqless $
9501 \end_inset 
9502
9503
9504 \end_inset 
9505 </cell>
9506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9507 \begin_inset Text
9508
9509 \layout Standard
9510
9511
9512 \family typewriter 
9513
9514 \backslash 
9515 gtreqless
9516 \end_inset 
9517 </cell>
9518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9519 \begin_inset Text
9520
9521 \layout Standard
9522
9523
9524 \begin_inset Formula $\gtreqqless $
9525 \end_inset 
9526
9527
9528 \end_inset 
9529 </cell>
9530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9531 \begin_inset Text
9532
9533 \layout Standard
9534
9535
9536 \family typewriter 
9537
9538 \backslash 
9539 gtreqqless
9540 \end_inset 
9541 </cell>
9542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9543 \begin_inset Text
9544
9545 \layout Standard
9546
9547
9548 \begin_inset Formula $\eqcirc $
9549 \end_inset 
9550
9551
9552 \end_inset 
9553 </cell>
9554 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9555 \begin_inset Text
9556
9557 \layout Standard
9558
9559
9560 \family typewriter 
9561
9562 \backslash 
9563 eqcirc
9564 \end_inset 
9565 </cell>
9566 </row>
9567 <row>
9568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9569 \begin_inset Text
9570
9571 \layout Standard
9572
9573
9574 \begin_inset Formula $\circeq $
9575 \end_inset 
9576
9577
9578 \end_inset 
9579 </cell>
9580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9581 \begin_inset Text
9582
9583 \layout Standard
9584
9585
9586 \family typewriter 
9587
9588 \backslash 
9589 circeq
9590 \end_inset 
9591 </cell>
9592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9593 \begin_inset Text
9594
9595 \layout Standard
9596
9597
9598 \begin_inset Formula $\triangleq $
9599 \end_inset 
9600
9601
9602 \end_inset 
9603 </cell>
9604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9605 \begin_inset Text
9606
9607 \layout Standard
9608
9609
9610 \family typewriter 
9611
9612 \backslash 
9613 triangleq
9614 \end_inset 
9615 </cell>
9616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9617 \begin_inset Text
9618
9619 \layout Standard
9620
9621
9622 \begin_inset Formula $\thicksim $
9623 \end_inset 
9624
9625
9626 \end_inset 
9627 </cell>
9628 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9629 \begin_inset Text
9630
9631 \layout Standard
9632
9633
9634 \family typewriter 
9635
9636 \backslash 
9637 thicksim
9638 \end_inset 
9639 </cell>
9640 </row>
9641 <row>
9642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9643 \begin_inset Text
9644
9645 \layout Standard
9646
9647
9648 \begin_inset Formula $\thickapprox $
9649 \end_inset 
9650
9651
9652 \end_inset 
9653 </cell>
9654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9655 \begin_inset Text
9656
9657 \layout Standard
9658
9659
9660 \family typewriter 
9661
9662 \backslash 
9663 thickapprox
9664 \end_inset 
9665 </cell>
9666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9667 \begin_inset Text
9668
9669 \layout Standard
9670
9671
9672 \begin_inset Formula $\supseteqq $
9673 \end_inset 
9674
9675
9676 \end_inset 
9677 </cell>
9678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9679 \begin_inset Text
9680
9681 \layout Standard
9682
9683
9684 \family typewriter 
9685
9686 \backslash 
9687 supseteqq
9688 \end_inset 
9689 </cell>
9690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9691 \begin_inset Text
9692
9693 \layout Standard
9694
9695
9696 \begin_inset Formula $\Supset $
9697 \end_inset 
9698
9699
9700 \end_inset 
9701 </cell>
9702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9703 \begin_inset Text
9704
9705 \layout Standard
9706
9707
9708 \family typewriter 
9709
9710 \backslash 
9711 Supset
9712 \end_inset 
9713 </cell>
9714 </row>
9715 <row>
9716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9717 \begin_inset Text
9718
9719 \layout Standard
9720
9721
9722 \begin_inset Formula $\sqsupset $
9723 \end_inset 
9724
9725
9726 \end_inset 
9727 </cell>
9728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9729 \begin_inset Text
9730
9731 \layout Standard
9732
9733
9734 \family typewriter 
9735
9736 \backslash 
9737 sqsupset
9738 \end_inset 
9739 </cell>
9740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9741 \begin_inset Text
9742
9743 \layout Standard
9744
9745
9746 \begin_inset Formula $\succcurlyeq $
9747 \end_inset 
9748
9749
9750 \end_inset 
9751 </cell>
9752 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9753 \begin_inset Text
9754
9755 \layout Standard
9756
9757
9758 \family typewriter 
9759
9760 \backslash 
9761 succcurlyeq
9762 \end_inset 
9763 </cell>
9764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9765 \begin_inset Text
9766
9767 \layout Standard
9768
9769
9770 \begin_inset Formula $\curlyeqsucc $
9771 \end_inset 
9772
9773
9774 \end_inset 
9775 </cell>
9776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9777 \begin_inset Text
9778
9779 \layout Standard
9780
9781
9782 \family typewriter 
9783
9784 \backslash 
9785 curlyeqsucc
9786 \end_inset 
9787 </cell>
9788 </row>
9789 <row>
9790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9791 \begin_inset Text
9792
9793 \layout Standard
9794
9795
9796 \begin_inset Formula $\succsim $
9797 \end_inset 
9798
9799
9800 \end_inset 
9801 </cell>
9802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9803 \begin_inset Text
9804
9805 \layout Standard
9806
9807
9808 \family typewriter 
9809
9810 \backslash 
9811 succsim
9812 \end_inset 
9813 </cell>
9814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9815 \begin_inset Text
9816
9817 \layout Standard
9818
9819
9820 \begin_inset Formula $\succapprox $
9821 \end_inset 
9822
9823
9824 \end_inset 
9825 </cell>
9826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9827 \begin_inset Text
9828
9829 \layout Standard
9830
9831
9832 \family typewriter 
9833
9834 \backslash 
9835 succapprox
9836 \end_inset 
9837 </cell>
9838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9839 \begin_inset Text
9840
9841 \layout Standard
9842
9843
9844 \begin_inset Formula $\vartriangleright $
9845 \end_inset 
9846
9847
9848 \end_inset 
9849 </cell>
9850 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9851 \begin_inset Text
9852
9853 \layout Standard
9854
9855
9856 \family typewriter 
9857
9858 \backslash 
9859 vartriangleright
9860 \end_inset 
9861 </cell>
9862 </row>
9863 <row>
9864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9865 \begin_inset Text
9866
9867 \layout Standard
9868
9869
9870 \begin_inset Formula $\trianglerighteq $
9871 \end_inset 
9872
9873
9874 \end_inset 
9875 </cell>
9876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9877 \begin_inset Text
9878
9879 \layout Standard
9880
9881
9882 \family typewriter 
9883
9884 \backslash 
9885 trianglerighteq
9886 \end_inset 
9887 </cell>
9888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9889 \begin_inset Text
9890
9891 \layout Standard
9892
9893
9894 \begin_inset Formula $\Vdash $
9895 \end_inset 
9896
9897
9898 \end_inset 
9899 </cell>
9900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9901 \begin_inset Text
9902
9903 \layout Standard
9904
9905
9906 \family typewriter 
9907
9908 \backslash 
9909 Vdash
9910 \end_inset 
9911 </cell>
9912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9913 \begin_inset Text
9914
9915 \layout Standard
9916
9917
9918 \begin_inset Formula $\shortmid $
9919 \end_inset 
9920
9921
9922 \end_inset 
9923 </cell>
9924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9925 \begin_inset Text
9926
9927 \layout Standard
9928
9929
9930 \family typewriter 
9931
9932 \backslash 
9933 shortmid
9934 \end_inset 
9935 </cell>
9936 </row>
9937 <row>
9938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9939 \begin_inset Text
9940
9941 \layout Standard
9942
9943
9944 \begin_inset Formula $\shortparallel $
9945 \end_inset 
9946
9947
9948 \end_inset 
9949 </cell>
9950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9951 \begin_inset Text
9952
9953 \layout Standard
9954
9955
9956 \family typewriter 
9957
9958 \backslash 
9959 shortparallel
9960 \end_inset 
9961 </cell>
9962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9963 \begin_inset Text
9964
9965 \layout Standard
9966
9967
9968 \begin_inset Formula $\between $
9969 \end_inset 
9970
9971
9972 \end_inset 
9973 </cell>
9974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9975 \begin_inset Text
9976
9977 \layout Standard
9978
9979
9980 \family typewriter 
9981
9982 \backslash 
9983 between
9984 \end_inset 
9985 </cell>
9986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9987 \begin_inset Text
9988
9989 \layout Standard
9990
9991
9992 \begin_inset Formula $\pitchfork $
9993 \end_inset 
9994
9995
9996 \end_inset 
9997 </cell>
9998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9999 \begin_inset Text
10000
10001 \layout Standard
10002
10003
10004 \family typewriter 
10005
10006 \backslash 
10007 pitchfork
10008 \end_inset 
10009 </cell>
10010 </row>
10011 <row>
10012 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10013 \begin_inset Text
10014
10015 \layout Standard
10016
10017
10018 \begin_inset Formula $\varpropto $
10019 \end_inset 
10020
10021
10022 \end_inset 
10023 </cell>
10024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10025 \begin_inset Text
10026
10027 \layout Standard
10028
10029
10030 \family typewriter 
10031
10032 \backslash 
10033 varpropto
10034 \end_inset 
10035 </cell>
10036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10037 \begin_inset Text
10038
10039 \layout Standard
10040
10041
10042 \begin_inset Formula $\blacktriangleleft $
10043 \end_inset 
10044
10045
10046 \end_inset 
10047 </cell>
10048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10049 \begin_inset Text
10050
10051 \layout Standard
10052
10053
10054 \family typewriter 
10055
10056 \backslash 
10057 blacktriangleleft
10058 \end_inset 
10059 </cell>
10060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10061 \begin_inset Text
10062
10063 \layout Standard
10064
10065
10066 \begin_inset Formula $\therefore $
10067 \end_inset 
10068
10069
10070 \end_inset 
10071 </cell>
10072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10073 \begin_inset Text
10074
10075 \layout Standard
10076
10077
10078 \family typewriter 
10079
10080 \backslash 
10081 therefore
10082 \end_inset 
10083 </cell>
10084 </row>
10085 <row>
10086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10087 \begin_inset Text
10088
10089 \layout Standard
10090
10091
10092 \begin_inset Formula $\backepsilon $
10093 \end_inset 
10094
10095
10096 \end_inset 
10097 </cell>
10098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10099 \begin_inset Text
10100
10101 \layout Standard
10102
10103
10104 \family typewriter 
10105
10106 \backslash 
10107 backepsilon
10108 \end_inset 
10109 </cell>
10110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10111 \begin_inset Text
10112
10113 \layout Standard
10114
10115
10116 \begin_inset Formula $\blacktriangleright $
10117 \end_inset 
10118
10119
10120 \end_inset 
10121 </cell>
10122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10123 \begin_inset Text
10124
10125 \layout Standard
10126
10127
10128 \family typewriter 
10129
10130 \backslash 
10131 blacktriangleright
10132 \end_inset 
10133 </cell>
10134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10135 \begin_inset Text
10136
10137 \layout Standard
10138
10139
10140 \begin_inset Formula $\because $
10141 \end_inset 
10142
10143
10144 \end_inset 
10145 </cell>
10146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10147 \begin_inset Text
10148
10149 \layout Standard
10150
10151
10152 \family typewriter 
10153
10154 \backslash 
10155 because
10156 \end_inset 
10157 </cell>
10158 </row>
10159 </lyxtabular>
10160
10161 \end_inset 
10162
10163
10164 \layout Caption
10165
10166 Relations binaires AMS
10167 \end_inset 
10168
10169
10170 \layout Standard
10171
10172
10173 \begin_inset Float table
10174 placement H
10175 wide false
10176 collapsed false
10177
10178 \layout Standard
10179
10180
10181 \begin_inset  Tabular
10182 <lyxtabular version="3" rows="17" columns="6">
10183 <features>
10184 <column alignment="right" valignment="top" width="0pt">
10185 <column alignment="left" valignment="top" width="0pt">
10186 <column alignment="right" valignment="top" width="0pt">
10187 <column alignment="left" valignment="top" width="0pt">
10188 <column alignment="right" valignment="top" width="0pt">
10189 <column alignment="left" valignment="top" width="0pt">
10190 <row>
10191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10192 \begin_inset Text
10193
10194 \layout Standard
10195
10196
10197 \begin_inset Formula $\nless $
10198 \end_inset 
10199
10200
10201 \end_inset 
10202 </cell>
10203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10204 \begin_inset Text
10205
10206 \layout Standard
10207
10208
10209 \family typewriter 
10210
10211 \backslash 
10212 nless
10213 \end_inset 
10214 </cell>
10215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10216 \begin_inset Text
10217
10218 \layout Standard
10219
10220
10221 \begin_inset Formula $\nleq $
10222 \end_inset 
10223
10224
10225 \end_inset 
10226 </cell>
10227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10228 \begin_inset Text
10229
10230 \layout Standard
10231
10232
10233 \family typewriter 
10234
10235 \backslash 
10236 nleq
10237 \end_inset 
10238 </cell>
10239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10240 \begin_inset Text
10241
10242 \layout Standard
10243
10244
10245 \begin_inset Formula $\nleqslant $
10246 \end_inset 
10247
10248
10249 \end_inset 
10250 </cell>
10251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10252 \begin_inset Text
10253
10254 \layout Standard
10255
10256
10257 \family typewriter 
10258
10259 \backslash 
10260 nleqslant
10261 \end_inset 
10262 </cell>
10263 </row>
10264 <row>
10265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10266 \begin_inset Text
10267
10268 \layout Standard
10269
10270
10271 \begin_inset Formula $\nleqq $
10272 \end_inset 
10273
10274
10275 \end_inset 
10276 </cell>
10277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10278 \begin_inset Text
10279
10280 \layout Standard
10281
10282
10283 \family typewriter 
10284
10285 \backslash 
10286 nleqq
10287 \end_inset 
10288 </cell>
10289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10290 \begin_inset Text
10291
10292 \layout Standard
10293
10294
10295 \begin_inset Formula $\lneq $
10296 \end_inset 
10297
10298
10299 \end_inset 
10300 </cell>
10301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10302 \begin_inset Text
10303
10304 \layout Standard
10305
10306
10307 \family typewriter 
10308
10309 \backslash 
10310 lneq
10311 \end_inset 
10312 </cell>
10313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10314 \begin_inset Text
10315
10316 \layout Standard
10317
10318
10319 \begin_inset Formula $\lneqq $
10320 \end_inset 
10321
10322
10323 \end_inset 
10324 </cell>
10325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10326 \begin_inset Text
10327
10328 \layout Standard
10329
10330
10331 \family typewriter 
10332
10333 \backslash 
10334 lneqq
10335 \end_inset 
10336 </cell>
10337 </row>
10338 <row>
10339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10340 \begin_inset Text
10341
10342 \layout Standard
10343
10344
10345 \begin_inset Formula $\lvertneqq $
10346 \end_inset 
10347
10348
10349 \end_inset 
10350 </cell>
10351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10352 \begin_inset Text
10353
10354 \layout Standard
10355
10356
10357 \family typewriter 
10358
10359 \backslash 
10360 lvertneqq
10361 \end_inset 
10362 </cell>
10363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10364 \begin_inset Text
10365
10366 \layout Standard
10367
10368
10369 \begin_inset Formula $\lnsim $
10370 \end_inset 
10371
10372
10373 \end_inset 
10374 </cell>
10375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10376 \begin_inset Text
10377
10378 \layout Standard
10379
10380
10381 \family typewriter 
10382
10383 \backslash 
10384 lnsim
10385 \end_inset 
10386 </cell>
10387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10388 \begin_inset Text
10389
10390 \layout Standard
10391
10392
10393 \begin_inset Formula $\lnapprox $
10394 \end_inset 
10395
10396
10397 \end_inset 
10398 </cell>
10399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10400 \begin_inset Text
10401
10402 \layout Standard
10403
10404
10405 \family typewriter 
10406
10407 \backslash 
10408 lnapprox
10409 \end_inset 
10410 </cell>
10411 </row>
10412 <row>
10413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10414 \begin_inset Text
10415
10416 \layout Standard
10417
10418
10419 \begin_inset Formula $\nprec $
10420 \end_inset 
10421
10422
10423 \end_inset 
10424 </cell>
10425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10426 \begin_inset Text
10427
10428 \layout Standard
10429
10430
10431 \family typewriter 
10432
10433 \backslash 
10434 nprec
10435 \end_inset 
10436 </cell>
10437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10438 \begin_inset Text
10439
10440 \layout Standard
10441
10442
10443 \begin_inset Formula $\npreceq $
10444 \end_inset 
10445
10446
10447 \end_inset 
10448 </cell>
10449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10450 \begin_inset Text
10451
10452 \layout Standard
10453
10454
10455 \family typewriter 
10456
10457 \backslash 
10458 npreceq
10459 \end_inset 
10460 </cell>
10461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10462 \begin_inset Text
10463
10464 \layout Standard
10465
10466
10467 \begin_inset Formula $\precnsim $
10468 \end_inset 
10469
10470
10471 \end_inset 
10472 </cell>
10473 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10474 \begin_inset Text
10475
10476 \layout Standard
10477
10478
10479 \family typewriter 
10480
10481 \backslash 
10482 precnsim
10483 \end_inset 
10484 </cell>
10485 </row>
10486 <row>
10487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10488 \begin_inset Text
10489
10490 \layout Standard
10491
10492
10493 \begin_inset Formula $\precnapprox $
10494 \end_inset 
10495
10496
10497 \end_inset 
10498 </cell>
10499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10500 \begin_inset Text
10501
10502 \layout Standard
10503
10504
10505 \family typewriter 
10506
10507 \backslash 
10508 precnapprox
10509 \end_inset 
10510 </cell>
10511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10512 \begin_inset Text
10513
10514 \layout Standard
10515
10516
10517 \begin_inset Formula $\nsim $
10518 \end_inset 
10519
10520
10521 \end_inset 
10522 </cell>
10523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10524 \begin_inset Text
10525
10526 \layout Standard
10527
10528
10529 \family typewriter 
10530
10531 \backslash 
10532 nsim
10533 \end_inset 
10534 </cell>
10535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10536 \begin_inset Text
10537
10538 \layout Standard
10539
10540
10541 \begin_inset Formula $\nshortmid $
10542 \end_inset 
10543
10544
10545 \end_inset 
10546 </cell>
10547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10548 \begin_inset Text
10549
10550 \layout Standard
10551
10552
10553 \family typewriter 
10554
10555 \backslash 
10556 nshortmid
10557 \end_inset 
10558 </cell>
10559 </row>
10560 <row>
10561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10562 \begin_inset Text
10563
10564 \layout Standard
10565
10566
10567 \begin_inset Formula $\nmid $
10568 \end_inset 
10569
10570
10571 \end_inset 
10572 </cell>
10573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10574 \begin_inset Text
10575
10576 \layout Standard
10577
10578
10579 \family typewriter 
10580
10581 \backslash 
10582 nmid
10583 \end_inset 
10584 </cell>
10585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10586 \begin_inset Text
10587
10588 \layout Standard
10589
10590
10591 \begin_inset Formula $\nvdash $
10592 \end_inset 
10593
10594
10595 \end_inset 
10596 </cell>
10597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10598 \begin_inset Text
10599
10600 \layout Standard
10601
10602
10603 \family typewriter 
10604
10605 \backslash 
10606 nvdash
10607 \end_inset 
10608 </cell>
10609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10610 \begin_inset Text
10611
10612 \layout Standard
10613
10614
10615 \begin_inset Formula $\nvDash $
10616 \end_inset 
10617
10618
10619 \end_inset 
10620 </cell>
10621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10622 \begin_inset Text
10623
10624 \layout Standard
10625
10626
10627 \family typewriter 
10628
10629 \backslash 
10630 nvDash
10631 \end_inset 
10632 </cell>
10633 </row>
10634 <row>
10635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10636 \begin_inset Text
10637
10638 \layout Standard
10639
10640
10641 \begin_inset Formula $\ntriangleleft $
10642 \end_inset 
10643
10644
10645 \end_inset 
10646 </cell>
10647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10648 \begin_inset Text
10649
10650 \layout Standard
10651
10652
10653 \family typewriter 
10654
10655 \backslash 
10656 ntriangleleft
10657 \end_inset 
10658 </cell>
10659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10660 \begin_inset Text
10661
10662 \layout Standard
10663
10664
10665 \begin_inset Formula $\ntrianglelefteq $
10666 \end_inset 
10667
10668
10669 \end_inset 
10670 </cell>
10671 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10672 \begin_inset Text
10673
10674 \layout Standard
10675
10676
10677 \family typewriter 
10678
10679 \backslash 
10680 ntrianglelefteq
10681 \end_inset 
10682 </cell>
10683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10684 \begin_inset Text
10685
10686 \layout Standard
10687
10688
10689 \begin_inset Formula $\nsubseteq $
10690 \end_inset 
10691
10692
10693 \end_inset 
10694 </cell>
10695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10696 \begin_inset Text
10697
10698 \layout Standard
10699
10700
10701 \family typewriter 
10702
10703 \backslash 
10704 nsubseteq
10705 \end_inset 
10706 </cell>
10707 </row>
10708 <row>
10709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10710 \begin_inset Text
10711
10712 \layout Standard
10713
10714
10715 \begin_inset Formula $\subsetneq $
10716 \end_inset 
10717
10718
10719 \end_inset 
10720 </cell>
10721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10722 \begin_inset Text
10723
10724 \layout Standard
10725
10726
10727 \family typewriter 
10728
10729 \backslash 
10730 subsetneq
10731 \end_inset 
10732 </cell>
10733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10734 \begin_inset Text
10735
10736 \layout Standard
10737
10738
10739 \begin_inset Formula $\varsubsetneq $
10740 \end_inset 
10741
10742
10743 \end_inset 
10744 </cell>
10745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10746 \begin_inset Text
10747
10748 \layout Standard
10749
10750
10751 \family typewriter 
10752
10753 \backslash 
10754 varsubsetneq
10755 \end_inset 
10756 </cell>
10757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10758 \begin_inset Text
10759
10760 \layout Standard
10761
10762
10763 \begin_inset Formula $\subsetneqq $
10764 \end_inset 
10765
10766
10767 \end_inset 
10768 </cell>
10769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10770 \begin_inset Text
10771
10772 \layout Standard
10773
10774
10775 \family typewriter 
10776
10777 \backslash 
10778 subsetneqq
10779 \end_inset 
10780 </cell>
10781 </row>
10782 <row>
10783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10784 \begin_inset Text
10785
10786 \layout Standard
10787
10788
10789 \begin_inset Formula $\varsubsetneqq $
10790 \end_inset 
10791
10792
10793 \end_inset 
10794 </cell>
10795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10796 \begin_inset Text
10797
10798 \layout Standard
10799
10800
10801 \family typewriter 
10802
10803 \backslash 
10804 varsubsetneqq
10805 \end_inset 
10806 </cell>
10807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10808 \begin_inset Text
10809
10810 \layout Standard
10811
10812
10813 \begin_inset Formula $\ngtr $
10814 \end_inset 
10815
10816
10817 \end_inset 
10818 </cell>
10819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10820 \begin_inset Text
10821
10822 \layout Standard
10823
10824
10825 \family typewriter 
10826
10827 \backslash 
10828 ngtr
10829 \end_inset 
10830 </cell>
10831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10832 \begin_inset Text
10833
10834 \layout Standard
10835
10836
10837 \begin_inset Formula $\ngeq $
10838 \end_inset 
10839
10840
10841 \end_inset 
10842 </cell>
10843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10844 \begin_inset Text
10845
10846 \layout Standard
10847
10848
10849 \family typewriter 
10850
10851 \backslash 
10852 ngeq
10853 \end_inset 
10854 </cell>
10855 </row>
10856 <row>
10857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10858 \begin_inset Text
10859
10860 \layout Standard
10861
10862
10863 \begin_inset Formula $\ngeqslant $
10864 \end_inset 
10865
10866
10867 \end_inset 
10868 </cell>
10869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10870 \begin_inset Text
10871
10872 \layout Standard
10873
10874
10875 \family typewriter 
10876
10877 \backslash 
10878 ngeqslant
10879 \end_inset 
10880 </cell>
10881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10882 \begin_inset Text
10883
10884 \layout Standard
10885
10886
10887 \begin_inset Formula $\ngeqq $
10888 \end_inset 
10889
10890
10891 \end_inset 
10892 </cell>
10893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10894 \begin_inset Text
10895
10896 \layout Standard
10897
10898
10899 \family typewriter 
10900
10901 \backslash 
10902 ngeqq
10903 \end_inset 
10904 </cell>
10905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10906 \begin_inset Text
10907
10908 \layout Standard
10909
10910
10911 \begin_inset Formula $\gneq $
10912 \end_inset 
10913
10914
10915 \end_inset 
10916 </cell>
10917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10918 \begin_inset Text
10919
10920 \layout Standard
10921
10922
10923 \family typewriter 
10924
10925 \backslash 
10926 gneq
10927 \end_inset 
10928 </cell>
10929 </row>
10930 <row>
10931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10932 \begin_inset Text
10933
10934 \layout Standard
10935
10936
10937 \begin_inset Formula $\gneqq $
10938 \end_inset 
10939
10940
10941 \end_inset 
10942 </cell>
10943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10944 \begin_inset Text
10945
10946 \layout Standard
10947
10948
10949 \family typewriter 
10950
10951 \backslash 
10952 gneqq
10953 \end_inset 
10954 </cell>
10955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10956 \begin_inset Text
10957
10958 \layout Standard
10959
10960
10961 \begin_inset Formula $\gvertneqq $
10962 \end_inset 
10963
10964
10965 \end_inset 
10966 </cell>
10967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10968 \begin_inset Text
10969
10970 \layout Standard
10971
10972
10973 \family typewriter 
10974
10975 \backslash 
10976 gvertneqq
10977 \end_inset 
10978 </cell>
10979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10980 \begin_inset Text
10981
10982 \layout Standard
10983
10984
10985 \begin_inset Formula $\gnsim $
10986 \end_inset 
10987
10988
10989 \end_inset 
10990 </cell>
10991 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10992 \begin_inset Text
10993
10994 \layout Standard
10995
10996
10997 \family typewriter 
10998
10999 \backslash 
11000 gnsim
11001 \end_inset 
11002 </cell>
11003 </row>
11004 <row>
11005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11006 \begin_inset Text
11007
11008 \layout Standard
11009
11010
11011 \begin_inset Formula $\gnapprox $
11012 \end_inset 
11013
11014
11015 \end_inset 
11016 </cell>
11017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11018 \begin_inset Text
11019
11020 \layout Standard
11021
11022
11023 \family typewriter 
11024
11025 \backslash 
11026 gnapprox
11027 \end_inset 
11028 </cell>
11029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11030 \begin_inset Text
11031
11032 \layout Standard
11033
11034
11035 \begin_inset Formula $\nsucc $
11036 \end_inset 
11037
11038
11039 \end_inset 
11040 </cell>
11041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11042 \begin_inset Text
11043
11044 \layout Standard
11045
11046
11047 \family typewriter 
11048
11049 \backslash 
11050 nsucc
11051 \end_inset 
11052 </cell>
11053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11054 \begin_inset Text
11055
11056 \layout Standard
11057
11058
11059 \begin_inset Formula $\nsucceq $
11060 \end_inset 
11061
11062
11063 \end_inset 
11064 </cell>
11065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11066 \begin_inset Text
11067
11068 \layout Standard
11069
11070
11071 \family typewriter 
11072
11073 \backslash 
11074 nsucceq
11075 \end_inset 
11076 </cell>
11077 </row>
11078 <row>
11079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11080 \begin_inset Text
11081
11082 \layout Standard
11083
11084
11085 \begin_inset Formula $\succnsim $
11086 \end_inset 
11087
11088
11089 \end_inset 
11090 </cell>
11091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11092 \begin_inset Text
11093
11094 \layout Standard
11095
11096
11097 \family typewriter 
11098
11099 \backslash 
11100 succnsim
11101 \end_inset 
11102 </cell>
11103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11104 \begin_inset Text
11105
11106 \layout Standard
11107
11108
11109 \begin_inset Formula $\succnapprox $
11110 \end_inset 
11111
11112
11113 \end_inset 
11114 </cell>
11115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11116 \begin_inset Text
11117
11118 \layout Standard
11119
11120
11121 \family typewriter 
11122
11123 \backslash 
11124 succnapprox
11125 \end_inset 
11126 </cell>
11127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11128 \begin_inset Text
11129
11130 \layout Standard
11131
11132
11133 \begin_inset Formula $\ncong $
11134 \end_inset 
11135
11136
11137 \end_inset 
11138 </cell>
11139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11140 \begin_inset Text
11141
11142 \layout Standard
11143
11144
11145 \family typewriter 
11146
11147 \backslash 
11148 ncong
11149 \end_inset 
11150 </cell>
11151 </row>
11152 <row>
11153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11154 \begin_inset Text
11155
11156 \layout Standard
11157
11158
11159 \begin_inset Formula $\nshortparallel $
11160 \end_inset 
11161
11162
11163 \end_inset 
11164 </cell>
11165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11166 \begin_inset Text
11167
11168 \layout Standard
11169
11170
11171 \family typewriter 
11172
11173 \backslash 
11174 nshortparallel
11175 \end_inset 
11176 </cell>
11177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11178 \begin_inset Text
11179
11180 \layout Standard
11181
11182
11183 \begin_inset Formula $\nparallel $
11184 \end_inset 
11185
11186
11187 \end_inset 
11188 </cell>
11189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11190 \begin_inset Text
11191
11192 \layout Standard
11193
11194
11195 \family typewriter 
11196
11197 \backslash 
11198 nparallel
11199 \end_inset 
11200 </cell>
11201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11202 \begin_inset Text
11203
11204 \layout Standard
11205
11206
11207 \begin_inset Formula $\nvDash $
11208 \end_inset 
11209
11210
11211 \end_inset 
11212 </cell>
11213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11214 \begin_inset Text
11215
11216 \layout Standard
11217
11218
11219 \family typewriter 
11220
11221 \backslash 
11222 nvDash
11223 \end_inset 
11224 </cell>
11225 </row>
11226 <row>
11227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11228 \begin_inset Text
11229
11230 \layout Standard
11231
11232
11233 \begin_inset Formula $\nVDash $
11234 \end_inset 
11235
11236
11237 \end_inset 
11238 </cell>
11239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11240 \begin_inset Text
11241
11242 \layout Standard
11243
11244
11245 \family typewriter 
11246
11247 \backslash 
11248 nVDash
11249 \end_inset 
11250 </cell>
11251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11252 \begin_inset Text
11253
11254 \layout Standard
11255
11256
11257 \begin_inset Formula $\ntriangleright $
11258 \end_inset 
11259
11260
11261 \end_inset 
11262 </cell>
11263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11264 \begin_inset Text
11265
11266 \layout Standard
11267
11268
11269 \family typewriter 
11270
11271 \backslash 
11272 ntriangleright
11273 \end_inset 
11274 </cell>
11275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11276 \begin_inset Text
11277
11278 \layout Standard
11279
11280
11281 \begin_inset Formula $\ntrianglerighteq $
11282 \end_inset 
11283
11284
11285 \end_inset 
11286 </cell>
11287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11288 \begin_inset Text
11289
11290 \layout Standard
11291
11292
11293 \family typewriter 
11294
11295 \backslash 
11296 ntrianglerighteq
11297 \end_inset 
11298 </cell>
11299 </row>
11300 <row>
11301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11302 \begin_inset Text
11303
11304 \layout Standard
11305
11306
11307 \begin_inset Formula $\nsupseteq $
11308 \end_inset 
11309
11310
11311 \end_inset 
11312 </cell>
11313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11314 \begin_inset Text
11315
11316 \layout Standard
11317
11318
11319 \family typewriter 
11320
11321 \backslash 
11322 nsupseteq
11323 \end_inset 
11324 </cell>
11325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11326 \begin_inset Text
11327
11328 \layout Standard
11329
11330
11331 \begin_inset Formula $\nsupseteqq $
11332 \end_inset 
11333
11334
11335 \end_inset 
11336 </cell>
11337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11338 \begin_inset Text
11339
11340 \layout Standard
11341
11342
11343 \family typewriter 
11344
11345 \backslash 
11346 nsupseteqq
11347 \end_inset 
11348 </cell>
11349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11350 \begin_inset Text
11351
11352 \layout Standard
11353
11354
11355 \begin_inset Formula $\supsetneq $
11356 \end_inset 
11357
11358
11359 \end_inset 
11360 </cell>
11361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11362 \begin_inset Text
11363
11364 \layout Standard
11365
11366
11367 \family typewriter 
11368
11369 \backslash 
11370 supsetneq
11371 \end_inset 
11372 </cell>
11373 </row>
11374 <row>
11375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11376 \begin_inset Text
11377
11378 \layout Standard
11379
11380
11381 \begin_inset Formula $\varsupsetneq $
11382 \end_inset 
11383
11384
11385 \end_inset 
11386 </cell>
11387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11388 \begin_inset Text
11389
11390 \layout Standard
11391
11392
11393 \family typewriter 
11394
11395 \backslash 
11396 varsupsetneq
11397 \end_inset 
11398 </cell>
11399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11400 \begin_inset Text
11401
11402 \layout Standard
11403
11404
11405 \begin_inset Formula $\supsetneqq $
11406 \end_inset 
11407
11408
11409 \end_inset 
11410 </cell>
11411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11412 \begin_inset Text
11413
11414 \layout Standard
11415
11416
11417 \family typewriter 
11418
11419 \backslash 
11420 supsetneqq
11421 \end_inset 
11422 </cell>
11423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11424 \begin_inset Text
11425
11426 \layout Standard
11427
11428
11429 \begin_inset Formula $\varsupsetneqq $
11430 \end_inset 
11431
11432
11433 \end_inset 
11434 </cell>
11435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11436 \begin_inset Text
11437
11438 \layout Standard
11439
11440
11441 \family typewriter 
11442
11443 \backslash 
11444 varsupsetneqq
11445 \end_inset 
11446 </cell>
11447 </row>
11448 </lyxtabular>
11449
11450 \end_inset 
11451
11452
11453 \layout Caption
11454
11455 Négations de relations binaires AMS
11456 \end_inset 
11457
11458
11459 \layout Standard
11460
11461
11462 \begin_inset Float table
11463 placement H
11464 wide false
11465 collapsed false
11466
11467 \layout Standard
11468
11469
11470 \begin_inset  Tabular
11471 <lyxtabular version="3" rows="8" columns="6">
11472 <features>
11473 <column alignment="right" valignment="top" width="0pt">
11474 <column alignment="left" valignment="top" width="0pt">
11475 <column alignment="right" valignment="top" width="0pt">
11476 <column alignment="left" valignment="top" width="0pt">
11477 <column alignment="right" valignment="top" width="0pt">
11478 <column alignment="left" valignment="top" width="0pt">
11479 <row>
11480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11481 \begin_inset Text
11482
11483 \layout Standard
11484
11485
11486 \begin_inset Formula $\dotplus $
11487 \end_inset 
11488
11489
11490 \end_inset 
11491 </cell>
11492 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11493 \begin_inset Text
11494
11495 \layout Standard
11496
11497
11498 \family typewriter 
11499
11500 \backslash 
11501 dotplus
11502 \end_inset 
11503 </cell>
11504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11505 \begin_inset Text
11506
11507 \layout Standard
11508
11509
11510 \begin_inset Formula $\smallsetminus $
11511 \end_inset 
11512
11513
11514 \end_inset 
11515 </cell>
11516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11517 \begin_inset Text
11518
11519 \layout Standard
11520
11521
11522 \family typewriter 
11523
11524 \backslash 
11525 smallsetminus
11526 \end_inset 
11527 </cell>
11528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11529 \begin_inset Text
11530
11531 \layout Standard
11532
11533
11534 \begin_inset Formula $\Cap $
11535 \end_inset 
11536
11537
11538 \end_inset 
11539 </cell>
11540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11541 \begin_inset Text
11542
11543 \layout Standard
11544
11545
11546 \family typewriter 
11547
11548 \backslash 
11549 Cap
11550 \end_inset 
11551 </cell>
11552 </row>
11553 <row>
11554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11555 \begin_inset Text
11556
11557 \layout Standard
11558
11559
11560 \begin_inset Formula $\Cup $
11561 \end_inset 
11562
11563
11564 \end_inset 
11565 </cell>
11566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11567 \begin_inset Text
11568
11569 \layout Standard
11570
11571
11572 \family typewriter 
11573
11574 \backslash 
11575 Cup
11576 \end_inset 
11577 </cell>
11578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11579 \begin_inset Text
11580
11581 \layout Standard
11582
11583
11584 \begin_inset Formula $\barwedge $
11585 \end_inset 
11586
11587
11588 \end_inset 
11589 </cell>
11590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11591 \begin_inset Text
11592
11593 \layout Standard
11594
11595
11596 \family typewriter 
11597
11598 \backslash 
11599 barwedge
11600 \end_inset 
11601 </cell>
11602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11603 \begin_inset Text
11604
11605 \layout Standard
11606
11607
11608 \begin_inset Formula $\veebar $
11609 \end_inset 
11610
11611
11612 \end_inset 
11613 </cell>
11614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11615 \begin_inset Text
11616
11617 \layout Standard
11618
11619
11620 \family typewriter 
11621
11622 \backslash 
11623 veebar
11624 \end_inset 
11625 </cell>
11626 </row>
11627 <row>
11628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11629 \begin_inset Text
11630
11631 \layout Standard
11632
11633
11634 \begin_inset Formula $\doublebarwedge $
11635 \end_inset 
11636
11637
11638 \end_inset 
11639 </cell>
11640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11641 \begin_inset Text
11642
11643 \layout Standard
11644
11645
11646 \family typewriter 
11647
11648 \backslash 
11649 doublebarwedge
11650 \end_inset 
11651 </cell>
11652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11653 \begin_inset Text
11654
11655 \layout Standard
11656
11657
11658 \begin_inset Formula $\boxminus $
11659 \end_inset 
11660
11661
11662 \end_inset 
11663 </cell>
11664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11665 \begin_inset Text
11666
11667 \layout Standard
11668
11669
11670 \family typewriter 
11671
11672 \backslash 
11673 boxminus
11674 \end_inset 
11675 </cell>
11676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11677 \begin_inset Text
11678
11679 \layout Standard
11680
11681
11682 \begin_inset Formula $\boxtimes $
11683 \end_inset 
11684
11685
11686 \end_inset 
11687 </cell>
11688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11689 \begin_inset Text
11690
11691 \layout Standard
11692
11693
11694 \family typewriter 
11695
11696 \backslash 
11697 boxtimes
11698 \end_inset 
11699 </cell>
11700 </row>
11701 <row>
11702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11703 \begin_inset Text
11704
11705 \layout Standard
11706
11707
11708 \begin_inset Formula $\boxdot $
11709 \end_inset 
11710
11711
11712 \end_inset 
11713 </cell>
11714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11715 \begin_inset Text
11716
11717 \layout Standard
11718
11719
11720 \family typewriter 
11721
11722 \backslash 
11723 boxdot
11724 \end_inset 
11725 </cell>
11726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11727 \begin_inset Text
11728
11729 \layout Standard
11730
11731
11732 \begin_inset Formula $\boxplus $
11733 \end_inset 
11734
11735
11736 \end_inset 
11737 </cell>
11738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11739 \begin_inset Text
11740
11741 \layout Standard
11742
11743
11744 \family typewriter 
11745
11746 \backslash 
11747 boxplus
11748 \end_inset 
11749 </cell>
11750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11751 \begin_inset Text
11752
11753 \layout Standard
11754
11755
11756 \begin_inset Formula $\divideontimes $
11757 \end_inset 
11758
11759
11760 \end_inset 
11761 </cell>
11762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11763 \begin_inset Text
11764
11765 \layout Standard
11766
11767
11768 \family typewriter 
11769
11770 \backslash 
11771 divideontimes
11772 \end_inset 
11773 </cell>
11774 </row>
11775 <row>
11776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11777 \begin_inset Text
11778
11779 \layout Standard
11780
11781
11782 \begin_inset Formula $\ltimes $
11783 \end_inset 
11784
11785
11786 \end_inset 
11787 </cell>
11788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11789 \begin_inset Text
11790
11791 \layout Standard
11792
11793
11794 \family typewriter 
11795
11796 \backslash 
11797 ltimes
11798 \end_inset 
11799 </cell>
11800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11801 \begin_inset Text
11802
11803 \layout Standard
11804
11805
11806 \begin_inset Formula $\rtimes $
11807 \end_inset 
11808
11809
11810 \end_inset 
11811 </cell>
11812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11813 \begin_inset Text
11814
11815 \layout Standard
11816
11817
11818 \family typewriter 
11819
11820 \backslash 
11821 rtimes
11822 \end_inset 
11823 </cell>
11824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11825 \begin_inset Text
11826
11827 \layout Standard
11828
11829
11830 \begin_inset Formula $\leftthreetimes $
11831 \end_inset 
11832
11833
11834 \end_inset 
11835 </cell>
11836 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11837 \begin_inset Text
11838
11839 \layout Standard
11840
11841
11842 \family typewriter 
11843
11844 \backslash 
11845 leftthreetimes
11846 \end_inset 
11847 </cell>
11848 </row>
11849 <row>
11850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11851 \begin_inset Text
11852
11853 \layout Standard
11854
11855
11856 \begin_inset Formula $\rightthreetimes $
11857 \end_inset 
11858
11859
11860 \end_inset 
11861 </cell>
11862 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11863 \begin_inset Text
11864
11865 \layout Standard
11866
11867
11868 \family typewriter 
11869
11870 \backslash 
11871 rightthreetimes
11872 \end_inset 
11873 </cell>
11874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11875 \begin_inset Text
11876
11877 \layout Standard
11878
11879
11880 \begin_inset Formula $\curlywedge $
11881 \end_inset 
11882
11883
11884 \end_inset 
11885 </cell>
11886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11887 \begin_inset Text
11888
11889 \layout Standard
11890
11891
11892 \family typewriter 
11893
11894 \backslash 
11895 curlywedge
11896 \end_inset 
11897 </cell>
11898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11899 \begin_inset Text
11900
11901 \layout Standard
11902
11903
11904 \begin_inset Formula $\curlyvee $
11905 \end_inset 
11906
11907
11908 \end_inset 
11909 </cell>
11910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11911 \begin_inset Text
11912
11913 \layout Standard
11914
11915
11916 \family typewriter 
11917
11918 \backslash 
11919 curlyvee
11920 \end_inset 
11921 </cell>
11922 </row>
11923 <row>
11924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11925 \begin_inset Text
11926
11927 \layout Standard
11928
11929
11930 \begin_inset Formula $\circleddash $
11931 \end_inset 
11932
11933
11934 \end_inset 
11935 </cell>
11936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11937 \begin_inset Text
11938
11939 \layout Standard
11940
11941
11942 \family typewriter 
11943
11944 \backslash 
11945 circleddash
11946 \end_inset 
11947 </cell>
11948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11949 \begin_inset Text
11950
11951 \layout Standard
11952
11953
11954 \begin_inset Formula $\circledast $
11955 \end_inset 
11956
11957
11958 \end_inset 
11959 </cell>
11960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11961 \begin_inset Text
11962
11963 \layout Standard
11964
11965
11966 \family typewriter 
11967
11968 \backslash 
11969 circledast
11970 \end_inset 
11971 </cell>
11972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11973 \begin_inset Text
11974
11975 \layout Standard
11976
11977
11978 \begin_inset Formula $\circledcirc $
11979 \end_inset 
11980
11981
11982 \end_inset 
11983 </cell>
11984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11985 \begin_inset Text
11986
11987 \layout Standard
11988
11989
11990 \family typewriter 
11991
11992 \backslash 
11993 circledcirc
11994 \end_inset 
11995 </cell>
11996 </row>
11997 <row>
11998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11999 \begin_inset Text
12000
12001 \layout Standard
12002
12003
12004 \begin_inset Formula $\centerdot $
12005 \end_inset 
12006
12007
12008 \end_inset 
12009 </cell>
12010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12011 \begin_inset Text
12012
12013 \layout Standard
12014
12015
12016 \family typewriter 
12017
12018 \backslash 
12019 centerdot
12020 \end_inset 
12021 </cell>
12022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12023 \begin_inset Text
12024
12025 \layout Standard
12026
12027
12028 \begin_inset Formula $\intercal $
12029 \end_inset 
12030
12031
12032 \end_inset 
12033 </cell>
12034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12035 \begin_inset Text
12036
12037 \layout Standard
12038
12039
12040 \family typewriter 
12041
12042 \backslash 
12043 intercal
12044 \end_inset 
12045 </cell>
12046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12047 \begin_inset Text
12048
12049 \layout Standard
12050
12051 \end_inset 
12052 </cell>
12053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12054 \begin_inset Text
12055
12056 \layout Standard
12057
12058 \end_inset 
12059 </cell>
12060 </row>
12061 </lyxtabular>
12062
12063 \end_inset 
12064
12065
12066 \layout Caption
12067
12068 Opérations binaires AMS
12069 \end_inset 
12070
12071
12072 \layout Standard
12073
12074
12075 \begin_inset Float table
12076 placement H
12077 wide false
12078 collapsed false
12079
12080 \layout Standard
12081
12082
12083 \begin_inset  Tabular
12084 <lyxtabular version="3" rows="9" columns="6">
12085 <features>
12086 <column alignment="right" valignment="top" width="0pt">
12087 <column alignment="left" valignment="top" width="0pt">
12088 <column alignment="right" valignment="top" width="0pt">
12089 <column alignment="left" valignment="top" width="0pt">
12090 <column alignment="right" valignment="top" width="0pt">
12091 <column alignment="left" valignment="top" width="0pt">
12092 <row>
12093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12094 \begin_inset Text
12095
12096 \layout Standard
12097
12098
12099 \begin_inset Formula $\hbar $
12100 \end_inset 
12101
12102
12103 \end_inset 
12104 </cell>
12105 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12106 \begin_inset Text
12107
12108 \layout Standard
12109
12110
12111 \family typewriter 
12112
12113 \backslash 
12114 hbar
12115 \end_inset 
12116 </cell>
12117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12118 \begin_inset Text
12119
12120 \layout Standard
12121
12122
12123 \begin_inset Formula $\hslash $
12124 \end_inset 
12125
12126
12127 \end_inset 
12128 </cell>
12129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12130 \begin_inset Text
12131
12132 \layout Standard
12133
12134
12135 \family typewriter 
12136
12137 \backslash 
12138 hslash
12139 \end_inset 
12140 </cell>
12141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12142 \begin_inset Text
12143
12144 \layout Standard
12145
12146
12147 \begin_inset Formula $\vartriangle $
12148 \end_inset 
12149
12150
12151 \end_inset 
12152 </cell>
12153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12154 \begin_inset Text
12155
12156 \layout Standard
12157
12158
12159 \family typewriter 
12160
12161 \backslash 
12162 vartriangle
12163 \end_inset 
12164 </cell>
12165 </row>
12166 <row>
12167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12168 \begin_inset Text
12169
12170 \layout Standard
12171
12172
12173 \begin_inset Formula $\triangledown $
12174 \end_inset 
12175
12176
12177 \end_inset 
12178 </cell>
12179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12180 \begin_inset Text
12181
12182 \layout Standard
12183
12184
12185 \family typewriter 
12186
12187 \backslash 
12188 triangledown
12189 \end_inset 
12190 </cell>
12191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12192 \begin_inset Text
12193
12194 \layout Standard
12195
12196
12197 \begin_inset Formula $\square $
12198 \end_inset 
12199
12200
12201 \end_inset 
12202 </cell>
12203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12204 \begin_inset Text
12205
12206 \layout Standard
12207
12208
12209 \family typewriter 
12210
12211 \backslash 
12212 square
12213 \end_inset 
12214 </cell>
12215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12216 \begin_inset Text
12217
12218 \layout Standard
12219
12220
12221 \begin_inset Formula $\lozenge $
12222 \end_inset 
12223
12224
12225 \end_inset 
12226 </cell>
12227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12228 \begin_inset Text
12229
12230 \layout Standard
12231
12232
12233 \family typewriter 
12234
12235 \backslash 
12236 lozenge
12237 \end_inset 
12238 </cell>
12239 </row>
12240 <row>
12241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12242 \begin_inset Text
12243
12244 \layout Standard
12245
12246
12247 \begin_inset Formula $\circledS $
12248 \end_inset 
12249
12250
12251 \end_inset 
12252 </cell>
12253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12254 \begin_inset Text
12255
12256 \layout Standard
12257
12258
12259 \family typewriter 
12260
12261 \backslash 
12262 circledS
12263 \end_inset 
12264 </cell>
12265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12266 \begin_inset Text
12267
12268 \layout Standard
12269
12270
12271 \begin_inset Formula $\angle $
12272 \end_inset 
12273
12274
12275 \end_inset 
12276 </cell>
12277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12278 \begin_inset Text
12279
12280 \layout Standard
12281
12282
12283 \family typewriter 
12284
12285 \backslash 
12286 angle
12287 \end_inset 
12288 </cell>
12289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12290 \begin_inset Text
12291
12292 \layout Standard
12293
12294
12295 \begin_inset Formula $\measuredangle $
12296 \end_inset 
12297
12298
12299 \end_inset 
12300 </cell>
12301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12302 \begin_inset Text
12303
12304 \layout Standard
12305
12306
12307 \family typewriter 
12308
12309 \backslash 
12310 measuredangle
12311 \end_inset 
12312 </cell>
12313 </row>
12314 <row>
12315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12316 \begin_inset Text
12317
12318 \layout Standard
12319
12320
12321 \begin_inset Formula $\nexists $
12322 \end_inset 
12323
12324
12325 \end_inset 
12326 </cell>
12327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12328 \begin_inset Text
12329
12330 \layout Standard
12331
12332
12333 \family typewriter 
12334
12335 \backslash 
12336 nexists
12337 \end_inset 
12338 </cell>
12339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12340 \begin_inset Text
12341
12342 \layout Standard
12343
12344
12345 \begin_inset Formula $\mho $
12346 \end_inset 
12347
12348
12349 \end_inset 
12350 </cell>
12351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12352 \begin_inset Text
12353
12354 \layout Standard
12355
12356
12357 \family typewriter 
12358
12359 \backslash 
12360 mho
12361 \end_inset 
12362 </cell>
12363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12364 \begin_inset Text
12365
12366 \layout Standard
12367
12368
12369 \begin_inset Formula $\Finv $
12370 \end_inset 
12371
12372
12373 \end_inset 
12374 </cell>
12375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12376 \begin_inset Text
12377
12378 \layout Standard
12379
12380
12381 \family typewriter 
12382
12383 \backslash 
12384 Finv
12385 \end_inset 
12386 </cell>
12387 </row>
12388 <row>
12389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12390 \begin_inset Text
12391
12392 \layout Standard
12393
12394
12395 \begin_inset Formula $\Game $
12396 \end_inset 
12397
12398
12399 \end_inset 
12400 </cell>
12401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12402 \begin_inset Text
12403
12404 \layout Standard
12405
12406
12407 \family typewriter 
12408
12409 \backslash 
12410 Game
12411 \end_inset 
12412 </cell>
12413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12414 \begin_inset Text
12415
12416 \layout Standard
12417
12418
12419 \begin_inset Formula $\Bbbk $
12420 \end_inset 
12421
12422
12423 \end_inset 
12424 </cell>
12425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12426 \begin_inset Text
12427
12428 \layout Standard
12429
12430
12431 \family typewriter 
12432
12433 \backslash 
12434 Bbbk
12435 \end_inset 
12436 </cell>
12437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12438 \begin_inset Text
12439
12440 \layout Standard
12441
12442
12443 \begin_inset Formula $\backprime $
12444 \end_inset 
12445
12446
12447 \end_inset 
12448 </cell>
12449 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12450 \begin_inset Text
12451
12452 \layout Standard
12453
12454
12455 \family typewriter 
12456
12457 \backslash 
12458 backprime
12459 \end_inset 
12460 </cell>
12461 </row>
12462 <row>
12463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12464 \begin_inset Text
12465
12466 \layout Standard
12467
12468
12469 \begin_inset Formula $\varnothing $
12470 \end_inset 
12471
12472
12473 \end_inset 
12474 </cell>
12475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12476 \begin_inset Text
12477
12478 \layout Standard
12479
12480
12481 \family typewriter 
12482
12483 \backslash 
12484 varnothing
12485 \end_inset 
12486 </cell>
12487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12488 \begin_inset Text
12489
12490 \layout Standard
12491
12492
12493 \begin_inset Formula $\blacktriangle $
12494 \end_inset 
12495
12496
12497 \end_inset 
12498 </cell>
12499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12500 \begin_inset Text
12501
12502 \layout Standard
12503
12504
12505 \family typewriter 
12506
12507 \backslash 
12508 blacktriangle
12509 \end_inset 
12510 </cell>
12511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12512 \begin_inset Text
12513
12514 \layout Standard
12515
12516
12517 \begin_inset Formula $\blacktriangledown $
12518 \end_inset 
12519
12520
12521 \end_inset 
12522 </cell>
12523 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12524 \begin_inset Text
12525
12526 \layout Standard
12527
12528
12529 \family typewriter 
12530
12531 \backslash 
12532 blacktriangledown
12533 \end_inset 
12534 </cell>
12535 </row>
12536 <row>
12537 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12538 \begin_inset Text
12539
12540 \layout Standard
12541
12542
12543 \begin_inset Formula $\blacksquare $
12544 \end_inset 
12545
12546
12547 \end_inset 
12548 </cell>
12549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12550 \begin_inset Text
12551
12552 \layout Standard
12553
12554
12555 \family typewriter 
12556
12557 \backslash 
12558 blacksquare
12559 \end_inset 
12560 </cell>
12561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12562 \begin_inset Text
12563
12564 \layout Standard
12565
12566
12567 \begin_inset Formula $\blacklozenge $
12568 \end_inset 
12569
12570
12571 \end_inset 
12572 </cell>
12573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12574 \begin_inset Text
12575
12576 \layout Standard
12577
12578
12579 \family typewriter 
12580
12581 \backslash 
12582 blacklozenge
12583 \end_inset 
12584 </cell>
12585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12586 \begin_inset Text
12587
12588 \layout Standard
12589
12590
12591 \begin_inset Formula $\bigstar $
12592 \end_inset 
12593
12594
12595 \end_inset 
12596 </cell>
12597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12598 \begin_inset Text
12599
12600 \layout Standard
12601
12602
12603 \family typewriter 
12604
12605 \backslash 
12606 bigstar
12607 \end_inset 
12608 </cell>
12609 </row>
12610 <row>
12611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12612 \begin_inset Text
12613
12614 \layout Standard
12615
12616
12617 \begin_inset Formula $\sphericalangle $
12618 \end_inset 
12619
12620
12621 \end_inset 
12622 </cell>
12623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12624 \begin_inset Text
12625
12626 \layout Standard
12627
12628
12629 \family typewriter 
12630
12631 \backslash 
12632 sphericalangle
12633 \end_inset 
12634 </cell>
12635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12636 \begin_inset Text
12637
12638 \layout Standard
12639
12640
12641 \begin_inset Formula $\complement $
12642 \end_inset 
12643
12644
12645 \end_inset 
12646 </cell>
12647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12648 \begin_inset Text
12649
12650 \layout Standard
12651
12652
12653 \family typewriter 
12654
12655 \backslash 
12656 complement
12657 \end_inset 
12658 </cell>
12659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12660 \begin_inset Text
12661
12662 \layout Standard
12663
12664
12665 \begin_inset Formula $\eth $
12666 \end_inset 
12667
12668
12669 \end_inset 
12670 </cell>
12671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12672 \begin_inset Text
12673
12674 \layout Standard
12675
12676
12677 \family typewriter 
12678
12679 \backslash 
12680 eth
12681 \end_inset 
12682 </cell>
12683 </row>
12684 <row>
12685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12686 \begin_inset Text
12687
12688 \layout Standard
12689
12690
12691 \begin_inset Formula $\diagup $
12692 \end_inset 
12693
12694
12695 \end_inset 
12696 </cell>
12697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12698 \begin_inset Text
12699
12700 \layout Standard
12701
12702
12703 \family typewriter 
12704
12705 \backslash 
12706 diagup
12707 \end_inset 
12708 </cell>
12709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12710 \begin_inset Text
12711
12712 \layout Standard
12713
12714
12715 \begin_inset Formula $\diagdown $
12716 \end_inset 
12717
12718
12719 \end_inset 
12720 </cell>
12721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12722 \begin_inset Text
12723
12724 \layout Standard
12725
12726
12727 \family typewriter 
12728
12729 \backslash 
12730 diagdown
12731 \end_inset 
12732 </cell>
12733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12734 \begin_inset Text
12735
12736 \layout Standard
12737
12738 \end_inset 
12739 </cell>
12740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12741 \begin_inset Text
12742
12743 \layout Standard
12744
12745 \end_inset 
12746 </cell>
12747 </row>
12748 </lyxtabular>
12749
12750 \end_inset 
12751
12752
12753 \layout Caption
12754
12755 Divers AMS
12756 \end_inset 
12757
12758
12759 \the_end