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