]> git.lyx.org Git - lyx.git/blob - lib/doc/Math.lyx
Tutorial.lyx: sync with branch
[lyx.git] / lib / doc / Math.lyx
1 #LyX 1.6.8svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 345
3 \begin_document
4 \begin_header
5 \textclass scrartcl
6 \begin_preamble
7 % DO NOT ALTER THIS PREAMBLE!!!
8 %
9 % This preamble is designed to ensure that the file prints
10 % out as advertised. If you mess with this preamble,
11 % parts of this document may not print out as expected.  If you
12 % have problems LaTeXing this file, please contact 
13 % the documentation team
14 % email: lyx-docs@lists.lyx.org
15
16 % if pdflatex is used
17 \usepackage{ifpdf}
18 \ifpdf
19
20 % set fonts for nicer pdf view
21 \IfFileExists{lmodern.sty}
22  {\usepackage{lmodern}}{}
23
24 \fi % end if pdflatex is used
25
26 % Folgendes Problem lösen:
27 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
28 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
29 % die Kapitelnummer geschrieben.
30 % Als Lösung wird mehr Platz zwischen Nummer und
31 % Überschrift eingefügt.
32 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
33 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
34
35 % To be able to enter the character ° and · directly in LyX,
36 % see sec. 22.11
37 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
38 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
39
40 % increase link area for cross-references and autoname them,
41 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
42 \newlength{\abc}
43 \settowidth{\abc}{\space}
44 \addto\extrasenglish{
45  \renewcommand{\equationautorefname}{\hspace{-\abc}}
46  \renewcommand{\sectionautorefname}{sec.\negthinspace}
47  \renewcommand{\subsectionautorefname}{sec.\negthinspace}
48  \renewcommand{\subsubsectionautorefname}{sec.\negthinspace}}
49
50 % don't load packages twice
51 % see first footnote in sec. 9.3
52 \@ifundefined{textcolor}{\usepackage{color}}{}
53
54 % the pages of the TOC are numbered roman
55 % and a PDF-bookmark for the TOC is added
56 \pagenumbering{roman}
57 \let\myTOC\tableofcontents
58 \renewcommand{\tableofcontents}{%
59  \vspace{1cm}
60  \pdfbookmark[1]{\contentsname}{}
61  \myTOC
62  \cleardoublepage
63  \pagenumbering{arabic}}
64
65 % insert additional vertical space of 1.5 mm between footnotes,
66 \let\myFoot\footnote
67 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
68
69 % provides caption formatting
70 \setkomafont{captionlabel}{\bfseries}
71
72 % used in Kap. 22.6
73 \usepackage[samesize]{cancel}
74
75 % enables calculation of values,
76 \usepackage{calc}
77
78 % for multiple table row and column cells
79 \usepackage{multirow}
80 \usepackage{multicol}
81
82 % needed in sec. 19.4
83 \usepackage{remreset}
84
85 % for the Fourier transformation symbol
86 \usepackage{mathrsfs}
87
88 % center multirows (e.g. in sec. 13.3)
89 \renewcommand{\multirowsetup}{\centering}
90
91 % define a color, used in sec.9.3
92 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
93
94 % declare operators (see sec. 10.4 and sec. 15.2)
95 \DeclareMathOperator*{\Lozenge}{\blacklozenge}
96 \DeclareMathOperator{\sgn}{sgn}
97
98 \newcommand{\spce}{\textvisiblespace}
99
100 % example definitions for sec. 20.1 
101 \newcommand{\gr}{\Longrightarrow}
102 \newcommand{\us}[1]{\underline{#1}}
103 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
104 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
105 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
106
107 % example macro from sec. 19.4
108 %\def\tagform@#1{\maketag@@@{|#1|}}
109
110 % macro from sec. 10.2
111 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
112 \def\mathclap {\mathpalette \mathclapinternal}
113 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
114
115 % redefine the greyed out note
116 \renewenvironment{lyxgreyedout}
117  {\textcolor{blue}\bgroup}{\egroup}
118
119 % ------------------------------------
120 % used to check for needed LaTeX packages
121 \usepackage{ifthen}
122
123 % check for package eurosym
124 % used for the Euro symbol
125 \newboolean{eurosym}
126 \IfFileExists{eurosym.sty}
127  {\usepackage[gennarrow]{eurosym}
128   \setboolean{eurosym}{true}}
129  {\setboolean{eurosym}{false}}
130
131 % check for package braket
132 % used for physical vectors
133 \newboolean{braket}
134 \IfFileExists{braket.sty}
135  {\usepackage{braket}
136   \setboolean{braket}{true}}
137  {\setboolean{braket}{false}}
138
139 % check for package cancel
140 \newboolean{cancel}
141 \IfFileExists{cancel.sty}
142  {\usepackage{cancel}
143   \setboolean{cancel}{true}}
144  {\setboolean{cancel}{false}}
145
146 % check for package upgreek
147 \newboolean{upgreek}
148 \IfFileExists{upgreek.sty}
149  {\usepackage{upgreek}
150   \setboolean{upgreek}{true}}
151  {\setboolean{upgreek}{false}}
152 \end_preamble
153 \options bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
154 \use_default_options false
155 \language english
156 \inputencoding auto
157 \font_roman default
158 \font_sans default
159 \font_typewriter default
160 \font_default_family default
161 \font_sc false
162 \font_osf false
163 \font_sf_scale 100
164 \font_tt_scale 100
165
166 \graphics default
167 \paperfontsize 12
168 \spacing single
169 \use_hyperref true
170 \pdf_title "LyX's Math Manual"
171 \pdf_author "LyX Team, Uwe Stöhr"
172 \pdf_subject "LyX-documentation about math"
173 \pdf_keywords "LyX, Mathed"
174 \pdf_bookmarks true
175 \pdf_bookmarksnumbered true
176 \pdf_bookmarksopen true
177 \pdf_bookmarksopenlevel 1
178 \pdf_breaklinks false
179 \pdf_pdfborder false
180 \pdf_colorlinks true
181 \pdf_backref false
182 \pdf_pdfusetitle false
183 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true,  pdfstartview=XYZ, plainpages=false, pdfpagelabels"
184 \papersize a4paper
185 \use_geometry false
186 \use_amsmath 2
187 \use_esint 1
188 \cite_engine basic
189 \use_bibtopic false
190 \paperorientation portrait
191 \secnumdepth 4
192 \tocdepth 3
193 \paragraph_separation skip
194 \defskip medskip
195 \quotes_language english
196 \papercolumns 1
197 \papersides 2
198 \paperpagestyle plain
199 \bullet 1 0 6 -1
200 \bullet 2 2 35 -1
201 \bullet 3 2 7 -1
202 \tracking_changes false
203 \output_changes false
204 \author "" 
205 \author "" 
206 \end_header
207
208 \begin_body
209
210 \begin_layout Title
211 LyX's detailed Math manual
212 \end_layout
213
214 \begin_layout Author
215 by the LyX Team
216 \begin_inset Foot
217 status collapsed
218
219 \begin_layout Plain Layout
220 \noindent
221 If you have comments or error corrections, please send them to the LyX Documenta
222 tion mailing list: 
223 \family typewriter
224
225 \begin_inset CommandInset href
226 LatexCommand href
227 name "lyx-docs@lists.lyx.org"
228 target "lyx-docs@lists.lyx.org?subject=LyX's Math manual"
229 type "mailto:"
230
231 \end_inset
232
233
234 \end_layout
235
236 \end_inset
237
238
239 \begin_inset Note Note
240 status collapsed
241
242 \begin_layout Plain Layout
243 author: Uwe Stöhr
244 \end_layout
245
246 \end_inset
247
248
249 \begin_inset Newline newline
250 \end_inset
251
252
253 \begin_inset Newline newline
254 \end_inset
255
256
257 \family sans
258 Version 1.6.x
259 \end_layout
260
261 \begin_layout Standard
262 \begin_inset CommandInset toc
263 LatexCommand tableofcontents
264
265 \end_inset
266
267
268 \end_layout
269
270 \begin_layout Standard
271 \begin_inset Note Note
272 status open
273
274 \begin_layout Plain Layout
275 To export this document to PDF, PS or DVI the LaTeX-packages 
276 \series bold
277 braket, cancel, eurosym,
278 \series default
279  
280 \series bold
281 mhchem, multirow
282 \series default
283  and 
284 \series bold
285 was
286 \series default
287  should be installed.
288  If they are not installed the document can be export anyway but the sections
289  where the packages are required will not appear in the output.
290  An exeption is 
291 \series bold
292 mhchem
293 \series default
294 ; if it is not installed, this file cannot be exported.
295 \end_layout
296
297 \begin_layout Plain Layout
298 The latest PDF-version of this document can be found here:
299 \begin_inset Newline newline
300 \end_inset
301
302
303 \series bold
304 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
305 \end_layout
306
307 \end_inset
308
309
310 \end_layout
311
312 \begin_layout Standard
313 \begin_inset Newpage newpage
314 \end_inset
315
316
317 \end_layout
318
319 \begin_layout Section
320 Introduction
321 \end_layout
322
323 \begin_layout Standard
324 This document explains LyX's math features and is furthermore a collection
325  of LaTeX-commands used for mathematical characters and constructs.
326  The explanations are designed for the usage of commands.
327  It is therefore required that you have read the section 
328 \family typewriter
329 Mathematical
330 \begin_inset space ~
331 \end_inset
332
333 Formulas
334 \family default
335  of the User's Guide.
336 \end_layout
337
338 \begin_layout Standard
339 Most of the characters and many constructs explained in this manual are
340  also accessible via the menu 
341 \family sans
342 Insert
343 \series bold
344 \SpecialChar \menuseparator
345
346 \series default
347 Math
348 \family default
349 , or the 
350 \family sans
351 math
352 \family default
353 \series bold
354  
355 \family sans
356 \series default
357 toolbar
358 \family default
359 .
360  But everybody who has to write lots of formulas will notice that it is
361  much faster to use commands instead of the math toolbar.
362  Therefore this manual is focused on commands but also mentions the correspondin
363 g toolbar buttons when available.
364 \end_layout
365
366 \begin_layout Standard
367 If not specially mentioned the commands are only available within formulas.
368  To be able to use all commands explained in this document, the option 
369 \family sans
370 Use AMS math package
371 \family default
372  must be used in the document settings (menu 
373 \family sans
374 Document\SpecialChar \menuseparator
375 Settings\SpecialChar \menuseparator
376 Math
377 \begin_inset space ~
378 \end_inset
379
380 Options
381 \family default
382 ).
383 \begin_inset Foot
384 status collapsed
385
386 \begin_layout Plain Layout
387 The option 
388 \family sans
389 Use AMS math package automatically
390 \family default
391  only uses 
392 \begin_inset ERT
393 status collapsed
394
395 \begin_layout Plain Layout
396
397
398 \backslash
399 AmS 
400 \end_layout
401
402 \end_inset
403
404 -math when math constructs are found that are supported by LyX.
405 \end_layout
406
407 \end_inset
408
409
410 \end_layout
411
412 \begin_layout Standard
413 This document doesn't list all 
414 \begin_inset ERT
415 status collapsed
416
417 \begin_layout Plain Layout
418
419
420 \backslash
421 AmS 
422 \end_layout
423
424 \end_inset
425
426 -math commands
427 \begin_inset Foot
428 status collapsed
429
430 \begin_layout Plain Layout
431 A list with all 
432 \begin_inset ERT
433 status collapsed
434
435 \begin_layout Plain Layout
436
437
438 \backslash
439 AmS
440 \end_layout
441
442 \end_inset
443
444 -math commands is in the file 
445 \family sans
446
447 \begin_inset CommandInset href
448 LatexCommand href
449 name "amsguide.ps"
450 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
451
452 \end_inset
453
454
455 \family default
456 , which is part of every LaTeX standard installation.
457 \end_layout
458
459 \end_inset
460
461  for lucidity reasons.
462 \end_layout
463
464 \begin_layout Section
465 General Instructions
466 \end_layout
467
468 \begin_layout Standard
469 To create an inline formula
470 \begin_inset Index
471 status collapsed
472
473 \begin_layout Plain Layout
474 Formula ! inline
475 \end_layout
476
477 \end_inset
478
479  that is embedded into a text line, use one of the shortcuts 
480 \begin_inset Info
481 type  "shortcuts"
482 arg   "math-mode"
483 \end_inset
484
485  or the toolbar button 
486 \begin_inset Graphics
487         filename ../images/math-mode.png
488         scale 85
489
490 \end_inset
491
492
493 \begin_inset Newline newline
494 \end_inset
495
496 To create a display style formula
497 \begin_inset Index
498 status collapsed
499
500 \begin_layout Plain Layout
501 Formula ! display style
502 \end_layout
503
504 \end_inset
505
506  that will appear bigger and in an own paragraph, use one of these shortcuts:
507  
508 \begin_inset Info
509 type  "shortcuts"
510 arg   "math-display"
511 \end_inset
512
513 .
514 \end_layout
515
516 \begin_layout Standard
517 To change a display style formula to an inline formula, set the cursor into
518  the formula and use one of the shortcuts 
519 \begin_inset Info
520 type  "shortcuts"
521 arg   "math-mode"
522 \end_inset
523
524  or the menu 
525 \family sans
526 Edit\SpecialChar \menuseparator
527 Math\SpecialChar \menuseparator
528 Change formula type
529 \family default
530 .
531  The same way is used to change an inline formula to a display style formula.
532 \end_layout
533
534 \begin_layout Standard
535 To display parts of an inline formula in the size of a display style formula,
536  enter the command 
537 \series bold
538
539 \backslash
540 displaystyle
541 \series default
542
543 \begin_inset Index
544 status collapsed
545
546 \begin_layout Plain Layout
547 Commands ! D ! 
548 \backslash
549 displaystyle
550 \end_layout
551
552 \end_inset
553
554  to a formula.
555  Then a new blue box appears in which the desired formula part is inserted.
556 \end_layout
557
558 \begin_layout Standard
559 Only inline formulas are allowed inside tables.
560 \end_layout
561
562 \begin_layout Standard
563 The 
564 \family sans
565 math toolbar
566 \family default
567  can be turned on in the menu 
568 \family sans
569 View\SpecialChar \menuseparator
570 Toolbars
571 \family default
572 .
573  When you click there on 
574 \begin_inset Quotes eld
575 \end_inset
576
577 Math
578 \begin_inset Quotes erd
579 \end_inset
580
581  the toolbar will be shown permanently at the bottom; this state is visualized
582  in the 
583 \family sans
584 Toolbars
585 \family default
586  menu with a checkmark.
587  When you click in this state again on 
588 \begin_inset Quotes eld
589 \end_inset
590
591 Math
592 \begin_inset Quotes erd
593 \end_inset
594
595  in the 
596 \family sans
597 Toolbars
598 \family default
599  menu, the 
600 \family sans
601 math toolbar
602 \family default
603  is only shown when the cursor is within a formula; this state is visualized
604  by the renaming of the menu entry from 
605 \begin_inset Quotes eld
606 \end_inset
607
608 Math
609 \begin_inset Quotes erd
610 \end_inset
611
612  to 
613 \begin_inset Quotes eld
614 \end_inset
615
616 Math
617 \begin_inset space ~
618 \end_inset
619
620 (auto)
621 \begin_inset Quotes erd
622 \end_inset
623
624 .
625 \end_layout
626
627 \begin_layout Standard
628 The TeX-mode
629 \begin_inset Index
630 status collapsed
631
632 \begin_layout Plain Layout
633 T@TeX-mode
634 \end_layout
635
636 \end_inset
637
638  is invoked by pressing the toolbar button 
639 \begin_inset Graphics
640         filename ../images/ert-insert.png
641         scale 85
642
643 \end_inset
644
645  or by using the menu 
646 \family sans
647 Insert\SpecialChar \menuseparator
648 Te
649 \begin_inset ERT
650 status collapsed
651
652 \begin_layout Plain Layout
653
654 {}
655 \end_layout
656
657 \end_inset
658
659 X Code
660 \family default
661  (shortcut 
662 \begin_inset Info
663 type  "shortcut"
664 arg   "ert-insert"
665 \end_inset
666
667 ).
668 \begin_inset Note Note
669 status collapsed
670
671 \begin_layout Plain Layout
672 In LyX there are three 
673 \begin_inset Quotes eld
674 \end_inset
675
676 proper names
677 \begin_inset Quotes erd
678 \end_inset
679
680  that appear in the output with sub- and superscript letters: TeX, LaTeX
681  and LyX
682 \end_layout
683
684 \begin_layout Plain Layout
685 To avoid that these names are recognized as proper names, a TeX-brace pair
686  is inserted.
687 \end_layout
688
689 \end_inset
690
691
692 \end_layout
693
694 \begin_layout Standard
695 To change the LaTeX-preamble
696 \begin_inset Index
697 status collapsed
698
699 \begin_layout Plain Layout
700 L@LaTeX-preamble
701 \end_layout
702
703 \end_inset
704
705 , use the menu 
706 \family sans
707 Document\SpecialChar \menuseparator
708 Settings\SpecialChar \menuseparator
709 LaT
710 \begin_inset ERT
711 status collapsed
712
713 \begin_layout Plain Layout
714
715 {}
716 \end_layout
717
718 \end_inset
719
720 eX
721 \family default
722  
723 \family sans
724 Preamble
725 \family default
726 .
727 \end_layout
728
729 \begin_layout Standard
730 To edit matrices, case differentiations and multiline formulas subsequently,
731  the menus 
732 \family sans
733 Edit\SpecialChar \menuseparator
734 Math
735 \family default
736  and 
737 \family sans
738 Edit\SpecialChar \menuseparator
739 Rows
740 \begin_inset space \thinspace{}
741 \end_inset
742
743 &
744 \begin_inset space \thinspace{}
745 \end_inset
746
747 Columns,
748 \family default
749  or the 
750 \family sans
751 table toolbar
752 \family default
753  can be used.
754  When lines and columns are swapped via the menu, the column or line where
755  the cursor is in is exchanged with the column to the right or the line
756  below, respectively.
757  Is the cursor in the last column or row, the exchange is done with the
758  column to the left or the line above.
759 \end_layout
760
761 \begin_layout Standard
762 To write text in formulas
763 \begin_inset Foot
764 status collapsed
765
766 \begin_layout Plain Layout
767 For multiline formulas the command 
768 \series bold
769
770 \backslash
771 intertext
772 \series default
773  is used, see 
774 \begin_inset CommandInset ref
775 LatexCommand ref
776 reference "sub:Text-in-multiline"
777
778 \end_inset
779
780 .
781 \end_layout
782
783 \end_inset
784
785  
786 \emph on
787 mathematical text
788 \emph default
789
790 \begin_inset Index
791 status collapsed
792
793 \begin_layout Plain Layout
794 Text ! in formulas
795 \end_layout
796
797 \end_inset
798
799
800 \begin_inset Index
801 status collapsed
802
803 \begin_layout Plain Layout
804 Mathematical text
805 \end_layout
806
807 \end_inset
808
809  is used.
810  This mode is invoked with the shortcut 
811 \begin_inset Info
812 type  "shortcut"
813 arg   "font-default"
814 \end_inset
815
816  or by the insertion of the command 
817 \series bold
818
819 \backslash
820 text
821 \series default
822
823 \begin_inset Index
824 status collapsed
825
826 \begin_layout Plain Layout
827 Commands ! T ! 
828 \backslash
829 text
830 \end_layout
831
832 \end_inset
833
834 .
835  The text appears black in LyX and can therefore be distinguished from the
836  other formula parts that appear blue.
837  In the output mathematical text is set upright, in contrary to other formula
838  parts.
839 \end_layout
840
841 \begin_layout Subsection*
842 Command Scheme
843 \end_layout
844
845 \begin_layout Standard
846 Most of the LaTeX-commands for math constructs have the following scheme:
847 \end_layout
848
849 \begin_layout Standard
850
851 \series bold
852
853 \backslash
854 commandname[optional
855 \series default
856  
857 \series bold
858 argument]{required
859 \series default
860  
861 \series bold
862 argument}
863 \end_layout
864
865 \begin_layout Standard
866 A command starts always with a backslash 
867 \begin_inset Quotes gld
868 \end_inset
869
870
871 \series bold
872
873 \backslash
874
875 \series default
876
877 \begin_inset Quotes grd
878 \end_inset
879
880 .
881  To omit optional arguments, also omit the associated brackets.
882  The braces around the required arguments are named in this document as
883  TeX-braces
884 \begin_inset Index
885 status collapsed
886
887 \begin_layout Plain Layout
888 T@TeX-braces
889 \end_layout
890
891 \end_inset
892
893 .
894  If you add in a formula a left brace to a command name, LyX creates automatical
895 ly a TeX-brace.
896  In all other cases TeX-braces are created in formulas with the command
897  
898 \series bold
899
900 \backslash
901 {
902 \series default
903 .
904  TeX-braces appear red in LyX, in contrary to normal braces that appear
905  blue.
906  In TeX-mode no command is needed to get TeX-braces.
907  TeX-braces don't appear in the output.
908 \end_layout
909
910 \begin_layout Standard
911 When commands without arguments, like commands for symbols are entered in
912  TeX-mode, a space character must 
913 \emph on
914 always
915 \emph default
916  be behind the command to end it.
917  This space doesn't appear in the output.
918  When the space should appear in the output, the space must be followed
919  by a protected space in normal text.
920 \end_layout
921
922 \begin_layout Standard
923 A protected space is inserted with 
924 \begin_inset Info
925 type  "shortcut"
926 arg   "space-insert protected"
927 \end_inset
928
929 .
930 \end_layout
931
932 \begin_layout Subsection*
933 \begin_inset Newpage newpage
934 \end_inset
935
936 Syntax Explanation
937 \end_layout
938
939 \begin_layout Itemize
940 The symbol
941 \begin_inset Foot
942 status collapsed
943
944 \begin_layout Plain Layout
945 This visible space character can be created with the command 
946 \series bold
947
948 \backslash
949 textvisiblespace
950 \series default
951
952 \begin_inset Index
953 status collapsed
954
955 \begin_layout Plain Layout
956 Commands ! T ! 
957 \backslash
958 textvisiblespace
959 \end_layout
960
961 \end_inset
962
963 , inserted in TeX-mode.
964 \end_layout
965
966 \end_inset
967
968  
969 \begin_inset ERT
970 status collapsed
971
972 \begin_layout Plain Layout
973
974
975 \backslash
976 spce 
977 \end_layout
978
979 \end_inset
980
981
982 \begin_inset space ~
983 \end_inset
984
985 denotes a space character to be input.
986 \end_layout
987
988 \begin_layout Itemize
989 An arrow like 
990 \begin_inset Formula $\to$
991 \end_inset
992
993  denotes the usage of the corresponding arrow key on the keyboard.
994 \end_layout
995
996 \begin_layout Subsection*
997 Available units
998 \end_layout
999
1000 \begin_layout Standard
1001 \align center
1002 \begin_inset Float table
1003 placement H
1004 wide false
1005 sideways false
1006 status open
1007
1008 \begin_layout Plain Layout
1009 \align center
1010 \begin_inset Caption
1011
1012 \begin_layout Plain Layout
1013 \begin_inset CommandInset label
1014 LatexCommand label
1015 name "tab:Available-units"
1016
1017 \end_inset
1018
1019 Available units
1020 \end_layout
1021
1022 \end_inset
1023
1024
1025 \end_layout
1026
1027 \begin_layout Plain Layout
1028 \align center
1029 \begin_inset Tabular
1030 <lyxtabular version="3" rows="13" columns="2">
1031 <features>
1032 <column alignment="center" valignment="top" width="0">
1033 <column alignment="center" valignment="top" width="0">
1034 <row>
1035 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1036 \begin_inset Text
1037
1038 \begin_layout Plain Layout
1039 Unit
1040 \end_layout
1041
1042 \end_inset
1043 </cell>
1044 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1045 \begin_inset Text
1046
1047 \begin_layout Plain Layout
1048 Name / Description
1049 \end_layout
1050
1051 \end_inset
1052 </cell>
1053 </row>
1054 <row>
1055 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1056 \begin_inset Text
1057
1058 \begin_layout Plain Layout
1059 mm
1060 \end_layout
1061
1062 \end_inset
1063 </cell>
1064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1065 \begin_inset Text
1066
1067 \begin_layout Plain Layout
1068 Millimeter
1069 \end_layout
1070
1071 \end_inset
1072 </cell>
1073 </row>
1074 <row>
1075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1076 \begin_inset Text
1077
1078 \begin_layout Plain Layout
1079 cm
1080 \end_layout
1081
1082 \end_inset
1083 </cell>
1084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1085 \begin_inset Text
1086
1087 \begin_layout Plain Layout
1088 Centimeter
1089 \end_layout
1090
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 \begin_layout Plain Layout
1099 in
1100 \end_layout
1101
1102 \end_inset
1103 </cell>
1104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1105 \begin_inset Text
1106
1107 \begin_layout Plain Layout
1108 Inch (1
1109 \begin_inset space \thinspace{}
1110 \end_inset
1111
1112 in = 2,54
1113 \begin_inset space \thinspace{}
1114 \end_inset
1115
1116 cm)
1117 \end_layout
1118
1119 \end_inset
1120 </cell>
1121 </row>
1122 <row>
1123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1124 \begin_inset Text
1125
1126 \begin_layout Plain Layout
1127 pt
1128 \end_layout
1129
1130 \end_inset
1131 </cell>
1132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1133 \begin_inset Text
1134
1135 \begin_layout Plain Layout
1136 Point (72.27
1137 \begin_inset space \thinspace{}
1138 \end_inset
1139
1140 pt = 1
1141 \begin_inset space \thinspace{}
1142 \end_inset
1143
1144 in)
1145 \end_layout
1146
1147 \end_inset
1148 </cell>
1149 </row>
1150 <row>
1151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1152 \begin_inset Text
1153
1154 \begin_layout Plain Layout
1155 pc
1156 \end_layout
1157
1158 \end_inset
1159 </cell>
1160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1161 \begin_inset Text
1162
1163 \begin_layout Plain Layout
1164 Pica (1
1165 \begin_inset space \thinspace{}
1166 \end_inset
1167
1168 pc = 12
1169 \begin_inset space \thinspace{}
1170 \end_inset
1171
1172 pt)
1173 \end_layout
1174
1175 \end_inset
1176 </cell>
1177 </row>
1178 <row>
1179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1180 \begin_inset Text
1181
1182 \begin_layout Plain Layout
1183 sp
1184 \end_layout
1185
1186 \end_inset
1187 </cell>
1188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1189 \begin_inset Text
1190
1191 \begin_layout Plain Layout
1192 scaled point (65536
1193 \begin_inset space \thinspace{}
1194 \end_inset
1195
1196 sp = 1
1197 \begin_inset space \thinspace{}
1198 \end_inset
1199
1200 pt)
1201 \end_layout
1202
1203 \end_inset
1204 </cell>
1205 </row>
1206 <row>
1207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1208 \begin_inset Text
1209
1210 \begin_layout Plain Layout
1211 bp
1212 \end_layout
1213
1214 \end_inset
1215 </cell>
1216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1217 \begin_inset Text
1218
1219 \begin_layout Plain Layout
1220 big point (72
1221 \begin_inset space \thinspace{}
1222 \end_inset
1223
1224 bp = 1
1225 \begin_inset space \thinspace{}
1226 \end_inset
1227
1228 in)
1229 \end_layout
1230
1231 \end_inset
1232 </cell>
1233 </row>
1234 <row>
1235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1236 \begin_inset Text
1237
1238 \begin_layout Plain Layout
1239 dd
1240 \end_layout
1241
1242 \end_inset
1243 </cell>
1244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1245 \begin_inset Text
1246
1247 \begin_layout Plain Layout
1248 Didot (1
1249 \begin_inset space \thinspace{}
1250 \end_inset
1251
1252 dd 
1253 \begin_inset Formula $\approx$
1254 \end_inset
1255
1256  0.376
1257 \begin_inset space \thinspace{}
1258 \end_inset
1259
1260 mm)
1261 \end_layout
1262
1263 \end_inset
1264 </cell>
1265 </row>
1266 <row>
1267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1268 \begin_inset Text
1269
1270 \begin_layout Plain Layout
1271 cc
1272 \end_layout
1273
1274 \end_inset
1275 </cell>
1276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1277 \begin_inset Text
1278
1279 \begin_layout Plain Layout
1280 Cicero (1
1281 \begin_inset space \thinspace{}
1282 \end_inset
1283
1284 cc = 12
1285 \begin_inset space \thinspace{}
1286 \end_inset
1287
1288 dd)
1289 \end_layout
1290
1291 \end_inset
1292 </cell>
1293 </row>
1294 <row>
1295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1296 \begin_inset Text
1297
1298 \begin_layout Plain Layout
1299 ex
1300 \end_layout
1301
1302 \end_inset
1303 </cell>
1304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1305 \begin_inset Text
1306
1307 \begin_layout Plain Layout
1308 Height of letter 
1309 \emph on
1310
1311 \begin_inset Quotes eld
1312 \end_inset
1313
1314 x
1315 \emph default
1316
1317 \begin_inset Quotes erd
1318 \end_inset
1319
1320  in the current font
1321 \end_layout
1322
1323 \end_inset
1324 </cell>
1325 </row>
1326 <row>
1327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1328 \begin_inset Text
1329
1330 \begin_layout Plain Layout
1331 em
1332 \end_layout
1333
1334 \end_inset
1335 </cell>
1336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1337 \begin_inset Text
1338
1339 \begin_layout Plain Layout
1340 width of letter 
1341 \begin_inset Quotes eld
1342 \end_inset
1343
1344
1345 \emph on
1346 M
1347 \emph default
1348
1349 \begin_inset Quotes erd
1350 \end_inset
1351
1352  in the current font
1353 \end_layout
1354
1355 \end_inset
1356 </cell>
1357 </row>
1358 <row>
1359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1360 \begin_inset Text
1361
1362 \begin_layout Plain Layout
1363 mu
1364 \end_layout
1365
1366 \end_inset
1367 </cell>
1368 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1369 \begin_inset Text
1370
1371 \begin_layout Plain Layout
1372 math unit (1
1373 \begin_inset space \thinspace{}
1374 \end_inset
1375
1376 mu = 
1377 \begin_inset Formula $\nicefrac{1}{18}$
1378 \end_inset
1379
1380
1381 \begin_inset space \thinspace{}
1382 \end_inset
1383
1384 em)
1385 \end_layout
1386
1387 \end_inset
1388 </cell>
1389 </row>
1390 </lyxtabular>
1391
1392 \end_inset
1393
1394
1395 \end_layout
1396
1397 \end_inset
1398
1399
1400 \end_layout
1401
1402 \begin_layout Standard
1403 \begin_inset Newpage newpage
1404 \end_inset
1405
1406
1407 \end_layout
1408
1409 \begin_layout Section
1410 Basic Functions
1411 \end_layout
1412
1413 \begin_layout Subsection
1414 Exponents
1415 \begin_inset Index
1416 status collapsed
1417
1418 \begin_layout Plain Layout
1419 Exponents
1420 \end_layout
1421
1422 \end_inset
1423
1424  and Indices
1425 \begin_inset Index
1426 status collapsed
1427
1428 \begin_layout Plain Layout
1429 Indices
1430 \end_layout
1431
1432 \end_inset
1433
1434
1435 \begin_inset Index
1436 status collapsed
1437
1438 \begin_layout Plain Layout
1439 Superscripts|see
1440 \begin_inset ERT
1441 status collapsed
1442
1443 \begin_layout Plain Layout
1444
1445 {
1446 \end_layout
1447
1448 \end_inset
1449
1450 Exponents
1451 \begin_inset ERT
1452 status collapsed
1453
1454 \begin_layout Plain Layout
1455
1456 }
1457 \end_layout
1458
1459 \end_inset
1460
1461
1462 \end_layout
1463
1464 \end_inset
1465
1466
1467 \begin_inset Index
1468 status collapsed
1469
1470 \begin_layout Plain Layout
1471 Subscripts|see
1472 \begin_inset ERT
1473 status collapsed
1474
1475 \begin_layout Plain Layout
1476
1477 {
1478 \end_layout
1479
1480 \end_inset
1481
1482 Indices
1483 \begin_inset ERT
1484 status collapsed
1485
1486 \begin_layout Plain Layout
1487
1488 }
1489 \end_layout
1490
1491 \end_inset
1492
1493
1494 \end_layout
1495
1496 \end_inset
1497
1498
1499 \end_layout
1500
1501 \begin_layout Standard
1502 Indices are created with an underscore 
1503 \begin_inset Quotes eld
1504 \end_inset
1505
1506 _
1507 \begin_inset Quotes erd
1508 \end_inset
1509
1510  or via the math toolbar button 
1511 \begin_inset Graphics
1512         filename ../images/math-subscript.png
1513         scale 85
1514
1515 \end_inset
1516
1517  , exponents with a caret 
1518 \begin_inset Quotes eld
1519 \end_inset
1520
1521 ^
1522 \begin_inset Quotes erd
1523 \end_inset
1524
1525  or via the math toolbar button 
1526 \begin_inset Graphics
1527         filename ../images/math-superscript.png
1528         scale 85
1529
1530 \end_inset
1531
1532 .
1533 \end_layout
1534
1535 \begin_layout Standard
1536 \align center
1537 \begin_inset Tabular
1538 <lyxtabular version="3" rows="4" columns="2">
1539 <features>
1540 <column alignment="center" valignment="top" width="0pt">
1541 <column alignment="center" valignment="top" width="0pt">
1542 <row>
1543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1544 \begin_inset Text
1545
1546 \begin_layout Plain Layout
1547 command
1548 \end_layout
1549
1550 \end_inset
1551 </cell>
1552 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1553 \begin_inset Text
1554
1555 \begin_layout Plain Layout
1556 Result
1557 \begin_inset Note Note
1558 status collapsed
1559
1560 \begin_layout Plain Layout
1561
1562 \series bold
1563
1564 \backslash
1565 raisebox
1566 \series default
1567  is only used as spacer.
1568 \end_layout
1569
1570 \end_inset
1571
1572
1573 \end_layout
1574
1575 \end_inset
1576 </cell>
1577 </row>
1578 <row>
1579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1580 \begin_inset Text
1581
1582 \begin_layout Plain Layout
1583 B_V
1584 \end_layout
1585
1586 \end_inset
1587 </cell>
1588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1589 \begin_inset Text
1590
1591 \begin_layout Plain Layout
1592 \begin_inset Formula $B_{V}$
1593 \end_inset
1594
1595
1596 \end_layout
1597
1598 \end_inset
1599 </cell>
1600 </row>
1601 <row>
1602 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1603 \begin_inset Text
1604
1605 \begin_layout Plain Layout
1606 B^V
1607 \end_layout
1608
1609 \end_inset
1610 </cell>
1611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1612 \begin_inset Text
1613
1614 \begin_layout Plain Layout
1615 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1616 \end_inset
1617
1618
1619 \end_layout
1620
1621 \end_inset
1622 </cell>
1623 </row>
1624 <row>
1625 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1626 \begin_inset Text
1627
1628 \begin_layout Plain Layout
1629 B^
1630 \begin_inset ERT
1631 status collapsed
1632
1633 \begin_layout Plain Layout
1634
1635
1636 \backslash
1637 spce 
1638 \end_layout
1639
1640 \end_inset
1641
1642 A
1643 \end_layout
1644
1645 \end_inset
1646 </cell>
1647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1648 \begin_inset Text
1649
1650 \begin_layout Plain Layout
1651 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1652 \end_inset
1653
1654
1655 \end_layout
1656
1657 \end_inset
1658 </cell>
1659 </row>
1660 </lyxtabular>
1661
1662 \end_inset
1663
1664
1665 \end_layout
1666
1667 \begin_layout Standard
1668 As the caret is in some languages an accent, vowels will be accentuated
1669  in this case and not set as exponents
1670 \begin_inset Foot
1671 status collapsed
1672
1673 \begin_layout Plain Layout
1674 Depending on the used keyboard settings this can also happen for other character
1675 s than vowels.
1676 \end_layout
1677
1678 \end_inset
1679
1680 .
1681  To get in this case exponents, press 
1682 \family sans
1683 Space
1684 \family default
1685  after the caret as in the last example.
1686 \end_layout
1687
1688 \begin_layout Subsection
1689 Fractions
1690 \begin_inset CommandInset label
1691 LatexCommand label
1692 name "sub:Fractions"
1693
1694 \end_inset
1695
1696
1697 \begin_inset Index
1698 status collapsed
1699
1700 \begin_layout Plain Layout
1701 Fractions
1702 \end_layout
1703
1704 \end_inset
1705
1706
1707 \end_layout
1708
1709 \begin_layout Standard
1710 Fractions are generated with the command 
1711 \series bold
1712
1713 \backslash
1714 frac
1715 \series default
1716
1717 \begin_inset Index
1718 status collapsed
1719
1720 \begin_layout Plain Layout
1721 Commands ! F ! 
1722 \backslash
1723 frac
1724 \end_layout
1725
1726 \end_inset
1727
1728  or via the math toolbar button 
1729 \begin_inset Graphics
1730         filename ../images/math/frac.png
1731         scale 50
1732
1733 \end_inset
1734
1735 .
1736  The font size is adjusted automatically, depending on whether the fraction
1737  is in an inline or display style formula.
1738  With the math toolbar button 
1739 \begin_inset Graphics
1740         filename ../images/math/frac-square.png
1741         scale 85
1742
1743 \end_inset
1744
1745  you can select different fraction types.
1746 \end_layout
1747
1748 \begin_layout Standard
1749 With the command 
1750 \series bold
1751
1752 \backslash
1753 dfrac
1754 \begin_inset Index
1755 status collapsed
1756
1757 \begin_layout Plain Layout
1758 Commands ! D ! 
1759 \backslash
1760 dfrac
1761 \end_layout
1762
1763 \end_inset
1764
1765
1766 \series default
1767  a fraction can be created that has in any case the size of a display style
1768  formula.
1769  With 
1770 \series bold
1771
1772 \backslash
1773 tfrac
1774 \begin_inset Index
1775 status collapsed
1776
1777 \begin_layout Plain Layout
1778 Commands ! T ! 
1779 \backslash
1780 tfrac
1781 \end_layout
1782
1783 \end_inset
1784
1785
1786 \series default
1787  the fraction appears always with the size of an inline formula.
1788  An example:
1789 \end_layout
1790
1791 \begin_layout Standard
1792 A line with the fraction 
1793 \begin_inset Formula $\frac{1}{2}$
1794 \end_inset
1795
1796  that was created with the command 
1797 \series bold
1798
1799 \backslash
1800 frac
1801 \series default
1802 .
1803 \end_layout
1804
1805 \begin_layout Standard
1806 A line with the fraction 
1807 \begin_inset Formula $\dfrac{1}{2}$
1808 \end_inset
1809
1810  that was created with the command 
1811 \series bold
1812
1813 \backslash
1814 dfrac
1815 \series default
1816 .
1817 \end_layout
1818
1819 \begin_layout Standard
1820 \align center
1821 \begin_inset Tabular
1822 <lyxtabular version="3" rows="4" columns="2">
1823 <features>
1824 <column alignment="center" valignment="top" width="0pt">
1825 <column alignment="center" valignment="top" width="0pt">
1826 <row>
1827 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1828 \begin_inset Text
1829
1830 \begin_layout Plain Layout
1831 Command
1832 \end_layout
1833
1834 \end_inset
1835 </cell>
1836 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1837 \begin_inset Text
1838
1839 \begin_layout Plain Layout
1840 Result
1841 \begin_inset Note Note
1842 status collapsed
1843
1844 \begin_layout Plain Layout
1845
1846 \series bold
1847
1848 \backslash
1849 raisebox
1850 \series default
1851  is only used as spacer.
1852 \end_layout
1853
1854 \end_inset
1855
1856
1857 \end_layout
1858
1859 \end_inset
1860 </cell>
1861 </row>
1862 <row>
1863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1864 \begin_inset Text
1865
1866 \begin_layout Plain Layout
1867
1868 \backslash
1869 frac
1870 \begin_inset ERT
1871 status collapsed
1872
1873 \begin_layout Plain Layout
1874
1875
1876 \backslash
1877 spce 
1878 \end_layout
1879
1880 \end_inset
1881
1882 A
1883 \begin_inset Formula $\downarrow$
1884 \end_inset
1885
1886 B
1887 \end_layout
1888
1889 \end_inset
1890 </cell>
1891 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1892 \begin_inset Text
1893
1894 \begin_layout Plain Layout
1895 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1896 \end_inset
1897
1898
1899 \end_layout
1900
1901 \end_inset
1902 </cell>
1903 </row>
1904 <row>
1905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1906 \begin_inset Text
1907
1908 \begin_layout Plain Layout
1909
1910 \backslash
1911 dfrac
1912 \begin_inset ERT
1913 status collapsed
1914
1915 \begin_layout Plain Layout
1916
1917
1918 \backslash
1919 spce 
1920 \end_layout
1921
1922 \end_inset
1923
1924 A
1925 \begin_inset Formula $\downarrow$
1926 \end_inset
1927
1928 B
1929 \end_layout
1930
1931 \end_inset
1932 </cell>
1933 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1934 \begin_inset Text
1935
1936 \begin_layout Plain Layout
1937 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1938 \end_inset
1939
1940
1941 \end_layout
1942
1943 \end_inset
1944 </cell>
1945 </row>
1946 <row>
1947 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1948 \begin_inset Text
1949
1950 \begin_layout Plain Layout
1951
1952 \backslash
1953 dfrac
1954 \begin_inset ERT
1955 status collapsed
1956
1957 \begin_layout Plain Layout
1958
1959
1960 \backslash
1961 spce 
1962 \end_layout
1963
1964 \end_inset
1965
1966 e^
1967 \begin_inset ERT
1968 status collapsed
1969
1970 \begin_layout Plain Layout
1971
1972
1973 \backslash
1974 spce 
1975 \end_layout
1976
1977 \end_inset
1978
1979
1980 \backslash
1981 frac
1982 \begin_inset ERT
1983 status collapsed
1984
1985 \begin_layout Plain Layout
1986
1987
1988 \backslash
1989 spce 
1990 \end_layout
1991
1992 \end_inset
1993
1994 1
1995 \begin_inset Formula $\downarrow$
1996 \end_inset
1997
1998 2
1999 \begin_inset Formula $\downarrow\downarrow$
2000 \end_inset
2001
2002 3
2003 \end_layout
2004
2005 \end_inset
2006 </cell>
2007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2008 \begin_inset Text
2009
2010 \begin_layout Plain Layout
2011 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2012 \end_inset
2013
2014
2015 \end_layout
2016
2017 \end_inset
2018 </cell>
2019 </row>
2020 </lyxtabular>
2021
2022 \end_inset
2023
2024
2025 \end_layout
2026
2027 \begin_layout Standard
2028 \begin_inset VSpace bigskip
2029 \end_inset
2030
2031
2032 \begin_inset Newpage newpage
2033 \end_inset
2034
2035 For nested fractions the command 
2036 \series bold
2037
2038 \backslash
2039 cfrac
2040 \series default
2041
2042 \begin_inset Index
2043 status collapsed
2044
2045 \begin_layout Plain Layout
2046 Commands ! C ! 
2047 \backslash
2048 cfrac
2049 \end_layout
2050
2051 \end_inset
2052
2053  can be used.
2054  Here is an example:
2055 \begin_inset VSpace -3mm
2056 \end_inset
2057
2058
2059 \end_layout
2060
2061 \begin_layout Standard
2062 \begin_inset Formula \begin{align*}
2063 \textrm{created with \textbf{\textbackslash frac}} &  & \textrm{created with \textbf{\textbackslash cfrac}}\\
2064 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}\end{align*}
2065
2066 \end_inset
2067
2068
2069 \end_layout
2070
2071 \begin_layout Standard
2072 The command for the example above is:
2073 \end_layout
2074
2075 \begin_layout Standard
2076
2077 \series bold
2078
2079 \backslash
2080 cfrac
2081 \begin_inset ERT
2082 status collapsed
2083
2084 \begin_layout Plain Layout
2085
2086
2087 \backslash
2088 spce 
2089 \end_layout
2090
2091 \end_inset
2092
2093 A
2094 \begin_inset Formula $\downarrow$
2095 \end_inset
2096
2097 B+
2098 \backslash
2099 cfrac
2100 \begin_inset ERT
2101 status collapsed
2102
2103 \begin_layout Plain Layout
2104
2105
2106 \backslash
2107 spce 
2108 \end_layout
2109
2110 \end_inset
2111
2112 C+
2113 \backslash
2114 cfrac
2115 \begin_inset ERT
2116 status collapsed
2117
2118 \begin_layout Plain Layout
2119
2120
2121 \backslash
2122 spce 
2123 \end_layout
2124
2125 \end_inset
2126
2127 E
2128 \begin_inset Formula $\downarrow$
2129 \end_inset
2130
2131 F
2132 \begin_inset Formula $\downarrow$
2133 \end_inset
2134
2135 D
2136 \end_layout
2137
2138 \begin_layout Standard
2139 \begin_inset VSpace medskip
2140 \end_inset
2141
2142
2143 \end_layout
2144
2145 \begin_layout Standard
2146
2147 \series bold
2148
2149 \backslash
2150 cfrac
2151 \series default
2152  sets the fraction always in the size of a displayed formula, also when
2153  it is part of another fraction.
2154 \end_layout
2155
2156 \begin_layout Standard
2157 It is possible to specify the alignment of the numerator.
2158  The command 
2159 \series bold
2160
2161 \backslash
2162 cfracleft
2163 \series default
2164  is used to left align it, the command 
2165 \series bold
2166
2167 \backslash
2168 cfracright
2169 \series default
2170  to right-align it.
2171  
2172 \series bold
2173
2174 \backslash
2175 cfrac
2176 \series default
2177  centers the numerator.
2178  These fractions demonstrate the different alignments:
2179 \end_layout
2180
2181 \begin_layout Standard
2182 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2183 \end_inset
2184
2185
2186 \begin_inset Formula $\cfrac{A}{B+C}$
2187 \end_inset
2188
2189
2190 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2191 \end_inset
2192
2193
2194 \end_layout
2195
2196 \begin_layout Standard
2197 \begin_inset Note Greyedout
2198 status open
2199
2200 \begin_layout Plain Layout
2201
2202 \series bold
2203 Note:
2204 \series default
2205  
2206 \series bold
2207
2208 \backslash
2209 cfracleft
2210 \series default
2211  and 
2212 \series bold
2213
2214 \backslash
2215 cfracright
2216 \series default
2217  are no real LaTeX commands but represent the command 
2218 \series bold
2219
2220 \backslash
2221 cfrac[alignment]{numerator}{denominator}
2222 \series default
2223  .
2224  Therefore you cannot use them in TeX code.
2225 \end_layout
2226
2227 \end_inset
2228
2229
2230 \end_layout
2231
2232 \begin_layout Standard
2233 \begin_inset VSpace medskip
2234 \end_inset
2235
2236 It is often advantageous to combine 
2237 \series bold
2238
2239 \backslash
2240 cfrac
2241 \series default
2242  and 
2243 \series bold
2244
2245 \backslash
2246 frac
2247 \series default
2248 :
2249 \begin_inset Formula \[
2250 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}\]
2251
2252 \end_inset
2253
2254
2255 \end_layout
2256
2257 \begin_layout Standard
2258 For inline fractions with a sloped fraction stroke you can use the command
2259  
2260 \series bold
2261
2262 \backslash
2263 nicefrac
2264 \series default
2265
2266 \begin_inset Index
2267 status collapsed
2268
2269 \begin_layout Plain Layout
2270 Commands ! N ! 
2271 \backslash
2272 nicefrac
2273 \end_layout
2274
2275 \end_inset
2276
2277
2278 \begin_inset Formula $\nicefrac{5}{31}$
2279 \end_inset
2280
2281  or 
2282 \series bold
2283
2284 \backslash
2285 unitfrac
2286 \series default
2287
2288 \begin_inset Index
2289 status collapsed
2290
2291 \begin_layout Plain Layout
2292 Commands ! U ! 
2293 \backslash
2294 unitfrac
2295 \end_layout
2296
2297 \end_inset
2298
2299
2300 \begin_inset Formula $\unitfrac{5}{31}$
2301 \end_inset
2302
2303  There is furthermore the command 
2304 \series bold
2305
2306 \backslash
2307 unitfracthree
2308 \series default
2309  that offers to write a fraction in combination with a number: 
2310 \begin_inset Formula $\unitfrac[2]{1}{3}$
2311 \end_inset
2312
2313
2314 \end_layout
2315
2316 \begin_layout Standard
2317 \begin_inset Note Greyedout
2318 status open
2319
2320 \begin_layout Plain Layout
2321
2322 \series bold
2323 Note:
2324 \series default
2325  
2326 \series bold
2327
2328 \backslash
2329 unitfracthree
2330 \series default
2331  is not a real LaTeX command but the command
2332 \begin_inset Newline newline
2333 \end_inset
2334
2335
2336 \series bold
2337
2338 \backslash
2339 unitfrac[number]{numerator}{denominator}
2340 \series default
2341  .
2342  Therefore you cannot use it in TeX code.
2343 \end_layout
2344
2345 \end_inset
2346
2347
2348 \end_layout
2349
2350 \begin_layout Standard
2351 How to define own fractions where the fraction stroke can be changed, is
2352  explained in 
2353 \begin_inset CommandInset ref
2354 LatexCommand ref
2355 reference "sub:Self-defined-Fractions"
2356
2357 \end_inset
2358
2359 .
2360 \end_layout
2361
2362 \begin_layout Subsection
2363 Roots
2364 \begin_inset Index
2365 status collapsed
2366
2367 \begin_layout Plain Layout
2368 Roots
2369 \end_layout
2370
2371 \end_inset
2372
2373
2374 \end_layout
2375
2376 \begin_layout Standard
2377 Square roots are created with 
2378 \series bold
2379
2380 \backslash
2381 sqrt
2382 \series default
2383
2384 \begin_inset Index
2385 status collapsed
2386
2387 \begin_layout Plain Layout
2388 Commands ! S ! 
2389 \backslash
2390 sqrt
2391 \end_layout
2392
2393 \end_inset
2394
2395  or the math toolbar button 
2396 \begin_inset Graphics
2397         filename ../images/math/sqrt.png
2398         scale 85
2399
2400 \end_inset
2401
2402 , all other roots with the command 
2403 \series bold
2404
2405 \backslash
2406 root
2407 \series default
2408
2409 \begin_inset Index
2410 status collapsed
2411
2412 \begin_layout Plain Layout
2413 Commands ! R ! 
2414 \backslash
2415 root
2416 \end_layout
2417
2418 \end_inset
2419
2420  or with the math toolbar button 
2421 \begin_inset Graphics
2422         filename ../images/math/root.png
2423         scale 85
2424
2425 \end_inset
2426
2427 .
2428 \end_layout
2429
2430 \begin_layout Standard
2431 \align center
2432 \begin_inset Tabular
2433 <lyxtabular version="3" rows="3" columns="2">
2434 <features>
2435 <column alignment="center" valignment="top" width="0pt">
2436 <column alignment="center" valignment="top" width="0pt">
2437 <row>
2438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2439 \begin_inset Text
2440
2441 \begin_layout Plain Layout
2442 Command
2443 \end_layout
2444
2445 \end_inset
2446 </cell>
2447 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2448 \begin_inset Text
2449
2450 \begin_layout Plain Layout
2451 Result
2452 \begin_inset Note Note
2453 status collapsed
2454
2455 \begin_layout Plain Layout
2456
2457 \series bold
2458
2459 \backslash
2460 raisebox
2461 \series default
2462  is only used as spacer.
2463 \end_layout
2464
2465 \end_inset
2466
2467
2468 \end_layout
2469
2470 \end_inset
2471 </cell>
2472 </row>
2473 <row>
2474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2475 \begin_inset Text
2476
2477 \begin_layout Plain Layout
2478
2479 \backslash
2480 sqrt
2481 \begin_inset ERT
2482 status collapsed
2483
2484 \begin_layout Plain Layout
2485
2486
2487 \backslash
2488 spce 
2489 \end_layout
2490
2491 \end_inset
2492
2493 A-B
2494 \end_layout
2495
2496 \end_inset
2497 </cell>
2498 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2499 \begin_inset Text
2500
2501 \begin_layout Plain Layout
2502 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2503 \end_inset
2504
2505
2506 \end_layout
2507
2508 \end_inset
2509 </cell>
2510 </row>
2511 <row>
2512 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2513 \begin_inset Text
2514
2515 \begin_layout Plain Layout
2516
2517 \backslash
2518 root
2519 \begin_inset ERT
2520 status collapsed
2521
2522 \begin_layout Plain Layout
2523
2524
2525 \backslash
2526 spce 
2527 \end_layout
2528
2529 \end_inset
2530
2531 3
2532 \begin_inset Formula $\downarrow$
2533 \end_inset
2534
2535 A-B
2536 \end_layout
2537
2538 \end_inset
2539 </cell>
2540 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2541 \begin_inset Text
2542
2543 \begin_layout Plain Layout
2544 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2545 \end_inset
2546
2547
2548 \end_layout
2549
2550 \end_inset
2551 </cell>
2552 </row>
2553 </lyxtabular>
2554
2555 \end_inset
2556
2557
2558 \end_layout
2559
2560 \begin_layout Standard
2561 A square root can also be created with 
2562 \series bold
2563
2564 \backslash
2565 root
2566 \series default
2567  when the root index field is left empty.
2568 \end_layout
2569
2570 \begin_layout Standard
2571 With certain indices the distance to the root is too small, like in this
2572  formula: 
2573 \begin_inset Formula $\sqrt[\beta]{B}$
2574 \end_inset
2575
2576
2577 \begin_inset Newline newline
2578 \end_inset
2579
2580 The 
2581 \begin_inset Formula $\beta$
2582 \end_inset
2583
2584  touches the root.
2585  To avoid this, the commands 
2586 \series bold
2587
2588 \backslash
2589 leftroot
2590 \series default
2591
2592 \begin_inset Index
2593 status collapsed
2594
2595 \begin_layout Plain Layout
2596 Commands ! L ! 
2597 \backslash
2598 leftroot
2599 \end_layout
2600
2601 \end_inset
2602
2603  and 
2604 \series bold
2605
2606 \backslash
2607 uproot
2608 \series default
2609
2610 \begin_inset Index
2611 status collapsed
2612
2613 \begin_layout Plain Layout
2614 Commands ! U ! 
2615 \backslash
2616 uproot
2617 \end_layout
2618
2619 \end_inset
2620
2621  are used with the following scheme:
2622 \end_layout
2623
2624 \begin_layout Standard
2625
2626 \series bold
2627
2628 \backslash
2629 leftroot{distance}
2630 \series default
2631  and 
2632 \series bold
2633
2634 \backslash
2635 uproot{distance}
2636 \end_layout
2637
2638 \begin_layout Standard
2639 Distance is the number of Big Points (unit bp; 
2640 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2641 \end_inset
2642
2643 ), that the index should be moved to the left or top, resp..
2644  The commands are written to the index.
2645  This way the command
2646 \begin_inset Newline newline
2647 \end_inset
2648
2649
2650 \series bold
2651
2652 \backslash
2653 root
2654 \backslash
2655 leftroot{-1
2656 \begin_inset Formula $\to$
2657 \end_inset
2658
2659
2660 \backslash
2661 uproot{2
2662 \begin_inset Formula $\to$
2663 \end_inset
2664
2665
2666 \backslash
2667 beta
2668 \begin_inset ERT
2669 status collapsed
2670
2671 \begin_layout Plain Layout
2672
2673
2674 \backslash
2675 spce 
2676 \end_layout
2677
2678 \end_inset
2679
2680
2681 \begin_inset Formula $\to$
2682 \end_inset
2683
2684 B
2685 \begin_inset Newline newline
2686 \end_inset
2687
2688
2689 \series default
2690 produces a correct typeset formula: 
2691 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2692 \end_inset
2693
2694
2695 \end_layout
2696
2697 \begin_layout Subsection
2698 Binomial Coefficients
2699 \begin_inset Index
2700 status collapsed
2701
2702 \begin_layout Plain Layout
2703 Binomial coefficients
2704 \end_layout
2705
2706 \end_inset
2707
2708
2709 \end_layout
2710
2711 \begin_layout Standard
2712 Binomial coefficients are inserted with the command 
2713 \series bold
2714
2715 \backslash
2716 binom
2717 \series default
2718
2719 \begin_inset Index
2720 status collapsed
2721
2722 \begin_layout Plain Layout
2723 Commands ! B ! 
2724 \backslash
2725 binom
2726 \end_layout
2727
2728 \end_inset
2729
2730  or with the submenu of the math toolbar button 
2731 \begin_inset Graphics
2732         filename ../images/math/frac-square.png
2733         scale 85
2734
2735 \end_inset
2736
2737 .
2738  Analog to fractions (
2739 \series bold
2740
2741 \backslash
2742 frac
2743 \series default
2744 ) there are besides 
2745 \series bold
2746
2747 \backslash
2748 binom
2749 \series default
2750  the commands 
2751 \series bold
2752
2753 \backslash
2754 dbinom
2755 \begin_inset Index
2756 status collapsed
2757
2758 \begin_layout Plain Layout
2759 Commands ! D ! 
2760 \backslash
2761 dbinom
2762 \end_layout
2763
2764 \end_inset
2765
2766
2767 \series default
2768  and 
2769 \series bold
2770
2771 \backslash
2772 tbinom
2773 \series default
2774
2775 \begin_inset Index
2776 status collapsed
2777
2778 \begin_layout Plain Layout
2779 Commands ! T ! 
2780 \backslash
2781 tbinom
2782 \end_layout
2783
2784 \end_inset
2785
2786 .
2787  For other brackets around binomial coeficients there are the commands 
2788 \series bold
2789
2790 \backslash
2791 brace
2792 \series default
2793
2794 \begin_inset Index
2795 status collapsed
2796
2797 \begin_layout Plain Layout
2798 Commands ! B ! 
2799 \backslash
2800 brace
2801 \end_layout
2802
2803 \end_inset
2804
2805  and 
2806 \series bold
2807
2808 \backslash
2809 brack
2810 \series default
2811
2812 \begin_inset Index
2813 status collapsed
2814
2815 \begin_layout Plain Layout
2816 Commands ! B ! 
2817 \backslash
2818 brack
2819 \end_layout
2820
2821 \end_inset
2822
2823 .
2824 \end_layout
2825
2826 \begin_layout Standard
2827 \align center
2828 \begin_inset Tabular
2829 <lyxtabular version="3" rows="6" columns="2">
2830 <features>
2831 <column alignment="center" valignment="top" width="0pt">
2832 <column alignment="center" valignment="top" width="0pt">
2833 <row>
2834 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2835 \begin_inset Text
2836
2837 \begin_layout Plain Layout
2838 Command
2839 \end_layout
2840
2841 \end_inset
2842 </cell>
2843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2844 \begin_inset Text
2845
2846 \begin_layout Plain Layout
2847 Result
2848 \begin_inset Note Note
2849 status collapsed
2850
2851 \begin_layout Plain Layout
2852
2853 \series bold
2854
2855 \backslash
2856 raisebox
2857 \series default
2858  is only used as spacer.
2859 \end_layout
2860
2861 \end_inset
2862
2863
2864 \end_layout
2865
2866 \end_inset
2867 </cell>
2868 </row>
2869 <row>
2870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2871 \begin_inset Text
2872
2873 \begin_layout Plain Layout
2874
2875 \backslash
2876 binom
2877 \begin_inset ERT
2878 status collapsed
2879
2880 \begin_layout Plain Layout
2881
2882
2883 \backslash
2884 spce 
2885 \end_layout
2886
2887 \end_inset
2888
2889 A
2890 \begin_inset Formula $\downarrow$
2891 \end_inset
2892
2893 B
2894 \end_layout
2895
2896 \end_inset
2897 </cell>
2898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2899 \begin_inset Text
2900
2901 \begin_layout Plain Layout
2902 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2903 \end_inset
2904
2905
2906 \end_layout
2907
2908 \end_inset
2909 </cell>
2910 </row>
2911 <row>
2912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2913 \begin_inset Text
2914
2915 \begin_layout Plain Layout
2916
2917 \backslash
2918 dbinom
2919 \begin_inset ERT
2920 status collapsed
2921
2922 \begin_layout Plain Layout
2923
2924
2925 \backslash
2926 spce 
2927 \end_layout
2928
2929 \end_inset
2930
2931 A
2932 \begin_inset Formula $\downarrow$
2933 \end_inset
2934
2935 B
2936 \end_layout
2937
2938 \end_inset
2939 </cell>
2940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2941 \begin_inset Text
2942
2943 \begin_layout Plain Layout
2944 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2945 \end_inset
2946
2947
2948 \end_layout
2949
2950 \end_inset
2951 </cell>
2952 </row>
2953 <row>
2954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2955 \begin_inset Text
2956
2957 \begin_layout Plain Layout
2958
2959 \backslash
2960 tbinom
2961 \begin_inset ERT
2962 status collapsed
2963
2964 \begin_layout Plain Layout
2965
2966
2967 \backslash
2968 spce 
2969 \end_layout
2970
2971 \end_inset
2972
2973 A
2974 \begin_inset Formula $\downarrow$
2975 \end_inset
2976
2977 B
2978 \end_layout
2979
2980 \end_inset
2981 </cell>
2982 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2983 \begin_inset Text
2984
2985 \begin_layout Plain Layout
2986 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2987 \end_inset
2988
2989
2990 \end_layout
2991
2992 \end_inset
2993 </cell>
2994 </row>
2995 <row>
2996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2997 \begin_inset Text
2998
2999 \begin_layout Plain Layout
3000
3001 \backslash
3002 brack
3003 \begin_inset ERT
3004 status collapsed
3005
3006 \begin_layout Plain Layout
3007
3008
3009 \backslash
3010 spce 
3011 \end_layout
3012
3013 \end_inset
3014
3015 A
3016 \begin_inset Formula $\downarrow$
3017 \end_inset
3018
3019 B
3020 \end_layout
3021
3022 \end_inset
3023 </cell>
3024 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3025 \begin_inset Text
3026
3027 \begin_layout Plain Layout
3028 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3029 \end_inset
3030
3031
3032 \end_layout
3033
3034 \end_inset
3035 </cell>
3036 </row>
3037 <row>
3038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3039 \begin_inset Text
3040
3041 \begin_layout Plain Layout
3042
3043 \backslash
3044 brace
3045 \begin_inset ERT
3046 status collapsed
3047
3048 \begin_layout Plain Layout
3049
3050
3051 \backslash
3052 spce 
3053 \end_layout
3054
3055 \end_inset
3056
3057 A
3058 \begin_inset Formula $\downarrow$
3059 \end_inset
3060
3061 B
3062 \end_layout
3063
3064 \end_inset
3065 </cell>
3066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3067 \begin_inset Text
3068
3069 \begin_layout Plain Layout
3070 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3071 \end_inset
3072
3073
3074 \end_layout
3075
3076 \end_inset
3077 </cell>
3078 </row>
3079 </lyxtabular>
3080
3081 \end_inset
3082
3083
3084 \end_layout
3085
3086 \begin_layout Subsection
3087 Case Differentiations
3088 \begin_inset Index
3089 status collapsed
3090
3091 \begin_layout Plain Layout
3092 Case differentiations 
3093 \end_layout
3094
3095 \end_inset
3096
3097
3098 \end_layout
3099
3100 \begin_layout Standard
3101 \align center
3102 \begin_inset Tabular
3103 <lyxtabular version="3" rows="3" columns="2">
3104 <features>
3105 <column alignment="center" valignment="top" width="0pt">
3106 <column alignment="center" valignment="top" width="0pt">
3107 <row>
3108 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3109 \begin_inset Text
3110
3111 \begin_layout Plain Layout
3112 Command
3113 \end_layout
3114
3115 \end_inset
3116 </cell>
3117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3118 \begin_inset Text
3119
3120 \begin_layout Plain Layout
3121 Result
3122 \end_layout
3123
3124 \end_inset
3125 </cell>
3126 </row>
3127 <row>
3128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3129 \begin_inset Text
3130
3131 \begin_layout Plain Layout
3132
3133 \backslash
3134 cases
3135 \begin_inset ERT
3136 status collapsed
3137
3138 \begin_layout Plain Layout
3139
3140
3141 \backslash
3142 spce 
3143 \end_layout
3144
3145 \end_inset
3146
3147 A
3148 \begin_inset Formula $\to$
3149 \end_inset
3150
3151 B>0
3152 \begin_inset Index
3153 status collapsed
3154
3155 \begin_layout Plain Layout
3156 Commands ! C ! 
3157 \backslash
3158 cases
3159 \end_layout
3160
3161 \end_inset
3162
3163
3164 \end_layout
3165
3166 \end_inset
3167 </cell>
3168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3169 \begin_inset Text
3170
3171 \begin_layout Plain Layout
3172 \begin_inset Formula $\begin{cases}
3173 A & B>0\end{cases}$
3174 \end_inset
3175
3176
3177 \end_layout
3178
3179 \end_inset
3180 </cell>
3181 </row>
3182 <row>
3183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3184 \begin_inset Text
3185
3186 \begin_layout Plain Layout
3187
3188 \backslash
3189 cases
3190 \begin_inset ERT
3191 status collapsed
3192
3193 \begin_layout Plain Layout
3194
3195
3196 \backslash
3197 spce 
3198 \end_layout
3199
3200 \end_inset
3201
3202
3203 \begin_inset Info
3204 type  "shortcut"
3205 arg   "newline-insert newline"
3206 \end_inset
3207
3208
3209 \end_layout
3210
3211 \end_inset
3212 </cell>
3213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3214 \begin_inset Text
3215
3216 \begin_layout Plain Layout
3217 \begin_inset Formula $\begin{cases}
3218 A & \textrm{for }x>0\\
3219 B & \textrm{for }x=0\end{cases}$
3220 \end_inset
3221
3222
3223 \end_layout
3224
3225 \end_inset
3226 </cell>
3227 </row>
3228 </lyxtabular>
3229
3230 \end_inset
3231
3232
3233 \end_layout
3234
3235 \begin_layout Standard
3236 After inserting 
3237 \series bold
3238
3239 \backslash
3240 cases
3241 \series default
3242  or the usage of the math toolbar button 
3243 \begin_inset Graphics
3244         filename ../images/math/cases.png
3245         scale 85
3246
3247 \end_inset
3248
3249  you can create new lines with the shortcut 
3250 \begin_inset Info
3251 type  "shortcut"
3252 arg   "newline-insert newline"
3253 \end_inset
3254
3255  or the table toolbar button 
3256 \begin_inset Graphics
3257         filename ../images/tabular-feature_append-row.png
3258         scale 85
3259
3260 \end_inset
3261
3262 .
3263 \end_layout
3264
3265 \begin_layout Standard
3266 The command 
3267 \series bold
3268
3269 \backslash
3270 cases
3271 \series default
3272  is also available via the menu 
3273 \family sans
3274 Insert\SpecialChar \menuseparator
3275 Math\SpecialChar \menuseparator
3276 Cases-Environment
3277 \family default
3278 .
3279 \end_layout
3280
3281 \begin_layout Subsection
3282 Negations
3283 \begin_inset Index
3284 status collapsed
3285
3286 \begin_layout Plain Layout
3287 Negations
3288 \end_layout
3289
3290 \end_inset
3291
3292
3293 \end_layout
3294
3295 \begin_layout Standard
3296 By inserting of 
3297 \series bold
3298
3299 \backslash
3300 not
3301 \series default
3302
3303 \begin_inset Index
3304 status collapsed
3305
3306 \begin_layout Plain Layout
3307 Commands ! N ! 
3308 \backslash
3309 not
3310 \end_layout
3311
3312 \end_inset
3313
3314  every character can be displayed canceled.
3315  The characters are quasi accentuated by a slash.
3316 \end_layout
3317
3318 \begin_layout Standard
3319 \align center
3320 \begin_inset Tabular
3321 <lyxtabular version="3" rows="4" columns="2">
3322 <features>
3323 <column alignment="center" valignment="top" width="0pt">
3324 <column alignment="center" valignment="top" width="0pt">
3325 <row>
3326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3327 \begin_inset Text
3328
3329 \begin_layout Plain Layout
3330 Command
3331 \end_layout
3332
3333 \end_inset
3334 </cell>
3335 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3336 \begin_inset Text
3337
3338 \begin_layout Plain Layout
3339 Result
3340 \end_layout
3341
3342 \end_inset
3343 </cell>
3344 </row>
3345 <row>
3346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3347 \begin_inset Text
3348
3349 \begin_layout Plain Layout
3350
3351 \backslash
3352 not=
3353 \end_layout
3354
3355 \end_inset
3356 </cell>
3357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3358 \begin_inset Text
3359
3360 \begin_layout Plain Layout
3361 \begin_inset Formula $\not=$
3362 \end_inset
3363
3364
3365 \end_layout
3366
3367 \end_inset
3368 </cell>
3369 </row>
3370 <row>
3371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3372 \begin_inset Text
3373
3374 \begin_layout Plain Layout
3375
3376 \backslash
3377 not 
3378 \backslash
3379 le
3380 \end_layout
3381
3382 \end_inset
3383 </cell>
3384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3385 \begin_inset Text
3386
3387 \begin_layout Plain Layout
3388 \begin_inset Formula $\not\le$
3389 \end_inset
3390
3391
3392 \end_layout
3393
3394 \end_inset
3395 </cell>
3396 </row>
3397 <row>
3398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3399 \begin_inset Text
3400
3401 \begin_layout Plain Layout
3402
3403 \backslash
3404 not 
3405 \backslash
3406 parallel
3407 \end_layout
3408
3409 \end_inset
3410 </cell>
3411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3412 \begin_inset Text
3413
3414 \begin_layout Plain Layout
3415 \begin_inset Formula $\not\parallel$
3416 \end_inset
3417
3418
3419 \end_layout
3420
3421 \end_inset
3422 </cell>
3423 </row>
3424 </lyxtabular>
3425
3426 \end_inset
3427
3428
3429 \end_layout
3430
3431 \begin_layout Standard
3432 The last example shows, that not all negations look good.
3433  Therefore there are for some negations special commands (see 
3434 \begin_inset CommandInset ref
3435 LatexCommand ref
3436 reference "sub:Mathematical-Symbols"
3437
3438 \end_inset
3439
3440  and 
3441 \begin_inset CommandInset ref
3442 LatexCommand ref
3443 reference "sec:Relations"
3444
3445 \end_inset
3446
3447 ).
3448 \end_layout
3449
3450 \begin_layout Subsection
3451 Placeholders
3452 \begin_inset CommandInset label
3453 LatexCommand label
3454 name "sub:Placeholders"
3455
3456 \end_inset
3457
3458
3459 \begin_inset Index
3460 status collapsed
3461
3462 \begin_layout Plain Layout
3463 Placeholders
3464 \end_layout
3465
3466 \end_inset
3467
3468
3469 \begin_inset Index
3470 status collapsed
3471
3472 \begin_layout Plain Layout
3473 Chemical characters ! Isotopes
3474 \end_layout
3475
3476 \end_inset
3477
3478
3479 \begin_inset Index
3480 status collapsed
3481
3482 \begin_layout Plain Layout
3483 Isotopes|see
3484 \begin_inset ERT
3485 status collapsed
3486
3487 \begin_layout Plain Layout
3488
3489 {
3490 \end_layout
3491
3492 \end_inset
3493
3494 Chemical characters
3495 \begin_inset ERT
3496 status collapsed
3497
3498 \begin_layout Plain Layout
3499
3500 }
3501 \end_layout
3502
3503 \end_inset
3504
3505
3506 \end_layout
3507
3508 \end_inset
3509
3510
3511 \end_layout
3512
3513 \begin_layout Standard
3514 When displaying e.
3515 \begin_inset space \thinspace{}
3516 \end_inset
3517
3518 g.
3519 \begin_inset space \space{}
3520 \end_inset
3521
3522 isotopes
3523 \begin_inset Foot
3524 status collapsed
3525
3526 \begin_layout Plain Layout
3527 Typesetting isotopes and chemical symbols is described in 
3528 \begin_inset CommandInset ref
3529 LatexCommand ref
3530 reference "sub:Chemical-Symbols-and"
3531
3532 \end_inset
3533
3534 .
3535 \end_layout
3536
3537 \end_inset
3538
3539  the following problem occurs:
3540 \end_layout
3541
3542 \begin_layout Standard
3543 \align center
3544 \begin_inset Tabular
3545 <lyxtabular version="3" rows="2" columns="2">
3546 <features>
3547 <column alignment="center" valignment="top" width="0pt">
3548 <column alignment="center" valignment="top" width="0pt">
3549 <row>
3550 <cell alignment="center" valignment="top" usebox="none">
3551 \begin_inset Text
3552
3553 \begin_layout Plain Layout
3554 Indices created with sub- and superscripts:
3555 \end_layout
3556
3557 \end_inset
3558 </cell>
3559 <cell alignment="center" valignment="top" usebox="none">
3560 \begin_inset Text
3561
3562 \begin_layout Plain Layout
3563 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3564 \end_inset
3565
3566
3567 \end_layout
3568
3569 \end_inset
3570 </cell>
3571 </row>
3572 <row>
3573 <cell alignment="center" valignment="top" usebox="none">
3574 \begin_inset Text
3575
3576 \begin_layout Plain Layout
3577 correct indices:
3578 \end_layout
3579
3580 \end_inset
3581 </cell>
3582 <cell alignment="center" valignment="top" usebox="none">
3583 \begin_inset Text
3584
3585 \begin_layout Plain Layout
3586 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3587 \end_inset
3588
3589
3590 \end_layout
3591
3592 \end_inset
3593 </cell>
3594 </row>
3595 </lyxtabular>
3596
3597 \end_inset
3598
3599
3600 \begin_inset Note Note
3601 status collapsed
3602
3603 \begin_layout Plain Layout
3604
3605 \series bold
3606
3607 \backslash
3608 raisebox
3609 \series default
3610  is only used as spacer.
3611 \end_layout
3612
3613 \end_inset
3614
3615
3616 \end_layout
3617
3618 \begin_layout Standard
3619 The shorter index is by default placed below or above the first character
3620  of the longer index.
3621  To avoid this there is the command 
3622 \series bold
3623
3624 \backslash
3625 phantom
3626 \series default
3627
3628 \begin_inset Index
3629 status collapsed
3630
3631 \begin_layout Plain Layout
3632 Commands ! P ! 
3633 \backslash
3634 phantom
3635 \end_layout
3636
3637 \end_inset
3638
3639  or the math toolbar button
3640 \begin_inset space \thinspace{}
3641 \end_inset
3642
3643
3644 \begin_inset Foot
3645 status collapsed
3646
3647 \begin_layout Plain Layout
3648 can be found in the submenu of the toolbar button 
3649 \begin_inset Graphics
3650         filename ../images/math/space.png
3651         scale 85
3652
3653 \end_inset
3654
3655
3656 \end_layout
3657
3658 \end_inset
3659
3660  
3661 \begin_inset Graphics
3662         filename ../images/math/phantom.png
3663         scale 85
3664
3665 \end_inset
3666
3667  that creates one or more phantom characters.
3668  When inserting 
3669 \series bold
3670
3671 \backslash
3672 phantom
3673 \series default
3674  a small blue box appears that is superposed with two red arrows.
3675  The arrows indicate that the complete width and height of the box content
3676  will be created as placeholder.
3677  Phantom characters are accordingly placeholders with the size of the characters.
3678 \end_layout
3679
3680 \begin_layout Standard
3681 \align center
3682 \begin_inset Tabular
3683 <lyxtabular version="3" rows="4" columns="2">
3684 <features>
3685 <column alignment="center" valignment="top" width="0">
3686 <column alignment="center" valignment="top" width="0">
3687 <row>
3688 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3689 \begin_inset Text
3690
3691 \begin_layout Plain Layout
3692 Command
3693 \end_layout
3694
3695 \end_inset
3696 </cell>
3697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3698 \begin_inset Text
3699
3700 \begin_layout Plain Layout
3701 Result
3702 \begin_inset Note Note
3703 status collapsed
3704
3705 \begin_layout Plain Layout
3706
3707 \series bold
3708
3709 \backslash
3710 raisebox
3711 \series default
3712  is only used as spacer.
3713 \end_layout
3714
3715 \end_inset
3716
3717
3718 \end_layout
3719
3720 \end_inset
3721 </cell>
3722 </row>
3723 <row>
3724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3725 \begin_inset Text
3726
3727 \begin_layout Plain Layout
3728 ^19
3729 \begin_inset ERT
3730 status collapsed
3731
3732 \begin_layout Plain Layout
3733
3734
3735 \backslash
3736 spce 
3737 \end_layout
3738
3739 \end_inset
3740
3741 _
3742 \backslash
3743 phantom
3744 \begin_inset ERT
3745 status collapsed
3746
3747 \begin_layout Plain Layout
3748
3749
3750 \backslash
3751 spce 
3752 \end_layout
3753
3754 \end_inset
3755
3756 1
3757 \begin_inset Formula $\to$
3758 \end_inset
3759
3760 9
3761 \begin_inset ERT
3762 status collapsed
3763
3764 \begin_layout Plain Layout
3765
3766
3767 \backslash
3768 spce 
3769 \end_layout
3770
3771 \end_inset
3772
3773 F
3774 \end_layout
3775
3776 \end_inset
3777 </cell>
3778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3779 \begin_inset Text
3780
3781 \begin_layout Plain Layout
3782 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3783 \end_inset
3784
3785
3786 \end_layout
3787
3788 \end_inset
3789 </cell>
3790 </row>
3791 <row>
3792 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3793 \begin_inset Text
3794
3795 \begin_layout Plain Layout
3796 ^235
3797 \begin_inset ERT
3798 status collapsed
3799
3800 \begin_layout Plain Layout
3801
3802
3803 \backslash
3804 spce 
3805 \end_layout
3806
3807 \end_inset
3808
3809 _
3810 \backslash
3811 phantom
3812 \begin_inset ERT
3813 status collapsed
3814
3815 \begin_layout Plain Layout
3816
3817
3818 \backslash
3819 spce 
3820 \end_layout
3821
3822 \end_inset
3823
3824 23
3825 \begin_inset Formula $\to$
3826 \end_inset
3827
3828 9
3829 \begin_inset ERT
3830 status collapsed
3831
3832 \begin_layout Plain Layout
3833
3834
3835 \backslash
3836 spce 
3837 \end_layout
3838
3839 \end_inset
3840
3841 F
3842 \end_layout
3843
3844 \end_inset
3845 </cell>
3846 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3847 \begin_inset Text
3848
3849 \begin_layout Plain Layout
3850 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3851 \end_inset
3852
3853
3854 \end_layout
3855
3856 \end_inset
3857 </cell>
3858 </row>
3859 <row>
3860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3861 \begin_inset Text
3862
3863 \begin_layout Plain Layout
3864
3865 \backslash
3866 Lambda^
3867 \begin_inset ERT
3868 status collapsed
3869
3870 \begin_layout Plain Layout
3871
3872
3873 \backslash
3874 spce 
3875 \end_layout
3876
3877 \end_inset
3878
3879
3880 \backslash
3881 phantom
3882 \begin_inset ERT
3883 status collapsed
3884
3885 \begin_layout Plain Layout
3886
3887
3888 \backslash
3889 spce 
3890 \end_layout
3891
3892 \end_inset
3893
3894 ii
3895 \begin_inset Formula $\to$
3896 \end_inset
3897
3898 t
3899 \begin_inset ERT
3900 status collapsed
3901
3902 \begin_layout Plain Layout
3903
3904
3905 \backslash
3906 spce 
3907 \end_layout
3908
3909 \end_inset
3910
3911 _MMt
3912 \end_layout
3913
3914 \end_inset
3915 </cell>
3916 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3917 \begin_inset Text
3918
3919 \begin_layout Plain Layout
3920 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3921 \end_inset
3922
3923
3924 \end_layout
3925
3926 \end_inset
3927 </cell>
3928 </row>
3929 </lyxtabular>
3930
3931 \end_inset
3932
3933
3934 \end_layout
3935
3936 \begin_layout Standard
3937 Furthermore there are the commands 
3938 \series bold
3939
3940 \backslash
3941 vphantom
3942 \series default
3943
3944 \begin_inset Index
3945 status collapsed
3946
3947 \begin_layout Plain Layout
3948 Commands ! V ! 
3949 \backslash
3950 vphantom
3951 \end_layout
3952
3953 \end_inset
3954
3955  (toolbar button 
3956 \begin_inset space ~
3957 \end_inset
3958
3959
3960 \begin_inset Graphics
3961         filename ../images/math/vphantom.png
3962         scale 85
3963
3964 \end_inset
3965
3966 ) and 
3967 \series bold
3968
3969 \backslash
3970 hphantom
3971 \series default
3972
3973 \begin_inset Index
3974 status collapsed
3975
3976 \begin_layout Plain Layout
3977 Commands ! H ! 
3978 \backslash
3979 hphantom
3980 \end_layout
3981
3982 \end_inset
3983
3984  (toolbar button 
3985 \begin_inset space ~
3986 \end_inset
3987
3988
3989 \begin_inset Graphics
3990         filename ../images/math/hphantom.png
3991         scale 85
3992
3993 \end_inset
3994
3995 ).
3996  
3997 \series bold
3998
3999 \backslash
4000 hphantom
4001 \series default
4002  creates only space for the maximal height of the characters in the box
4003  but not for its width.
4004  
4005 \series bold
4006
4007 \backslash
4008 vphantom
4009 \series default
4010  creates only space for the width of the box content.
4011  Therefore  the boxes of both commands have only one red arrow.
4012 \end_layout
4013
4014 \begin_layout Standard
4015 For example creates 
4016 \series bold
4017
4018 \backslash
4019 vphantom
4020 \series default
4021
4022 \begin_inset ERT
4023 status collapsed
4024
4025 \begin_layout Plain Layout
4026
4027
4028 \backslash
4029 spce 
4030 \end_layout
4031
4032 \end_inset
4033
4034
4035 \series bold
4036 a
4037 \backslash
4038 int
4039 \series default
4040  space for the height of the integral sign,
4041 \begin_inset Foot
4042 status collapsed
4043
4044 \begin_layout Plain Layout
4045 The command 
4046 \series bold
4047
4048 \backslash
4049 int
4050 \series default
4051  creates an integral sign, see 
4052 \begin_inset CommandInset ref
4053 LatexCommand ref
4054 reference "sub:Big-Operators"
4055
4056 \end_inset
4057
4058 .
4059 \end_layout
4060
4061 \end_inset
4062
4063  because this is the larger character.
4064  An example application is in 
4065 \begin_inset CommandInset ref
4066 LatexCommand ref
4067 reference "sub:Multiline-Brackets"
4068
4069 \end_inset
4070
4071 .
4072 \end_layout
4073
4074 \begin_layout Subsection
4075 Lines
4076 \begin_inset Index
4077 status collapsed
4078
4079 \begin_layout Plain Layout
4080 Lines
4081 \end_layout
4082
4083 \end_inset
4084
4085
4086 \begin_inset Index
4087 status collapsed
4088
4089 \begin_layout Plain Layout
4090 Formula ! underlined
4091 \end_layout
4092
4093 \end_inset
4094
4095
4096 \end_layout
4097
4098 \begin_layout Standard
4099 \align center
4100 \begin_inset Tabular
4101 <lyxtabular version="3" rows="4" columns="2">
4102 <features>
4103 <column alignment="center" valignment="top" width="0pt">
4104 <column alignment="center" valignment="top" width="0pt">
4105 <row>
4106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4107 \begin_inset Text
4108
4109 \begin_layout Plain Layout
4110 Command
4111 \end_layout
4112
4113 \end_inset
4114 </cell>
4115 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4116 \begin_inset Text
4117
4118 \begin_layout Plain Layout
4119 Result
4120 \begin_inset Note Note
4121 status collapsed
4122
4123 \begin_layout Plain Layout
4124
4125 \series bold
4126
4127 \backslash
4128 raisebox
4129 \series default
4130  is only used as spacer.
4131 \end_layout
4132
4133 \end_inset
4134
4135
4136 \end_layout
4137
4138 \end_inset
4139 </cell>
4140 </row>
4141 <row>
4142 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4143 \begin_inset Text
4144
4145 \begin_layout Plain Layout
4146
4147 \backslash
4148 overline
4149 \begin_inset ERT
4150 status collapsed
4151
4152 \begin_layout Plain Layout
4153
4154
4155 \backslash
4156 spce 
4157 \end_layout
4158
4159 \end_inset
4160
4161 A+B
4162 \begin_inset Index
4163 status collapsed
4164
4165 \begin_layout Plain Layout
4166 Commands ! O ! 
4167 \backslash
4168 overline
4169 \end_layout
4170
4171 \end_inset
4172
4173
4174 \end_layout
4175
4176 \end_inset
4177 </cell>
4178 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4179 \begin_inset Text
4180
4181 \begin_layout Plain Layout
4182 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4183 \end_inset
4184
4185
4186 \end_layout
4187
4188 \end_inset
4189 </cell>
4190 </row>
4191 <row>
4192 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4193 \begin_inset Text
4194
4195 \begin_layout Plain Layout
4196
4197 \backslash
4198 underline
4199 \begin_inset ERT
4200 status collapsed
4201
4202 \begin_layout Plain Layout
4203
4204
4205 \backslash
4206 spce 
4207 \end_layout
4208
4209 \end_inset
4210
4211 A+B
4212 \begin_inset Index
4213 status collapsed
4214
4215 \begin_layout Plain Layout
4216 Commands ! U ! 
4217 \backslash
4218 underline
4219 \end_layout
4220
4221 \end_inset
4222
4223
4224 \end_layout
4225
4226 \end_inset
4227 </cell>
4228 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4229 \begin_inset Text
4230
4231 \begin_layout Plain Layout
4232 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4233 \end_inset
4234
4235
4236 \end_layout
4237
4238 \end_inset
4239 </cell>
4240 </row>
4241 <row>
4242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4243 \begin_inset Text
4244
4245 \begin_layout Plain Layout
4246
4247 \backslash
4248 overline
4249 \begin_inset ERT
4250 status collapsed
4251
4252 \begin_layout Plain Layout
4253
4254
4255 \backslash
4256 spce 
4257 \end_layout
4258
4259 \end_inset
4260
4261
4262 \backslash
4263 underline
4264 \begin_inset ERT
4265 status collapsed
4266
4267 \begin_layout Plain Layout
4268
4269
4270 \backslash
4271 spce 
4272 \end_layout
4273
4274 \end_inset
4275
4276 A+B
4277 \end_layout
4278
4279 \end_inset
4280 </cell>
4281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4282 \begin_inset Text
4283
4284 \begin_layout Plain Layout
4285 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4286 \end_inset
4287
4288
4289 \end_layout
4290
4291 \end_inset
4292 </cell>
4293 </row>
4294 </lyxtabular>
4295
4296 \end_inset
4297
4298
4299 \end_layout
4300
4301 \begin_layout Standard
4302 In the last example it doesn't matter if first 
4303 \series bold
4304
4305 \backslash
4306 overline
4307 \series default
4308  or 
4309 \series bold
4310
4311 \backslash
4312 underline
4313 \series default
4314  is inserted.
4315 \end_layout
4316
4317 \begin_layout Standard
4318 To double underline e.
4319 \begin_inset space \thinspace{}
4320 \end_inset
4321
4322 g.
4323 \begin_inset space \space{}
4324 \end_inset
4325
4326 results, one uses 
4327 \series bold
4328
4329 \backslash
4330 underline
4331 \series default
4332  twice.
4333 \end_layout
4334
4335 \begin_layout Standard
4336 It is possible to place up to 6 lines above or below characters.
4337 \end_layout
4338
4339 \begin_layout Standard
4340 \begin_inset VSpace bigskip
4341 \end_inset
4342
4343 Custom lines can be created using the command 
4344 \series bold
4345
4346 \backslash
4347 rule
4348 \series default
4349
4350 \begin_inset Index
4351 status collapsed
4352
4353 \begin_layout Plain Layout
4354 Commands ! R ! 
4355 \backslash
4356 rule
4357 \end_layout
4358
4359 \end_inset
4360
4361  which has the following scheme:
4362 \end_layout
4363
4364 \begin_layout Standard
4365
4366 \series bold
4367
4368 \backslash
4369 rule[vertical offset]{length}{thickness}
4370 \end_layout
4371
4372 \begin_layout Standard
4373 The optional vertical offset shifts the line upwards (or downwards, when
4374  the value is negative).
4375  The units listed in 
4376 \begin_inset CommandInset ref
4377 LatexCommand ref
4378 reference "tab:Available-units"
4379
4380 \end_inset
4381
4382  can be used for the values.
4383  Here are two example lines created with the commands
4384 \begin_inset Newline newline
4385 \end_inset
4386
4387
4388 \series bold
4389
4390 \backslash
4391 rule[-2ex]{3cm}{2pt}
4392 \series default
4393  and 
4394 \series bold
4395
4396 \backslash
4397 rule{2cm}{1pt}
4398 \series default
4399 :
4400 \end_layout
4401
4402 \begin_layout Standard
4403 This is a sentence 
4404 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4405 \end_inset
4406
4407  with two lines.
4408 \end_layout
4409
4410 \begin_layout Standard
4411
4412 \series bold
4413
4414 \backslash
4415 rule
4416 \series default
4417  can also be used for text when it is inserted in TeX-mode.
4418 \end_layout
4419
4420 \begin_layout Subsection
4421 Ellipses
4422 \begin_inset CommandInset label
4423 LatexCommand label
4424 name "sub:Ellipses"
4425
4426 \end_inset
4427
4428
4429 \begin_inset Index
4430 status collapsed
4431
4432 \begin_layout Plain Layout
4433 Ellipses
4434 \end_layout
4435
4436 \end_inset
4437
4438
4439 \end_layout
4440
4441 \begin_layout Standard
4442 There are different types of ellipses available.
4443 \begin_inset Foot
4444 status collapsed
4445
4446 \begin_layout Plain Layout
4447 In the math toolbar in the submenu of the button 
4448 \begin_inset Graphics
4449         filename ../images/math/ldots.png
4450         scale 85
4451
4452 \end_inset
4453
4454
4455 \end_layout
4456
4457 \end_inset
4458
4459  For listings dots at the baseline are used (
4460 \series bold
4461
4462 \backslash
4463 ldots
4464 \series default
4465
4466 \begin_inset Index
4467 status collapsed
4468
4469 \begin_layout Plain Layout
4470 Commands ! L ! 
4471 \backslash
4472 ldots
4473 \end_layout
4474
4475 \end_inset
4476
4477 ), while for operations dots are needed that are on the same height as the
4478  operators (
4479 \series bold
4480
4481 \backslash
4482 cdots
4483 \series default
4484
4485 \begin_inset Index
4486 status collapsed
4487
4488 \begin_layout Plain Layout
4489 Commands ! C ! 
4490 \backslash
4491 cdots
4492 \end_layout
4493
4494 \end_inset
4495
4496 ).
4497  When using the command 
4498 \series bold
4499
4500 \backslash
4501 dots
4502 \series default
4503
4504 \begin_inset Index
4505 status collapsed
4506
4507 \begin_layout Plain Layout
4508 Commands ! D ! 
4509 \backslash
4510 dots
4511 \end_layout
4512
4513 \end_inset
4514
4515 , LaTeX decides on the basis of the next character what type is used.
4516 \end_layout
4517
4518 \begin_layout Standard
4519 \align center
4520 \begin_inset Tabular
4521 <lyxtabular version="3" rows="8" columns="2">
4522 <features>
4523 <column alignment="center" valignment="top" width="0pt">
4524 <column alignment="center" valignment="top" width="0pt">
4525 <row>
4526 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4527 \begin_inset Text
4528
4529 \begin_layout Plain Layout
4530 Command
4531 \end_layout
4532
4533 \end_inset
4534 </cell>
4535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4536 \begin_inset Text
4537
4538 \begin_layout Plain Layout
4539 Result
4540 \end_layout
4541
4542 \end_inset
4543 </cell>
4544 </row>
4545 <row>
4546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4547 \begin_inset Text
4548
4549 \begin_layout Plain Layout
4550 A_1
4551 \begin_inset ERT
4552 status collapsed
4553
4554 \begin_layout Plain Layout
4555
4556
4557 \backslash
4558 spce 
4559 \end_layout
4560
4561 \end_inset
4562
4563 ,
4564 \backslash
4565 dots
4566 \begin_inset ERT
4567 status collapsed
4568
4569 \begin_layout Plain Layout
4570
4571
4572 \backslash
4573 spce 
4574 \end_layout
4575
4576 \end_inset
4577
4578 ,A_n
4579 \end_layout
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 \begin_layout Plain Layout
4587 \begin_inset Formula $A_{1},\dots,A_{n}$
4588 \end_inset
4589
4590
4591 \end_layout
4592
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 \begin_layout Plain Layout
4601 A_1
4602 \begin_inset ERT
4603 status collapsed
4604
4605 \begin_layout Plain Layout
4606
4607
4608 \backslash
4609 spce 
4610 \end_layout
4611
4612 \end_inset
4613
4614 +
4615 \backslash
4616 dots
4617 \begin_inset ERT
4618 status collapsed
4619
4620 \begin_layout Plain Layout
4621
4622
4623 \backslash
4624 spce 
4625 \end_layout
4626
4627 \end_inset
4628
4629 +A_n
4630 \end_layout
4631
4632 \end_inset
4633 </cell>
4634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4635 \begin_inset Text
4636
4637 \begin_layout Plain Layout
4638 \begin_inset Formula $A_{1}+\dots+A_{n}$
4639 \end_inset
4640
4641
4642 \end_layout
4643
4644 \end_inset
4645 </cell>
4646 </row>
4647 <row>
4648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4649 \begin_inset Text
4650
4651 \begin_layout Plain Layout
4652 A_1
4653 \begin_inset ERT
4654 status collapsed
4655
4656 \begin_layout Plain Layout
4657
4658
4659 \backslash
4660 spce 
4661 \end_layout
4662
4663 \end_inset
4664
4665 ,
4666 \backslash
4667 ldots
4668 \begin_inset ERT
4669 status collapsed
4670
4671 \begin_layout Plain Layout
4672
4673
4674 \backslash
4675 spce 
4676 \end_layout
4677
4678 \end_inset
4679
4680 ,A_n
4681 \end_layout
4682
4683 \end_inset
4684 </cell>
4685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4686 \begin_inset Text
4687
4688 \begin_layout Plain Layout
4689 \begin_inset Formula $A_{1},\ldots,A_{n}$
4690 \end_inset
4691
4692
4693 \end_layout
4694
4695 \end_inset
4696 </cell>
4697 </row>
4698 <row>
4699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4700 \begin_inset Text
4701
4702 \begin_layout Plain Layout
4703 A_1
4704 \begin_inset ERT
4705 status collapsed
4706
4707 \begin_layout Plain Layout
4708
4709
4710 \backslash
4711 spce 
4712 \end_layout
4713
4714 \end_inset
4715
4716 +
4717 \backslash
4718 cdots
4719 \begin_inset ERT
4720 status collapsed
4721
4722 \begin_layout Plain Layout
4723
4724
4725 \backslash
4726 spce 
4727 \end_layout
4728
4729 \end_inset
4730
4731 +A_n
4732 \end_layout
4733
4734 \end_inset
4735 </cell>
4736 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4737 \begin_inset Text
4738
4739 \begin_layout Plain Layout
4740 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4741 \end_inset
4742
4743
4744 \end_layout
4745
4746 \end_inset
4747 </cell>
4748 </row>
4749 <row>
4750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4751 \begin_inset Text
4752
4753 \begin_layout Plain Layout
4754
4755 \backslash
4756 vdots
4757 \end_layout
4758
4759 \end_inset
4760 </cell>
4761 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4762 \begin_inset Text
4763
4764 \begin_layout Plain Layout
4765 \begin_inset Formula $\vdots$
4766 \end_inset
4767
4768
4769 \end_layout
4770
4771 \end_inset
4772 </cell>
4773 </row>
4774 <row>
4775 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4776 \begin_inset Text
4777
4778 \begin_layout Plain Layout
4779
4780 \backslash
4781 ddots
4782 \end_layout
4783
4784 \end_inset
4785 </cell>
4786 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4787 \begin_inset Text
4788
4789 \begin_layout Plain Layout
4790 \begin_inset Formula $\ddots$
4791 \end_inset
4792
4793
4794 \end_layout
4795
4796 \end_inset
4797 </cell>
4798 </row>
4799 <row>
4800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4801 \begin_inset Text
4802
4803 \begin_layout Plain Layout
4804 3×3
4805 \begin_inset space \thinspace{}
4806 \end_inset
4807
4808 matrix with the different dots
4809 \end_layout
4810
4811 \end_inset
4812 </cell>
4813 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4814 \begin_inset Text
4815
4816 \begin_layout Plain Layout
4817 \begin_inset Formula $\begin{array}{ccc}
4818 A_{11} & \cdots & A_{1m}\\
4819 \vdots & \ddots & \vdots\\
4820 A_{n1} & \cdots & A_{nm}\end{array}$
4821 \end_inset
4822
4823
4824 \end_layout
4825
4826 \end_inset
4827 </cell>
4828 </row>
4829 </lyxtabular>
4830
4831 \end_inset
4832
4833
4834 \end_layout
4835
4836 \begin_layout Standard
4837 The ellipses available in menu 
4838 \family sans
4839 Insert\SpecialChar \menuseparator
4840 Special
4841 \begin_inset space ~
4842 \end_inset
4843
4844 Character
4845 \family default
4846  are 
4847 \series bold
4848
4849 \backslash
4850 ldots
4851 \series default
4852 .
4853 \end_layout
4854
4855 \begin_layout Standard
4856 \begin_inset VSpace medskip
4857 \end_inset
4858
4859 Specially for matrices there are ellipses that span over several columns.
4860  They are created with the command 
4861 \series bold
4862
4863 \backslash
4864 hdotsfor
4865 \series default
4866
4867 \begin_inset Index
4868 status collapsed
4869
4870 \begin_layout Plain Layout
4871 Commands ! H ! 
4872 \backslash
4873 hdotsfor
4874 \end_layout
4875
4876 \end_inset
4877
4878 , that has the following scheme:
4879 \end_layout
4880
4881 \begin_layout Standard
4882
4883 \series bold
4884
4885 \backslash
4886 hdotsfor[distance]{number of columns}
4887 \end_layout
4888
4889 \begin_layout Standard
4890 The number of columns specifies how many columns should be spanned.
4891  Distance is a factor for the distance between the dots.
4892 \end_layout
4893
4894 \begin_layout Standard
4895 In the following matrix the command 
4896 \series bold
4897
4898 \backslash
4899 hdotsfor[2]{4}
4900 \series default
4901  was inserted in the first box of the second line, to get an ellipsis with
4902  a dot distance twice as long as with the command 
4903 \series bold
4904
4905 \backslash
4906 dots
4907 \series default
4908 :
4909 \begin_inset Formula \[
4910 \left(\begin{array}{cccc}
4911 A & B & C & D\\
4912 \hdotsfor[2]{4}\\
4913 q & w & e & r\end{array}\right)\]
4914
4915 \end_inset
4916
4917 Note that the matrix fields that should be spanned must be empty, otherwise
4918  you get LaTeX-errors.
4919 \end_layout
4920
4921 \begin_layout Standard
4922 \begin_inset VSpace bigskip
4923 \end_inset
4924
4925 Furthermore you can fill with the command 
4926 \series bold
4927
4928 \backslash
4929 dotfill
4930 \series default
4931
4932 \begin_inset Index
4933 status collapsed
4934
4935 \begin_layout Plain Layout
4936 Commands ! D ! 
4937 \backslash
4938 dotfill
4939 \end_layout
4940
4941 \end_inset
4942
4943  the rest of a line with dots.
4944  The effect of these commands is the same like with 
4945 \series bold
4946
4947 \backslash
4948 hfill
4949 \series default
4950 , see 
4951 \begin_inset CommandInset ref
4952 LatexCommand ref
4953 reference "sub:Variable-Space"
4954
4955 \end_inset
4956
4957 .
4958 \end_layout
4959
4960 \begin_layout Standard
4961 For example the command 
4962 \series bold
4963 A
4964 \backslash
4965 dotfill
4966 \begin_inset ERT
4967 status collapsed
4968
4969 \begin_layout Plain Layout
4970
4971
4972 \backslash
4973 spce 
4974 \end_layout
4975
4976 \end_inset
4977
4978 B
4979 \series default
4980  produces
4981 \end_layout
4982
4983 \begin_layout Standard
4984 \begin_inset Formula $A\dotfill B$
4985 \end_inset
4986
4987
4988 \end_layout
4989
4990 \begin_layout Standard
4991 Analog to
4992 \series bold
4993  
4994 \backslash
4995 dotfill
4996 \series default
4997  there is for a line the command 
4998 \series bold
4999
5000 \backslash
5001 hrulefill
5002 \series default
5003
5004 \begin_inset Index
5005 status collapsed
5006
5007 \begin_layout Plain Layout
5008 Commands ! H ! 
5009 \backslash
5010 hrulefill
5011 \end_layout
5012
5013 \end_inset
5014
5015 :
5016 \end_layout
5017
5018 \begin_layout Standard
5019 \begin_inset Formula $A\hrulefill B$
5020 \end_inset
5021
5022
5023 \end_layout
5024
5025 \begin_layout Standard
5026 To use the commands for text, they have to be inserted in TeX-mode.
5027 \end_layout
5028
5029 \begin_layout Section
5030 Matrices
5031 \begin_inset CommandInset label
5032 LatexCommand label
5033 name "sec:Matrices"
5034
5035 \end_inset
5036
5037
5038 \begin_inset Index
5039 status collapsed
5040
5041 \begin_layout Plain Layout
5042 Matrices
5043 \end_layout
5044
5045 \end_inset
5046
5047
5048 \end_layout
5049
5050 \begin_layout Standard
5051 Matrices can be inserted via the math toolbar button 
5052 \begin_inset Graphics
5053         filename ../images/dialog-show_mathmatrix.png
5054         scale 85
5055
5056 \end_inset
5057
5058  or the menu 
5059 \family sans
5060 Insert\SpecialChar \menuseparator
5061 Math\SpecialChar \menuseparator
5062 Matrix
5063 \family default
5064 .
5065  You will be asked for the number of matrix columns and rows and the alignment.
5066  The vertical alignment is hereby only of importance for matrices in inline
5067  formulas:
5068 \end_layout
5069
5070 \begin_layout Standard
5071 The first matrix is top 
5072 \begin_inset Formula $\begin{array}[t]{cccc}
5073 A & D & G & J\\
5074 B & E & H & K\\
5075 C & F & I & L\end{array}$
5076 \end_inset
5077
5078 , the second middle 
5079 \begin_inset Formula $\begin{array}{cccc}
5080 A & D & G & J\\
5081 B & E & H & K\\
5082 C & F & I & L\end{array}$
5083 \end_inset
5084
5085  and the third bottom 
5086 \begin_inset Formula $\begin{array}[b]{cccc}
5087 A & D & G & J\\
5088 B & E & H & K\\
5089 C & F & I & L\end{array}$
5090 \end_inset
5091
5092  aligned.
5093 \end_layout
5094
5095 \begin_layout Standard
5096 The horizontal alignment specifies how the column entries should be aligned.
5097  It is set by entering a letter for every column.
5098  
5099 \emph on
5100 l
5101 \emph default
5102  denotes left aligned, 
5103 \emph on
5104 c
5105 \emph default
5106  centered and 
5107 \emph on
5108 r
5109 \emph default
5110  right aligned.
5111  To create for example a 4
5112 \series bold
5113 ×
5114 \series default
5115 4
5116 \begin_inset space ~
5117 \end_inset
5118
5119 matrix where the first column is left aligned, the second and third are
5120  centered and the last one is right aligned, one enters for the horizontal
5121  alignment 
5122 \series bold
5123 lccr
5124 \series default
5125 .
5126  Normally are in a matrix all columns centered, therefore the default is
5127  for every column is a 
5128 \series bold
5129 c
5130 \series default
5131 .
5132 \end_layout
5133
5134 \begin_layout Standard
5135 Horizontal alignment:
5136 \end_layout
5137
5138 \begin_layout Standard
5139
5140 \series bold
5141 lll
5142 \series default
5143  : 
5144 \begin_inset Formula $\begin{array}{lll}
5145 10000 & D & G\\
5146 B & 10000 & H\\
5147 C & F & 10000\end{array}$
5148 \end_inset
5149
5150  , 
5151 \series bold
5152 ccc
5153 \series default
5154  : 
5155 \begin_inset Formula $\begin{array}{ccc}
5156 10000 & D & G\\
5157 B & 10000 & H\\
5158 C & F & 10000\end{array}$
5159 \end_inset
5160
5161  , 
5162 \series bold
5163 rrr
5164 \series default
5165  : 
5166 \begin_inset Formula $\begin{array}{rrr}
5167 10000 & D & G\\
5168 B & 10000 & H\\
5169 C & F & 10000\end{array}$
5170 \end_inset
5171
5172
5173 \end_layout
5174
5175 \begin_layout Standard
5176 To add or delete rows and columns subsequently, the math toolbar buttons
5177  
5178 \begin_inset Graphics
5179         filename ../images/tabular-feature_append-row.png
5180         scale 85
5181
5182 \end_inset
5183
5184
5185 \begin_inset Graphics
5186         filename ../images/tabular-feature_delete-row.png
5187         scale 85
5188
5189 \end_inset
5190
5191 , etc.
5192 \begin_inset space \thinspace{}
5193 \end_inset
5194
5195 , or the menu 
5196 \family sans
5197 Edit\SpecialChar \menuseparator
5198 Rows & Columns
5199 \family default
5200  can be used.
5201  New rows can also be created with 
5202 \begin_inset Info
5203 type  "shortcut"
5204 arg   "newline-insert newline"
5205 \end_inset
5206
5207 .
5208 \end_layout
5209
5210 \begin_layout Standard
5211 \begin_inset VSpace bigskip
5212 \end_inset
5213
5214 Parentheses around a matrix can can either be created with the commands
5215  
5216 \series bold
5217
5218 \backslash
5219 left
5220 \series default
5221
5222 \begin_inset Index
5223 status collapsed
5224
5225 \begin_layout Plain Layout
5226 Commands ! L ! 
5227 \backslash
5228 left
5229 \end_layout
5230
5231 \end_inset
5232
5233  and 
5234 \series bold
5235
5236 \backslash
5237 right
5238 \series default
5239
5240 \begin_inset Index
5241 status collapsed
5242
5243 \begin_layout Plain Layout
5244 Commands ! R ! 
5245 \backslash
5246 right
5247 \end_layout
5248
5249 \end_inset
5250
5251  (shortcut 
5252 \family sans
5253 Alt+M
5254 \begin_inset space ~
5255 \end_inset
5256
5257 Parenthesis
5258 \family default
5259 ), see 
5260 \begin_inset CommandInset ref
5261 LatexCommand ref
5262 reference "sub:Automatic-Bracket-Size"
5263
5264 \end_inset
5265
5266 , or by using the following commands:
5267 \begin_inset VSpace medskip
5268 \end_inset
5269
5270
5271 \end_layout
5272
5273 \begin_layout Standard
5274 \begin_inset space \hfill{}
5275 \end_inset
5276
5277
5278 \begin_inset Tabular
5279 <lyxtabular version="3" rows="4" columns="2">
5280 <features>
5281 <column alignment="center" valignment="top" width="0">
5282 <column alignment="center" valignment="top" width="0">
5283 <row>
5284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5285 \begin_inset Text
5286
5287 \begin_layout Plain Layout
5288 Command
5289 \end_layout
5290
5291 \end_inset
5292 </cell>
5293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5294 \begin_inset Text
5295
5296 \begin_layout Plain Layout
5297 Result
5298 \begin_inset Note Note
5299 status collapsed
5300
5301 \begin_layout Plain Layout
5302
5303 \series bold
5304
5305 \backslash
5306 raisebox
5307 \series default
5308  is only used as spacer.
5309 \end_layout
5310
5311 \end_inset
5312
5313
5314 \end_layout
5315
5316 \end_inset
5317 </cell>
5318 </row>
5319 <row>
5320 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5321 \begin_inset Text
5322
5323 \begin_layout Plain Layout
5324
5325 \backslash
5326 bmatrix
5327 \begin_inset ERT
5328 status collapsed
5329
5330 \begin_layout Plain Layout
5331
5332
5333 \backslash
5334 spce 
5335 \end_layout
5336
5337 \end_inset
5338
5339 2
5340 \series bold
5341 ×
5342 \series default
5343 2
5344 \begin_inset space \thinspace{}
5345 \end_inset
5346
5347 matrix
5348 \end_layout
5349
5350 \end_inset
5351 </cell>
5352 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5353 \begin_inset Text
5354
5355 \begin_layout Plain Layout
5356 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5357 0 & \textrm{-}\mathrm{i}\\
5358 \mathrm{i} & 0\end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5359 \end_inset
5360
5361
5362 \end_layout
5363
5364 \end_inset
5365 </cell>
5366 </row>
5367 <row>
5368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5369 \begin_inset Text
5370
5371 \begin_layout Plain Layout
5372
5373 \backslash
5374 Bmatrix
5375 \begin_inset ERT
5376 status collapsed
5377
5378 \begin_layout Plain Layout
5379
5380
5381 \backslash
5382 spce 
5383 \end_layout
5384
5385 \end_inset
5386
5387 2
5388 \series bold
5389 ×
5390 \series default
5391 2
5392 \begin_inset space \thinspace{}
5393 \end_inset
5394
5395 matrix
5396 \end_layout
5397
5398 \end_inset
5399 </cell>
5400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5401 \begin_inset Text
5402
5403 \begin_layout Plain Layout
5404 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5405 0 & \textrm{-}\mathrm{i}\\
5406 \mathrm{i} & 0\end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5407 \end_inset
5408
5409
5410 \end_layout
5411
5412 \end_inset
5413 </cell>
5414 </row>
5415 <row>
5416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5417 \begin_inset Text
5418
5419 \begin_layout Plain Layout
5420
5421 \backslash
5422 pmatrix
5423 \begin_inset ERT
5424 status collapsed
5425
5426 \begin_layout Plain Layout
5427
5428
5429 \backslash
5430 spce 
5431 \end_layout
5432
5433 \end_inset
5434
5435 2
5436 \series bold
5437 ×
5438 \series default
5439 2
5440 \begin_inset space \thinspace{}
5441 \end_inset
5442
5443 matrix
5444 \end_layout
5445
5446 \end_inset
5447 </cell>
5448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5449 \begin_inset Text
5450
5451 \begin_layout Plain Layout
5452 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5453 0 & \textrm{-}\mathrm{i}\\
5454 \mathrm{i} & 0\end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5455 \end_inset
5456
5457
5458 \end_layout
5459
5460 \end_inset
5461 </cell>
5462 </row>
5463 </lyxtabular>
5464
5465 \end_inset
5466
5467
5468 \begin_inset space \hfill{}
5469 \end_inset
5470
5471
5472 \begin_inset Tabular
5473 <lyxtabular version="3" rows="4" columns="2">
5474 <features>
5475 <column alignment="center" valignment="top" width="0">
5476 <column alignment="center" valignment="top" width="0">
5477 <row>
5478 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5479 \begin_inset Text
5480
5481 \begin_layout Plain Layout
5482 Command
5483 \end_layout
5484
5485 \end_inset
5486 </cell>
5487 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5488 \begin_inset Text
5489
5490 \begin_layout Plain Layout
5491 Result
5492 \end_layout
5493
5494 \end_inset
5495 </cell>
5496 </row>
5497 <row>
5498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5499 \begin_inset Text
5500
5501 \begin_layout Plain Layout
5502
5503 \backslash
5504 vmatrix
5505 \begin_inset ERT
5506 status collapsed
5507
5508 \begin_layout Plain Layout
5509
5510
5511 \backslash
5512 spce 
5513 \end_layout
5514
5515 \end_inset
5516
5517 2
5518 \series bold
5519 ×
5520 \series default
5521 2
5522 \begin_inset space \thinspace{}
5523 \end_inset
5524
5525 matrix
5526 \end_layout
5527
5528 \end_inset
5529 </cell>
5530 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5531 \begin_inset Text
5532
5533 \begin_layout Plain Layout
5534 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5535 0 & \textrm{-}\mathrm{i}\\
5536 \mathrm{i} & 0\end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5537 \end_inset
5538
5539
5540 \end_layout
5541
5542 \end_inset
5543 </cell>
5544 </row>
5545 <row>
5546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5547 \begin_inset Text
5548
5549 \begin_layout Plain Layout
5550
5551 \backslash
5552 Vmatrix
5553 \begin_inset ERT
5554 status collapsed
5555
5556 \begin_layout Plain Layout
5557
5558
5559 \backslash
5560 spce 
5561 \end_layout
5562
5563 \end_inset
5564
5565 2
5566 \series bold
5567 ×
5568 \series default
5569 2
5570 \begin_inset space \thinspace{}
5571 \end_inset
5572
5573 matrix
5574 \end_layout
5575
5576 \end_inset
5577 </cell>
5578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5579 \begin_inset Text
5580
5581 \begin_layout Plain Layout
5582 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5583 0 & \textrm{-}\mathrm{i}\\
5584 \mathrm{i} & 0\end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5585 \end_inset
5586
5587
5588 \end_layout
5589
5590 \end_inset
5591 </cell>
5592 </row>
5593 <row>
5594 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5595 \begin_inset Text
5596
5597 \begin_layout Plain Layout
5598
5599 \backslash
5600 matrix
5601 \begin_inset ERT
5602 status collapsed
5603
5604 \begin_layout Plain Layout
5605
5606
5607 \backslash
5608 spce 
5609 \end_layout
5610
5611 \end_inset
5612
5613 2
5614 \series bold
5615 ×
5616 \series default
5617 2
5618 \begin_inset space \thinspace{}
5619 \end_inset
5620
5621 matrix
5622 \end_layout
5623
5624 \end_inset
5625 </cell>
5626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5627 \begin_inset Text
5628
5629 \begin_layout Plain Layout
5630 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5631 0 & \textrm{-}\mathrm{i}\\
5632 \mathrm{i} & 0\end{array}\end{matrix}\raisebox{-5.3mm}{}$
5633 \end_inset
5634
5635
5636 \end_layout
5637
5638 \end_inset
5639 </cell>
5640 </row>
5641 </lyxtabular>
5642
5643 \end_inset
5644
5645
5646 \begin_inset space \hfill{}
5647 \end_inset
5648
5649
5650 \end_layout
5651
5652 \begin_layout Standard
5653 \begin_inset VSpace medskip
5654 \end_inset
5655
5656 When e.
5657 \begin_inset space \thinspace{}
5658 \end_inset
5659
5660 g.
5661 \begin_inset space \space{}
5662 \end_inset
5663
5664
5665 \series bold
5666
5667 \backslash
5668 vmatrix
5669 \series default
5670  is inserted, a blue box appears between two vertical lines where the matrix
5671  is inserted.
5672 \end_layout
5673
5674 \begin_layout Standard
5675 \begin_inset VSpace bigskip
5676 \end_inset
5677
5678 As all multiline formulas are matrices, the length 
5679 \series bold
5680
5681 \backslash
5682 arraycolsep
5683 \series default
5684
5685 \begin_inset Index
5686 status collapsed
5687
5688 \begin_layout Plain Layout
5689 Commands ! A ! 
5690 \backslash
5691 arraycolsep
5692 \end_layout
5693
5694 \end_inset
5695
5696  that is described in 
5697 \begin_inset CommandInset ref
5698 LatexCommand ref
5699 reference "sub:Column-Separation"
5700
5701 \end_inset
5702
5703  can also be used to change the column separation of matrices.
5704 \end_layout
5705
5706 \begin_layout Standard
5707 To change the row separation, the command 
5708 \series bold
5709
5710 \backslash
5711 arraystretch
5712 \series default
5713
5714 \begin_inset Index
5715 status collapsed
5716
5717 \begin_layout Plain Layout
5718 Commands ! A ! 
5719 \backslash
5720 arraystretch
5721 \end_layout
5722
5723 \end_inset
5724
5725  is used.
5726  It is used as follows:
5727 \end_layout
5728
5729 \begin_layout Standard
5730
5731 \series bold
5732
5733 \backslash
5734 renewcommand{
5735 \backslash
5736 arraystretch}{stretch factor}
5737 \begin_inset Index
5738 status collapsed
5739
5740 \begin_layout Plain Layout
5741 Commands ! R ! 
5742 \backslash
5743 renewcommand
5744 \end_layout
5745
5746 \end_inset
5747
5748
5749 \end_layout
5750
5751 \begin_layout Standard
5752 The command 
5753 \series bold
5754
5755 \backslash
5756 renewcommand
5757 \series default
5758  assigns the stretch factor to the predefined command 
5759 \series bold
5760
5761 \backslash
5762 arraystretch
5763 \series default
5764 .
5765  To double e.
5766 \begin_inset space \thinspace{}
5767 \end_inset
5768
5769 g.
5770 \begin_inset space \space{}
5771 \end_inset
5772
5773 the row separation, use the factor 2.
5774  This is then used for all following matrices.
5775  To go back to the original separation, assign the factor 1 to 
5776 \series bold
5777
5778 \backslash
5779 arraystretch
5780 \series default
5781 .
5782 \end_layout
5783
5784 \begin_layout Standard
5785 To set matrices into a text line, the command 
5786 \series bold
5787
5788 \backslash
5789 smallmatrix
5790 \series default
5791
5792 \begin_inset Index
5793 status collapsed
5794
5795 \begin_layout Plain Layout
5796 Commands ! S ! 
5797 \backslash
5798 smallmatrix
5799 \end_layout
5800
5801 \end_inset
5802
5803  is used.
5804  When it is inserted a blue box with two dashed lines appears.
5805  In this box the matrix is inserted.
5806 \end_layout
5807
5808 \begin_layout Standard
5809 This is a matrix 
5810 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5811 C & D\end{smallmatrix}\right)$
5812 \end_inset
5813
5814  in a text line.
5815 \end_layout
5816
5817 \begin_layout Section
5818 Brackets and Delimiters
5819 \begin_inset Index
5820 status collapsed
5821
5822 \begin_layout Plain Layout
5823 Brackets
5824 \end_layout
5825
5826 \end_inset
5827
5828
5829 \begin_inset Index
5830 status collapsed
5831
5832 \begin_layout Plain Layout
5833 Delimiters
5834 \end_layout
5835
5836 \end_inset
5837
5838
5839 \end_layout
5840
5841 \begin_layout Subsection
5842 Vertical Brackets and Delimiters
5843 \begin_inset Index
5844 status collapsed
5845
5846 \begin_layout Plain Layout
5847 Brackets ! vertical
5848 \end_layout
5849
5850 \end_inset
5851
5852
5853 \end_layout
5854
5855 \begin_layout Standard
5856 \begin_inset space \hfill{}
5857 \end_inset
5858
5859
5860 \begin_inset Tabular
5861 <lyxtabular version="3" rows="9" columns="2">
5862 <features>
5863 <column alignment="center" valignment="top" width="0pt">
5864 <column alignment="center" valignment="top" width="0pt">
5865 <row>
5866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5867 \begin_inset Text
5868
5869 \begin_layout Plain Layout
5870 Command
5871 \end_layout
5872
5873 \end_inset
5874 </cell>
5875 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5876 \begin_inset Text
5877
5878 \begin_layout Plain Layout
5879 Result
5880 \end_layout
5881
5882 \end_inset
5883 </cell>
5884 </row>
5885 <row>
5886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5887 \begin_inset Text
5888
5889 \begin_layout Plain Layout
5890 (
5891 \end_layout
5892
5893 \end_inset
5894 </cell>
5895 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5896 \begin_inset Text
5897
5898 \begin_layout Plain Layout
5899 \begin_inset Formula $($
5900 \end_inset
5901
5902
5903 \end_layout
5904
5905 \end_inset
5906 </cell>
5907 </row>
5908 <row>
5909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5910 \begin_inset Text
5911
5912 \begin_layout Plain Layout
5913 {
5914 \end_layout
5915
5916 \end_inset
5917 </cell>
5918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5919 \begin_inset Text
5920
5921 \begin_layout Plain Layout
5922 \begin_inset Formula $\{$
5923 \end_inset
5924
5925
5926 \end_layout
5927
5928 \end_inset
5929 </cell>
5930 </row>
5931 <row>
5932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5933 \begin_inset Text
5934
5935 \begin_layout Plain Layout
5936 [
5937 \end_layout
5938
5939 \end_inset
5940 </cell>
5941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5942 \begin_inset Text
5943
5944 \begin_layout Plain Layout
5945 \begin_inset Formula $[$
5946 \end_inset
5947
5948
5949 \end_layout
5950
5951 \end_inset
5952 </cell>
5953 </row>
5954 <row>
5955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5956 \begin_inset Text
5957
5958 \begin_layout Plain Layout
5959
5960 \backslash
5961 langle
5962 \end_layout
5963
5964 \end_inset
5965 </cell>
5966 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5967 \begin_inset Text
5968
5969 \begin_layout Plain Layout
5970 \begin_inset Formula $\langle$
5971 \end_inset
5972
5973
5974 \end_layout
5975
5976 \end_inset
5977 </cell>
5978 </row>
5979 <row>
5980 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5981 \begin_inset Text
5982
5983 \begin_layout Plain Layout
5984
5985 \backslash
5986 lceil
5987 \end_layout
5988
5989 \end_inset
5990 </cell>
5991 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5992 \begin_inset Text
5993
5994 \begin_layout Plain Layout
5995 \begin_inset Formula $\lceil$
5996 \end_inset
5997
5998
5999 \end_layout
6000
6001 \end_inset
6002 </cell>
6003 </row>
6004 <row>
6005 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6006 \begin_inset Text
6007
6008 \begin_layout Plain Layout
6009
6010 \backslash
6011 lfloor
6012 \end_layout
6013
6014 \end_inset
6015 </cell>
6016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6017 \begin_inset Text
6018
6019 \begin_layout Plain Layout
6020 \begin_inset Formula $\lfloor$
6021 \end_inset
6022
6023
6024 \end_layout
6025
6026 \end_inset
6027 </cell>
6028 </row>
6029 <row>
6030 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6031 \begin_inset Text
6032
6033 \begin_layout Plain Layout
6034 /
6035 \end_layout
6036
6037 \end_inset
6038 </cell>
6039 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6040 \begin_inset Text
6041
6042 \begin_layout Plain Layout
6043 \begin_inset Formula $/$
6044 \end_inset
6045
6046
6047 \end_layout
6048
6049 \end_inset
6050 </cell>
6051 </row>
6052 <row>
6053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6054 \begin_inset Text
6055
6056 \begin_layout Plain Layout
6057 |
6058 \end_layout
6059
6060 \end_inset
6061 </cell>
6062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6063 \begin_inset Text
6064
6065 \begin_layout Plain Layout
6066 \begin_inset Formula $|$
6067 \end_inset
6068
6069
6070 \end_layout
6071
6072 \end_inset
6073 </cell>
6074 </row>
6075 </lyxtabular>
6076
6077 \end_inset
6078
6079
6080 \begin_inset space \hfill{}
6081 \end_inset
6082
6083
6084 \begin_inset Tabular
6085 <lyxtabular version="3" rows="9" columns="2">
6086 <features>
6087 <column alignment="center" valignment="top" width="0pt">
6088 <column alignment="center" valignment="top" width="0pt">
6089 <row>
6090 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6091 \begin_inset Text
6092
6093 \begin_layout Plain Layout
6094 Command
6095 \end_layout
6096
6097 \end_inset
6098 </cell>
6099 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6100 \begin_inset Text
6101
6102 \begin_layout Plain Layout
6103 Result
6104 \end_layout
6105
6106 \end_inset
6107 </cell>
6108 </row>
6109 <row>
6110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6111 \begin_inset Text
6112
6113 \begin_layout Plain Layout
6114 )
6115 \end_layout
6116
6117 \end_inset
6118 </cell>
6119 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6120 \begin_inset Text
6121
6122 \begin_layout Plain Layout
6123 \begin_inset Formula $)$
6124 \end_inset
6125
6126
6127 \end_layout
6128
6129 \end_inset
6130 </cell>
6131 </row>
6132 <row>
6133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6134 \begin_inset Text
6135
6136 \begin_layout Plain Layout
6137 }
6138 \end_layout
6139
6140 \end_inset
6141 </cell>
6142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6143 \begin_inset Text
6144
6145 \begin_layout Plain Layout
6146 \begin_inset Formula $\}$
6147 \end_inset
6148
6149
6150 \end_layout
6151
6152 \end_inset
6153 </cell>
6154 </row>
6155 <row>
6156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6157 \begin_inset Text
6158
6159 \begin_layout Plain Layout
6160 ]
6161 \end_layout
6162
6163 \end_inset
6164 </cell>
6165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6166 \begin_inset Text
6167
6168 \begin_layout Plain Layout
6169 \begin_inset Formula $]$
6170 \end_inset
6171
6172
6173 \end_layout
6174
6175 \end_inset
6176 </cell>
6177 </row>
6178 <row>
6179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6180 \begin_inset Text
6181
6182 \begin_layout Plain Layout
6183
6184 \backslash
6185 rangle
6186 \end_layout
6187
6188 \end_inset
6189 </cell>
6190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6191 \begin_inset Text
6192
6193 \begin_layout Plain Layout
6194 \begin_inset Formula $\rangle$
6195 \end_inset
6196
6197
6198 \end_layout
6199
6200 \end_inset
6201 </cell>
6202 </row>
6203 <row>
6204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6205 \begin_inset Text
6206
6207 \begin_layout Plain Layout
6208
6209 \backslash
6210 rceil
6211 \end_layout
6212
6213 \end_inset
6214 </cell>
6215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6216 \begin_inset Text
6217
6218 \begin_layout Plain Layout
6219 \begin_inset Formula $\rceil$
6220 \end_inset
6221
6222
6223 \end_layout
6224
6225 \end_inset
6226 </cell>
6227 </row>
6228 <row>
6229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6230 \begin_inset Text
6231
6232 \begin_layout Plain Layout
6233
6234 \backslash
6235 rfloor
6236 \end_layout
6237
6238 \end_inset
6239 </cell>
6240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6241 \begin_inset Text
6242
6243 \begin_layout Plain Layout
6244 \begin_inset Formula $\rfloor$
6245 \end_inset
6246
6247
6248 \end_layout
6249
6250 \end_inset
6251 </cell>
6252 </row>
6253 <row>
6254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6255 \begin_inset Text
6256
6257 \begin_layout Plain Layout
6258
6259 \backslash
6260
6261 \backslash
6262
6263 \end_layout
6264
6265 \end_inset
6266 </cell>
6267 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6268 \begin_inset Text
6269
6270 \begin_layout Plain Layout
6271 \begin_inset Formula $\backslash$
6272 \end_inset
6273
6274
6275 \end_layout
6276
6277 \end_inset
6278 </cell>
6279 </row>
6280 <row>
6281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6282 \begin_inset Text
6283
6284 \begin_layout Plain Layout
6285
6286 \backslash
6287 |
6288 \end_layout
6289
6290 \end_inset
6291 </cell>
6292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6293 \begin_inset Text
6294
6295 \begin_layout Plain Layout
6296 \begin_inset Formula $\|$
6297 \end_inset
6298
6299
6300 \end_layout
6301
6302 \end_inset
6303 </cell>
6304 </row>
6305 </lyxtabular>
6306
6307 \end_inset
6308
6309
6310 \begin_inset space \hfill{}
6311 \end_inset
6312
6313
6314 \end_layout
6315
6316 \begin_layout Standard
6317
6318 \series medium
6319 \begin_inset Note Greyedout
6320 status open
6321
6322 \begin_layout Plain Layout
6323
6324 \series bold
6325 Note:
6326 \series default
6327  In TeX-mode the command 
6328 \series bold
6329
6330 \backslash
6331 textbackslash
6332 \series default
6333
6334 \begin_inset Index
6335 status collapsed
6336
6337 \begin_layout Plain Layout
6338 Commands ! T ! 
6339 \backslash
6340 textbackslash
6341 \end_layout
6342
6343 \end_inset
6344
6345  must be used for the backslash, because the command 
6346 \series bold
6347
6348 \backslash
6349
6350 \backslash
6351
6352 \series default
6353  produces there a line break.
6354 \end_layout
6355
6356 \end_inset
6357
6358
6359 \end_layout
6360
6361 \begin_layout Standard
6362 For all characters listed above the size can be adjusted with the commands
6363  described in the following two subsections.
6364  When using these commands, the characters < and > can directly be used
6365  instead of the commands 
6366 \series bold
6367
6368 \backslash
6369 langle
6370 \series default
6371  and 
6372 \series bold
6373
6374 \backslash
6375 rangle
6376 \series default
6377 .
6378 \end_layout
6379
6380 \begin_layout Subsubsection
6381 Manual Bracket Size
6382 \begin_inset CommandInset label
6383 LatexCommand label
6384 name "sub:Manual-Bracket-Size"
6385
6386 \end_inset
6387
6388
6389 \begin_inset Index
6390 status collapsed
6391
6392 \begin_layout Plain Layout
6393 Bracket size ! manual
6394 \end_layout
6395
6396 \end_inset
6397
6398
6399 \end_layout
6400
6401 \begin_layout Standard
6402 The bracket size can be specified manually by the LaTeX-commands 
6403 \series bold
6404
6405 \backslash
6406 big
6407 \series default
6408
6409 \begin_inset Index
6410 status collapsed
6411
6412 \begin_layout Plain Layout
6413 Commands ! B ! 
6414 \backslash
6415 big
6416 \end_layout
6417
6418 \end_inset
6419
6420
6421 \series bold
6422
6423 \backslash
6424 Big
6425 \series default
6426
6427 \series bold
6428
6429 \backslash
6430 bigg
6431 \series default
6432  and 
6433 \series bold
6434
6435 \backslash
6436 Bigg
6437 \series default
6438 .
6439  
6440 \series bold
6441
6442 \backslash
6443 big
6444 \series default
6445  denotes the smallest and 
6446 \series bold
6447
6448 \backslash
6449 Bigg
6450 \series default
6451  the largest bracket size.
6452 \end_layout
6453
6454 \begin_layout Standard
6455 These commands are used to emphasize levels of brackets:
6456 \end_layout
6457
6458 \begin_layout Standard
6459 \align center
6460 \begin_inset Tabular
6461 <lyxtabular version="3" rows="2" columns="2">
6462 <features>
6463 <column alignment="center" valignment="top" width="0pt">
6464 <column alignment="center" valignment="top" width="0pt">
6465 <row>
6466 <cell alignment="center" valignment="top" usebox="none">
6467 \begin_inset Text
6468
6469 \begin_layout Plain Layout
6470 all brackets in the same size:
6471 \end_layout
6472
6473 \end_inset
6474 </cell>
6475 <cell alignment="center" valignment="top" usebox="none">
6476 \begin_inset Text
6477
6478 \begin_layout Plain Layout
6479 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6480 \end_inset
6481
6482
6483 \end_layout
6484
6485 \end_inset
6486 </cell>
6487 </row>
6488 <row>
6489 <cell alignment="center" valignment="top" usebox="none">
6490 \begin_inset Text
6491
6492 \begin_layout Plain Layout
6493 this looks better:
6494 \end_layout
6495
6496 \end_inset
6497 </cell>
6498 <cell alignment="center" valignment="top" usebox="none">
6499 \begin_inset Text
6500
6501 \begin_layout Plain Layout
6502 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6503 \end_inset
6504
6505
6506 \end_layout
6507
6508 \end_inset
6509 </cell>
6510 </row>
6511 </lyxtabular>
6512
6513 \end_inset
6514
6515
6516 \begin_inset Note Note
6517 status collapsed
6518
6519 \begin_layout Plain Layout
6520
6521 \series bold
6522
6523 \backslash
6524 raisebox
6525 \series default
6526  is only used as spacer.
6527 \end_layout
6528
6529 \end_inset
6530
6531
6532 \end_layout
6533
6534 \begin_layout Standard
6535 For the second formula the command 
6536 \series bold
6537
6538 \backslash
6539 Big((A+B)(A-B)
6540 \backslash
6541 Big)^
6542 \begin_inset ERT
6543 status collapsed
6544
6545 \begin_layout Plain Layout
6546
6547
6548 \backslash
6549 spce 
6550 \end_layout
6551
6552 \end_inset
6553
6554 C
6555 \series default
6556  has been used.
6557 \end_layout
6558
6559 \begin_layout Standard
6560 Here is an overview about all bracket sizes:
6561 \end_layout
6562
6563 \begin_layout Standard
6564 \align center
6565
6566 \backslash
6567 Bigg(
6568 \backslash
6569 exp
6570 \backslash
6571 bigg<
6572 \backslash
6573 Big[
6574 \backslash
6575 big{
6576 \backslash
6577 ln(3x)
6578 \backslash
6579 big}^2
6580 \begin_inset ERT
6581 status collapsed
6582
6583 \begin_layout Plain Layout
6584
6585
6586 \backslash
6587 spce 
6588 \end_layout
6589
6590 \end_inset
6591
6592
6593 \backslash
6594 sin(x)
6595 \backslash
6596 Big]^
6597 \begin_inset ERT
6598 status collapsed
6599
6600 \begin_layout Plain Layout
6601
6602
6603 \backslash
6604 spce 
6605 \end_layout
6606
6607 \end_inset
6608
6609 A
6610 \begin_inset ERT
6611 status collapsed
6612
6613 \begin_layout Plain Layout
6614
6615
6616 \backslash
6617 spce 
6618 \end_layout
6619
6620 \end_inset
6621
6622
6623 \backslash
6624 bigg>
6625 \backslash
6626 Bigg)^0,5
6627 \end_layout
6628
6629 \begin_layout Standard
6630 \align center
6631 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6632 \end_inset
6633
6634
6635 \end_layout
6636
6637 \begin_layout Standard
6638 Besides the 
6639 \series bold
6640
6641 \backslash
6642 big
6643 \series default
6644 -commands there is the variant 
6645 \series bold
6646
6647 \backslash
6648 bigm
6649 \series default
6650
6651 \begin_inset Index
6652 status collapsed
6653
6654 \begin_layout Plain Layout
6655 Commands ! B ! 
6656 \backslash
6657 bigm
6658 \end_layout
6659
6660 \end_inset
6661
6662  that adds a bit more space between the bracket and its content, and the
6663  variant 
6664 \series bold
6665
6666 \backslash
6667 bigl
6668 \series default
6669 -
6670 \series bold
6671
6672 \backslash
6673 bigr
6674 \series default
6675
6676 \begin_inset Index
6677 status collapsed
6678
6679 \begin_layout Plain Layout
6680 Commands ! B ! 
6681 \backslash
6682 bigl - 
6683 \backslash
6684 bigr
6685 \end_layout
6686
6687 \end_inset
6688
6689 , that don't add additional space.
6690  The 
6691 \emph on
6692 l
6693 \emph default
6694  at the end of the command 
6695 \series bold
6696
6697 \backslash
6698 bigl
6699 \series default
6700  is for a left bracket; for a right bracket this will be replaced by an
6701  
6702 \emph on
6703 r
6704 \emph default
6705 .
6706  A left or right bracket can each be an opening or closing bracket.
6707 \end_layout
6708
6709 \begin_layout Standard
6710 In the following table is a comparison of the variants:
6711 \end_layout
6712
6713 \begin_layout Standard
6714 \align center
6715 \begin_inset Tabular
6716 <lyxtabular version="3" rows="5" columns="2">
6717 <features>
6718 <column alignment="center" valignment="middle" width="0">
6719 <column alignment="center" valignment="middle" width="0">
6720 <row>
6721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6722 \begin_inset Text
6723
6724 \begin_layout Plain Layout
6725 Command
6726 \end_layout
6727
6728 \end_inset
6729 </cell>
6730 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6731 \begin_inset Text
6732
6733 \begin_layout Plain Layout
6734 Result
6735 \begin_inset Note Note
6736 status collapsed
6737
6738 \begin_layout Plain Layout
6739
6740 \series bold
6741
6742 \backslash
6743 raisebox
6744 \series default
6745  is only used as spacer.
6746 \end_layout
6747
6748 \end_inset
6749
6750
6751 \end_layout
6752
6753 \end_inset
6754 </cell>
6755 </row>
6756 <row>
6757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6758 \begin_inset Text
6759
6760 \begin_layout Plain Layout
6761
6762 \backslash
6763 Bigm(
6764 \backslash
6765 bigm(
6766 \backslash
6767 ln(3x)
6768 \backslash
6769 bigm)^2
6770 \series bold
6771
6772 \begin_inset ERT
6773 status collapsed
6774
6775 \begin_layout Plain Layout
6776
6777
6778 \backslash
6779 spce 
6780 \end_layout
6781
6782 \end_inset
6783
6784
6785 \series default
6786
6787 \backslash
6788 Bigm)
6789 \end_layout
6790
6791 \end_inset
6792 </cell>
6793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6794 \begin_inset Text
6795
6796 \begin_layout Plain Layout
6797 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6798 \end_inset
6799
6800
6801 \end_layout
6802
6803 \end_inset
6804 </cell>
6805 </row>
6806 <row>
6807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6808 \begin_inset Text
6809
6810 \begin_layout Plain Layout
6811
6812 \backslash
6813 Big(
6814 \backslash
6815 big(
6816 \backslash
6817 ln(3x)
6818 \backslash
6819 big)^2
6820 \series bold
6821
6822 \begin_inset ERT
6823 status collapsed
6824
6825 \begin_layout Plain Layout
6826
6827
6828 \backslash
6829 spce 
6830 \end_layout
6831
6832 \end_inset
6833
6834
6835 \series default
6836
6837 \backslash
6838 Big)
6839 \end_layout
6840
6841 \end_inset
6842 </cell>
6843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6844 \begin_inset Text
6845
6846 \begin_layout Plain Layout
6847 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6848 \end_inset
6849
6850
6851 \end_layout
6852
6853 \end_inset
6854 </cell>
6855 </row>
6856 <row>
6857 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6858 \begin_inset Text
6859
6860 \begin_layout Plain Layout
6861
6862 \backslash
6863 Bigl(
6864 \backslash
6865 bigl(
6866 \backslash
6867 ln(3x)
6868 \backslash
6869 bigr)^2
6870 \series bold
6871
6872 \begin_inset ERT
6873 status collapsed
6874
6875 \begin_layout Plain Layout
6876
6877
6878 \backslash
6879 spce 
6880 \end_layout
6881
6882 \end_inset
6883
6884
6885 \series default
6886
6887 \backslash
6888 Bigr)
6889 \end_layout
6890
6891 \end_inset
6892 </cell>
6893 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6894 \begin_inset Text
6895
6896 \begin_layout Plain Layout
6897 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
6898 \end_inset
6899
6900
6901 \end_layout
6902
6903 \end_inset
6904 </cell>
6905 </row>
6906 <row>
6907 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6908 \begin_inset Text
6909
6910 \begin_layout Plain Layout
6911
6912 \backslash
6913 bigl)
6914 \backslash
6915 ln(3x)
6916 \backslash
6917 bigr(
6918 \end_layout
6919
6920 \end_inset
6921 </cell>
6922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6923 \begin_inset Text
6924
6925 \begin_layout Plain Layout
6926 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
6927 \end_inset
6928
6929
6930 \end_layout
6931
6932 \end_inset
6933 </cell>
6934 </row>
6935 </lyxtabular>
6936
6937 \end_inset
6938
6939
6940 \end_layout
6941
6942 \begin_layout Subsubsection
6943 Automatic Bracket Size
6944 \begin_inset CommandInset label
6945 LatexCommand label
6946 name "sub:Automatic-Bracket-Size"
6947
6948 \end_inset
6949
6950
6951 \begin_inset Index
6952 status collapsed
6953
6954 \begin_layout Plain Layout
6955 Bracket size ! automatic
6956 \end_layout
6957
6958 \end_inset
6959
6960
6961 \end_layout
6962
6963 \begin_layout Standard
6964 Brackets with variable size can be inserted with the commands 
6965 \series bold
6966
6967 \backslash
6968 left
6969 \series default
6970
6971 \begin_inset Index
6972 status collapsed
6973
6974 \begin_layout Plain Layout
6975 Commands ! L ! 
6976 \backslash
6977 left
6978 \end_layout
6979
6980 \end_inset
6981
6982  and 
6983 \series bold
6984
6985 \backslash
6986 right
6987 \series default
6988
6989 \begin_inset Index
6990 status collapsed
6991
6992 \begin_layout Plain Layout
6993 Commands ! R ! 
6994 \backslash
6995 right
6996 \end_layout
6997
6998 \end_inset
6999
7000  or via the math toolbar button 
7001 \begin_inset Graphics
7002         filename ../images/dialog-show_mathdelimiter.png
7003         scale 85
7004
7005 \end_inset
7006
7007 .
7008  Directly behind 
7009 \series bold
7010
7011 \backslash
7012 left
7013 \series default
7014  and 
7015 \series bold
7016
7017 \backslash
7018 right
7019 \series default
7020  the wanted bracket must be inserted.
7021  The bracket size will then automatically be calculated for the output.
7022 \end_layout
7023
7024 \begin_layout Standard
7025 \align center
7026 normal bracket: The command 
7027 \series bold
7028
7029 \backslash
7030 ln(
7031 \backslash
7032 frac
7033 \begin_inset ERT
7034 status collapsed
7035
7036 \begin_layout Plain Layout
7037
7038
7039 \backslash
7040 spce 
7041 \end_layout
7042
7043 \end_inset
7044
7045 A
7046 \begin_inset Formula $\downarrow$
7047 \end_inset
7048
7049 C
7050 \begin_inset ERT
7051 status collapsed
7052
7053 \begin_layout Plain Layout
7054
7055
7056 \backslash
7057 spce 
7058 \end_layout
7059
7060 \end_inset
7061
7062 )
7063 \series default
7064  creates
7065 \begin_inset Formula \[
7066 \ln(\frac{A}{C})\]
7067
7068 \end_inset
7069
7070
7071 \end_layout
7072
7073 \begin_layout Standard
7074 \align center
7075 multiline bracket: The command 
7076 \series bold
7077
7078 \backslash
7079 ln
7080 \backslash
7081 left(
7082 \backslash
7083 frac
7084 \begin_inset ERT
7085 status collapsed
7086
7087 \begin_layout Plain Layout
7088
7089
7090 \backslash
7091 spce 
7092 \end_layout
7093
7094 \end_inset
7095
7096 A
7097 \begin_inset Formula $\downarrow$
7098 \end_inset
7099
7100 C
7101 \begin_inset ERT
7102 status collapsed
7103
7104 \begin_layout Plain Layout
7105
7106
7107 \backslash
7108 spce 
7109 \end_layout
7110
7111 \end_inset
7112
7113
7114 \backslash
7115 right)
7116 \series default
7117  creates
7118 \begin_inset Formula \[
7119 \ln\left(\frac{A}{C}\right)\]
7120
7121 \end_inset
7122
7123
7124 \end_layout
7125
7126 \begin_layout Standard
7127 Instead of 
7128 \series bold
7129
7130 \backslash
7131 left
7132 \series default
7133  and 
7134 \series bold
7135
7136 \backslash
7137 right
7138 \series default
7139  the shortcut 
7140 \family sans
7141 Alt+M
7142 \begin_inset space ~
7143 \end_inset
7144
7145 Bracket
7146 \family default
7147  can be used.
7148  This has the advantage that you can see in LyX immediately the real bracket
7149  size and that the matching right bracket will be created too.
7150 \begin_inset Newline newline
7151 \end_inset
7152
7153 The command for the last example would then be: 
7154 \series bold
7155
7156 \backslash
7157 ln Alt+M
7158 \series default
7159  
7160 \series bold
7161 (
7162 \backslash
7163 frac
7164 \begin_inset ERT
7165 status collapsed
7166
7167 \begin_layout Plain Layout
7168
7169
7170 \backslash
7171 spce 
7172 \end_layout
7173
7174 \end_inset
7175
7176 A
7177 \begin_inset Formula $\downarrow$
7178 \end_inset
7179
7180 C
7181 \end_layout
7182
7183 \begin_layout Standard
7184 To omit a left or right bracket, a dot is inserted for the omitted bracket.
7185  For example the command 
7186 \series bold
7187
7188 \backslash
7189 left.
7190 \backslash
7191 frac
7192 \begin_inset ERT
7193 status collapsed
7194
7195 \begin_layout Plain Layout
7196
7197
7198 \backslash
7199 spce 
7200 \end_layout
7201
7202 \end_inset
7203
7204 A
7205 \begin_inset Formula $\downarrow$
7206 \end_inset
7207
7208 B
7209 \begin_inset ERT
7210 status collapsed
7211
7212 \begin_layout Plain Layout
7213
7214
7215 \backslash
7216 spce 
7217 \end_layout
7218
7219 \end_inset
7220
7221
7222 \backslash
7223 right}
7224 \series default
7225  creates:
7226 \series bold
7227
7228 \begin_inset Formula \[
7229 \left.\frac{A}{B}\right\} \]
7230
7231 \end_inset
7232
7233
7234 \series default
7235 The commands 
7236 \series bold
7237
7238 \backslash
7239 left
7240 \series default
7241  and 
7242 \series bold
7243
7244 \backslash
7245 right
7246 \series default
7247  will be converted by LyX to brackets in the right size when the document
7248  is reloaded and an omitted bracket will appear as dashed line.
7249 \end_layout
7250
7251 \begin_layout Standard
7252 \begin_inset VSpace bigskip
7253 \end_inset
7254
7255 Because all popular LaTeX-Distributions use eTeX, an extension to LaTeX,
7256  the command 
7257 \series bold
7258
7259 \backslash
7260 middle
7261 \series default
7262
7263 \begin_inset Index
7264 status collapsed
7265
7266 \begin_layout Plain Layout
7267 Commands ! M ! 
7268 \backslash
7269 middle
7270 \end_layout
7271
7272 \end_inset
7273
7274  is additionally available for all brackets and limits.
7275  With this command the height of the following character is adapted to the
7276  one of the surrounding brackets, what is e.
7277 \begin_inset space \thinspace{}
7278 \end_inset
7279
7280 g.
7281 \begin_inset space \space{}
7282 \end_inset
7283
7284 needed for physical vectors:
7285 \begin_inset Formula \[
7286 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7287
7288 \end_inset
7289
7290 For physical vectors there is a special LaTeX-package, described in 
7291 \begin_inset CommandInset ref
7292 LatexCommand ref
7293 reference "sub:Physical-Vectors"
7294
7295 \end_inset
7296
7297 .
7298 \end_layout
7299
7300 \begin_layout Subsection
7301 Horizontal Brackets
7302 \begin_inset Index
7303 status collapsed
7304
7305 \begin_layout Plain Layout
7306 Brackets ! horizontal
7307 \end_layout
7308
7309 \end_inset
7310
7311
7312 \end_layout
7313
7314 \begin_layout Standard
7315 \align center
7316 \begin_inset Tabular
7317 <lyxtabular version="3" rows="4" columns="2">
7318 <features>
7319 <column alignment="center" valignment="top" width="0pt">
7320 <column alignment="center" valignment="top" width="0pt">
7321 <row>
7322 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7323 \begin_inset Text
7324
7325 \begin_layout Plain Layout
7326 Command
7327 \begin_inset Note Note
7328 status collapsed
7329
7330 \begin_layout Plain Layout
7331
7332 \series bold
7333
7334 \backslash
7335 raisebox
7336 \series default
7337  is only used as spacer.
7338 \end_layout
7339
7340 \end_inset
7341
7342
7343 \end_layout
7344
7345 \end_inset
7346 </cell>
7347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7348 \begin_inset Text
7349
7350 \begin_layout Plain Layout
7351 Result
7352 \end_layout
7353
7354 \end_inset
7355 </cell>
7356 </row>
7357 <row>
7358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7359 \begin_inset Text
7360
7361 \begin_layout Plain Layout
7362 \begin_inset ERT
7363 status collapsed
7364
7365 \begin_layout Plain Layout
7366
7367
7368 \backslash
7369 raisebox{2.3mm}{
7370 \end_layout
7371
7372 \end_inset
7373
7374
7375 \backslash
7376 overbrace
7377 \begin_inset ERT
7378 status collapsed
7379
7380 \begin_layout Plain Layout
7381
7382
7383 \backslash
7384 spce 
7385 \end_layout
7386
7387 \end_inset
7388
7389 A+B
7390 \begin_inset ERT
7391 status collapsed
7392
7393 \begin_layout Plain Layout
7394
7395
7396 \backslash
7397 spce 
7398 \end_layout
7399
7400 \end_inset
7401
7402 ^
7403 \begin_inset ERT
7404 status collapsed
7405
7406 \begin_layout Plain Layout
7407
7408
7409 \backslash
7410 spce 
7411 \end_layout
7412
7413 \end_inset
7414
7415 3
7416 \begin_inset ERT
7417 status collapsed
7418
7419 \begin_layout Plain Layout
7420
7421 }
7422 \end_layout
7423
7424 \end_inset
7425
7426
7427 \begin_inset Index
7428 status collapsed
7429
7430 \begin_layout Plain Layout
7431 Commands ! O ! 
7432 \backslash
7433 overbrace
7434 \end_layout
7435
7436 \end_inset
7437
7438
7439 \end_layout
7440
7441 \end_inset
7442 </cell>
7443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7444 \begin_inset Text
7445
7446 \begin_layout Plain Layout
7447 \begin_inset Formula $\overbrace{A+B}^{3}$
7448 \end_inset
7449
7450
7451 \end_layout
7452
7453 \end_inset
7454 </cell>
7455 </row>
7456 <row>
7457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7458 \begin_inset Text
7459
7460 \begin_layout Plain Layout
7461 \begin_inset ERT
7462 status collapsed
7463
7464 \begin_layout Plain Layout
7465
7466
7467 \backslash
7468 raisebox{-2.2mm}{
7469 \end_layout
7470
7471 \end_inset
7472
7473
7474 \backslash
7475 underbrace
7476 \begin_inset ERT
7477 status collapsed
7478
7479 \begin_layout Plain Layout
7480
7481
7482 \backslash
7483 spce 
7484 \end_layout
7485
7486 \end_inset
7487
7488 A+B
7489 \begin_inset ERT
7490 status collapsed
7491
7492 \begin_layout Plain Layout
7493
7494
7495 \backslash
7496 spce 
7497 \end_layout
7498
7499 \end_inset
7500
7501 _5
7502 \begin_inset ERT
7503 status collapsed
7504
7505 \begin_layout Plain Layout
7506
7507 }
7508 \end_layout
7509
7510 \end_inset
7511
7512
7513 \begin_inset Index
7514 status collapsed
7515
7516 \begin_layout Plain Layout
7517 Commands ! U ! 
7518 \backslash
7519 underbrace
7520 \end_layout
7521
7522 \end_inset
7523
7524
7525 \end_layout
7526
7527 \end_inset
7528 </cell>
7529 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7530 \begin_inset Text
7531
7532 \begin_layout Plain Layout
7533 \begin_inset Formula $\underbrace{A+B}_{5}$
7534 \end_inset
7535
7536
7537 \end_layout
7538
7539 \end_inset
7540 </cell>
7541 </row>
7542 <row>
7543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7544 \begin_inset Text
7545
7546 \begin_layout Plain Layout
7547
7548 \backslash
7549 overbrace
7550 \begin_inset ERT
7551 status collapsed
7552
7553 \begin_layout Plain Layout
7554
7555
7556 \backslash
7557 spce 
7558 \end_layout
7559
7560 \end_inset
7561
7562
7563 \backslash
7564 underbrace
7565 \begin_inset ERT
7566 status collapsed
7567
7568 \begin_layout Plain Layout
7569
7570
7571 \backslash
7572 spce 
7573 \end_layout
7574
7575 \end_inset
7576
7577 A+B_w
7578 \begin_inset ERT
7579 status collapsed
7580
7581 \begin_layout Plain Layout
7582
7583
7584 \backslash
7585 spce 
7586 \end_layout
7587
7588 \end_inset
7589
7590
7591 \begin_inset ERT
7592 status collapsed
7593
7594 \begin_layout Plain Layout
7595
7596
7597 \backslash
7598 spce 
7599 \end_layout
7600
7601 \end_inset
7602
7603 _7
7604 \begin_inset ERT
7605 status collapsed
7606
7607 \begin_layout Plain Layout
7608
7609
7610 \backslash
7611 spce 
7612 \end_layout
7613
7614 \end_inset
7615
7616
7617 \begin_inset ERT
7618 status collapsed
7619
7620 \begin_layout Plain Layout
7621
7622
7623 \backslash
7624 spce 
7625 \end_layout
7626
7627 \end_inset
7628
7629 ^
7630 \begin_inset ERT
7631 status collapsed
7632
7633 \begin_layout Plain Layout
7634
7635
7636 \backslash
7637 spce 
7638 \end_layout
7639
7640 \end_inset
7641
7642 C
7643 \end_layout
7644
7645 \end_inset
7646 </cell>
7647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7648 \begin_inset Text
7649
7650 \begin_layout Plain Layout
7651 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7652 \end_inset
7653
7654
7655 \end_layout
7656
7657 \end_inset
7658 </cell>
7659 </row>
7660 </lyxtabular>
7661
7662 \end_inset
7663
7664
7665 \end_layout
7666
7667 \begin_layout Standard
7668 In the last example it doesn't matter if 
7669 \series bold
7670
7671 \backslash
7672 overbrace
7673 \series default
7674  or 
7675 \series bold
7676
7677 \backslash
7678 underbrace
7679 \series default
7680  is inserted at first.
7681 \end_layout
7682
7683 \begin_layout Standard
7684 \begin_inset VSpace bigskip
7685 \end_inset
7686
7687 When brackets are needed that overlap each other, multiline formulas, as
7688  described in 
7689 \begin_inset CommandInset ref
7690 LatexCommand ref
7691 reference "sec:Multiline-Formulas"
7692
7693 \end_inset
7694
7695 , must be used:
7696 \begin_inset Formula \begin{eqnarray*}
7697 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7698  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}\end{eqnarray*}
7699
7700 \end_inset
7701
7702 In the first row the formula is inserted together with the first brace.
7703  It is hereby important that the space command
7704 \begin_inset Foot
7705 status collapsed
7706
7707 \begin_layout Plain Layout
7708 Space commands are explained in 
7709 \begin_inset CommandInset ref
7710 LatexCommand ref
7711 reference "sub:Predefined-Space"
7712
7713 \end_inset
7714
7715 .
7716 \end_layout
7717
7718 \end_inset
7719
7720  
7721 \series bold
7722
7723 \backslash
7724 :
7725 \series default
7726  is inserted before the first 
7727 \begin_inset Formula $d$
7728 \end_inset
7729
7730 , because the brace that ends behind the 
7731 \begin_inset Formula $q$
7732 \end_inset
7733
7734  prevents that the following 
7735 \begin_inset Quotes eld
7736 \end_inset
7737
7738 +
7739 \begin_inset Quotes erd
7740 \end_inset
7741
7742  is surrounded by space.
7743 \begin_inset Foot
7744 status collapsed
7745
7746 \begin_layout Plain Layout
7747 because a bracket is not handled as character, see 
7748 \begin_inset CommandInset ref
7749 LatexCommand ref
7750 reference "sub:Binary-Operators"
7751
7752 \end_inset
7753
7754
7755 \end_layout
7756
7757 \end_inset
7758
7759  In the second row the second brace is inserted.
7760  As it should begin before the 
7761 \begin_inset Formula $b$
7762 \end_inset
7763
7764 , first the command 
7765 \series bold
7766
7767 \backslash
7768 hphantom{gggg+
7769 \backslash
7770 :}
7771 \series default
7772  is inserted.
7773 \begin_inset Foot
7774 status collapsed
7775
7776 \begin_layout Plain Layout
7777 more about 
7778 \series bold
7779
7780 \backslash
7781 hphantom
7782 \series default
7783  see 
7784 \begin_inset CommandInset ref
7785 LatexCommand ref
7786 reference "sub:Placeholders"
7787
7788 \end_inset
7789
7790
7791 \end_layout
7792
7793 \end_inset
7794
7795  This space is needed because the 
7796 \begin_inset Quotes eld
7797 \end_inset
7798
7799 +
7800 \begin_inset Quotes erd
7801 \end_inset
7802
7803  is also surrounded by space in the formula.
7804  The brace is placed under the command 
7805 \series bold
7806
7807 \backslash
7808 hphantom{bbqq+dddd}
7809 \series default
7810 .
7811 \end_layout
7812
7813 \begin_layout Standard
7814 It gets more complicated when brackets overlap each other, like in the following
7815  example:
7816 \begin_inset ERT
7817 status collapsed
7818
7819 \begin_layout Plain Layout
7820
7821
7822 \backslash
7823 setlength{
7824 \backslash
7825 jot}{-6pt}
7826 \end_layout
7827
7828 \end_inset
7829
7830
7831 \begin_inset Formula \begin{eqnarray*}
7832  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7833 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\end{eqnarray*}
7834
7835 \end_inset
7836
7837
7838 \begin_inset ERT
7839 status collapsed
7840
7841 \begin_layout Plain Layout
7842
7843
7844 \backslash
7845 setlength{
7846 \backslash
7847 jot}{3pt}
7848 \end_layout
7849
7850 \end_inset
7851
7852 The first formula row is the same as the second row of the previous example,
7853  with the difference that the brace is above.
7854  The second row contains the formula together with the second brace.
7855  To avoid that there is space between the upper brace in the first row and
7856  the formula, the row spacing need to be reduced.
7857  This is not easily possible due to a bug in LyX
7858 \begin_inset Foot
7859 status collapsed
7860
7861 \begin_layout Plain Layout
7862 \begin_inset CommandInset href
7863 LatexCommand href
7864 name "LyX-bug #1505"
7865 target "http://www.lyx.org/trac/ticket/1505"
7866
7867 \end_inset
7868
7869
7870 \end_layout
7871
7872 \end_inset
7873
7874 .
7875  As solution for the problem, the global formula row separation 
7876 \series bold
7877
7878 \backslash
7879 jot
7880 \series default
7881
7882 \begin_inset Index
7883 status collapsed
7884
7885 \begin_layout Plain Layout
7886 Commands ! J ! 
7887 \backslash
7888 jot
7889 \end_layout
7890
7891 \end_inset
7892
7893  must be changed to -6
7894 \begin_inset space \thinspace{}
7895 \end_inset
7896
7897 pt before the formula with the command 
7898 \series bold
7899
7900 \backslash
7901 setlength{
7902 \backslash
7903 jot}{-6pt}
7904 \series default
7905  in TeX-mode.
7906  
7907 \series bold
7908
7909 \backslash
7910 jot
7911 \series default
7912  is set back after the formula to the standard value of 3
7913 \begin_inset space \thinspace{}
7914 \end_inset
7915
7916 pt using the same command.
7917  More about the row separation in formulas is explained in 
7918 \begin_inset CommandInset ref
7919 LatexCommand ref
7920 reference "sub:Line-Separation"
7921
7922 \end_inset
7923
7924 .
7925 \end_layout
7926
7927 \begin_layout Section
7928 Arrows
7929 \begin_inset Index
7930 status collapsed
7931
7932 \begin_layout Plain Layout
7933 Arrows
7934 \end_layout
7935
7936 \end_inset
7937
7938
7939 \end_layout
7940
7941 \begin_layout Standard
7942 Arrows can be inserted via the math toolbar button 
7943 \begin_inset Graphics
7944         filename ../images/math/leftarrow.png
7945         scale 85
7946
7947 \end_inset
7948
7949  or the commands listed in the following subsections.
7950 \end_layout
7951
7952 \begin_layout Standard
7953 \begin_inset Newpage newpage
7954 \end_inset
7955
7956
7957 \end_layout
7958
7959 \begin_layout Subsection
7960 Horizontal Arrows
7961 \begin_inset Index
7962 status collapsed
7963
7964 \begin_layout Plain Layout
7965 Arrows ! horizontal
7966 \end_layout
7967
7968 \end_inset
7969
7970
7971 \end_layout
7972
7973 \begin_layout Standard
7974 \begin_inset space \hfill{}
7975 \end_inset
7976
7977
7978 \begin_inset Tabular
7979 <lyxtabular version="3" rows="8" columns="2">
7980 <features>
7981 <column alignment="center" valignment="top" width="0pt">
7982 <column alignment="center" valignment="top" width="0pt">
7983 <row>
7984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7985 \begin_inset Text
7986
7987 \begin_layout Plain Layout
7988 Command
7989 \end_layout
7990
7991 \end_inset
7992 </cell>
7993 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7994 \begin_inset Text
7995
7996 \begin_layout Plain Layout
7997 Result
7998 \end_layout
7999
8000 \end_inset
8001 </cell>
8002 </row>
8003 <row>
8004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8005 \begin_inset Text
8006
8007 \begin_layout Plain Layout
8008
8009 \backslash
8010 gets
8011 \end_layout
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 \begin_layout Plain Layout
8019 \begin_inset Formula $\gets$
8020 \end_inset
8021
8022
8023 \end_layout
8024
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 \begin_layout Plain Layout
8033
8034 \backslash
8035 Leftarrow
8036 \end_layout
8037
8038 \end_inset
8039 </cell>
8040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8041 \begin_inset Text
8042
8043 \begin_layout Plain Layout
8044 \begin_inset Formula $\Leftarrow$
8045 \end_inset
8046
8047
8048 \end_layout
8049
8050 \end_inset
8051 </cell>
8052 </row>
8053 <row>
8054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8055 \begin_inset Text
8056
8057 \begin_layout Plain Layout
8058
8059 \backslash
8060 longleftarrow
8061 \end_layout
8062
8063 \end_inset
8064 </cell>
8065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8066 \begin_inset Text
8067
8068 \begin_layout Plain Layout
8069 \begin_inset Formula $\longleftarrow$
8070 \end_inset
8071
8072
8073 \end_layout
8074
8075 \end_inset
8076 </cell>
8077 </row>
8078 <row>
8079 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8080 \begin_inset Text
8081
8082 \begin_layout Plain Layout
8083
8084 \backslash
8085 Longleftarrow
8086 \end_layout
8087
8088 \end_inset
8089 </cell>
8090 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8091 \begin_inset Text
8092
8093 \begin_layout Plain Layout
8094 \begin_inset Formula $\Longleftarrow$
8095 \end_inset
8096
8097
8098 \end_layout
8099
8100 \end_inset
8101 </cell>
8102 </row>
8103 <row>
8104 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8105 \begin_inset Text
8106
8107 \begin_layout Plain Layout
8108
8109 \backslash
8110 leftharpoonup
8111 \end_layout
8112
8113 \end_inset
8114 </cell>
8115 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8116 \begin_inset Text
8117
8118 \begin_layout Plain Layout
8119 \begin_inset Formula $\leftharpoonup$
8120 \end_inset
8121
8122
8123 \end_layout
8124
8125 \end_inset
8126 </cell>
8127 </row>
8128 <row>
8129 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8130 \begin_inset Text
8131
8132 \begin_layout Plain Layout
8133
8134 \backslash
8135 leftharpoondown
8136 \end_layout
8137
8138 \end_inset
8139 </cell>
8140 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8141 \begin_inset Text
8142
8143 \begin_layout Plain Layout
8144 \begin_inset Formula $\leftharpoondown$
8145 \end_inset
8146
8147
8148 \end_layout
8149
8150 \end_inset
8151 </cell>
8152 </row>
8153 <row>
8154 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8155 \begin_inset Text
8156
8157 \begin_layout Plain Layout
8158
8159 \backslash
8160 hookleftarrow
8161 \end_layout
8162
8163 \end_inset
8164 </cell>
8165 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8166 \begin_inset Text
8167
8168 \begin_layout Plain Layout
8169 \begin_inset Formula $\hookleftarrow$
8170 \end_inset
8171
8172
8173 \end_layout
8174
8175 \end_inset
8176 </cell>
8177 </row>
8178 </lyxtabular>
8179
8180 \end_inset
8181
8182
8183 \begin_inset space \hfill{}
8184 \end_inset
8185
8186
8187 \begin_inset Tabular
8188 <lyxtabular version="3" rows="8" columns="2">
8189 <features>
8190 <column alignment="center" valignment="top" width="0pt">
8191 <column alignment="center" valignment="top" width="0pt">
8192 <row>
8193 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8194 \begin_inset Text
8195
8196 \begin_layout Plain Layout
8197 Command
8198 \end_layout
8199
8200 \end_inset
8201 </cell>
8202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8203 \begin_inset Text
8204
8205 \begin_layout Plain Layout
8206 Result
8207 \end_layout
8208
8209 \end_inset
8210 </cell>
8211 </row>
8212 <row>
8213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8214 \begin_inset Text
8215
8216 \begin_layout Plain Layout
8217
8218 \backslash
8219 to
8220 \end_layout
8221
8222 \end_inset
8223 </cell>
8224 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8225 \begin_inset Text
8226
8227 \begin_layout Plain Layout
8228 \begin_inset Formula $\to$
8229 \end_inset
8230
8231
8232 \end_layout
8233
8234 \end_inset
8235 </cell>
8236 </row>
8237 <row>
8238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8239 \begin_inset Text
8240
8241 \begin_layout Plain Layout
8242
8243 \backslash
8244 Rightarrow
8245 \end_layout
8246
8247 \end_inset
8248 </cell>
8249 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8250 \begin_inset Text
8251
8252 \begin_layout Plain Layout
8253 \begin_inset Formula $\Rightarrow$
8254 \end_inset
8255
8256
8257 \end_layout
8258
8259 \end_inset
8260 </cell>
8261 </row>
8262 <row>
8263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8264 \begin_inset Text
8265
8266 \begin_layout Plain Layout
8267
8268 \backslash
8269 longrightarrow
8270 \end_layout
8271
8272 \end_inset
8273 </cell>
8274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8275 \begin_inset Text
8276
8277 \begin_layout Plain Layout
8278 \begin_inset Formula $\longrightarrow$
8279 \end_inset
8280
8281
8282 \end_layout
8283
8284 \end_inset
8285 </cell>
8286 </row>
8287 <row>
8288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8289 \begin_inset Text
8290
8291 \begin_layout Plain Layout
8292
8293 \backslash
8294 Longrightarrow
8295 \end_layout
8296
8297 \end_inset
8298 </cell>
8299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8300 \begin_inset Text
8301
8302 \begin_layout Plain Layout
8303 \begin_inset Formula $\Longrightarrow$
8304 \end_inset
8305
8306
8307 \end_layout
8308
8309 \end_inset
8310 </cell>
8311 </row>
8312 <row>
8313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8314 \begin_inset Text
8315
8316 \begin_layout Plain Layout
8317
8318 \backslash
8319 rightharpoonup
8320 \end_layout
8321
8322 \end_inset
8323 </cell>
8324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8325 \begin_inset Text
8326
8327 \begin_layout Plain Layout
8328 \begin_inset Formula $\rightharpoonup$
8329 \end_inset
8330
8331
8332 \end_layout
8333
8334 \end_inset
8335 </cell>
8336 </row>
8337 <row>
8338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8339 \begin_inset Text
8340
8341 \begin_layout Plain Layout
8342
8343 \backslash
8344 rightharpoondown
8345 \end_layout
8346
8347 \end_inset
8348 </cell>
8349 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8350 \begin_inset Text
8351
8352 \begin_layout Plain Layout
8353 \begin_inset Formula $\rightharpoondown$
8354 \end_inset
8355
8356
8357 \end_layout
8358
8359 \end_inset
8360 </cell>
8361 </row>
8362 <row>
8363 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8364 \begin_inset Text
8365
8366 \begin_layout Plain Layout
8367
8368 \backslash
8369 hookrightarrow
8370 \end_layout
8371
8372 \end_inset
8373 </cell>
8374 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8375 \begin_inset Text
8376
8377 \begin_layout Plain Layout
8378 \begin_inset Formula $\hookrightarrow$
8379 \end_inset
8380
8381
8382 \end_layout
8383
8384 \end_inset
8385 </cell>
8386 </row>
8387 </lyxtabular>
8388
8389 \end_inset
8390
8391
8392 \begin_inset space \hfill{}
8393 \end_inset
8394
8395
8396 \end_layout
8397
8398 \begin_layout Standard
8399 \begin_inset space \hfill{}
8400 \end_inset
8401
8402
8403 \begin_inset Tabular
8404 <lyxtabular version="3" rows="6" columns="2">
8405 <features>
8406 <column alignment="center" valignment="top" width="0pt">
8407 <column alignment="center" valignment="top" width="0pt">
8408 <row>
8409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8410 \begin_inset Text
8411
8412 \begin_layout Plain Layout
8413 Command
8414 \end_layout
8415
8416 \end_inset
8417 </cell>
8418 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8419 \begin_inset Text
8420
8421 \begin_layout Plain Layout
8422 Result
8423 \end_layout
8424
8425 \end_inset
8426 </cell>
8427 </row>
8428 <row>
8429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8430 \begin_inset Text
8431
8432 \begin_layout Plain Layout
8433
8434 \backslash
8435 leftrightarrow
8436 \end_layout
8437
8438 \end_inset
8439 </cell>
8440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8441 \begin_inset Text
8442
8443 \begin_layout Plain Layout
8444 \begin_inset Formula $\leftrightarrow$
8445 \end_inset
8446
8447
8448 \end_layout
8449
8450 \end_inset
8451 </cell>
8452 </row>
8453 <row>
8454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8455 \begin_inset Text
8456
8457 \begin_layout Plain Layout
8458
8459 \backslash
8460 Leftrightarrow
8461 \end_layout
8462
8463 \end_inset
8464 </cell>
8465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8466 \begin_inset Text
8467
8468 \begin_layout Plain Layout
8469 \begin_inset Formula $\Leftrightarrow$
8470 \end_inset
8471
8472
8473 \end_layout
8474
8475 \end_inset
8476 </cell>
8477 </row>
8478 <row>
8479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8480 \begin_inset Text
8481
8482 \begin_layout Plain Layout
8483
8484 \backslash
8485 longleftrightarrow
8486 \end_layout
8487
8488 \end_inset
8489 </cell>
8490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8491 \begin_inset Text
8492
8493 \begin_layout Plain Layout
8494 \begin_inset Formula $\longleftrightarrow$
8495 \end_inset
8496
8497
8498 \end_layout
8499
8500 \end_inset
8501 </cell>
8502 </row>
8503 <row>
8504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8505 \begin_inset Text
8506
8507 \begin_layout Plain Layout
8508
8509 \backslash
8510 Longleftrightarrow
8511 \end_layout
8512
8513 \end_inset
8514 </cell>
8515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8516 \begin_inset Text
8517
8518 \begin_layout Plain Layout
8519 \begin_inset Formula $\Longleftrightarrow$
8520 \end_inset
8521
8522
8523 \end_layout
8524
8525 \end_inset
8526 </cell>
8527 </row>
8528 <row>
8529 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8530 \begin_inset Text
8531
8532 \begin_layout Plain Layout
8533
8534 \backslash
8535 rightleftharpoons
8536 \end_layout
8537
8538 \end_inset
8539 </cell>
8540 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8541 \begin_inset Text
8542
8543 \begin_layout Plain Layout
8544 \begin_inset Formula $\rightleftharpoons$
8545 \end_inset
8546
8547
8548 \end_layout
8549
8550 \end_inset
8551 </cell>
8552 </row>
8553 </lyxtabular>
8554
8555 \end_inset
8556
8557
8558 \begin_inset space \hspace{}
8559 \length 25pt
8560 \end_inset
8561
8562
8563 \begin_inset space \hfill{}
8564 \end_inset
8565
8566
8567 \begin_inset Tabular
8568 <lyxtabular version="3" rows="5" columns="2">
8569 <features>
8570 <column alignment="center" valignment="top" width="0pt">
8571 <column alignment="center" valignment="top" width="0pt">
8572 <row>
8573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8574 \begin_inset Text
8575
8576 \begin_layout Plain Layout
8577 Command
8578 \end_layout
8579
8580 \end_inset
8581 </cell>
8582 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8583 \begin_inset Text
8584
8585 \begin_layout Plain Layout
8586 Result
8587 \end_layout
8588
8589 \end_inset
8590 </cell>
8591 </row>
8592 <row>
8593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8594 \begin_inset Text
8595
8596 \begin_layout Plain Layout
8597
8598 \backslash
8599 mapsto
8600 \end_layout
8601
8602 \end_inset
8603 </cell>
8604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8605 \begin_inset Text
8606
8607 \begin_layout Plain Layout
8608 \begin_inset Formula $\mapsto$
8609 \end_inset
8610
8611
8612 \end_layout
8613
8614 \end_inset
8615 </cell>
8616 </row>
8617 <row>
8618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8619 \begin_inset Text
8620
8621 \begin_layout Plain Layout
8622
8623 \backslash
8624 longmapsto
8625 \end_layout
8626
8627 \end_inset
8628 </cell>
8629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8630 \begin_inset Text
8631
8632 \begin_layout Plain Layout
8633 \begin_inset Formula $\longmapsto$
8634 \end_inset
8635
8636
8637 \end_layout
8638
8639 \end_inset
8640 </cell>
8641 </row>
8642 <row>
8643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8644 \begin_inset Text
8645
8646 \begin_layout Plain Layout
8647
8648 \backslash
8649 leadsto
8650 \end_layout
8651
8652 \end_inset
8653 </cell>
8654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8655 \begin_inset Text
8656
8657 \begin_layout Plain Layout
8658 \begin_inset Formula $\leadsto$
8659 \end_inset
8660
8661
8662 \end_layout
8663
8664 \end_inset
8665 </cell>
8666 </row>
8667 <row>
8668 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8669 \begin_inset Text
8670
8671 \begin_layout Plain Layout
8672
8673 \backslash
8674 dasharrow
8675 \end_layout
8676
8677 \end_inset
8678 </cell>
8679 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8680 \begin_inset Text
8681
8682 \begin_layout Plain Layout
8683 \begin_inset Formula $\dasharrow$
8684 \end_inset
8685
8686
8687 \end_layout
8688
8689 \end_inset
8690 </cell>
8691 </row>
8692 </lyxtabular>
8693
8694 \end_inset
8695
8696
8697 \begin_inset space \hfill{}
8698 \end_inset
8699
8700
8701 \end_layout
8702
8703 \begin_layout Standard
8704 \begin_inset VSpace medskip
8705 \end_inset
8706
8707 Arrows used as accent like e.
8708 \begin_inset space \thinspace{}
8709 \end_inset
8710
8711 g.
8712 \begin_inset space \space{}
8713 \end_inset
8714
8715 vector arrows are listed in 
8716 \begin_inset CommandInset ref
8717 LatexCommand ref
8718 reference "sec:Accents"
8719
8720 \end_inset
8721
8722 .
8723 \end_layout
8724
8725 \begin_layout Standard
8726 \begin_inset VSpace bigskip
8727 \end_inset
8728
8729 Furthermore there are the labeled arrows
8730 \begin_inset Index
8731 status collapsed
8732
8733 \begin_layout Plain Layout
8734 Arrows ! labeled
8735 \end_layout
8736
8737 \end_inset
8738
8739  
8740 \series bold
8741
8742 \backslash
8743 xleftarrow
8744 \series default
8745
8746 \begin_inset Index
8747 status collapsed
8748
8749 \begin_layout Plain Layout
8750 Commands ! X ! 
8751 \backslash
8752 xleftarrow
8753 \end_layout
8754
8755 \end_inset
8756
8757  and 
8758 \series bold
8759
8760 \backslash
8761 xrightarrow
8762 \series default
8763
8764 \begin_inset Index
8765 status collapsed
8766
8767 \begin_layout Plain Layout
8768 Commands ! X ! 
8769 \backslash
8770 xrightarrow
8771 \begin_inset ERT
8772 status collapsed
8773
8774 \begin_layout Plain Layout
8775
8776
8777 \backslash
8778 vspace{4mm}
8779 \end_layout
8780
8781 \end_inset
8782
8783
8784 \end_layout
8785
8786 \end_inset
8787
8788 .
8789  When inserting one of these commands in a formula, an arrow with two blue
8790  boxes appear where the label can be inserted.
8791  The length of the arrow adapts to the label width.
8792 \end_layout
8793
8794 \begin_layout Standard
8795 \align center
8796 \begin_inset Tabular
8797 <lyxtabular version="3" rows="3" columns="2">
8798 <features>
8799 <column alignment="center" valignment="top" width="0pt">
8800 <column alignment="center" valignment="top" width="0pt">
8801 <row>
8802 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8803 \begin_inset Text
8804
8805 \begin_layout Plain Layout
8806 Command
8807 \end_layout
8808
8809 \end_inset
8810 </cell>
8811 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8812 \begin_inset Text
8813
8814 \begin_layout Plain Layout
8815 Result
8816 \begin_inset Note Note
8817 status collapsed
8818
8819 \begin_layout Plain Layout
8820
8821 \series bold
8822
8823 \backslash
8824 raisebox
8825 \series default
8826  is only used as spacer.
8827 \end_layout
8828
8829 \end_inset
8830
8831
8832 \end_layout
8833
8834 \end_inset
8835 </cell>
8836 </row>
8837 <row>
8838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8839 \begin_inset Text
8840
8841 \begin_layout Plain Layout
8842 F(a)
8843 \backslash
8844 xleftarrow
8845 \begin_inset ERT
8846 status collapsed
8847
8848 \begin_layout Plain Layout
8849
8850
8851 \backslash
8852 spce 
8853 \end_layout
8854
8855 \end_inset
8856
8857 x=a
8858 \begin_inset Formula $\downarrow$
8859 \end_inset
8860
8861 x>0
8862 \begin_inset Formula $\to$
8863 \end_inset
8864
8865 F(x)
8866 \end_layout
8867
8868 \end_inset
8869 </cell>
8870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8871 \begin_inset Text
8872
8873 \begin_layout Plain Layout
8874 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
8875 \end_inset
8876
8877
8878 \end_layout
8879
8880 \end_inset
8881 </cell>
8882 </row>
8883 <row>
8884 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8885 \begin_inset Text
8886
8887 \begin_layout Plain Layout
8888 F(x)
8889 \backslash
8890 xrightarrow
8891 \begin_inset ERT
8892 status collapsed
8893
8894 \begin_layout Plain Layout
8895
8896
8897 \backslash
8898 spce 
8899 \end_layout
8900
8901 \end_inset
8902
8903 x=a
8904 \begin_inset Formula $\downarrow$
8905 \end_inset
8906
8907 x>0
8908 \begin_inset Formula $\to$
8909 \end_inset
8910
8911 F(a)
8912 \end_layout
8913
8914 \end_inset
8915 </cell>
8916 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8917 \begin_inset Text
8918
8919 \begin_layout Plain Layout
8920 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
8921 \end_inset
8922
8923
8924 \end_layout
8925
8926 \end_inset
8927 </cell>
8928 </row>
8929 </lyxtabular>
8930
8931 \end_inset
8932
8933
8934 \end_layout
8935
8936 \begin_layout Subsection
8937 Vertical and diagonal Arrows
8938 \begin_inset Index
8939 status collapsed
8940
8941 \begin_layout Plain Layout
8942 Arrows ! diagonal
8943 \end_layout
8944
8945 \end_inset
8946
8947
8948 \begin_inset Index
8949 status collapsed
8950
8951 \begin_layout Plain Layout
8952 Arrows ! vertical
8953 \end_layout
8954
8955 \end_inset
8956
8957
8958 \end_layout
8959
8960 \begin_layout Standard
8961 \begin_inset space \hfill{}
8962 \end_inset
8963
8964
8965 \begin_inset Tabular
8966 <lyxtabular version="3" rows="7" columns="2">
8967 <features>
8968 <column alignment="center" valignment="top" width="0pt">
8969 <column alignment="center" valignment="top" width="0pt">
8970 <row>
8971 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8972 \begin_inset Text
8973
8974 \begin_layout Plain Layout
8975 Command
8976 \end_layout
8977
8978 \end_inset
8979 </cell>
8980 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8981 \begin_inset Text
8982
8983 \begin_layout Plain Layout
8984 Result
8985 \end_layout
8986
8987 \end_inset
8988 </cell>
8989 </row>
8990 <row>
8991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8992 \begin_inset Text
8993
8994 \begin_layout Plain Layout
8995
8996 \backslash
8997 uparrow
8998 \end_layout
8999
9000 \end_inset
9001 </cell>
9002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9003 \begin_inset Text
9004
9005 \begin_layout Plain Layout
9006 \begin_inset Formula $\uparrow$
9007 \end_inset
9008
9009
9010 \end_layout
9011
9012 \end_inset
9013 </cell>
9014 </row>
9015 <row>
9016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9017 \begin_inset Text
9018
9019 \begin_layout Plain Layout
9020
9021 \backslash
9022 Uparrow
9023 \end_layout
9024
9025 \end_inset
9026 </cell>
9027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9028 \begin_inset Text
9029
9030 \begin_layout Plain Layout
9031 \begin_inset Formula $\Uparrow$
9032 \end_inset
9033
9034
9035 \end_layout
9036
9037 \end_inset
9038 </cell>
9039 </row>
9040 <row>
9041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9042 \begin_inset Text
9043
9044 \begin_layout Plain Layout
9045
9046 \backslash
9047 updownarrow
9048 \end_layout
9049
9050 \end_inset
9051 </cell>
9052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9053 \begin_inset Text
9054
9055 \begin_layout Plain Layout
9056 \begin_inset Formula $\updownarrow$
9057 \end_inset
9058
9059
9060 \end_layout
9061
9062 \end_inset
9063 </cell>
9064 </row>
9065 <row>
9066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9067 \begin_inset Text
9068
9069 \begin_layout Plain Layout
9070
9071 \backslash
9072 Updownarrow
9073 \end_layout
9074
9075 \end_inset
9076 </cell>
9077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9078 \begin_inset Text
9079
9080 \begin_layout Plain Layout
9081 \begin_inset Formula $\Updownarrow$
9082 \end_inset
9083
9084
9085 \end_layout
9086
9087 \end_inset
9088 </cell>
9089 </row>
9090 <row>
9091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9092 \begin_inset Text
9093
9094 \begin_layout Plain Layout
9095
9096 \backslash
9097 Downarrow
9098 \end_layout
9099
9100 \end_inset
9101 </cell>
9102 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9103 \begin_inset Text
9104
9105 \begin_layout Plain Layout
9106 \begin_inset Formula $\Downarrow$
9107 \end_inset
9108
9109
9110 \end_layout
9111
9112 \end_inset
9113 </cell>
9114 </row>
9115 <row>
9116 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9117 \begin_inset Text
9118
9119 \begin_layout Plain Layout
9120
9121 \backslash
9122 downarrow
9123 \end_layout
9124
9125 \end_inset
9126 </cell>
9127 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9128 \begin_inset Text
9129
9130 \begin_layout Plain Layout
9131 \begin_inset Formula $\downarrow$
9132 \end_inset
9133
9134
9135 \end_layout
9136
9137 \end_inset
9138 </cell>
9139 </row>
9140 </lyxtabular>
9141
9142 \end_inset
9143
9144
9145 \begin_inset space \hfill{}
9146 \end_inset
9147
9148
9149 \begin_inset Tabular
9150 <lyxtabular version="3" rows="5" columns="2">
9151 <features>
9152 <column alignment="center" valignment="top" width="0pt">
9153 <column alignment="center" valignment="top" width="0pt">
9154 <row>
9155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9156 \begin_inset Text
9157
9158 \begin_layout Plain Layout
9159 Command
9160 \end_layout
9161
9162 \end_inset
9163 </cell>
9164 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9165 \begin_inset Text
9166
9167 \begin_layout Plain Layout
9168 Result
9169 \end_layout
9170
9171 \end_inset
9172 </cell>
9173 </row>
9174 <row>
9175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9176 \begin_inset Text
9177
9178 \begin_layout Plain Layout
9179
9180 \backslash
9181 nearrow
9182 \end_layout
9183
9184 \end_inset
9185 </cell>
9186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9187 \begin_inset Text
9188
9189 \begin_layout Plain Layout
9190 \begin_inset Formula $\nearrow$
9191 \end_inset
9192
9193
9194 \end_layout
9195
9196 \end_inset
9197 </cell>
9198 </row>
9199 <row>
9200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9201 \begin_inset Text
9202
9203 \begin_layout Plain Layout
9204
9205 \backslash
9206 searrow
9207 \end_layout
9208
9209 \end_inset
9210 </cell>
9211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9212 \begin_inset Text
9213
9214 \begin_layout Plain Layout
9215 \begin_inset Formula $\searrow$
9216 \end_inset
9217
9218
9219 \end_layout
9220
9221 \end_inset
9222 </cell>
9223 </row>
9224 <row>
9225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9226 \begin_inset Text
9227
9228 \begin_layout Plain Layout
9229
9230 \backslash
9231 swarrow
9232 \end_layout
9233
9234 \end_inset
9235 </cell>
9236 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9237 \begin_inset Text
9238
9239 \begin_layout Plain Layout
9240 \begin_inset Formula $\swarrow$
9241 \end_inset
9242
9243
9244 \end_layout
9245
9246 \end_inset
9247 </cell>
9248 </row>
9249 <row>
9250 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9251 \begin_inset Text
9252
9253 \begin_layout Plain Layout
9254
9255 \backslash
9256 nwarrow
9257 \end_layout
9258
9259 \end_inset
9260 </cell>
9261 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9262 \begin_inset Text
9263
9264 \begin_layout Plain Layout
9265 \begin_inset Formula $\nwarrow$
9266 \end_inset
9267
9268
9269 \end_layout
9270
9271 \end_inset
9272 </cell>
9273 </row>
9274 </lyxtabular>
9275
9276 \end_inset
9277
9278
9279 \begin_inset space \hfill{}
9280 \end_inset
9281
9282
9283 \end_layout
9284
9285 \begin_layout Standard
9286 \begin_inset VSpace medskip
9287 \end_inset
9288
9289 Vertical arrows can be used also as delimiter together with the commands
9290  described in 
9291 \begin_inset CommandInset ref
9292 LatexCommand ref
9293 reference "sub:Manual-Bracket-Size"
9294
9295 \end_inset
9296
9297  and 
9298 \begin_inset CommandInset ref
9299 LatexCommand ref
9300 reference "sub:Automatic-Bracket-Size"
9301
9302 \end_inset
9303
9304 .
9305 \end_layout
9306
9307 \begin_layout Standard
9308 \begin_inset Newpage newpage
9309 \end_inset
9310
9311
9312 \end_layout
9313
9314 \begin_layout Section
9315 Accents
9316 \begin_inset CommandInset label
9317 LatexCommand label
9318 name "sec:Accents"
9319
9320 \end_inset
9321
9322
9323 \begin_inset Index
9324 status collapsed
9325
9326 \begin_layout Plain Layout
9327 Accents
9328 \end_layout
9329
9330 \end_inset
9331
9332
9333 \end_layout
9334
9335 \begin_layout Standard
9336 Accents can be inserted via the math toolbar button 
9337 \begin_inset Graphics
9338         filename ../images/math/hat.png
9339         scale 85
9340
9341 \end_inset
9342
9343  or the commands listed in the following subsections.
9344 \end_layout
9345
9346 \begin_layout Subsection
9347 Accents for one Character
9348 \begin_inset ERT
9349 status collapsed
9350
9351 \begin_layout Plain Layout
9352
9353
9354 \backslash
9355 texorpdfstring{
9356 \end_layout
9357
9358 \end_inset
9359
9360
9361 \begin_inset Foot
9362 status collapsed
9363
9364 \begin_layout Plain Layout
9365 accents in text see 
9366 \begin_inset CommandInset ref
9367 LatexCommand ref
9368 reference "sub:Accents-in-Text"
9369
9370 \end_inset
9371
9372
9373 \end_layout
9374
9375 \end_inset
9376
9377
9378 \begin_inset ERT
9379 status collapsed
9380
9381 \begin_layout Plain Layout
9382
9383 }{}
9384 \end_layout
9385
9386 \end_inset
9387
9388
9389 \begin_inset Note Note
9390 status collapsed
9391
9392 \begin_layout Plain Layout
9393
9394 \backslash
9395 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
9396 \end_layout
9397
9398 \begin_layout Plain Layout
9399 More about 
9400 \backslash
9401 texorpdfstring is in section 
9402 \begin_inset CommandInset ref
9403 LatexCommand ref
9404 reference "sub:Formulas-in-Section"
9405
9406 \end_inset
9407
9408 .
9409 \end_layout
9410
9411 \end_inset
9412
9413
9414 \begin_inset CommandInset label
9415 LatexCommand label
9416 name "sub:Accents-for-one"
9417
9418 \end_inset
9419
9420
9421 \begin_inset Index
9422 status collapsed
9423
9424 \begin_layout Plain Layout
9425 Accents ! for one character
9426 \end_layout
9427
9428 \end_inset
9429
9430
9431 \end_layout
9432
9433 \begin_layout Standard
9434 \begin_inset space \hfill{}
9435 \end_inset
9436
9437
9438 \begin_inset Tabular
9439 <lyxtabular version="3" rows="8" columns="2">
9440 <features>
9441 <column alignment="center" valignment="top" width="0pt">
9442 <column alignment="center" valignment="top" width="0pt">
9443 <row>
9444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9445 \begin_inset Text
9446
9447 \begin_layout Plain Layout
9448 Command
9449 \end_layout
9450
9451 \end_inset
9452 </cell>
9453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9454 \begin_inset Text
9455
9456 \begin_layout Plain Layout
9457 Result
9458 \begin_inset Note Note
9459 status collapsed
9460
9461 \begin_layout Plain Layout
9462
9463 \series bold
9464
9465 \backslash
9466 raisebox
9467 \series default
9468  is only used as spacer.
9469 \end_layout
9470
9471 \end_inset
9472
9473
9474 \end_layout
9475
9476 \end_inset
9477 </cell>
9478 </row>
9479 <row>
9480 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9481 \begin_inset Text
9482
9483 \begin_layout Plain Layout
9484
9485 \backslash
9486 dot
9487 \begin_inset ERT
9488 status collapsed
9489
9490 \begin_layout Plain Layout
9491
9492
9493 \backslash
9494 spce 
9495 \end_layout
9496
9497 \end_inset
9498
9499 A
9500 \end_layout
9501
9502 \end_inset
9503 </cell>
9504 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9505 \begin_inset Text
9506
9507 \begin_layout Plain Layout
9508 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9509 \end_inset
9510
9511
9512 \end_layout
9513
9514 \end_inset
9515 </cell>
9516 </row>
9517 <row>
9518 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9519 \begin_inset Text
9520
9521 \begin_layout Plain Layout
9522
9523 \backslash
9524 ddot
9525 \begin_inset ERT
9526 status collapsed
9527
9528 \begin_layout Plain Layout
9529
9530
9531 \backslash
9532 spce 
9533 \end_layout
9534
9535 \end_inset
9536
9537 A
9538 \end_layout
9539
9540 \end_inset
9541 </cell>
9542 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9543 \begin_inset Text
9544
9545 \begin_layout Plain Layout
9546 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9547 \end_inset
9548
9549
9550 \end_layout
9551
9552 \end_inset
9553 </cell>
9554 </row>
9555 <row>
9556 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9557 \begin_inset Text
9558
9559 \begin_layout Plain Layout
9560
9561 \backslash
9562 dddot
9563 \begin_inset ERT
9564 status collapsed
9565
9566 \begin_layout Plain Layout
9567
9568
9569 \backslash
9570 spce 
9571 \end_layout
9572
9573 \end_inset
9574
9575 A
9576 \end_layout
9577
9578 \end_inset
9579 </cell>
9580 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9581 \begin_inset Text
9582
9583 \begin_layout Plain Layout
9584 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9585 \end_inset
9586
9587
9588 \end_layout
9589
9590 \end_inset
9591 </cell>
9592 </row>
9593 <row>
9594 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9595 \begin_inset Text
9596
9597 \begin_layout Plain Layout
9598
9599 \backslash
9600 ddddot
9601 \begin_inset ERT
9602 status collapsed
9603
9604 \begin_layout Plain Layout
9605
9606
9607 \backslash
9608 spce 
9609 \end_layout
9610
9611 \end_inset
9612
9613 A
9614 \end_layout
9615
9616 \end_inset
9617 </cell>
9618 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9619 \begin_inset Text
9620
9621 \begin_layout Plain Layout
9622 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9623 \end_inset
9624
9625
9626 \end_layout
9627
9628 \end_inset
9629 </cell>
9630 </row>
9631 <row>
9632 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9633 \begin_inset Text
9634
9635 \begin_layout Plain Layout
9636
9637 \backslash
9638 vec
9639 \begin_inset ERT
9640 status collapsed
9641
9642 \begin_layout Plain Layout
9643
9644
9645 \backslash
9646 spce 
9647 \end_layout
9648
9649 \end_inset
9650
9651 A
9652 \begin_inset Index
9653 status collapsed
9654
9655 \begin_layout Plain Layout
9656 Vectors
9657 \end_layout
9658
9659 \end_inset
9660
9661
9662 \end_layout
9663
9664 \end_inset
9665 </cell>
9666 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9667 \begin_inset Text
9668
9669 \begin_layout Plain Layout
9670 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9671 \end_inset
9672
9673
9674 \end_layout
9675
9676 \end_inset
9677 </cell>
9678 </row>
9679 <row>
9680 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9681 \begin_inset Text
9682
9683 \begin_layout Plain Layout
9684
9685 \backslash
9686 bar
9687 \begin_inset ERT
9688 status collapsed
9689
9690 \begin_layout Plain Layout
9691
9692
9693 \backslash
9694 spce 
9695 \end_layout
9696
9697 \end_inset
9698
9699 A
9700 \end_layout
9701
9702 \end_inset
9703 </cell>
9704 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9705 \begin_inset Text
9706
9707 \begin_layout Plain Layout
9708 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9709 \end_inset
9710
9711
9712 \end_layout
9713
9714 \end_inset
9715 </cell>
9716 </row>
9717 <row>
9718 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9719 \begin_inset Text
9720
9721 \begin_layout Plain Layout
9722
9723 \backslash
9724 mathring
9725 \begin_inset ERT
9726 status collapsed
9727
9728 \begin_layout Plain Layout
9729
9730
9731 \backslash
9732 spce 
9733 \end_layout
9734
9735 \end_inset
9736
9737 A
9738 \end_layout
9739
9740 \end_inset
9741 </cell>
9742 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9743 \begin_inset Text
9744
9745 \begin_layout Plain Layout
9746 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9747 \end_inset
9748
9749
9750 \end_layout
9751
9752 \end_inset
9753 </cell>
9754 </row>
9755 </lyxtabular>
9756
9757 \end_inset
9758
9759
9760 \begin_inset space \hfill{}
9761 \end_inset
9762
9763
9764 \begin_inset Tabular
9765 <lyxtabular version="3" rows="7" columns="2">
9766 <features>
9767 <column alignment="center" valignment="top" width="0pt">
9768 <column alignment="center" valignment="top" width="0pt">
9769 <row>
9770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9771 \begin_inset Text
9772
9773 \begin_layout Plain Layout
9774 Command
9775 \end_layout
9776
9777 \end_inset
9778 </cell>
9779 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9780 \begin_inset Text
9781
9782 \begin_layout Plain Layout
9783 Result
9784 \end_layout
9785
9786 \end_inset
9787 </cell>
9788 </row>
9789 <row>
9790 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9791 \begin_inset Text
9792
9793 \begin_layout Plain Layout
9794
9795 \backslash
9796 tilde
9797 \begin_inset ERT
9798 status collapsed
9799
9800 \begin_layout Plain Layout
9801
9802
9803 \backslash
9804 spce 
9805 \end_layout
9806
9807 \end_inset
9808
9809 A
9810 \end_layout
9811
9812 \end_inset
9813 </cell>
9814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9815 \begin_inset Text
9816
9817 \begin_layout Plain Layout
9818 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9819 \end_inset
9820
9821
9822 \end_layout
9823
9824 \end_inset
9825 </cell>
9826 </row>
9827 <row>
9828 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9829 \begin_inset Text
9830
9831 \begin_layout Plain Layout
9832
9833 \backslash
9834 hat
9835 \begin_inset ERT
9836 status collapsed
9837
9838 \begin_layout Plain Layout
9839
9840
9841 \backslash
9842 spce 
9843 \end_layout
9844
9845 \end_inset
9846
9847 A
9848 \end_layout
9849
9850 \end_inset
9851 </cell>
9852 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9853 \begin_inset Text
9854
9855 \begin_layout Plain Layout
9856 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
9857 \end_inset
9858
9859
9860 \end_layout
9861
9862 \end_inset
9863 </cell>
9864 </row>
9865 <row>
9866 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9867 \begin_inset Text
9868
9869 \begin_layout Plain Layout
9870
9871 \backslash
9872 check
9873 \begin_inset ERT
9874 status collapsed
9875
9876 \begin_layout Plain Layout
9877
9878
9879 \backslash
9880 spce 
9881 \end_layout
9882
9883 \end_inset
9884
9885 A
9886 \end_layout
9887
9888 \end_inset
9889 </cell>
9890 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9891 \begin_inset Text
9892
9893 \begin_layout Plain Layout
9894 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
9895 \end_inset
9896
9897
9898 \end_layout
9899
9900 \end_inset
9901 </cell>
9902 </row>
9903 <row>
9904 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9905 \begin_inset Text
9906
9907 \begin_layout Plain Layout
9908
9909 \backslash
9910 acute
9911 \begin_inset ERT
9912 status collapsed
9913
9914 \begin_layout Plain Layout
9915
9916
9917 \backslash
9918 spce 
9919 \end_layout
9920
9921 \end_inset
9922
9923 A
9924 \end_layout
9925
9926 \end_inset
9927 </cell>
9928 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9929 \begin_inset Text
9930
9931 \begin_layout Plain Layout
9932 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
9933 \end_inset
9934
9935
9936 \end_layout
9937
9938 \end_inset
9939 </cell>
9940 </row>
9941 <row>
9942 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9943 \begin_inset Text
9944
9945 \begin_layout Plain Layout
9946
9947 \backslash
9948 grave
9949 \begin_inset ERT
9950 status collapsed
9951
9952 \begin_layout Plain Layout
9953
9954
9955 \backslash
9956 spce 
9957 \end_layout
9958
9959 \end_inset
9960
9961 A
9962 \end_layout
9963
9964 \end_inset
9965 </cell>
9966 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9967 \begin_inset Text
9968
9969 \begin_layout Plain Layout
9970 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
9971 \end_inset
9972
9973
9974 \end_layout
9975
9976 \end_inset
9977 </cell>
9978 </row>
9979 <row>
9980 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9981 \begin_inset Text
9982
9983 \begin_layout Plain Layout
9984
9985 \backslash
9986 breve
9987 \begin_inset ERT
9988 status collapsed
9989
9990 \begin_layout Plain Layout
9991
9992
9993 \backslash
9994 spce 
9995 \end_layout
9996
9997 \end_inset
9998
9999 A
10000 \end_layout
10001
10002 \end_inset
10003 </cell>
10004 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10005 \begin_inset Text
10006
10007 \begin_layout Plain Layout
10008 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10009 \end_inset
10010
10011
10012 \end_layout
10013
10014 \end_inset
10015 </cell>
10016 </row>
10017 </lyxtabular>
10018
10019 \end_inset
10020
10021
10022 \begin_inset space \hfill{}
10023 \end_inset
10024
10025
10026 \end_layout
10027
10028 \begin_layout Standard
10029 \begin_inset VSpace bigskip
10030 \end_inset
10031
10032
10033 \end_layout
10034
10035 \begin_layout Standard
10036 You can directly insert accents like é to formulas.
10037  LyX will transform them to the corresponding accent command.
10038  For umlauts
10039 \begin_inset Index
10040 status collapsed
10041
10042 \begin_layout Plain Layout
10043 Umlauts
10044 \end_layout
10045
10046 \end_inset
10047
10048  it is better to insert a quotation mark before the vowel.
10049  These two characters are then treated by LaTeX as 
10050 \emph on
10051 one
10052 \emph default
10053  character when the formula part with the umlaut is marked as German.
10054  In contrary to 
10055 \series bold
10056
10057 \backslash
10058 ddot
10059 \series default
10060 , with this method 
10061 \begin_inset Quotes eld
10062 \end_inset
10063
10064 real
10065 \begin_inset Quotes erd
10066 \end_inset
10067
10068  umlauts are created as demonstrated in the following example:
10069 \end_layout
10070
10071 \begin_layout Standard
10072 \begin_inset VSpace -2mm
10073 \end_inset
10074
10075
10076 \end_layout
10077
10078 \begin_layout Standard
10079 \align center
10080 \begin_inset Tabular
10081 <lyxtabular version="3" rows="3" columns="2">
10082 <features>
10083 <column alignment="center" valignment="top" width="0">
10084 <column alignment="center" valignment="top" width="0">
10085 <row>
10086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10087 \begin_inset Text
10088
10089 \begin_layout Plain Layout
10090 Command
10091 \end_layout
10092
10093 \end_inset
10094 </cell>
10095 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10096 \begin_inset Text
10097
10098 \begin_layout Plain Layout
10099 Result
10100 \begin_inset Note Note
10101 status collapsed
10102
10103 \begin_layout Plain Layout
10104
10105 \series bold
10106
10107 \backslash
10108 raisebox
10109 \series default
10110  and the 0
10111 \begin_inset space \thinspace{}
10112 \end_inset
10113
10114 pt space are only used as spacer.
10115 \end_layout
10116
10117 \end_inset
10118
10119
10120 \end_layout
10121
10122 \end_inset
10123 </cell>
10124 </row>
10125 <row>
10126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10127 \begin_inset Text
10128
10129 \begin_layout Plain Layout
10130
10131 \lang ngerman
10132 \begin_inset Quotes grd
10133 \end_inset
10134
10135 i
10136 \end_layout
10137
10138 \end_inset
10139 </cell>
10140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10141 \begin_inset Text
10142
10143 \begin_layout Plain Layout
10144 \begin_inset space \hspace{}
10145 \length 0pt
10146 \end_inset
10147
10148
10149 \lang ngerman
10150
10151 \begin_inset Formula $"i$
10152 \end_inset
10153
10154
10155 \end_layout
10156
10157 \end_inset
10158 </cell>
10159 </row>
10160 <row>
10161 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10162 \begin_inset Text
10163
10164 \begin_layout Plain Layout
10165
10166 \backslash
10167 ddot
10168 \begin_inset ERT
10169 status collapsed
10170
10171 \begin_layout Plain Layout
10172
10173
10174 \backslash
10175 spce 
10176 \end_layout
10177
10178 \end_inset
10179
10180 i
10181 \end_layout
10182
10183 \end_inset
10184 </cell>
10185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10186 \begin_inset Text
10187
10188 \begin_layout Plain Layout
10189 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10190 \end_inset
10191
10192
10193 \end_layout
10194
10195 \end_inset
10196 </cell>
10197 </row>
10198 </lyxtabular>
10199
10200 \end_inset
10201
10202
10203 \end_layout
10204
10205 \begin_layout Standard
10206 Another advantage to 
10207 \series bold
10208
10209 \backslash
10210 ddot
10211 \series default
10212  is that umlauts can directly be converted to mathematical text because
10213  the accent commands above are 
10214 \emph on
10215 not allowed
10216 \emph default
10217  
10218 \emph on
10219 in mathematical text
10220 \emph default
10221 .
10222  To convert an accented character to mathematical text, only the character
10223  under the accent may be converted.
10224  This applies also for all other conversions, e.
10225 \begin_inset space \thinspace{}
10226 \end_inset
10227
10228 g.
10229 \begin_inset space \space{}
10230 \end_inset
10231
10232 to italic or bold.
10233 \end_layout
10234
10235 \begin_layout Standard
10236 In mathematical text, umlauts and other accented characters can directly
10237  be inserted.
10238 \end_layout
10239
10240 \begin_layout Subsection
10241 Accents for Operators
10242 \begin_inset Index
10243 status collapsed
10244
10245 \begin_layout Plain Layout
10246 Accents ! for operators
10247 \end_layout
10248
10249 \end_inset
10250
10251
10252 \end_layout
10253
10254 \begin_layout Standard
10255 With the commands 
10256 \series bold
10257
10258 \backslash
10259 overset
10260 \series default
10261
10262 \begin_inset Index
10263 status collapsed
10264
10265 \begin_layout Plain Layout
10266 Commands ! O ! 
10267 \backslash
10268 overset
10269 \end_layout
10270
10271 \end_inset
10272
10273  and 
10274 \series bold
10275
10276 \backslash
10277 underset
10278 \series default
10279
10280 \begin_inset Index
10281 status collapsed
10282
10283 \begin_layout Plain Layout
10284 Commands ! U ! 
10285 \backslash
10286 underset
10287 \end_layout
10288
10289 \end_inset
10290
10291  characters can be placed above or below an operator, respectively, to accent
10292  it.
10293  With the command 
10294 \series bold
10295
10296 \backslash
10297 sideset
10298 \series default
10299
10300 \begin_inset Index
10301 status collapsed
10302
10303 \begin_layout Plain Layout
10304 Commands ! S ! 
10305 \backslash
10306 sideset
10307 \end_layout
10308
10309 \end_inset
10310
10311  characters can be set before and behind an operator.
10312  The command scheme is:
10313 \end_layout
10314
10315 \begin_layout Standard
10316
10317 \series bold
10318
10319 \backslash
10320 sideset{character
10321 \series default
10322  
10323 \series bold
10324 before}{character
10325 \series default
10326  
10327 \series bold
10328 behind}
10329 \end_layout
10330
10331 \begin_layout Standard
10332
10333 \series bold
10334
10335 \backslash
10336 sideset
10337 \series default
10338  must always be before the operator that should be accented.
10339  You can accent with several characters and even with other operators and
10340  symbols.
10341  To place with 
10342 \series bold
10343
10344 \backslash
10345 sideset
10346 \series default
10347  for example only characters behind an operator, write nothing between the
10348  first braces but don't omit the braces.
10349 \end_layout
10350
10351 \begin_layout Standard
10352 For example the command 
10353 \series bold
10354
10355 \backslash
10356 sideset{
10357 \begin_inset Formula $\to$
10358 \end_inset
10359
10360
10361 \backslash
10362 {
10363 \series default
10364 '
10365 \series bold
10366
10367 \begin_inset Formula $\to$
10368 \end_inset
10369
10370
10371 \backslash
10372 sum_k=1
10373 \begin_inset ERT
10374 status collapsed
10375
10376 \begin_layout Plain Layout
10377
10378
10379 \backslash
10380 spce 
10381 \end_layout
10382
10383 \end_inset
10384
10385
10386 \series default
10387 ^
10388 \series bold
10389 n
10390 \series default
10391  produces:
10392 \begin_inset Formula \[
10393 \sideset{}{'}\sum_{k=1}^{n}\]
10394
10395 \end_inset
10396
10397
10398 \end_layout
10399
10400 \begin_layout Standard
10401 The command 
10402 \series bold
10403
10404 \backslash
10405 overset
10406 \begin_inset ERT
10407 status collapsed
10408
10409 \begin_layout Plain Layout
10410
10411
10412 \backslash
10413 spce 
10414 \end_layout
10415
10416 \end_inset
10417
10418
10419 \backslash
10420 maltese
10421 \begin_inset ERT
10422 status collapsed
10423
10424 \begin_layout Plain Layout
10425
10426
10427 \backslash
10428 spce 
10429 \end_layout
10430
10431 \end_inset
10432
10433
10434 \series default
10435
10436 \begin_inset Formula $\uparrow$
10437 \end_inset
10438
10439
10440 \series bold
10441 a
10442 \series default
10443  produces:
10444 \begin_inset Formula \[
10445 \overset{a}{\maltese}\]
10446
10447 \end_inset
10448
10449 As seen in the last example, with 
10450 \series bold
10451
10452 \backslash
10453 overset
10454 \series default
10455  and 
10456 \series bold
10457
10458 \backslash
10459 underset
10460 \series default
10461  also symbols and characters can be accented; with 
10462 \series bold
10463
10464 \backslash
10465 sideset
10466 \series default
10467  this is not possible.
10468 \end_layout
10469
10470 \begin_layout Subsection
10471 Accents for several Characters
10472 \begin_inset Index
10473 status collapsed
10474
10475 \begin_layout Plain Layout
10476 Accents ! for several characters
10477 \end_layout
10478
10479 \end_inset
10480
10481
10482 \end_layout
10483
10484 \begin_layout Standard
10485 \begin_inset space \hfill{}
10486 \end_inset
10487
10488
10489 \begin_inset Tabular
10490 <lyxtabular version="3" rows="5" columns="2">
10491 <features>
10492 <column alignment="center" valignment="top" width="0pt">
10493 <column alignment="center" valignment="top" width="0pt">
10494 <row>
10495 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10496 \begin_inset Text
10497
10498 \begin_layout Plain Layout
10499 Command
10500 \end_layout
10501
10502 \end_inset
10503 </cell>
10504 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10505 \begin_inset Text
10506
10507 \begin_layout Plain Layout
10508 Result
10509 \begin_inset Note Note
10510 status collapsed
10511
10512 \begin_layout Plain Layout
10513
10514 \series bold
10515
10516 \backslash
10517 raisebox
10518 \series default
10519  is only used as spacer.
10520 \end_layout
10521
10522 \end_inset
10523
10524
10525 \end_layout
10526
10527 \end_inset
10528 </cell>
10529 </row>
10530 <row>
10531 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10532 \begin_inset Text
10533
10534 \begin_layout Plain Layout
10535
10536 \backslash
10537 overleftarrow
10538 \begin_inset ERT
10539 status collapsed
10540
10541 \begin_layout Plain Layout
10542
10543
10544 \backslash
10545 spce 
10546 \end_layout
10547
10548 \end_inset
10549
10550 A=B
10551 \end_layout
10552
10553 \end_inset
10554 </cell>
10555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10556 \begin_inset Text
10557
10558 \begin_layout Plain Layout
10559 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10560 \end_inset
10561
10562
10563 \end_layout
10564
10565 \end_inset
10566 </cell>
10567 </row>
10568 <row>
10569 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10570 \begin_inset Text
10571
10572 \begin_layout Plain Layout
10573
10574 \backslash
10575 underleftarrow
10576 \begin_inset ERT
10577 status collapsed
10578
10579 \begin_layout Plain Layout
10580
10581
10582 \backslash
10583 spce 
10584 \end_layout
10585
10586 \end_inset
10587
10588 A=B
10589 \end_layout
10590
10591 \end_inset
10592 </cell>
10593 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10594 \begin_inset Text
10595
10596 \begin_layout Plain Layout
10597 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10598 \end_inset
10599
10600
10601 \end_layout
10602
10603 \end_inset
10604 </cell>
10605 </row>
10606 <row>
10607 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10608 \begin_inset Text
10609
10610 \begin_layout Plain Layout
10611
10612 \backslash
10613 overleftrightarrow
10614 \begin_inset ERT
10615 status collapsed
10616
10617 \begin_layout Plain Layout
10618
10619
10620 \backslash
10621 spce 
10622 \end_layout
10623
10624 \end_inset
10625
10626 A=B
10627 \end_layout
10628
10629 \end_inset
10630 </cell>
10631 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10632 \begin_inset Text
10633
10634 \begin_layout Plain Layout
10635 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10636 \end_inset
10637
10638
10639 \end_layout
10640
10641 \end_inset
10642 </cell>
10643 </row>
10644 <row>
10645 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10646 \begin_inset Text
10647
10648 \begin_layout Plain Layout
10649
10650 \backslash
10651 underleftrightarrow
10652 \begin_inset ERT
10653 status collapsed
10654
10655 \begin_layout Plain Layout
10656
10657
10658 \backslash
10659 spce 
10660 \end_layout
10661
10662 \end_inset
10663
10664 A=B
10665 \end_layout
10666
10667 \end_inset
10668 </cell>
10669 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10670 \begin_inset Text
10671
10672 \begin_layout Plain Layout
10673 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10674 \end_inset
10675
10676
10677 \end_layout
10678
10679 \end_inset
10680 </cell>
10681 </row>
10682 </lyxtabular>
10683
10684 \end_inset
10685
10686
10687 \begin_inset space \hfill{}
10688 \end_inset
10689
10690
10691 \begin_inset Tabular
10692 <lyxtabular version="3" rows="5" columns="2">
10693 <features>
10694 <column alignment="center" valignment="top" width="0pt">
10695 <column alignment="center" valignment="top" width="0pt">
10696 <row>
10697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10698 \begin_inset Text
10699
10700 \begin_layout Plain Layout
10701 Command
10702 \end_layout
10703
10704 \end_inset
10705 </cell>
10706 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10707 \begin_inset Text
10708
10709 \begin_layout Plain Layout
10710 Result
10711 \end_layout
10712
10713 \end_inset
10714 </cell>
10715 </row>
10716 <row>
10717 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10718 \begin_inset Text
10719
10720 \begin_layout Plain Layout
10721
10722 \backslash
10723 overrightarrow
10724 \begin_inset ERT
10725 status collapsed
10726
10727 \begin_layout Plain Layout
10728
10729
10730 \backslash
10731 spce 
10732 \end_layout
10733
10734 \end_inset
10735
10736 A=B
10737 \end_layout
10738
10739 \end_inset
10740 </cell>
10741 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10742 \begin_inset Text
10743
10744 \begin_layout Plain Layout
10745 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10746 \end_inset
10747
10748
10749 \end_layout
10750
10751 \end_inset
10752 </cell>
10753 </row>
10754 <row>
10755 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10756 \begin_inset Text
10757
10758 \begin_layout Plain Layout
10759
10760 \backslash
10761 underrightarrow
10762 \begin_inset ERT
10763 status collapsed
10764
10765 \begin_layout Plain Layout
10766
10767
10768 \backslash
10769 spce 
10770 \end_layout
10771
10772 \end_inset
10773
10774 A=B
10775 \end_layout
10776
10777 \end_inset
10778 </cell>
10779 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10780 \begin_inset Text
10781
10782 \begin_layout Plain Layout
10783 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10784 \end_inset
10785
10786
10787 \end_layout
10788
10789 \end_inset
10790 </cell>
10791 </row>
10792 <row>
10793 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10794 \begin_inset Text
10795
10796 \begin_layout Plain Layout
10797
10798 \backslash
10799 widetilde
10800 \begin_inset ERT
10801 status collapsed
10802
10803 \begin_layout Plain Layout
10804
10805
10806 \backslash
10807 spce 
10808 \end_layout
10809
10810 \end_inset
10811
10812 A=B
10813 \end_layout
10814
10815 \end_inset
10816 </cell>
10817 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10818 \begin_inset Text
10819
10820 \begin_layout Plain Layout
10821 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10822 \end_inset
10823
10824
10825 \end_layout
10826
10827 \end_inset
10828 </cell>
10829 </row>
10830 <row>
10831 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10832 \begin_inset Text
10833
10834 \begin_layout Plain Layout
10835
10836 \backslash
10837 widehat
10838 \begin_inset ERT
10839 status collapsed
10840
10841 \begin_layout Plain Layout
10842
10843
10844 \backslash
10845 spce 
10846 \end_layout
10847
10848 \end_inset
10849
10850 A=B
10851 \end_layout
10852
10853 \end_inset
10854 </cell>
10855 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10856 \begin_inset Text
10857
10858 \begin_layout Plain Layout
10859 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10860 \end_inset
10861
10862
10863 \end_layout
10864
10865 \end_inset
10866 </cell>
10867 </row>
10868 </lyxtabular>
10869
10870 \end_inset
10871
10872
10873 \begin_inset space \hfill{}
10874 \end_inset
10875
10876
10877 \end_layout
10878
10879 \begin_layout Standard
10880 \begin_inset VSpace medskip
10881 \end_inset
10882
10883 With these commands as many characters as you like can be accented.
10884  But the accents 
10885 \series bold
10886
10887 \backslash
10888 widetilde
10889 \series default
10890  and 
10891 \series bold
10892
10893 \backslash
10894 widehat
10895 \series default
10896  will only be set in the output with a length of three characters, as shown
10897  in the following example:
10898 \begin_inset Formula \[
10899 \widetilde{A+B=C-D}\]
10900
10901 \end_inset
10902
10903
10904 \end_layout
10905
10906 \begin_layout Standard
10907 With the commands 
10908 \series bold
10909
10910 \backslash
10911 overset
10912 \series default
10913
10914 \begin_inset Index
10915 status collapsed
10916
10917 \begin_layout Plain Layout
10918 Commands ! O ! 
10919 \backslash
10920 overset
10921 \end_layout
10922
10923 \end_inset
10924
10925  and 
10926 \series bold
10927
10928 \backslash
10929 underset
10930 \series default
10931
10932 \begin_inset Index
10933 status collapsed
10934
10935 \begin_layout Plain Layout
10936 Commands ! U ! 
10937 \backslash
10938 underset
10939 \end_layout
10940
10941 \end_inset
10942
10943  described in the previous subsection it is also possible to accent several
10944  characters.
10945  The command 
10946 \series bold
10947
10948 \backslash
10949 underset
10950 \begin_inset ERT
10951 status collapsed
10952
10953 \begin_layout Plain Layout
10954
10955
10956 \backslash
10957 spce 
10958 \end_layout
10959
10960 \end_inset
10961
10962 A=B
10963 \begin_inset Formula $\downarrow$
10964 \end_inset
10965
10966 ***
10967 \series default
10968  creates:
10969 \begin_inset Formula \[
10970 \underset{***}{A=B}\]
10971
10972 \end_inset
10973
10974
10975 \end_layout
10976
10977 \begin_layout Section
10978 Space
10979 \begin_inset CommandInset label
10980 LatexCommand label
10981 name "sub:Space"
10982
10983 \end_inset
10984
10985
10986 \begin_inset Index
10987 status collapsed
10988
10989 \begin_layout Plain Layout
10990 Space ! horizontal
10991 \end_layout
10992
10993 \end_inset
10994
10995
10996 \end_layout
10997
10998 \begin_layout Subsection
10999 Predefined Space
11000 \begin_inset CommandInset label
11001 LatexCommand label
11002 name "sub:Predefined-Space"
11003
11004 \end_inset
11005
11006
11007 \begin_inset Index
11008 status collapsed
11009
11010 \begin_layout Plain Layout
11011 Space ! horizontal ! predefined
11012 \end_layout
11013
11014 \end_inset
11015
11016
11017 \end_layout
11018
11019 \begin_layout Standard
11020 Sometimes it is necessary to insert horizontal space to a formula.
11021  This is done by inserting a protected space (shortcut 
11022 \begin_inset Info
11023 type  "shortcut"
11024 arg   "space-insert protected"
11025 \end_inset
11026
11027 ).
11028  A 
11029 \begin_inset Quotes eld
11030 \end_inset
11031
11032
11033 \color blue
11034
11035 \begin_inset ERT
11036 status collapsed
11037
11038 \begin_layout Plain Layout
11039
11040
11041 \backslash
11042 spce 
11043 \end_layout
11044
11045 \end_inset
11046
11047
11048 \color inherit
11049
11050 \begin_inset Quotes erd
11051 \end_inset
11052
11053  appears and by pressing 
11054 \family sans
11055 Space
11056 \family default
11057  several times one can select one of eight different space sizes.
11058  The spaces can also be inserted using the math toolbar button 
11059 \begin_inset Graphics
11060         filename ../images/math/space.png
11061         scale 85
11062
11063 \end_inset
11064
11065  or special commands.
11066  Independent from the inserted command, one can select the size again by
11067  pressing 
11068 \family sans
11069 Space
11070 \family default
11071  afterwards.
11072 \end_layout
11073
11074 \begin_layout Standard
11075 \noindent
11076 \align center
11077 \begin_inset VSpace -5mm
11078 \end_inset
11079
11080
11081 \begin_inset Tabular
11082 <lyxtabular version="3" rows="3" columns="7">
11083 <features>
11084 <column alignment="center" valignment="middle" width="6.8cm">
11085 <column alignment="center" valignment="top" width="0">
11086 <column alignment="center" valignment="top" width="0">
11087 <column alignment="center" valignment="top" width="0">
11088 <column alignment="center" valignment="top" width="0">
11089 <column alignment="center" valignment="top" width="0">
11090 <column alignment="center" valignment="top" width="0">
11091 <row>
11092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11093 \begin_inset Text
11094
11095 \begin_layout Plain Layout
11096 Command
11097 \end_layout
11098
11099 \end_inset
11100 </cell>
11101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11102 \begin_inset Text
11103
11104 \begin_layout Plain Layout
11105
11106 \backslash
11107 ,
11108 \end_layout
11109
11110 \end_inset
11111 </cell>
11112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11113 \begin_inset Text
11114
11115 \begin_layout Plain Layout
11116
11117 \backslash
11118 :
11119 \end_layout
11120
11121 \end_inset
11122 </cell>
11123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11124 \begin_inset Text
11125
11126 \begin_layout Plain Layout
11127
11128 \backslash
11129 ;
11130 \end_layout
11131
11132 \end_inset
11133 </cell>
11134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11135 \begin_inset Text
11136
11137 \begin_layout Plain Layout
11138
11139 \backslash
11140 quad
11141 \end_layout
11142
11143 \end_inset
11144 </cell>
11145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11146 \begin_inset Text
11147
11148 \begin_layout Plain Layout
11149
11150 \backslash
11151 qquad
11152 \end_layout
11153
11154 \end_inset
11155 </cell>
11156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11157 \begin_inset Text
11158
11159 \begin_layout Plain Layout
11160
11161 \backslash
11162 !
11163 \end_layout
11164
11165 \end_inset
11166 </cell>
11167 </row>
11168 <row>
11169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11170 \begin_inset Text
11171
11172 \begin_layout Plain Layout
11173 Number of 
11174 \family sans
11175 Space
11176 \family default
11177  keystrokes after inserting the protected space
11178 \end_layout
11179
11180 \end_inset
11181 </cell>
11182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11183 \begin_inset Text
11184
11185 \begin_layout Plain Layout
11186 0
11187 \end_layout
11188
11189 \end_inset
11190 </cell>
11191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11192 \begin_inset Text
11193
11194 \begin_layout Plain Layout
11195 1
11196 \end_layout
11197
11198 \end_inset
11199 </cell>
11200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11201 \begin_inset Text
11202
11203 \begin_layout Plain Layout
11204 2
11205 \end_layout
11206
11207 \end_inset
11208 </cell>
11209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11210 \begin_inset Text
11211
11212 \begin_layout Plain Layout
11213 3
11214 \end_layout
11215
11216 \end_inset
11217 </cell>
11218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11219 \begin_inset Text
11220
11221 \begin_layout Plain Layout
11222 4
11223 \end_layout
11224
11225 \end_inset
11226 </cell>
11227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11228 \begin_inset Text
11229
11230 \begin_layout Plain Layout
11231 5
11232 \end_layout
11233
11234 \end_inset
11235 </cell>
11236 </row>
11237 <row>
11238 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11239 \begin_inset Text
11240
11241 \begin_layout Plain Layout
11242 Result
11243 \end_layout
11244
11245 \end_inset
11246 </cell>
11247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11248 \begin_inset Text
11249
11250 \begin_layout Plain Layout
11251 \begin_inset Formula $A\, B$
11252 \end_inset
11253
11254
11255 \end_layout
11256
11257 \end_inset
11258 </cell>
11259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11260 \begin_inset Text
11261
11262 \begin_layout Plain Layout
11263 \begin_inset Formula $A\: B$
11264 \end_inset
11265
11266
11267 \end_layout
11268
11269 \end_inset
11270 </cell>
11271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11272 \begin_inset Text
11273
11274 \begin_layout Plain Layout
11275 \begin_inset Formula $A\; B$
11276 \end_inset
11277
11278
11279 \end_layout
11280
11281 \end_inset
11282 </cell>
11283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11284 \begin_inset Text
11285
11286 \begin_layout Plain Layout
11287 \begin_inset Formula $A\quad B$
11288 \end_inset
11289
11290
11291 \end_layout
11292
11293 \end_inset
11294 </cell>
11295 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11296 \begin_inset Text
11297
11298 \begin_layout Plain Layout
11299 \begin_inset Formula $A\qquad B$
11300 \end_inset
11301
11302
11303 \end_layout
11304
11305 \end_inset
11306 </cell>
11307 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11308 \begin_inset Text
11309
11310 \begin_layout Plain Layout
11311 \begin_inset Formula $A\! B$
11312 \end_inset
11313
11314
11315 \end_layout
11316
11317 \end_inset
11318 </cell>
11319 </row>
11320 </lyxtabular>
11321
11322 \end_inset
11323
11324
11325 \end_layout
11326
11327 \begin_layout Standard
11328 The last size seem to produce no space.
11329  It is displayed red in LyX contrary to the other sizes, because it is a
11330  negative space.
11331  There are two more negative spaces:
11332 \end_layout
11333
11334 \begin_layout Standard
11335 \align center
11336 \begin_inset Tabular
11337 <lyxtabular version="3" rows="3" columns="3">
11338 <features>
11339 <column alignment="center" valignment="middle" width="6.8cm">
11340 <column alignment="center" valignment="top" width="0pt">
11341 <column alignment="center" valignment="top" width="0pt">
11342 <row>
11343 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11344 \begin_inset Text
11345
11346 \begin_layout Plain Layout
11347 Command
11348 \end_layout
11349
11350 \end_inset
11351 </cell>
11352 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11353 \begin_inset Text
11354
11355 \begin_layout Plain Layout
11356
11357 \backslash
11358 negmedspace
11359 \end_layout
11360
11361 \end_inset
11362 </cell>
11363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11364 \begin_inset Text
11365
11366 \begin_layout Plain Layout
11367
11368 \backslash
11369 negthickspace
11370 \end_layout
11371
11372 \end_inset
11373 </cell>
11374 </row>
11375 <row>
11376 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11377 \begin_inset Text
11378
11379 \begin_layout Plain Layout
11380 Number of 
11381 \family sans
11382 Space
11383 \family default
11384  keystrokes after inserting the protected space
11385 \end_layout
11386
11387 \end_inset
11388 </cell>
11389 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11390 \begin_inset Text
11391
11392 \begin_layout Plain Layout
11393 6
11394 \end_layout
11395
11396 \end_inset
11397 </cell>
11398 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11399 \begin_inset Text
11400
11401 \begin_layout Plain Layout
11402 7
11403 \end_layout
11404
11405 \end_inset
11406 </cell>
11407 </row>
11408 <row>
11409 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11410 \begin_inset Text
11411
11412 \begin_layout Plain Layout
11413 Result
11414 \end_layout
11415
11416 \end_inset
11417 </cell>
11418 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11419 \begin_inset Text
11420
11421 \begin_layout Plain Layout
11422 \begin_inset Formula $A\negmedspace B$
11423 \end_inset
11424
11425
11426 \end_layout
11427
11428 \end_inset
11429 </cell>
11430 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11431 \begin_inset Text
11432
11433 \begin_layout Plain Layout
11434 \begin_inset Formula $A\negthickspace B$
11435 \end_inset
11436
11437
11438 \end_layout
11439
11440 \end_inset
11441 </cell>
11442 </row>
11443 </lyxtabular>
11444
11445 \end_inset
11446
11447
11448 \end_layout
11449
11450 \begin_layout Standard
11451 Negative spaces can lead to characters overlapping each other.
11452  Thus they can be used to enforce ligatures, what is e.
11453 \begin_inset space \thinspace{}
11454 \end_inset
11455
11456 g.
11457 \begin_inset space \space{}
11458 \end_inset
11459
11460 useful for summation operators: 
11461 \end_layout
11462
11463 \begin_layout Standard
11464 \align center
11465 \begin_inset Tabular
11466 <lyxtabular version="3" rows="3" columns="2">
11467 <features>
11468 <column alignment="center" valignment="top" width="0">
11469 <column alignment="center" valignment="top" width="0">
11470 <row>
11471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11472 \begin_inset Text
11473
11474 \begin_layout Plain Layout
11475 Command
11476 \end_layout
11477
11478 \end_inset
11479 </cell>
11480 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11481 \begin_inset Text
11482
11483 \begin_layout Plain Layout
11484 Result
11485 \begin_inset Note Note
11486 status collapsed
11487
11488 \begin_layout Plain Layout
11489
11490 \series bold
11491
11492 \backslash
11493 raisebox
11494 \series default
11495  is only used as spacer.
11496 \end_layout
11497
11498 \end_inset
11499
11500
11501 \end_layout
11502
11503 \end_inset
11504 </cell>
11505 </row>
11506 <row>
11507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11508 \begin_inset Text
11509
11510 \begin_layout Plain Layout
11511
11512 \backslash
11513 sum
11514 \backslash
11515 sum
11516 \begin_inset ERT
11517 status collapsed
11518
11519 \begin_layout Plain Layout
11520
11521
11522 \backslash
11523 spce 
11524 \end_layout
11525
11526 \end_inset
11527
11528 f_kl
11529 \end_layout
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 \begin_layout Plain Layout
11537 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11538 \end_inset
11539
11540
11541 \end_layout
11542
11543 \end_inset
11544 </cell>
11545 </row>
11546 <row>
11547 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11548 \begin_inset Text
11549
11550 \begin_layout Plain Layout
11551
11552 \backslash
11553 sum
11554 \backslash
11555 negmedspace
11556 \backslash
11557 sum
11558 \begin_inset ERT
11559 status collapsed
11560
11561 \begin_layout Plain Layout
11562
11563
11564 \backslash
11565 spce 
11566 \end_layout
11567
11568 \end_inset
11569
11570 f_kl
11571 \end_layout
11572
11573 \end_inset
11574 </cell>
11575 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11576 \begin_inset Text
11577
11578 \begin_layout Plain Layout
11579 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11580 \end_inset
11581
11582
11583 \end_layout
11584
11585 \end_inset
11586 </cell>
11587 </row>
11588 </lyxtabular>
11589
11590 \end_inset
11591
11592
11593 \end_layout
11594
11595 \begin_layout Standard
11596 Relations like for example equal signs, are always surrounded by space.
11597  To suppress this, the equal sign is placed into a TeX-brace.
11598  The following example demonstrates this:
11599 \end_layout
11600
11601 \begin_layout Standard
11602 \align center
11603 \begin_inset Tabular
11604 <lyxtabular version="3" rows="2" columns="2">
11605 <features>
11606 <column alignment="center" valignment="top" width="0pt">
11607 <column alignment="center" valignment="top" width="0pt">
11608 <row>
11609 <cell alignment="center" valignment="top" usebox="none">
11610 \begin_inset Text
11611
11612 \begin_layout Plain Layout
11613 normal equation
11614 \end_layout
11615
11616 \end_inset
11617 </cell>
11618 <cell alignment="center" valignment="top" usebox="none">
11619 \begin_inset Text
11620
11621 \begin_layout Plain Layout
11622 \begin_inset Formula $A=B$
11623 \end_inset
11624
11625
11626 \end_layout
11627
11628 \end_inset
11629 </cell>
11630 </row>
11631 <row>
11632 <cell alignment="center" valignment="top" usebox="none">
11633 \begin_inset Text
11634
11635 \begin_layout Plain Layout
11636 \begin_inset Note Note
11637 status collapsed
11638
11639 \begin_layout Plain Layout
11640
11641 \series bold
11642
11643 \backslash
11644 raisebox
11645 \series default
11646  is only used as spacer.
11647 \end_layout
11648
11649 \end_inset
11650
11651
11652 \begin_inset Formula $\raisebox{5mm}{}$
11653 \end_inset
11654
11655 equation without space
11656 \end_layout
11657
11658 \end_inset
11659 </cell>
11660 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11661 \begin_inset Text
11662
11663 \begin_layout Plain Layout
11664 \begin_inset Formula $A{=}B$
11665 \end_inset
11666
11667
11668 \end_layout
11669
11670 \end_inset
11671 </cell>
11672 </row>
11673 </lyxtabular>
11674
11675 \end_inset
11676
11677
11678 \end_layout
11679
11680 \begin_layout Standard
11681 \noindent
11682 The command for the last formula is: 
11683 \series bold
11684 A
11685 \backslash
11686 {=
11687 \begin_inset Formula $\to$
11688 \end_inset
11689
11690 B
11691 \end_layout
11692
11693 \begin_layout Standard
11694 \begin_inset VSpace bigskip
11695 \end_inset
11696
11697 Spaces are needed for physical units, because the space between the value
11698  and the unit is the smallest one and not a normal space.
11699  For units in text, the smallest space is inserted via the menu 
11700 \family sans
11701 Insert\SpecialChar \menuseparator
11702 Formatting\SpecialChar \menuseparator
11703 Thin
11704 \begin_inset space ~
11705 \end_inset
11706
11707 Space
11708 \family default
11709  (shortcut 
11710 \begin_inset Info
11711 type  "shortcut"
11712 arg   "space-insert thin"
11713 \end_inset
11714
11715 ).
11716 \end_layout
11717
11718 \begin_layout Standard
11719 An example to visualize the difference:
11720 \end_layout
11721
11722 \begin_layout Standard
11723 \begin_inset Tabular
11724 <lyxtabular version="3" rows="2" columns="2">
11725 <features>
11726 <column alignment="left" valignment="top" width="0">
11727 <column alignment="left" valignment="top" width="0">
11728 <row>
11729 <cell alignment="center" valignment="top" usebox="none">
11730 \begin_inset Text
11731
11732 \begin_layout Plain Layout
11733 24 kW
11734 \begin_inset Formula $\cdot$
11735 \end_inset
11736
11737 h
11738 \end_layout
11739
11740 \end_inset
11741 </cell>
11742 <cell alignment="center" valignment="top" usebox="none">
11743 \begin_inset Text
11744
11745 \begin_layout Plain Layout
11746 space between value and unit
11747 \end_layout
11748
11749 \end_inset
11750 </cell>
11751 </row>
11752 <row>
11753 <cell alignment="center" valignment="top" usebox="none">
11754 \begin_inset Text
11755
11756 \begin_layout Plain Layout
11757 24
11758 \begin_inset space \thinspace{}
11759 \end_inset
11760
11761 kW
11762 \begin_inset Formula $\cdot$
11763 \end_inset
11764
11765 h
11766 \end_layout
11767
11768 \end_inset
11769 </cell>
11770 <cell alignment="center" valignment="top" usebox="none">
11771 \begin_inset Text
11772
11773 \begin_layout Plain Layout
11774 smallest space between value and unit
11775 \end_layout
11776
11777 \end_inset
11778 </cell>
11779 </row>
11780 </lyxtabular>
11781
11782 \end_inset
11783
11784
11785 \end_layout
11786
11787 \begin_layout Subsection
11788 Variable Space
11789 \begin_inset ERT
11790 status collapsed
11791
11792 \begin_layout Plain Layout
11793
11794
11795 \backslash
11796 texorpdfstring{
11797 \end_layout
11798
11799 \end_inset
11800
11801
11802 \begin_inset Foot
11803 status collapsed
11804
11805 \begin_layout Plain Layout
11806 for vertical space in formulas see 
11807 \begin_inset CommandInset ref
11808 LatexCommand ref
11809 reference "sub:Line-Separation"
11810
11811 \end_inset
11812
11813
11814 \end_layout
11815
11816 \end_inset
11817
11818
11819 \begin_inset ERT
11820 status collapsed
11821
11822 \begin_layout Plain Layout
11823
11824 }{}
11825 \end_layout
11826
11827 \end_inset
11828
11829
11830 \begin_inset Note Note
11831 status collapsed
11832
11833 \begin_layout Plain Layout
11834
11835 \backslash
11836 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
11837 \end_layout
11838
11839 \begin_layout Plain Layout
11840 More about 
11841 \backslash
11842 texorpdfstring is in section 
11843 \begin_inset CommandInset ref
11844 LatexCommand ref
11845 reference "sub:Formulas-in-Section"
11846
11847 \end_inset
11848
11849 .
11850 \end_layout
11851
11852 \end_inset
11853
11854
11855 \begin_inset CommandInset label
11856 LatexCommand label
11857 name "sub:Variable-Space"
11858
11859 \end_inset
11860
11861
11862 \begin_inset Index
11863 status collapsed
11864
11865 \begin_layout Plain Layout
11866 Space ! horizontal ! variable
11867 \end_layout
11868
11869 \end_inset
11870
11871
11872 \end_layout
11873
11874 \begin_layout Standard
11875 Space with a defined length can be inserted with the command 
11876 \series bold
11877
11878 \backslash
11879 hspace
11880 \series default
11881
11882 \begin_inset Index
11883 status collapsed
11884
11885 \begin_layout Plain Layout
11886 Commands ! H ! 
11887 \backslash
11888 hspace
11889 \end_layout
11890
11891 \end_inset
11892
11893 .
11894  Then a long 
11895 \begin_inset Quotes eld
11896 \end_inset
11897
11898
11899 \color blue
11900
11901 \begin_inset ERT
11902 status collapsed
11903
11904 \begin_layout Plain Layout
11905
11906
11907 \backslash
11908 spce 
11909 \end_layout
11910
11911 \end_inset
11912
11913
11914 \color inherit
11915
11916 \begin_inset Quotes erd
11917 \end_inset
11918
11919  appears.
11920  The length can be specified by left-clicking on the 
11921 \begin_inset Quotes eld
11922 \end_inset
11923
11924
11925 \color blue
11926
11927 \begin_inset ERT
11928 status collapsed
11929
11930 \begin_layout Plain Layout
11931
11932
11933 \backslash
11934 spce 
11935 \end_layout
11936
11937 \end_inset
11938
11939
11940 \color inherit
11941
11942 \begin_inset Quotes erd
11943 \end_inset
11944
11945 .
11946  The length may also be negative.
11947  To insert so many space that the formula uses all available space, the
11948  command 
11949 \series bold
11950
11951 \backslash
11952 hfill
11953 \series default
11954
11955 \begin_inset Index
11956 status collapsed
11957
11958 \begin_layout Plain Layout
11959 Commands ! H ! 
11960 \backslash
11961 hfill
11962 \end_layout
11963
11964 \end_inset
11965
11966  is used.
11967 \end_layout
11968
11969 \begin_layout Standard
11970 \begin_inset VSpace -1mm
11971 \end_inset
11972
11973
11974 \end_layout
11975
11976 \begin_layout Standard
11977 \align center
11978 \begin_inset Tabular
11979 <lyxtabular version="3" rows="4" columns="2">
11980 <features>
11981 <column alignment="center" valignment="top" width="0">
11982 <column alignment="center" valignment="top" width="0">
11983 <row>
11984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11985 \begin_inset Text
11986
11987 \begin_layout Plain Layout
11988 Command (
11989 \backslash
11990 hspace length)
11991 \end_layout
11992
11993 \end_inset
11994 </cell>
11995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11996 \begin_inset Text
11997
11998 \begin_layout Plain Layout
11999 Result
12000 \end_layout
12001
12002 \end_inset
12003 </cell>
12004 </row>
12005 <row>
12006 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12007 \begin_inset Text
12008
12009 \begin_layout Plain Layout
12010 A=B
12011 \backslash
12012 hspace
12013 \begin_inset ERT
12014 status collapsed
12015
12016 \begin_layout Plain Layout
12017
12018
12019 \backslash
12020 spce 
12021 \end_layout
12022
12023 \end_inset
12024
12025
12026 \begin_inset Formula $\to$
12027 \end_inset
12028
12029 A
12030 \backslash
12031 not=C (3
12032 \begin_inset space \thinspace{}
12033 \end_inset
12034
12035 cm)
12036 \end_layout
12037
12038 \end_inset
12039 </cell>
12040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12041 \begin_inset Text
12042
12043 \begin_layout Plain Layout
12044 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12045 \end_inset
12046
12047
12048 \end_layout
12049
12050 \end_inset
12051 </cell>
12052 </row>
12053 <row>
12054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12055 \begin_inset Text
12056
12057 \begin_layout Plain Layout
12058 A
12059 \backslash
12060 hspace
12061 \begin_inset ERT
12062 status collapsed
12063
12064 \begin_layout Plain Layout
12065
12066
12067 \backslash
12068 spce 
12069 \end_layout
12070
12071 \end_inset
12072
12073
12074 \begin_inset Formula $\to$
12075 \end_inset
12076
12077 A
12078 \backslash
12079 not=A (-1
12080 \begin_inset space \thinspace{}
12081 \end_inset
12082
12083 mm)
12084 \end_layout
12085
12086 \end_inset
12087 </cell>
12088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12089 \begin_inset Text
12090
12091 \begin_layout Plain Layout
12092 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12093 \end_inset
12094
12095
12096 \end_layout
12097
12098 \end_inset
12099 </cell>
12100 </row>
12101 <row>
12102 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12103 \begin_inset Text
12104
12105 \begin_layout Plain Layout
12106 A=A
12107 \backslash
12108 hfill
12109 \begin_inset ERT
12110 status collapsed
12111
12112 \begin_layout Plain Layout
12113
12114
12115 \backslash
12116 spce 
12117 \end_layout
12118
12119 \end_inset
12120
12121 B=B
12122 \end_layout
12123
12124 \end_inset
12125 </cell>
12126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12127 \begin_inset Text
12128
12129 \begin_layout Plain Layout
12130 \begin_inset Formula $A=A\hfill B=B$
12131 \end_inset
12132
12133
12134 \end_layout
12135
12136 \end_inset
12137 </cell>
12138 </row>
12139 </lyxtabular>
12140
12141 \end_inset
12142
12143
12144 \end_layout
12145
12146 \begin_layout Standard
12147 In the last example the available space is given by the longest column entry
12148  of the table.
12149  In an inline formula the space depends on the length of the line in which
12150  
12151 \series bold
12152
12153 \backslash
12154 hfill
12155 \series default
12156  is inserted.
12157  Thus, when the line uses the full width, no space will be created.
12158  
12159 \series bold
12160
12161 \backslash
12162 hfill
12163 \series default
12164  only has an effect on displayed formulas when the formula style 
12165 \series bold
12166 Indented
12167 \series default
12168  is used.
12169  (Formula styles are explained in 
12170 \begin_inset CommandInset ref
12171 LatexCommand ref
12172 reference "sec:Formula-Styles"
12173
12174 \end_inset
12175
12176 .)
12177 \end_layout
12178
12179 \begin_layout Standard
12180 Besides 
12181 \series bold
12182
12183 \backslash
12184 hfill
12185 \series default
12186 , there are the commands 
12187 \series bold
12188
12189 \backslash
12190 dotfill
12191 \series default
12192  and 
12193 \series bold
12194
12195 \backslash
12196 hrulefill
12197 \series default
12198  that fill the space with a pattern, see 
12199 \begin_inset CommandInset ref
12200 LatexCommand ref
12201 reference "sub:Ellipses"
12202
12203 \end_inset
12204
12205  for an example.
12206 \end_layout
12207
12208 \begin_layout Standard
12209 For text, variable space can be inserted via the menu 
12210 \family sans
12211 Insert\SpecialChar \menuseparator
12212 Formatting\SpecialChar \menuseparator
12213 Horizontal
12214 \begin_inset space ~
12215 \end_inset
12216
12217 Space
12218 \family default
12219 :
12220 \end_layout
12221
12222 \begin_layout Standard
12223 This is a line with
12224 \begin_inset space \hspace{}
12225 \length 2cm
12226 \end_inset
12227
12228 2
12229 \begin_inset space \thinspace{}
12230 \end_inset
12231
12232 cm space.
12233 \end_layout
12234
12235 \begin_layout Standard
12236 This is a line with
12237 \begin_inset space \hfill{}
12238 \end_inset
12239
12240 maximum space.
12241 \end_layout
12242
12243 \begin_layout Subsection
12244 Space besides inline Formulas
12245 \begin_inset Index
12246 status collapsed
12247
12248 \begin_layout Plain Layout
12249 Space ! besides inline formulas
12250 \end_layout
12251
12252 \end_inset
12253
12254
12255 \end_layout
12256
12257 \begin_layout Standard
12258 The space that surrounds inline formulas can be adjusted with the length
12259  
12260 \series bold
12261
12262 \backslash
12263 mathsurround
12264 \begin_inset Index
12265 status collapsed
12266
12267 \begin_layout Plain Layout
12268 Commands ! M ! 
12269 \backslash
12270 mathsurround
12271 \end_layout
12272
12273 \end_inset
12274
12275
12276 \series default
12277 .
12278  The value of a length is set with the command 
12279 \series bold
12280
12281 \backslash
12282 setlength
12283 \begin_inset Index
12284 status collapsed
12285
12286 \begin_layout Plain Layout
12287 Commands ! S ! 
12288 \backslash
12289 setlength
12290 \end_layout
12291
12292 \end_inset
12293
12294
12295 \series default
12296  that has the following scheme:
12297 \end_layout
12298
12299 \begin_layout Standard
12300
12301 \series bold
12302
12303 \backslash
12304 setlength{length name}{value}
12305 \end_layout
12306
12307 \begin_layout Standard
12308 To set 
12309 \series bold
12310
12311 \backslash
12312 mathsurround
12313 \series default
12314  to the value 5
12315 \begin_inset space \thinspace{}
12316 \end_inset
12317
12318 mm, the command
12319 \end_layout
12320
12321 \begin_layout Standard
12322
12323 \series bold
12324
12325 \backslash
12326 setlength{
12327 \backslash
12328 mathsurround}{5mm}
12329 \end_layout
12330
12331 \begin_layout Standard
12332 is inserted in TeX-mode.
12333  5
12334 \begin_inset space \thinspace{}
12335 \end_inset
12336
12337 mm space will now be set around all inline formulas:
12338 \begin_inset ERT
12339 status collapsed
12340
12341 \begin_layout Plain Layout
12342
12343
12344 \backslash
12345 setlength{
12346 \backslash
12347 mathsurround}{5mm}
12348 \end_layout
12349
12350 \end_inset
12351
12352
12353 \end_layout
12354
12355 \begin_layout Standard
12356 This is a line with an inline formula 
12357 \begin_inset Formula $A=B$
12358 \end_inset
12359
12360  with 5
12361 \begin_inset space \thinspace{}
12362 \end_inset
12363
12364 mm surrounding space.
12365 \begin_inset ERT
12366 status collapsed
12367
12368 \begin_layout Plain Layout
12369
12370
12371 \backslash
12372 setlength{
12373 \backslash
12374 mathsurround}{0pt}
12375 \end_layout
12376
12377 \end_inset
12378
12379
12380 \end_layout
12381
12382 \begin_layout Standard
12383 To return to the predefined value, 
12384 \series bold
12385
12386 \backslash
12387 mathsurround
12388 \series default
12389  is set to the value 0
12390 \begin_inset space \thinspace{}
12391 \end_inset
12392
12393 pt.
12394 \end_layout
12395
12396 \begin_layout Section
12397 Boxes and Frames
12398 \begin_inset Index
12399 status collapsed
12400
12401 \begin_layout Plain Layout
12402 Boxes
12403 \end_layout
12404
12405 \end_inset
12406
12407
12408 \begin_inset Index
12409 status collapsed
12410
12411 \begin_layout Plain Layout
12412 Frames | see
12413 \begin_inset ERT
12414 status collapsed
12415
12416 \begin_layout Plain Layout
12417
12418 {
12419 \end_layout
12420
12421 \end_inset
12422
12423 Boxes
12424 \begin_inset ERT
12425 status collapsed
12426
12427 \begin_layout Plain Layout
12428
12429 }
12430 \end_layout
12431
12432 \end_inset
12433
12434
12435 \end_layout
12436
12437 \end_inset
12438
12439
12440 \end_layout
12441
12442 \begin_layout Standard
12443 Boxes for text are described in chapter 
12444 \family typewriter
12445 Boxes
12446 \family default
12447  in the 
12448 \family typewriter
12449 Embedded
12450 \begin_inset space ~
12451 \end_inset
12452
12453 Objects
12454 \family default
12455  manual.
12456 \end_layout
12457
12458 \begin_layout Subsection
12459 Boxes with Frame
12460 \begin_inset CommandInset label
12461 LatexCommand label
12462 name "sub:Boxes-with-Frame"
12463
12464 \end_inset
12465
12466
12467 \begin_inset Index
12468 status collapsed
12469
12470 \begin_layout Plain Layout
12471 Boxes ! with frame
12472 \end_layout
12473
12474 \end_inset
12475
12476
12477 \end_layout
12478
12479 \begin_layout Standard
12480 It is possible to frame formulas or parts of it with the commands 
12481 \series bold
12482
12483 \backslash
12484 fbox
12485 \series default
12486
12487 \begin_inset Index
12488 status collapsed
12489
12490 \begin_layout Plain Layout
12491 Commands ! F ! 
12492 \backslash
12493 fbox
12494 \end_layout
12495
12496 \end_inset
12497
12498  and 
12499 \series bold
12500
12501 \backslash
12502 boxed
12503 \series default
12504
12505 \begin_inset Index
12506 status collapsed
12507
12508 \begin_layout Plain Layout
12509 Commands ! B ! 
12510 \backslash
12511 boxed
12512 \end_layout
12513
12514 \end_inset
12515
12516 .
12517 \end_layout
12518
12519 \begin_layout Standard
12520 When one of these commands is inserted to a formula, a blue box appears
12521  within a frame to enter formula parts.
12522  For 
12523 \series bold
12524
12525 \backslash
12526 fbox
12527 \series default
12528  an additional formula has to be created by 
12529 \family sans
12530 Ctrl+M
12531 \family default
12532  within this box, because the box content will otherwise be treated as mathemati
12533 cal text.
12534  When 
12535 \series bold
12536
12537 \backslash
12538 boxed
12539 \series default
12540  is used, a new formula is automatically created inside the frame.
12541 \end_layout
12542
12543 \begin_layout Standard
12544 The command 
12545 \series bold
12546
12547 \backslash
12548 fbox
12549 \series default
12550  is not suitable to frame displayed formulas because the formula will always
12551  be set in the size of the text.
12552  
12553 \series bold
12554
12555 \backslash
12556 boxed
12557 \series default
12558  is in contrary not suitable to frame inline formulas, because the formula
12559  will always be set in the size of a displayed formula.
12560 \end_layout
12561
12562 \begin_layout Standard
12563 As extension to 
12564 \series bold
12565
12566 \backslash
12567 fbox
12568 \series default
12569  there is the command 
12570 \series bold
12571
12572 \backslash
12573 framebox
12574 \series default
12575
12576 \begin_inset Index
12577 status collapsed
12578
12579 \begin_layout Plain Layout
12580 Commands ! F ! 
12581 \backslash
12582 framebox
12583 \end_layout
12584
12585 \end_inset
12586
12587  where additionally the frame width and the alignment can be specified.
12588  
12589 \series bold
12590
12591 \backslash
12592 framebox
12593 \series default
12594  is used in the following scheme:
12595 \end_layout
12596
12597 \begin_layout Standard
12598
12599 \series bold
12600
12601 \backslash
12602 framebox[frame width][position]{box content}
12603 \end_layout
12604
12605 \begin_layout Standard
12606 The position can either be 
12607 \emph on
12608 l
12609 \emph default
12610  or 
12611 \emph on
12612 r
12613 \emph default
12614 .
12615  
12616 \emph on
12617 l
12618 \emph default
12619  left aligns, 
12620 \emph on
12621 r
12622 \emph default
12623  right aligns the formula in the box.
12624  When no position is given, the formula will be centered.
12625 \begin_inset Newline newline
12626 \end_inset
12627
12628 Is no width given, also no position can be given.
12629  In this case the frame width is adjusted to the box content like for 
12630 \series bold
12631
12632 \backslash
12633 fbox
12634 \series default
12635 .
12636 \end_layout
12637
12638 \begin_layout Standard
12639 When the command 
12640 \series bold
12641
12642 \backslash
12643 framebox
12644 \series default
12645  is inserted, a box appears containing three blue boxes.
12646  The first two boxes are surrounded by brackets and denote the two optional
12647  arguments.
12648  The third box is for formula parts like for 
12649 \series bold
12650
12651 \backslash
12652 fbox
12653 \series default
12654 .
12655 \end_layout
12656
12657 \begin_layout Standard
12658 \align center
12659 \begin_inset Tabular
12660 <lyxtabular version="3" rows="5" columns="2">
12661 <features>
12662 <column alignment="center" valignment="top" width="0">
12663 <column alignment="center" valignment="top" width="0">
12664 <row>
12665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12666 \begin_inset Text
12667
12668 \begin_layout Plain Layout
12669 Command
12670 \end_layout
12671
12672 \end_inset
12673 </cell>
12674 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12675 \begin_inset Text
12676
12677 \begin_layout Plain Layout
12678 Result
12679 \begin_inset Note Note
12680 status collapsed
12681
12682 \begin_layout Plain Layout
12683
12684 \series bold
12685
12686 \backslash
12687 raisebox
12688 \series default
12689  is only used as spacer.
12690 \end_layout
12691
12692 \end_inset
12693
12694
12695 \end_layout
12696
12697 \end_inset
12698 </cell>
12699 </row>
12700 <row>
12701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12702 \begin_inset Text
12703
12704 \begin_layout Plain Layout
12705
12706 \backslash
12707 fbox
12708 \begin_inset ERT
12709 status collapsed
12710
12711 \begin_layout Plain Layout
12712
12713
12714 \backslash
12715 spce 
12716 \end_layout
12717
12718 \end_inset
12719
12720
12721 \family sans
12722 Ctrl+M
12723 \family default
12724  
12725 \backslash
12726 int
12727 \begin_inset ERT
12728 status collapsed
12729
12730 \begin_layout Plain Layout
12731
12732
12733 \backslash
12734 spce 
12735 \end_layout
12736
12737 \end_inset
12738
12739 A=B
12740 \end_layout
12741
12742 \end_inset
12743 </cell>
12744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12745 \begin_inset Text
12746
12747 \begin_layout Plain Layout
12748 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12749 \end_inset
12750
12751
12752 \end_layout
12753
12754 \end_inset
12755 </cell>
12756 </row>
12757 <row>
12758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12759 \begin_inset Text
12760
12761 \begin_layout Plain Layout
12762
12763 \backslash
12764 boxed
12765 \begin_inset ERT
12766 status collapsed
12767
12768 \begin_layout Plain Layout
12769
12770
12771 \backslash
12772 spce 
12773 \end_layout
12774
12775 \end_inset
12776
12777
12778 \backslash
12779 int
12780 \begin_inset ERT
12781 status collapsed
12782
12783 \begin_layout Plain Layout
12784
12785
12786 \backslash
12787 spce 
12788 \end_layout
12789
12790 \end_inset
12791
12792 A=B
12793 \end_layout
12794
12795 \end_inset
12796 </cell>
12797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12798 \begin_inset Text
12799
12800 \begin_layout Plain Layout
12801 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12802 \end_inset
12803
12804
12805 \end_layout
12806
12807 \end_inset
12808 </cell>
12809 </row>
12810 <row>
12811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12812 \begin_inset Text
12813
12814 \begin_layout Plain Layout
12815 A+
12816 \backslash
12817 fbox
12818 \begin_inset ERT
12819 status collapsed
12820
12821 \begin_layout Plain Layout
12822
12823
12824 \backslash
12825 spce 
12826 \end_layout
12827
12828 \end_inset
12829
12830 B
12831 \end_layout
12832
12833 \end_inset
12834 </cell>
12835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12836 \begin_inset Text
12837
12838 \begin_layout Plain Layout
12839 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12840 \end_inset
12841
12842
12843 \end_layout
12844
12845 \end_inset
12846 </cell>
12847 </row>
12848 <row>
12849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12850 \begin_inset Text
12851
12852 \begin_layout Plain Layout
12853
12854 \backslash
12855 framebox
12856 \begin_inset ERT
12857 status collapsed
12858
12859 \begin_layout Plain Layout
12860
12861
12862 \backslash
12863 spce 
12864 \end_layout
12865
12866 \end_inset
12867
12868 20mm
12869 \begin_inset Formula $\to$
12870 \end_inset
12871
12872
12873 \begin_inset Formula $\to$
12874 \end_inset
12875
12876
12877 \family sans
12878 Ctrl+M
12879 \family default
12880  
12881 \backslash
12882 frac
12883 \begin_inset ERT
12884 status collapsed
12885
12886 \begin_layout Plain Layout
12887
12888
12889 \backslash
12890 spce 
12891 \end_layout
12892
12893 \end_inset
12894
12895 A
12896 \begin_inset Formula $\downarrow$
12897 \end_inset
12898
12899 B
12900 \end_layout
12901
12902 \end_inset
12903 </cell>
12904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12905 \begin_inset Text
12906
12907 \begin_layout Plain Layout
12908 \begin_inset Formula $\raisebox{6mm}{}$
12909 \end_inset
12910
12911
12912 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
12913 \end_inset
12914
12915
12916 \begin_inset Formula $\raisebox{-4mm}{}$
12917 \end_inset
12918
12919
12920 \end_layout
12921
12922 \end_inset
12923 </cell>
12924 </row>
12925 </lyxtabular>
12926
12927 \end_inset
12928
12929
12930 \end_layout
12931
12932 \begin_layout Standard
12933 The frame thickness can also be adjusted.
12934  To do this the following commands have to be inserted in TeX-mode before
12935  the formula
12936 \end_layout
12937
12938 \begin_layout Standard
12939
12940 \series bold
12941
12942 \backslash
12943 fboxrule
12944 \series default
12945  
12946 \series bold
12947
12948 \begin_inset Quotes eld
12949 \end_inset
12950
12951 thickness
12952 \begin_inset Quotes erd
12953 \end_inset
12954
12955
12956 \series default
12957  
12958 \series bold
12959
12960 \backslash
12961 fboxsep
12962 \series default
12963  
12964 \series bold
12965
12966 \begin_inset Quotes eld
12967 \end_inset
12968
12969 distance
12970 \begin_inset Quotes erd
12971 \end_inset
12972
12973
12974 \end_layout
12975
12976 \begin_layout Standard
12977 \begin_inset Quotes eld
12978 \end_inset
12979
12980 distance
12981 \begin_inset Quotes erd
12982 \end_inset
12983
12984  specifies the minimal distance between the frame and the first character
12985  in the box.
12986  An example for this is the following framed formula:
12987 \begin_inset ERT
12988 status collapsed
12989
12990 \begin_layout Plain Layout
12991
12992
12993 \backslash
12994 fboxrule 2mm 
12995 \backslash
12996 fboxsep 3mm
12997 \end_layout
12998
12999 \end_inset
13000
13001
13002 \begin_inset Formula \[
13003 \boxed{A+B=C}\]
13004
13005 \end_inset
13006
13007 Before this formula the commands
13008 \end_layout
13009
13010 \begin_layout Standard
13011
13012 \series bold
13013
13014 \backslash
13015 fboxrule
13016 \series default
13017  
13018 \series bold
13019 2mm
13020 \series default
13021  
13022 \series bold
13023
13024 \backslash
13025 fboxsep
13026 \series default
13027  
13028 \series bold
13029 3mm
13030 \end_layout
13031
13032 \begin_layout Standard
13033 were inserted in TeX-mode.
13034  The given values are used for all following boxes.
13035 \end_layout
13036
13037 \begin_layout Standard
13038 To return to the standard frame size, the command
13039 \end_layout
13040
13041 \begin_layout Standard
13042
13043 \series bold
13044
13045 \backslash
13046 fboxrule
13047 \series default
13048  
13049 \series bold
13050 0.4pt
13051 \series default
13052  
13053 \series bold
13054
13055 \backslash
13056 fboxsep
13057 \series default
13058  
13059 \series bold
13060 3pt
13061 \series default
13062
13063 \begin_inset ERT
13064 status collapsed
13065
13066 \begin_layout Plain Layout
13067
13068
13069 \backslash
13070 fboxrule 0.4pt 
13071 \backslash
13072 fboxsep 3pt
13073 \end_layout
13074
13075 \end_inset
13076
13077
13078 \end_layout
13079
13080 \begin_layout Standard
13081 is inserted in TeX-mode before the next formula.
13082 \end_layout
13083
13084 \begin_layout Subsection
13085 Boxes without Frame
13086 \begin_inset CommandInset label
13087 LatexCommand label
13088 name "sub:Boxes-without-Frame"
13089
13090 \end_inset
13091
13092
13093 \begin_inset Index
13094 status collapsed
13095
13096 \begin_layout Plain Layout
13097 Boxes ! without frame
13098 \end_layout
13099
13100 \end_inset
13101
13102
13103 \end_layout
13104
13105 \begin_layout Standard
13106 For boxes without a frame there are the following box commands: 
13107 \series bold
13108
13109 \backslash
13110 mbox
13111 \series default
13112
13113 \begin_inset Index
13114 status collapsed
13115
13116 \begin_layout Plain Layout
13117 Commands ! M ! 
13118 \backslash
13119 mbox
13120 \end_layout
13121
13122 \end_inset
13123
13124
13125 \series bold
13126
13127 \backslash
13128 makebox
13129 \series default
13130
13131 \begin_inset Index
13132 status collapsed
13133
13134 \begin_layout Plain Layout
13135 Commands ! M ! 
13136 \backslash
13137 makebox
13138 \end_layout
13139
13140 \end_inset
13141
13142  and 
13143 \series bold
13144
13145 \backslash
13146 raisebox
13147 \series default
13148
13149 \begin_inset Index
13150 status collapsed
13151
13152 \begin_layout Plain Layout
13153 Commands ! R ! 
13154 \backslash
13155 raisebox
13156 \end_layout
13157
13158 \end_inset
13159
13160
13161 \end_layout
13162
13163 \begin_layout Standard
13164 With 
13165 \series bold
13166
13167 \backslash
13168 raisebox
13169 \series default
13170  a box can be super- or subscripted.
13171  But in contrary to normal super- and subscripting, the characters in the
13172  box keep their font size.
13173  
13174 \series bold
13175
13176 \backslash
13177 raisebox
13178 \series default
13179  is used in the following scheme:
13180 \end_layout
13181
13182 \begin_layout Standard
13183
13184 \series bold
13185
13186 \backslash
13187 raisebox{height}{box content}
13188 \end_layout
13189
13190 \begin_layout Standard
13191 When the box should contain a formula, an extra formula is needed like for
13192  
13193 \series bold
13194
13195 \backslash
13196 fbox
13197 \series default
13198 .
13199  
13200 \series medium
13201
13202 \begin_inset Note Greyedout
13203 status open
13204
13205 \begin_layout Plain Layout
13206
13207 \series bold
13208 Note:
13209 \series default
13210  For 
13211 \series bold
13212
13213 \backslash
13214 raisebox
13215 \series default
13216  this extra formula is created by pressing 
13217 \family sans
13218 Ctrl+M
13219 \family default
13220  twice instead of once because LyX doesn't yet support 
13221 \series bold
13222
13223 \backslash
13224 raisebox
13225 \series default
13226  directly.
13227 \end_layout
13228
13229 \end_inset
13230
13231
13232 \end_layout
13233
13234 \begin_layout Standard
13235 \align center
13236 \begin_inset Tabular
13237 <lyxtabular version="3" rows="4" columns="2">
13238 <features>
13239 <column alignment="center" valignment="top" width="0">
13240 <column alignment="center" valignment="top" width="0">
13241 <row>
13242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13243 \begin_inset Text
13244
13245 \begin_layout Plain Layout
13246 Command
13247 \end_layout
13248
13249 \end_inset
13250 </cell>
13251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13252 \begin_inset Text
13253
13254 \begin_layout Plain Layout
13255 Result
13256 \end_layout
13257
13258 \end_inset
13259 </cell>
13260 </row>
13261 <row>
13262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13263 \begin_inset Text
13264
13265 \begin_layout Plain Layout
13266 H
13267 \backslash
13268 raisebox{2mm
13269 \begin_inset Formula $\to$
13270 \end_inset
13271
13272
13273 \backslash
13274 {al
13275 \begin_inset Formula $\to$
13276 \end_inset
13277
13278  lo
13279 \end_layout
13280
13281 \end_inset
13282 </cell>
13283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13284 \begin_inset Text
13285
13286 \begin_layout Plain Layout
13287 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13288 \end_inset
13289
13290
13291 \end_layout
13292
13293 \end_inset
13294 </cell>
13295 </row>
13296 <row>
13297 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13298 \begin_inset Text
13299
13300 \begin_layout Plain Layout
13301 H
13302 \backslash
13303 raisebox{-2mm
13304 \begin_inset Formula $\to$
13305 \end_inset
13306
13307
13308 \backslash
13309 {al
13310 \begin_inset Formula $\to$
13311 \end_inset
13312
13313 lo
13314 \end_layout
13315
13316 \end_inset
13317 </cell>
13318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13319 \begin_inset Text
13320
13321 \begin_layout Plain Layout
13322 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13323 \end_inset
13324
13325
13326 \end_layout
13327
13328 \end_inset
13329 </cell>
13330 </row>
13331 <row>
13332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13333 \begin_inset Text
13334
13335 \begin_layout Plain Layout
13336 A=
13337 \backslash
13338 raisebox{-2mm
13339 \begin_inset Formula $\to$
13340 \end_inset
13341
13342
13343 \backslash
13344 {
13345 \family sans
13346 Ctrl+M
13347 \family default
13348  
13349 \family sans
13350 Ctrl+M
13351 \family default
13352  
13353 \backslash
13354 sqrt
13355 \begin_inset ERT
13356 status collapsed
13357
13358 \begin_layout Plain Layout
13359
13360
13361 \backslash
13362 spce 
13363 \end_layout
13364
13365 \end_inset
13366
13367
13368 \end_layout
13369
13370 \end_inset
13371 </cell>
13372 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13373 \begin_inset Text
13374
13375 \begin_layout Plain Layout
13376 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13377 \end_inset
13378
13379
13380 \end_layout
13381
13382 \end_inset
13383 </cell>
13384 </row>
13385 </lyxtabular>
13386
13387 \end_inset
13388
13389
13390 \end_layout
13391
13392 \begin_layout Standard
13393 The command 
13394 \series bold
13395
13396 \backslash
13397 mbox
13398 \series default
13399  is equivalent to 
13400 \series bold
13401
13402 \backslash
13403 fbox
13404 \series default
13405  and 
13406 \series bold
13407
13408 \backslash
13409 makebox
13410 \series default
13411  is equivalent to 
13412 \series bold
13413
13414 \backslash
13415 framebox
13416 \series default
13417 , with the difference that there is no frame.
13418 \end_layout
13419
13420 \begin_layout Subsection
13421 Colored Boxes
13422 \begin_inset CommandInset label
13423 LatexCommand label
13424 name "sub:Colored-Boxes"
13425
13426 \end_inset
13427
13428
13429 \begin_inset Index
13430 status collapsed
13431
13432 \begin_layout Plain Layout
13433 Boxes ! colored
13434 \end_layout
13435
13436 \end_inset
13437
13438
13439 \end_layout
13440
13441 \begin_layout Standard
13442 To be able to use all commands explained in this section, the LaTeX-package
13443  
13444 \series bold
13445 color
13446 \series default
13447
13448 \begin_inset Foot
13449 status collapsed
13450
13451 \begin_layout Plain Layout
13452 The LaTeX-package 
13453 \series bold
13454 color
13455 \series default
13456  is part of every LaTeX standard installation.
13457 \end_layout
13458
13459 \end_inset
13460
13461
13462 \begin_inset Index
13463 status collapsed
13464
13465 \begin_layout Plain Layout
13466 Packages ! color
13467 \end_layout
13468
13469 \end_inset
13470
13471  has to be loaded in the LaTeX-preamble with the line
13472 \begin_inset Foot
13473 status collapsed
13474
13475 \begin_layout Plain Layout
13476 When text is colored somewhere in the document with a predefined color,
13477  LyX loads the LaTeX-package 
13478 \series bold
13479 color
13480 \series default
13481  automatically.
13482  Thus it is possible that the package is loaded twice, but this doesn't
13483  arise problems.
13484 \end_layout
13485
13486 \end_inset
13487
13488
13489 \begin_inset Note Note
13490 status collapsed
13491
13492 \begin_layout Plain Layout
13493 To avoid that the package is loaded twice, a macro was inserted to the LaTeX-pre
13494 amble.
13495 \end_layout
13496
13497 \end_inset
13498
13499
13500 \end_layout
13501
13502 \begin_layout Standard
13503
13504 \series bold
13505
13506 \backslash
13507 usepackage{color}
13508 \end_layout
13509
13510 \begin_layout Standard
13511 \begin_inset VSpace medskip
13512 \end_inset
13513
13514 To color boxes, the command 
13515 \series bold
13516
13517 \backslash
13518 colorbox
13519 \series default
13520
13521 \begin_inset Index
13522 status collapsed
13523
13524 \begin_layout Plain Layout
13525 Commands ! C ! 
13526 \backslash
13527 colorbox
13528 \end_layout
13529
13530 \end_inset
13531
13532  is used in the following scheme:
13533 \end_layout
13534
13535 \begin_layout Standard
13536
13537 \series bold
13538
13539 \backslash
13540 colorbox{color}{box content}
13541 \end_layout
13542
13543 \begin_layout Standard
13544 The box content can also be a box and a 
13545 \series bold
13546
13547 \backslash
13548 colorbox
13549 \series default
13550  can also be part of another box (see the 2nd and 3rd example).
13551  When the box should contain a formula, an extra formula has to be created,
13552  the same way as for 
13553 \series bold
13554
13555 \backslash
13556 raisebox
13557 \series default
13558 .
13559 \begin_inset Foot
13560 status collapsed
13561
13562 \begin_layout Plain Layout
13563 This also applies for the command 
13564 \series bold
13565
13566 \backslash
13567 fcolorbox
13568 \series default
13569 .
13570 \end_layout
13571
13572 \end_inset
13573
13574
13575 \end_layout
13576
13577 \begin_layout Standard
13578 One of the following predefined colors can be chosen:
13579 \end_layout
13580
13581 \begin_layout Standard
13582
13583 \series bold
13584 black
13585 \series default
13586
13587 \series bold
13588 blue
13589 \series default
13590
13591 \series bold
13592 cyan
13593 \series default
13594
13595 \series bold
13596 green
13597 \series default
13598
13599 \series bold
13600 magenta
13601 \series default
13602
13603 \series bold
13604 red
13605 \series default
13606
13607 \series bold
13608 white
13609 \series default
13610  and 
13611 \series bold
13612 yellow
13613 \end_layout
13614
13615 \begin_layout Standard
13616 \align center
13617 \begin_inset Tabular
13618 <lyxtabular version="3" rows="4" columns="2">
13619 <features>
13620 <column alignment="center" valignment="top" width="0">
13621 <column alignment="center" valignment="top" width="0">
13622 <row>
13623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13624 \begin_inset Text
13625
13626 \begin_layout Plain Layout
13627 Command
13628 \end_layout
13629
13630 \end_inset
13631 </cell>
13632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13633 \begin_inset Text
13634
13635 \begin_layout Plain Layout
13636 Result
13637 \begin_inset Note Note
13638 status collapsed
13639
13640 \begin_layout Plain Layout
13641
13642 \series bold
13643
13644 \backslash
13645 raisebox
13646 \series default
13647  is only used as spacer.
13648 \end_layout
13649
13650 \end_inset
13651
13652
13653 \end_layout
13654
13655 \end_inset
13656 </cell>
13657 </row>
13658 <row>
13659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13660 \begin_inset Text
13661
13662 \begin_layout Plain Layout
13663
13664 \backslash
13665 colorbox{yellow
13666 \begin_inset Formula $\to$
13667 \end_inset
13668
13669
13670 \backslash
13671 {A=B
13672 \end_layout
13673
13674 \end_inset
13675 </cell>
13676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13677 \begin_inset Text
13678
13679 \begin_layout Plain Layout
13680 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13681 \end_inset
13682
13683
13684 \end_layout
13685
13686 \end_inset
13687 </cell>
13688 </row>
13689 <row>
13690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13691 \begin_inset Text
13692
13693 \begin_layout Plain Layout
13694
13695 \backslash
13696 colorbox{green
13697 \begin_inset Formula $\to$
13698 \end_inset
13699
13700
13701 \backslash
13702 {
13703 \backslash
13704 fbox
13705 \begin_inset ERT
13706 status collapsed
13707
13708 \begin_layout Plain Layout
13709
13710
13711 \backslash
13712 spce 
13713 \end_layout
13714
13715 \end_inset
13716
13717 A=B
13718 \end_layout
13719
13720 \end_inset
13721 </cell>
13722 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13723 \begin_inset Text
13724
13725 \begin_layout Plain Layout
13726 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13727 \end_inset
13728
13729
13730 \end_layout
13731
13732 \end_inset
13733 </cell>
13734 </row>
13735 <row>
13736 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13737 \begin_inset Text
13738
13739 \begin_layout Plain Layout
13740
13741 \backslash
13742 fbox
13743 \begin_inset ERT
13744 status collapsed
13745
13746 \begin_layout Plain Layout
13747
13748
13749 \backslash
13750 spce 
13751 \end_layout
13752
13753 \end_inset
13754
13755
13756 \backslash
13757 colorbox{green
13758 \begin_inset Formula $\to$
13759 \end_inset
13760
13761
13762 \backslash
13763 {
13764 \family sans
13765 Ctrl+M
13766 \family default
13767  
13768 \family sans
13769 Ctrl+M
13770 \family default
13771  
13772 \backslash
13773 int
13774 \begin_inset ERT
13775 status collapsed
13776
13777 \begin_layout Plain Layout
13778
13779
13780 \backslash
13781 spce 
13782 \end_layout
13783
13784 \end_inset
13785
13786 C=D
13787 \end_layout
13788
13789 \end_inset
13790 </cell>
13791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13792 \begin_inset Text
13793
13794 \begin_layout Plain Layout
13795 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13796 \end_inset
13797
13798
13799 \end_layout
13800
13801 \end_inset
13802 </cell>
13803 </row>
13804 </lyxtabular>
13805
13806 \end_inset
13807
13808
13809 \end_layout
13810
13811 \begin_layout Standard
13812
13813 \series bold
13814
13815 \backslash
13816 colorbox
13817 \series default
13818  only colors the box but not the characters in the box.
13819  To color all characters, the whole formula is highlighted and the wanted
13820  color is chosen in the 
13821 \family sans
13822 Text
13823 \begin_inset space ~
13824 \end_inset
13825
13826 Style
13827 \family default
13828  dialog.
13829  The dialog can be called with the toolbar button 
13830 \begin_inset Graphics
13831         filename ../images/dialog-show_character.png
13832         scale 85
13833
13834 \end_inset
13835
13836  or the menu 
13837 \family sans
13838 Edit\SpecialChar \menuseparator
13839 Text
13840 \begin_inset space ~
13841 \end_inset
13842
13843 Style\SpecialChar \menuseparator
13844 Customized
13845 \family default
13846 .
13847  The formula number has then the same color as the formula.
13848  When the formula number should get another color than the formula characters,
13849  the color must be changed within the formula.
13850 \end_layout
13851
13852 \begin_layout Standard
13853 An example:
13854 \end_layout
13855
13856 \begin_layout Standard
13857
13858 \color red
13859 \begin_inset Formula \begin{equation}
13860 \int A=B\label{eq:red}\end{equation}
13861
13862 \end_inset
13863
13864
13865 \color green
13866
13867 \begin_inset Formula \begin{equation}
13868 \textcolor{red}{\int A=B}\label{eq:redgreen}\end{equation}
13869
13870 \end_inset
13871
13872
13873 \end_layout
13874
13875 \begin_layout Standard
13876 Formula 
13877 \begin_inset CommandInset ref
13878 LatexCommand eqref
13879 reference "eq:red"
13880
13881 \end_inset
13882
13883  is completely colored red.
13884 \begin_inset Newline newline
13885 \end_inset
13886
13887 Formula 
13888 \begin_inset CommandInset ref
13889 LatexCommand eqref
13890 reference "eq:redgreen"
13891
13892 \end_inset
13893
13894  was first completely colored green to set the color for the formula number.
13895  Subsequently the formula characters were colored red.
13896 \end_layout
13897
13898 \begin_layout Standard
13899 \begin_inset VSpace bigskip
13900 \end_inset
13901
13902 To color the frame different than the rest of the box, the command 
13903 \series bold
13904
13905 \backslash
13906 fcolorbox
13907 \series default
13908
13909 \begin_inset Index
13910 status collapsed
13911
13912 \begin_layout Plain Layout
13913 Commands ! F ! 
13914 \backslash
13915 fcolorbox
13916 \end_layout
13917
13918 \end_inset
13919
13920  is used in the following scheme:
13921 \end_layout
13922
13923 \begin_layout Standard
13924
13925 \series bold
13926
13927 \backslash
13928 fcolorbox{frame color}{color}{box content}
13929 \end_layout
13930
13931 \begin_layout Standard
13932 So 
13933 \series bold
13934
13935 \backslash
13936 fcolorbox
13937 \series default
13938  is an extension of the command 
13939 \series bold
13940
13941 \backslash
13942 colorbox
13943 \series default
13944 .
13945  The frame width is set, like for 
13946 \series bold
13947
13948 \backslash
13949 framebox
13950 \series default
13951 , with 
13952 \series bold
13953
13954 \backslash
13955 fboxrule
13956 \series default
13957  and 
13958 \series bold
13959
13960 \backslash
13961 fboxsep
13962 \series default
13963 .
13964  An example:
13965 \begin_inset ERT
13966 status collapsed
13967
13968 \begin_layout Plain Layout
13969
13970
13971 \backslash
13972 fboxrule 1mm 
13973 \backslash
13974 fboxsep 1mm
13975 \end_layout
13976
13977 \end_inset
13978
13979
13980 \begin_inset Formula \[
13981 \fcolorbox{cyan}{magenta}{A=B}\]
13982
13983 \end_inset
13984
13985
13986 \begin_inset ERT
13987 status collapsed
13988
13989 \begin_layout Plain Layout
13990
13991
13992 \backslash
13993 fboxrule 0.4pt 
13994 \backslash
13995 fboxsep 3pt
13996 \end_layout
13997
13998 \end_inset
13999
14000
14001 \end_layout
14002
14003 \begin_layout Standard
14004 This formula was created with the command
14005 \begin_inset Newline newline
14006 \end_inset
14007
14008
14009 \series bold
14010
14011 \backslash
14012 fcolorbox{cyan
14013 \begin_inset Formula $\to$
14014 \end_inset
14015
14016
14017 \backslash
14018 {magenta
14019 \begin_inset Formula $\to$
14020 \end_inset
14021
14022
14023 \backslash
14024 {A=B
14025 \series default
14026 .
14027 \end_layout
14028
14029 \begin_layout Standard
14030 \begin_inset VSpace bigskip
14031 \end_inset
14032
14033 To use other colors than the predefined ones, they have to be defined first.
14034 \end_layout
14035
14036 \begin_layout Standard
14037 One can for example define the color 
14038 \begin_inset Quotes eld
14039 \end_inset
14040
14041
14042 \series bold
14043 darkgreen
14044 \series default
14045
14046 \begin_inset Quotes erd
14047 \end_inset
14048
14049  with the LaTeX-preamble line:
14050 \end_layout
14051
14052 \begin_layout Standard
14053
14054 \series bold
14055
14056 \backslash
14057 definecolor{darkgreen}{cmyk}{0.5,
14058 \series default
14059  
14060 \series bold
14061 0,
14062 \series default
14063  
14064 \series bold
14065 1,
14066 \series default
14067  
14068 \series bold
14069 0.5}
14070 \series default
14071
14072 \begin_inset Index
14073 status collapsed
14074
14075 \begin_layout Plain Layout
14076 Commands ! D ! 
14077 \backslash
14078 definecolor
14079 \end_layout
14080
14081 \end_inset
14082
14083
14084 \end_layout
14085
14086 \begin_layout Standard
14087
14088 \series bold
14089 cmyk
14090 \series default
14091  is the color space that denotes the colors 
14092 \series bold
14093 cyan
14094 \series default
14095
14096 \series bold
14097 magenta
14098 \series default
14099
14100 \series bold
14101 yellow
14102 \series default
14103  and 
14104 \series bold
14105 black
14106 \series default
14107 .
14108  The four comma separated numbers are the portion factor for the corresponding
14109  colors of the color space.
14110  The factors can be in the range of 0
14111 \begin_inset space \thinspace{}
14112 \end_inset
14113
14114 -
14115 \begin_inset space \thinspace{}
14116 \end_inset
14117
14118 1.
14119  Instead of 
14120 \series bold
14121 cmyk
14122 \series default
14123  also the color space 
14124 \series bold
14125 rgb
14126 \series default
14127  can be used for definitions.
14128  
14129 \series bold
14130 rgb
14131 \series default
14132  denotes 
14133 \series bold
14134 red
14135 \series default
14136
14137 \series bold
14138 green
14139 \series default
14140  and 
14141 \series bold
14142 blue
14143 \series default
14144 , so that there are in this case three portion factors for the corresponding
14145  colors.
14146  Furthermore there is the color space 
14147 \series bold
14148 gray
14149 \series default
14150  with one portion factor for the gray value.
14151 \end_layout
14152
14153 \begin_layout Standard
14154 As example a framed box with the new defined color 
14155 \series bold
14156 darkgreen
14157 \series default
14158  where the characters have been colored 
14159 \series bold
14160 yellow
14161 \series default
14162 :
14163 \begin_inset Formula \begin{equation}
14164 \colorbox{darkgreen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
14165
14166 \end_inset
14167
14168
14169 \end_layout
14170
14171 \begin_layout Standard
14172 Self-defined colors can also be used for text with the help of the command
14173  
14174 \series bold
14175
14176 \backslash
14177 textcolor
14178 \series default
14179 :
14180 \begin_inset Index
14181 status collapsed
14182
14183 \begin_layout Plain Layout
14184 Text ! colored
14185 \end_layout
14186
14187 \end_inset
14188
14189
14190 \end_layout
14191
14192 \begin_layout Standard
14193 \begin_inset ERT
14194 status collapsed
14195
14196 \begin_layout Plain Layout
14197
14198
14199 \backslash
14200 textcolor{darkgreen}{
14201 \end_layout
14202
14203 \end_inset
14204
14205 This sentence is 
14206 \begin_inset Quotes eld
14207 \end_inset
14208
14209 darkgreen
14210 \begin_inset Quotes erd
14211 \end_inset
14212
14213 .
14214 \begin_inset ERT
14215 status collapsed
14216
14217 \begin_layout Plain Layout
14218
14219 }
14220 \end_layout
14221
14222 \end_inset
14223
14224
14225 \end_layout
14226
14227 \begin_layout Standard
14228
14229 \series bold
14230
14231 \backslash
14232 textcolor
14233 \series default
14234
14235 \begin_inset Index
14236 status collapsed
14237
14238 \begin_layout Plain Layout
14239 Commands ! T ! 
14240 \backslash
14241 textcolor
14242 \end_layout
14243
14244 \end_inset
14245
14246  is used in the scheme 
14247 \series bold
14248
14249 \backslash
14250 textcolor{color}{characters to color}
14251 \series default
14252 .
14253 \end_layout
14254
14255 \begin_layout Subsection
14256 Paragraph Boxes
14257 \begin_inset CommandInset label
14258 LatexCommand label
14259 name "sub:Paragraph-Boxes"
14260
14261 \end_inset
14262
14263
14264 \begin_inset Index
14265 status collapsed
14266
14267 \begin_layout Plain Layout
14268 Boxes ! as paragraph
14269 \end_layout
14270
14271 \end_inset
14272
14273
14274 \end_layout
14275
14276 \begin_layout Standard
14277 A box that can contain several lines and paragraphs, a so called paragraph
14278  box (parbox), can be created with the menu 
14279 \family sans
14280 Insert\SpecialChar \menuseparator
14281 Box
14282 \family default
14283  or the toolbar button 
14284 \begin_inset Graphics
14285         filename ../images/box-insert.png
14286         scale 85
14287
14288 \end_inset
14289
14290 .
14291 \end_layout
14292
14293 \begin_layout Standard
14294 The following example shows a framed parbox in a line:
14295 \end_layout
14296
14297 \begin_layout Standard
14298 \begin_inset VSpace medskip
14299 \end_inset
14300
14301 This is a line 
14302 \begin_inset Box Boxed
14303 position "c"
14304 hor_pos "c"
14305 has_inner_box 1
14306 inner_pos "t"
14307 use_parbox 1
14308 width "5cm"
14309 special "none"
14310 height "1in"
14311 height_special "totalheight"
14312 status open
14313
14314 \begin_layout Plain Layout
14315 This is a paragraph box.
14316  It is exactly 5
14317 \begin_inset space \thinspace{}
14318 \end_inset
14319
14320 cm long and can also contain formulas: 
14321 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14322 \end_inset
14323
14324
14325 \end_layout
14326
14327 \end_inset
14328
14329  with a parbox.
14330 \end_layout
14331
14332 \begin_layout Standard
14333 \begin_inset VSpace medskip
14334 \end_inset
14335
14336
14337 \end_layout
14338
14339 \begin_layout Standard
14340 Such a box is created by right-clicking on the gray box inset.
14341  A dialog pops up showing the box properties.
14342  In our case set: 
14343 \emph on
14344 Decoration
14345 \emph default
14346 : Recangular box, 
14347 \emph on
14348 Inner Box
14349 \emph default
14350 : Parbox, 
14351 \emph on
14352 Width
14353 \emph default
14354 : 5
14355 \begin_inset space \thinspace{}
14356 \end_inset
14357
14358 cm, 
14359 \emph on
14360 Vertical Box Alignment
14361 \emph default
14362 : Middle
14363 \end_layout
14364
14365 \begin_layout Standard
14366 \begin_inset VSpace medskip
14367 \end_inset
14368
14369 In LaTeX a parbox is created with the command 
14370 \series bold
14371
14372 \backslash
14373 parbox
14374 \series default
14375
14376 \begin_inset Index
14377 status collapsed
14378
14379 \begin_layout Plain Layout
14380 Commands ! P ! 
14381 \backslash
14382 parbox
14383 \end_layout
14384
14385 \end_inset
14386
14387  that has the following scheme:
14388 \end_layout
14389
14390 \begin_layout Standard
14391
14392 \series bold
14393
14394 \backslash
14395 parbox[position]{width}{box content}
14396 \end_layout
14397
14398 \begin_layout Standard
14399 The positions 
14400 \emph on
14401 b
14402 \emph default
14403  and 
14404 \emph on
14405 t
14406 \emph default
14407  are possible.
14408  
14409 \emph on
14410 b
14411 \emph default
14412  for bottom means that the box is aligned within the surrounding text with
14413  its last line.
14414  With 
14415 \emph on
14416 t
14417 \emph default
14418  for top this is done with the first line.
14419  When no position is given, the box will be vertically centered, see section
14420  
14421 \emph on
14422 Boxes
14423 \emph default
14424  of the 
14425 \emph on
14426 Embedded
14427 \begin_inset space ~
14428 \end_inset
14429
14430 Objects
14431 \emph default
14432  manual for examples.
14433 \end_layout
14434
14435 \begin_layout Standard
14436 \begin_inset VSpace bigskip
14437 \end_inset
14438
14439 To frame formulas completely, including the formula number, the formula
14440  must be set into a parbox.
14441  To do this, the command 
14442 \series bold
14443
14444 \backslash
14445 fbox{
14446 \backslash
14447 parbox{
14448 \backslash
14449 linewidth-2
14450 \backslash
14451 fboxsep-2
14452 \backslash
14453 fboxrule}{
14454 \series default
14455  is inserted in TeX-mode before the formula.
14456  
14457 \series bold
14458
14459 \backslash
14460 linewidth
14461 \begin_inset Index
14462 status collapsed
14463
14464 \begin_layout Plain Layout
14465 Commands ! L ! 
14466 \backslash
14467 linewidth
14468 \end_layout
14469
14470 \end_inset
14471
14472
14473 \series default
14474  is hereby the line width set for the document.
14475  Because the frame is outside the parbox, 2
14476 \begin_inset space \thinspace{}
14477 \end_inset
14478
14479 times the frame separation and the frame thickness must be subtracted from
14480  the line width.
14481  As this is not automatically done by LyX due to a bug
14482 \begin_inset Foot
14483 status collapsed
14484
14485 \begin_layout Plain Layout
14486 \begin_inset CommandInset href
14487 LatexCommand href
14488 name "LyX-bug #4483"
14489 target "http://www.lyx.org/trac/ticket/4483"
14490
14491 \end_inset
14492
14493
14494 \end_layout
14495
14496 \end_inset
14497
14498 , TeX-mode has to be used.
14499  To be able to multiply and subtract in arguments, the LaTeX-package 
14500 \series bold
14501 calc
14502 \series default
14503
14504 \begin_inset Foot
14505 status collapsed
14506
14507 \begin_layout Plain Layout
14508
14509 \series bold
14510 calc
14511 \series default
14512  is part of every LaTeX standard installation.
14513 \end_layout
14514
14515 \end_inset
14516
14517
14518 \begin_inset Index
14519 status collapsed
14520
14521 \begin_layout Plain Layout
14522 Packages ! calc
14523 \end_layout
14524
14525 \end_inset
14526
14527  must be loaded in the LaTeX-preamble with the line
14528 \end_layout
14529
14530 \begin_layout Standard
14531
14532 \series bold
14533
14534 \backslash
14535 usepackage{calc}
14536 \end_layout
14537
14538 \begin_layout Standard
14539 Behind the formula both boxes are closed by entering 
14540 \series bold
14541 }}
14542 \series default
14543  in TeX-mode.
14544  Here is an example:
14545 \begin_inset ERT
14546 status collapsed
14547
14548 \begin_layout Plain Layout
14549
14550
14551 \backslash
14552 fboxsep 5mm 
14553 \backslash
14554 fboxrule 5mm
14555 \end_layout
14556
14557 \end_inset
14558
14559
14560 \end_layout
14561
14562 \begin_layout Standard
14563 \begin_inset ERT
14564 status collapsed
14565
14566 \begin_layout Plain Layout
14567
14568
14569 \backslash
14570 fbox{
14571 \backslash
14572 parbox{
14573 \backslash
14574 linewidth-2
14575 \backslash
14576 fboxsep-2
14577 \backslash
14578 fboxrule}{
14579 \end_layout
14580
14581 \end_inset
14582
14583
14584 \begin_inset Formula \begin{equation}
14585 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14586
14587 \end_inset
14588
14589
14590 \begin_inset ERT
14591 status collapsed
14592
14593 \begin_layout Plain Layout
14594
14595 }}
14596 \end_layout
14597
14598 \end_inset
14599
14600
14601 \begin_inset ERT
14602 status collapsed
14603
14604 \begin_layout Plain Layout
14605
14606
14607 \backslash
14608 fboxrule 0.4pt 
14609 \backslash
14610 fboxsep 3pt
14611 \end_layout
14612
14613 \end_inset
14614
14615
14616 \end_layout
14617
14618 \begin_layout Standard
14619 \begin_inset VSpace medskip
14620 \end_inset
14621
14622 As a parbox is used as argument of 
14623 \series bold
14624
14625 \backslash
14626 fbox
14627 \series default
14628 , there is in this case no difference between 
14629 \series bold
14630
14631 \backslash
14632 fbox
14633 \series default
14634  and 
14635 \series bold
14636
14637 \backslash
14638 boxed
14639 \series default
14640 .
14641 \end_layout
14642
14643 \begin_layout Standard
14644 \begin_inset VSpace bigskip
14645 \end_inset
14646
14647 Paragraph boxes are very useful to comment formulas directly.
14648  To do this, 
14649 \series bold
14650
14651 \backslash
14652 parbox
14653 \series default
14654  is used in combination with the command 
14655 \series bold
14656
14657 \backslash
14658 tag
14659 \series default
14660 .
14661  (more about 
14662 \series bold
14663
14664 \backslash
14665 tag
14666 \series default
14667  see 
14668 \begin_inset CommandInset ref
14669 LatexCommand ref
14670 reference "sub:User-defined-Numbering"
14671
14672 \end_inset
14673
14674 )
14675 \end_layout
14676
14677 \begin_layout Standard
14678 An example of a formula commented with 
14679 \series bold
14680
14681 \backslash
14682 parbox
14683 \series default
14684 :
14685 \end_layout
14686
14687 \begin_layout Standard
14688 \begin_inset ERT
14689 status collapsed
14690
14691 \begin_layout Plain Layout
14692
14693
14694 \backslash
14695 [5x-7b=3b
14696 \backslash
14697 tag*{
14698 \backslash
14699 parbox{5cm}{
14700 \end_layout
14701
14702 \end_inset
14703
14704 This is a description.
14705  It is distinctly separated from the formula and multiline.
14706 \begin_inset ERT
14707 status collapsed
14708
14709 \begin_layout Plain Layout
14710
14711 }}
14712 \backslash
14713 ]
14714 \end_layout
14715
14716 \end_inset
14717
14718
14719 \end_layout
14720
14721 \begin_layout Standard
14722 Such a formula must be inserted completely in TeX-mode because LyX does
14723  not yet support the command 
14724 \series bold
14725
14726 \backslash
14727 parbox
14728 \series default
14729  in formulas.
14730  The formula is created with the following command sequence:
14731 \end_layout
14732
14733 \begin_layout Standard
14734 The command 
14735 \series bold
14736
14737 \backslash
14738 [5x-7b=3b
14739 \backslash
14740 tag*
14741 \backslash
14742 {
14743 \backslash
14744 parbox{5cm}{
14745 \series default
14746  is inserted in TeX-mode.
14747 \begin_inset Foot
14748 status collapsed
14749
14750 \begin_layout Plain Layout
14751 When the formula style 
14752 \series bold
14753 Indented
14754 \series default
14755  is used, 
14756 \series bold
14757
14758 \backslash
14759 tag*
14760 \backslash
14761 {
14762 \series default
14763  can also be replaced by 
14764 \series bold
14765
14766 \backslash
14767 hfill
14768 \series default
14769 .
14770  (formula styles see 
14771 \begin_inset CommandInset ref
14772 LatexCommand ref
14773 reference "sec:Formula-Styles"
14774
14775 \end_inset
14776
14777 )
14778 \end_layout
14779
14780 \end_inset
14781
14782  Then the description follows as normal text and finally 
14783 \series bold
14784 }}
14785 \backslash
14786 ]
14787 \series default
14788  is inserted in TeX-mode.
14789  The commands 
14790 \series bold
14791
14792 \backslash
14793 [
14794 \series default
14795  and 
14796 \series bold
14797
14798 \backslash
14799 ]
14800 \series default
14801  hereby create a displayed formula.
14802 \end_layout
14803
14804 \begin_layout Standard
14805 The advantages of 
14806 \series bold
14807
14808 \backslash
14809 parbox
14810 \series default
14811  can be seen in this example that was 
14812 \begin_inset Quotes eld
14813 \end_inset
14814
14815 commented
14816 \begin_inset Quotes erd
14817 \end_inset
14818
14819  using the mathematical textmode:
14820 \begin_inset Formula \[
14821 5x-7b=3b\textrm{This is a description. It is not separated from the formula ...}\]
14822
14823 \end_inset
14824
14825
14826 \end_layout
14827
14828 \begin_layout Section
14829 Operators
14830 \begin_inset Index
14831 status collapsed
14832
14833 \begin_layout Plain Layout
14834 Operators
14835 \end_layout
14836
14837 \end_inset
14838
14839
14840 \end_layout
14841
14842 \begin_layout Subsection
14843 Big Operators
14844 \begin_inset CommandInset label
14845 LatexCommand label
14846 name "sub:Big-Operators"
14847
14848 \end_inset
14849
14850
14851 \begin_inset Index
14852 status collapsed
14853
14854 \begin_layout Plain Layout
14855 Operators ! big
14856 \end_layout
14857
14858 \end_inset
14859
14860
14861 \begin_inset Index
14862 status collapsed
14863
14864 \begin_layout Plain Layout
14865 Sums
14866 \end_layout
14867
14868 \end_inset
14869
14870
14871 \begin_inset Index
14872 status collapsed
14873
14874 \begin_layout Plain Layout
14875 Integrals
14876 \end_layout
14877
14878 \end_inset
14879
14880
14881 \end_layout
14882
14883 \begin_layout Standard
14884 To be able to use all integral operators listed here, the option 
14885 \family sans
14886 Use esint package automatically
14887 \family default
14888  must be set in the document settings under 
14889 \family sans
14890 Math
14891 \begin_inset space ~
14892 \end_inset
14893
14894 Options
14895 \family default
14896 .
14897 \end_layout
14898
14899 \begin_layout Standard
14900 \begin_inset space \hfill{}
14901 \end_inset
14902
14903
14904 \begin_inset Tabular
14905 <lyxtabular version="3" rows="11" columns="2">
14906 <features>
14907 <column alignment="center" valignment="top" width="0pt">
14908 <column alignment="center" valignment="top" width="0pt">
14909 <row>
14910 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14911 \begin_inset Text
14912
14913 \begin_layout Plain Layout
14914 Command
14915 \end_layout
14916
14917 \end_inset
14918 </cell>
14919 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14920 \begin_inset Text
14921
14922 \begin_layout Plain Layout
14923 Result
14924 \end_layout
14925
14926 \end_inset
14927 </cell>
14928 </row>
14929 <row>
14930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14931 \begin_inset Text
14932
14933 \begin_layout Plain Layout
14934
14935 \backslash
14936 int
14937 \begin_inset Index
14938 status collapsed
14939
14940 \begin_layout Plain Layout
14941 Commands ! I ! 
14942 \backslash
14943 int
14944 \end_layout
14945
14946 \end_inset
14947
14948
14949 \end_layout
14950
14951 \end_inset
14952 </cell>
14953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14954 \begin_inset Text
14955
14956 \begin_layout Plain Layout
14957 \begin_inset Formula $\int$
14958 \end_inset
14959
14960
14961 \end_layout
14962
14963 \end_inset
14964 </cell>
14965 </row>
14966 <row>
14967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14968 \begin_inset Text
14969
14970 \begin_layout Plain Layout
14971
14972 \backslash
14973 oint
14974 \end_layout
14975
14976 \end_inset
14977 </cell>
14978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14979 \begin_inset Text
14980
14981 \begin_layout Plain Layout
14982 \begin_inset Formula $\oint$
14983 \end_inset
14984
14985
14986 \end_layout
14987
14988 \end_inset
14989 </cell>
14990 </row>
14991 <row>
14992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14993 \begin_inset Text
14994
14995 \begin_layout Plain Layout
14996
14997 \backslash
14998 ointctrclockwise
14999 \end_layout
15000
15001 \end_inset
15002 </cell>
15003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15004 \begin_inset Text
15005
15006 \begin_layout Plain Layout
15007 \begin_inset Formula $\ointctrclockwise$
15008 \end_inset
15009
15010
15011 \end_layout
15012
15013 \end_inset
15014 </cell>
15015 </row>
15016 <row>
15017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15018 \begin_inset Text
15019
15020 \begin_layout Plain Layout
15021
15022 \backslash
15023 ointclockwise
15024 \end_layout
15025
15026 \end_inset
15027 </cell>
15028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15029 \begin_inset Text
15030
15031 \begin_layout Plain Layout
15032 \begin_inset Formula $\ointclockwise$
15033 \end_inset
15034
15035
15036 \end_layout
15037
15038 \end_inset
15039 </cell>
15040 </row>
15041 <row>
15042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15043 \begin_inset Text
15044
15045 \begin_layout Plain Layout
15046
15047 \backslash
15048 sqint
15049 \end_layout
15050
15051 \end_inset
15052 </cell>
15053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15054 \begin_inset Text
15055
15056 \begin_layout Plain Layout
15057 \begin_inset Formula $\sqint$
15058 \end_inset
15059
15060
15061 \end_layout
15062
15063 \end_inset
15064 </cell>
15065 </row>
15066 <row>
15067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15068 \begin_inset Text
15069
15070 \begin_layout Plain Layout
15071
15072 \backslash
15073 fint
15074 \end_layout
15075
15076 \end_inset
15077 </cell>
15078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15079 \begin_inset Text
15080
15081 \begin_layout Plain Layout
15082  
15083 \begin_inset Formula $\fint$
15084 \end_inset
15085
15086
15087 \end_layout
15088
15089 \end_inset
15090 </cell>
15091 </row>
15092 <row>
15093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15094 \begin_inset Text
15095
15096 \begin_layout Plain Layout
15097
15098 \backslash
15099 landupint
15100 \end_layout
15101
15102 \end_inset
15103 </cell>
15104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15105 \begin_inset Text
15106
15107 \begin_layout Plain Layout
15108  
15109 \begin_inset Formula $\landupint$
15110 \end_inset
15111
15112
15113 \end_layout
15114
15115 \end_inset
15116 </cell>
15117 </row>
15118 <row>
15119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15120 \begin_inset Text
15121
15122 \begin_layout Plain Layout
15123
15124 \backslash
15125 landdownint
15126 \end_layout
15127
15128 \end_inset
15129 </cell>
15130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15131 \begin_inset Text
15132
15133 \begin_layout Plain Layout
15134  
15135 \begin_inset Formula $\landdownint$
15136 \end_inset
15137
15138
15139 \end_layout
15140
15141 \end_inset
15142 </cell>
15143 </row>
15144 <row>
15145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15146 \begin_inset Text
15147
15148 \begin_layout Plain Layout
15149
15150 \backslash
15151 bigcap
15152 \end_layout
15153
15154 \end_inset
15155 </cell>
15156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15157 \begin_inset Text
15158
15159 \begin_layout Plain Layout
15160 \begin_inset Formula $\bigcap$
15161 \end_inset
15162
15163
15164 \end_layout
15165
15166 \end_inset
15167 </cell>
15168 </row>
15169 <row>
15170 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15171 \begin_inset Text
15172
15173 \begin_layout Plain Layout
15174
15175 \backslash
15176 bigcup
15177 \end_layout
15178
15179 \end_inset
15180 </cell>
15181 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15182 \begin_inset Text
15183
15184 \begin_layout Plain Layout
15185 \begin_inset Formula $\bigcup$
15186 \end_inset
15187
15188
15189 \end_layout
15190
15191 \end_inset
15192 </cell>
15193 </row>
15194 </lyxtabular>
15195
15196 \end_inset
15197
15198
15199 \begin_inset space \hfill{}
15200 \end_inset
15201
15202
15203 \begin_inset Tabular
15204 <lyxtabular version="3" rows="11" columns="2">
15205 <features>
15206 <column alignment="center" valignment="top" width="0pt">
15207 <column alignment="center" valignment="top" width="0pt">
15208 <row>
15209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15210 \begin_inset Text
15211
15212 \begin_layout Plain Layout
15213 Command
15214 \end_layout
15215
15216 \end_inset
15217 </cell>
15218 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15219 \begin_inset Text
15220
15221 \begin_layout Plain Layout
15222 Result
15223 \end_layout
15224
15225 \end_inset
15226 </cell>
15227 </row>
15228 <row>
15229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15230 \begin_inset Text
15231
15232 \begin_layout Plain Layout
15233
15234 \backslash
15235 sum
15236 \begin_inset Index
15237 status collapsed
15238
15239 \begin_layout Plain Layout
15240 Commands ! S ! 
15241 \backslash
15242 sum
15243 \end_layout
15244
15245 \end_inset
15246
15247
15248 \end_layout
15249
15250 \end_inset
15251 </cell>
15252 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15253 \begin_inset Text
15254
15255 \begin_layout Plain Layout
15256 \begin_inset Formula $\sum$
15257 \end_inset
15258
15259
15260 \end_layout
15261
15262 \end_inset
15263 </cell>
15264 </row>
15265 <row>
15266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15267 \begin_inset Text
15268
15269 \begin_layout Plain Layout
15270
15271 \backslash
15272 prod
15273 \begin_inset Index
15274 status collapsed
15275
15276 \begin_layout Plain Layout
15277 Commands ! P ! 
15278 \backslash
15279 prod
15280 \end_layout
15281
15282 \end_inset
15283
15284
15285 \end_layout
15286
15287 \end_inset
15288 </cell>
15289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15290 \begin_inset Text
15291
15292 \begin_layout Plain Layout
15293 \begin_inset Formula $\prod$
15294 \end_inset
15295
15296
15297 \end_layout
15298
15299 \end_inset
15300 </cell>
15301 </row>
15302 <row>
15303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15304 \begin_inset Text
15305
15306 \begin_layout Plain Layout
15307
15308 \backslash
15309 coprod
15310 \end_layout
15311
15312 \end_inset
15313 </cell>
15314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15315 \begin_inset Text
15316
15317 \begin_layout Plain Layout
15318 \begin_inset Formula $\coprod$
15319 \end_inset
15320
15321
15322 \end_layout
15323
15324 \end_inset
15325 </cell>
15326 </row>
15327 <row>
15328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15329 \begin_inset Text
15330
15331 \begin_layout Plain Layout
15332
15333 \backslash
15334 bigodot
15335 \end_layout
15336
15337 \end_inset
15338 </cell>
15339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15340 \begin_inset Text
15341
15342 \begin_layout Plain Layout
15343 \begin_inset Formula $\bigodot$
15344 \end_inset
15345
15346
15347 \end_layout
15348
15349 \end_inset
15350 </cell>
15351 </row>
15352 <row>
15353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15354 \begin_inset Text
15355
15356 \begin_layout Plain Layout
15357
15358 \backslash
15359 bigotimes
15360 \end_layout
15361
15362 \end_inset
15363 </cell>
15364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15365 \begin_inset Text
15366
15367 \begin_layout Plain Layout
15368 \begin_inset Formula $\bigotimes$
15369 \end_inset
15370
15371
15372 \end_layout
15373
15374 \end_inset
15375 </cell>
15376 </row>
15377 <row>
15378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15379 \begin_inset Text
15380
15381 \begin_layout Plain Layout
15382
15383 \backslash
15384 bigoplus
15385 \end_layout
15386
15387 \end_inset
15388 </cell>
15389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15390 \begin_inset Text
15391
15392 \begin_layout Plain Layout
15393 \begin_inset Formula $\bigoplus$
15394 \end_inset
15395
15396
15397 \end_layout
15398
15399 \end_inset
15400 </cell>
15401 </row>
15402 <row>
15403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15404 \begin_inset Text
15405
15406 \begin_layout Plain Layout
15407
15408 \backslash
15409 bigwedge
15410 \end_layout
15411
15412 \end_inset
15413 </cell>
15414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15415 \begin_inset Text
15416
15417 \begin_layout Plain Layout
15418 \begin_inset Formula $\bigwedge$
15419 \end_inset
15420
15421
15422 \end_layout
15423
15424 \end_inset
15425 </cell>
15426 </row>
15427 <row>
15428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15429 \begin_inset Text
15430
15431 \begin_layout Plain Layout
15432
15433 \backslash
15434 bigvee
15435 \end_layout
15436
15437 \end_inset
15438 </cell>
15439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15440 \begin_inset Text
15441
15442 \begin_layout Plain Layout
15443 \begin_inset Formula $\bigvee$
15444 \end_inset
15445
15446
15447 \end_layout
15448
15449 \end_inset
15450 </cell>
15451 </row>
15452 <row>
15453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15454 \begin_inset Text
15455
15456 \begin_layout Plain Layout
15457
15458 \backslash
15459 bigsqcup
15460 \end_layout
15461
15462 \end_inset
15463 </cell>
15464 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15465 \begin_inset Text
15466
15467 \begin_layout Plain Layout
15468 \begin_inset Formula $\bigsqcup$
15469 \end_inset
15470
15471
15472 \end_layout
15473
15474 \end_inset
15475 </cell>
15476 </row>
15477 <row>
15478 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15479 \begin_inset Text
15480
15481 \begin_layout Plain Layout
15482
15483 \backslash
15484 biguplus
15485 \end_layout
15486
15487 \end_inset
15488 </cell>
15489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15490 \begin_inset Text
15491
15492 \begin_layout Plain Layout
15493 \begin_inset Formula $\biguplus$
15494 \end_inset
15495
15496
15497 \end_layout
15498
15499 \end_inset
15500 </cell>
15501 </row>
15502 </lyxtabular>
15503
15504 \end_inset
15505
15506
15507 \begin_inset space \hfill{}
15508 \end_inset
15509
15510
15511 \end_layout
15512
15513 \begin_layout Standard
15514 All big operators can also be inserted via the math toolbar button 
15515 \begin_inset Graphics
15516         filename ../images/math/intop.png
15517         scale 85
15518
15519 \end_inset
15520
15521 .
15522 \end_layout
15523
15524 \begin_layout Standard
15525 The operators are called big because they are bigger than the sometimes
15526  equal looking binary operators.
15527  All big operators can have limits as described in the next subsection.
15528 \end_layout
15529
15530 \begin_layout Standard
15531 For all integral operators there is a second version available, ending on
15532  
15533 \series bold
15534 op
15535 \series default
15536
15537 \series bold
15538
15539 \backslash
15540 intop
15541 \series default
15542
15543 \series bold
15544
15545 \backslash
15546 ointop
15547 \series default
15548  etc..
15549  These operators are different from 
15550 \series bold
15551
15552 \backslash
15553 int
15554 \series default
15555  etc.
15556 \begin_inset space \space{}
15557 \end_inset
15558
15559 in the style the operator limits are displayed, see 
15560 \begin_inset CommandInset ref
15561 LatexCommand ref
15562 reference "sub:Operator-Limits"
15563
15564 \end_inset
15565
15566 .
15567  
15568 \end_layout
15569
15570 \begin_layout Subsubsection*
15571 Advice for Integrals
15572 \end_layout
15573
15574 \begin_layout Standard
15575 The letter 
15576 \emph on
15577 d
15578 \emph default
15579  in an integral is an operator, that therefore has to be set upright.
15580  This is done by highlighting the 
15581 \emph on
15582 d
15583 \emph default
15584  and using the keyboard shortcut 
15585 \begin_inset Info
15586 type  "shortcut"
15587 arg   "font-roman"
15588 \end_inset
15589
15590
15591 \begin_inset Foot
15592 status collapsed
15593
15594 \begin_layout Plain Layout
15595 Font styles
15596 \series bold
15597  
15598 \series default
15599 see 
15600 \begin_inset CommandInset ref
15601 LatexCommand ref
15602 reference "sub:Font-Styles"
15603
15604 \end_inset
15605
15606
15607 \end_layout
15608
15609 \end_inset
15610
15611 .
15612  Finally the smallest space is inserted before the 
15613 \emph on
15614 d
15615 \emph default
15616 , as this is usual for operators.
15617  An example:
15618 \end_layout
15619
15620 \begin_layout Standard
15621 incorrect: 
15622 \begin_inset Formula $\int A(x)dx$
15623 \end_inset
15624
15625
15626 \begin_inset Newline newline
15627 \end_inset
15628
15629
15630 \begin_inset ERT
15631 status collapsed
15632
15633 \begin_layout Plain Layout
15634
15635
15636 \backslash
15637 hphantom{in}
15638 \end_layout
15639
15640 \end_inset
15641
15642 correct: 
15643 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15644 \end_inset
15645
15646
15647 \end_layout
15648
15649 \begin_layout Standard
15650 For multiple integrals there are the following commands:
15651 \begin_inset VSpace medskip
15652 \end_inset
15653
15654
15655 \end_layout
15656
15657 \begin_layout Standard
15658 \begin_inset space \hfill{}
15659 \end_inset
15660
15661
15662 \begin_inset Tabular
15663 <lyxtabular version="3" rows="4" columns="2">
15664 <features>
15665 <column alignment="center" valignment="top" width="0">
15666 <column alignment="center" valignment="top" width="0">
15667 <row>
15668 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15669 \begin_inset Text
15670
15671 \begin_layout Plain Layout
15672 Command
15673 \end_layout
15674
15675 \end_inset
15676 </cell>
15677 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15678 \begin_inset Text
15679
15680 \begin_layout Plain Layout
15681 Result
15682 \begin_inset Note Note
15683 status collapsed
15684
15685 \begin_layout Plain Layout
15686
15687 \series bold
15688
15689 \backslash
15690 raisebox
15691 \series default
15692  is only used as spacer.
15693 \end_layout
15694
15695 \end_inset
15696
15697
15698 \end_layout
15699
15700 \end_inset
15701 </cell>
15702 </row>
15703 <row>
15704 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15705 \begin_inset Text
15706
15707 \begin_layout Plain Layout
15708
15709 \backslash
15710 iint
15711 \end_layout
15712
15713 \end_inset
15714 </cell>
15715 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15716 \begin_inset Text
15717
15718 \begin_layout Plain Layout
15719 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15720 \end_inset
15721
15722
15723 \end_layout
15724
15725 \end_inset
15726 </cell>
15727 </row>
15728 <row>
15729 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15730 \begin_inset Text
15731
15732 \begin_layout Plain Layout
15733
15734 \backslash
15735 oiint
15736 \end_layout
15737
15738 \end_inset
15739 </cell>
15740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15741 \begin_inset Text
15742
15743 \begin_layout Plain Layout
15744 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15745 \end_inset
15746
15747
15748 \end_layout
15749
15750 \end_inset
15751 </cell>
15752 </row>
15753 <row>
15754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15755 \begin_inset Text
15756
15757 \begin_layout Plain Layout
15758
15759 \backslash
15760 sqiint
15761 \end_layout
15762
15763 \end_inset
15764 </cell>
15765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15766 \begin_inset Text
15767
15768 \begin_layout Plain Layout
15769 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15770 \end_inset
15771
15772
15773 \end_layout
15774
15775 \end_inset
15776 </cell>
15777 </row>
15778 </lyxtabular>
15779
15780 \end_inset
15781
15782
15783 \begin_inset space \hfill{}
15784 \end_inset
15785
15786
15787 \begin_inset Tabular
15788 <lyxtabular version="3" rows="4" columns="2">
15789 <features>
15790 <column alignment="center" valignment="top" width="0">
15791 <column alignment="center" valignment="top" width="0">
15792 <row>
15793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15794 \begin_inset Text
15795
15796 \begin_layout Plain Layout
15797 Command
15798 \end_layout
15799
15800 \end_inset
15801 </cell>
15802 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15803 \begin_inset Text
15804
15805 \begin_layout Plain Layout
15806 Result
15807 \end_layout
15808
15809 \end_inset
15810 </cell>
15811 </row>
15812 <row>
15813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15814 \begin_inset Text
15815
15816 \begin_layout Plain Layout
15817
15818 \backslash
15819 iiint
15820 \end_layout
15821
15822 \end_inset
15823 </cell>
15824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15825 \begin_inset Text
15826
15827 \begin_layout Plain Layout
15828 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15829 \end_inset
15830
15831
15832 \end_layout
15833
15834 \end_inset
15835 </cell>
15836 </row>
15837 <row>
15838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15839 \begin_inset Text
15840
15841 \begin_layout Plain Layout
15842
15843 \backslash
15844 iiiint
15845 \end_layout
15846
15847 \end_inset
15848 </cell>
15849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15850 \begin_inset Text
15851
15852 \begin_layout Plain Layout
15853 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15854 \end_inset
15855
15856
15857 \end_layout
15858
15859 \end_inset
15860 </cell>
15861 </row>
15862 <row>
15863 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15864 \begin_inset Text
15865
15866 \begin_layout Plain Layout
15867
15868 \backslash
15869 dotsint
15870 \end_layout
15871
15872 \end_inset
15873 </cell>
15874 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15875 \begin_inset Text
15876
15877 \begin_layout Plain Layout
15878 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15879 \end_inset
15880
15881
15882 \end_layout
15883
15884 \end_inset
15885 </cell>
15886 </row>
15887 </lyxtabular>
15888
15889 \end_inset
15890
15891
15892 \begin_inset space \hfill{}
15893 \end_inset
15894
15895
15896 \end_layout
15897
15898 \begin_layout Subsection
15899 Operator Limits
15900 \begin_inset CommandInset label
15901 LatexCommand label
15902 name "sub:Operator-Limits"
15903
15904 \end_inset
15905
15906
15907 \begin_inset Index
15908 status collapsed
15909
15910 \begin_layout Plain Layout
15911 Operators ! Limits
15912 \end_layout
15913
15914 \end_inset
15915
15916
15917 \end_layout
15918
15919 \begin_layout Standard
15920 Limits are created by super- and subscripts:
15921 \end_layout
15922
15923 \begin_layout Standard
15924 \align center
15925 \begin_inset Tabular
15926 <lyxtabular version="3" rows="2" columns="2">
15927 <features>
15928 <column alignment="center" valignment="top" width="0pt">
15929 <column alignment="center" valignment="top" width="0pt">
15930 <row>
15931 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15932 \begin_inset Text
15933
15934 \begin_layout Plain Layout
15935 Command
15936 \end_layout
15937
15938 \end_inset
15939 </cell>
15940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15941 \begin_inset Text
15942
15943 \begin_layout Plain Layout
15944 Result
15945 \begin_inset Note Note
15946 status collapsed
15947
15948 \begin_layout Plain Layout
15949
15950 \series bold
15951
15952 \backslash
15953 raisebox
15954 \series default
15955  is only used as spacer.
15956 \end_layout
15957
15958 \end_inset
15959
15960
15961 \end_layout
15962
15963 \end_inset
15964 </cell>
15965 </row>
15966 <row>
15967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15968 \begin_inset Text
15969
15970 \begin_layout Plain Layout
15971
15972 \backslash
15973 prod^
15974 \backslash
15975 infty
15976 \begin_inset ERT
15977 status collapsed
15978
15979 \begin_layout Plain Layout
15980
15981
15982 \backslash
15983 spce 
15984 \end_layout
15985
15986 \end_inset
15987
15988
15989 \begin_inset Formula $\to$
15990 \end_inset
15991
15992 _0
15993 \begin_inset Formula $\to$
15994 \end_inset
15995
15996 A(x)
15997 \end_layout
15998
15999 \end_inset
16000 </cell>
16001 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16002 \begin_inset Text
16003
16004 \begin_layout Plain Layout
16005 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
16006 \end_inset
16007
16008
16009 \end_layout
16010
16011 \end_inset
16012 </cell>
16013 </row>
16014 </lyxtabular>
16015
16016 \end_inset
16017
16018
16019 \end_layout
16020
16021 \begin_layout Standard
16022 Limits of inline formulas are set right beside the operator.
16023  Limits in displayed formulas are set above or below the operator, except
16024  for integral limits.
16025 \end_layout
16026
16027 \begin_layout Standard
16028 To force that the limits are set beside the operator, the cursor is set
16029  directly behind the operator and the limits type is changed with the menu
16030  
16031 \family sans
16032 Edit\SpecialChar \menuseparator
16033 Math\SpecialChar \menuseparator
16034 Change Limits Type
16035 \family default
16036  to 
16037 \family sans
16038 \series bold
16039 Inline
16040 \family default
16041 \series default
16042  (shortcut 
16043 \begin_inset Info
16044 type  "shortcut"
16045 arg   "math-limits"
16046 \end_inset
16047
16048 ).
16049  An example:
16050 \end_layout
16051
16052 \begin_layout Standard
16053 The default limits type is this:
16054 \begin_inset Formula \[
16055 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
16056
16057 \end_inset
16058
16059 This is how it looks when the limits type was changed to 
16060 \family sans
16061 \series bold
16062 Inline
16063 \family default
16064 \series default
16065 :
16066 \begin_inset Formula \[
16067 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
16068
16069 \end_inset
16070
16071 For integrals, except those ending with 
16072 \series bold
16073 op
16074 \series default
16075  like 
16076 \series bold
16077
16078 \backslash
16079 intop
16080 \series default
16081
16082 \series bold
16083
16084 \backslash
16085 ointop
16086 \series default
16087  etc., the limits are by default set beside the operator.
16088  But for multiple integrals the limits are often set below the operator.
16089  In the following example the limits type was therefore set to 
16090 \series bold
16091 Display
16092 \series default
16093  and so set below the integrals:
16094 \begin_inset Formula \begin{equation}
16095 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}\end{equation}
16096
16097 \end_inset
16098
16099
16100 \end_layout
16101
16102 \begin_layout Standard
16103 \begin_inset VSpace medskip
16104 \end_inset
16105
16106 To specify conditions for limits, the commands 
16107 \series bold
16108
16109 \backslash
16110 subarray
16111 \series default
16112
16113 \begin_inset Index
16114 status collapsed
16115
16116 \begin_layout Plain Layout
16117 Commands ! S ! 
16118 \backslash
16119 subarray
16120 \end_layout
16121
16122 \end_inset
16123
16124  and 
16125 \series bold
16126
16127 \backslash
16128 substack
16129 \series default
16130
16131 \begin_inset Index
16132 status collapsed
16133
16134 \begin_layout Plain Layout
16135 Commands ! S ! 
16136 \backslash
16137 substack
16138 \end_layout
16139
16140 \end_inset
16141
16142  are used.
16143  To create for example this expression 
16144 \begin_inset Formula \begin{equation}
16145 \sum_{\begin{subarray}{c}
16146 0<k<1000\\
16147 \\k\,\in\,\mathbb{N}\end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
16148
16149 \end_inset
16150
16151
16152 \end_layout
16153
16154 \begin_layout Standard
16155 the following has to be done:
16156 \begin_inset Newline newline
16157 \end_inset
16158
16159 First the command 
16160 \series bold
16161
16162 \backslash
16163 sum
16164 \series default
16165 ^
16166 \series bold
16167 n
16168 \begin_inset ERT
16169 status collapsed
16170
16171 \begin_layout Plain Layout
16172
16173
16174 \backslash
16175 spce 
16176 \end_layout
16177
16178 \end_inset
16179
16180 _
16181 \series default
16182  is typed in.
16183  One is now in a blue box under the summation operator and insert there
16184  the command 
16185 \series bold
16186
16187 \backslash
16188 subarray
16189 \begin_inset ERT
16190 status collapsed
16191
16192 \begin_layout Plain Layout
16193
16194
16195 \backslash
16196 spce 
16197 \end_layout
16198
16199 \end_inset
16200
16201
16202 \series default
16203 .
16204  The blue box is now within a purple box and now several lines can be written
16205  among each other.
16206  A new line is created by inserting a line break (
16207 \begin_inset Info
16208 type  "shortcut"
16209 arg   "newline-insert newline"
16210 \end_inset
16211
16212 ).
16213  When now
16214 \begin_inset Newline newline
16215 \end_inset
16216
16217
16218 \series bold
16219 0<k<1000 Ctrl+Return
16220 \begin_inset Newline newline
16221 \end_inset
16222
16223
16224 \series default
16225 is typed in, a new box appears below for the new line.
16226 \end_layout
16227
16228 \begin_layout Standard
16229 The alignment of the lines can be changed to left aligned with the 
16230 \family sans
16231 table
16232 \family default
16233  
16234 \family sans
16235 toolbar
16236 \family default
16237  or the menu 
16238 \family sans
16239 Edit\SpecialChar \menuseparator
16240 Rows &Columns
16241 \family default
16242 .
16243  To get right alignment, 
16244 \series bold
16245
16246 \backslash
16247 hfill
16248 \begin_inset ERT
16249 status collapsed
16250
16251 \begin_layout Plain Layout
16252
16253
16254 \backslash
16255 spce 
16256 \end_layout
16257
16258 \end_inset
16259
16260
16261 \series default
16262  is inserted at the beginning of the line.
16263 \end_layout
16264
16265 \begin_layout Standard
16266 The command 
16267 \series bold
16268
16269 \backslash
16270 substack
16271 \series default
16272  is equivalent to 
16273 \series bold
16274
16275 \backslash
16276 subarray
16277 \series default
16278  with the difference that the lines are always centered.
16279 \end_layout
16280
16281 \begin_layout Standard
16282 \begin_inset VSpace bigskip
16283 \end_inset
16284
16285 Like in formula 
16286 \begin_inset CommandInset ref
16287 LatexCommand eqref
16288 reference "eq:substack"
16289
16290 \end_inset
16291
16292  there can be too much space beside an operator, because the characters
16293  following the operator are set beside the limits.
16294 \end_layout
16295
16296 \begin_layout Standard
16297 To avoid this, the following macro can be used in the LaTeX-preamble:
16298 \end_layout
16299
16300 \begin_layout Standard
16301
16302 \series bold
16303
16304 \backslash
16305 def
16306 \backslash
16307 clap#1{
16308 \backslash
16309 hbox to 0pt{
16310 \backslash
16311 hss #1
16312 \backslash
16313 hss}}
16314 \begin_inset Newline newline
16315 \end_inset
16316
16317
16318 \backslash
16319 def
16320 \backslash
16321 mathclap {
16322 \backslash
16323 mathpalette 
16324 \backslash
16325 mathclapinternal}
16326 \begin_inset Newline newline
16327 \end_inset
16328
16329
16330 \backslash
16331 def
16332 \backslash
16333 mathclapinternal #1#2{
16334 \backslash
16335 clap{$
16336 \backslash
16337 mathsurround =0pt #1{#2}$}}
16338 \end_layout
16339
16340 \begin_layout Standard
16341 This defines the command 
16342 \series bold
16343
16344 \backslash
16345 mathclap
16346 \series default
16347
16348 \begin_inset Index
16349 status collapsed
16350
16351 \begin_layout Plain Layout
16352 Commands ! M ! 
16353 \backslash
16354 mathclap
16355 \end_layout
16356
16357 \end_inset
16358
16359  that sets the width of the limit to 0
16360 \begin_inset space \thinspace{}
16361 \end_inset
16362
16363 pt.
16364  The command scheme is
16365 \end_layout
16366
16367 \begin_layout Standard
16368
16369 \series bold
16370
16371 \backslash
16372 mathclap{limit}
16373 \end_layout
16374
16375 \begin_layout Standard
16376 where the limit can consist of several conditions.
16377 \end_layout
16378
16379 \begin_layout Standard
16380 Applied on formula 
16381 \begin_inset CommandInset ref
16382 LatexCommand eqref
16383 reference "eq:substack"
16384
16385 \end_inset
16386
16387 , one uses the command
16388 \end_layout
16389
16390 \begin_layout Standard
16391
16392 \series bold
16393
16394 \backslash
16395 sum_
16396 \backslash
16397 mathclap{
16398 \backslash
16399 substack
16400 \begin_inset ERT
16401 status collapsed
16402
16403 \begin_layout Plain Layout
16404
16405
16406 \backslash
16407 spce 
16408 \end_layout
16409
16410 \end_inset
16411
16412 0<k<1000 Ctrl+Return
16413 \end_layout
16414
16415 \begin_layout Standard
16416 to create the lower limit.
16417  The summand is now directly behind the summation operator:
16418 \begin_inset Formula \[
16419 \sum_{\mathclap{\substack{0<k<1000\\
16420 \\k\,\in\,\mathbb{N}}
16421 }}^{n}k^{-2}\]
16422
16423 \end_inset
16424
16425
16426 \end_layout
16427
16428 \begin_layout Standard
16429 \begin_inset VSpace bigskip
16430 \end_inset
16431
16432 How to use one limit for several operators is described in 
16433 \begin_inset CommandInset ref
16434 LatexCommand ref
16435 reference "sub:Self-defined-Operators"
16436
16437 \end_inset
16438
16439 .
16440 \end_layout
16441
16442 \begin_layout Subsection
16443 Binary Operators
16444 \begin_inset CommandInset label
16445 LatexCommand label
16446 name "sub:Binary-Operators"
16447
16448 \end_inset
16449
16450
16451 \begin_inset Index
16452 status collapsed
16453
16454 \begin_layout Plain Layout
16455 Operators ! binary
16456 \end_layout
16457
16458 \end_inset
16459
16460
16461 \end_layout
16462
16463 \begin_layout Standard
16464 Binary operators are surrounded by space when there is a character before
16465  and behind them.
16466 \begin_inset VSpace medskip
16467 \end_inset
16468
16469
16470 \end_layout
16471
16472 \begin_layout Standard
16473 \begin_inset space \hfill{}
16474 \end_inset
16475
16476
16477 \begin_inset Tabular
16478 <lyxtabular version="3" rows="13" columns="2">
16479 <features>
16480 <column alignment="center" valignment="top" width="0pt">
16481 <column alignment="center" valignment="top" width="0pt">
16482 <row>
16483 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16484 \begin_inset Text
16485
16486 \begin_layout Plain Layout
16487 Command
16488 \begin_inset Note Note
16489 status collapsed
16490
16491 \begin_layout Plain Layout
16492
16493 \series bold
16494
16495 \backslash
16496 raisebox
16497 \series default
16498  is only used as spacer.
16499 \end_layout
16500
16501 \end_inset
16502
16503
16504 \end_layout
16505
16506 \end_inset
16507 </cell>
16508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16509 \begin_inset Text
16510
16511 \begin_layout Plain Layout
16512 Result
16513 \end_layout
16514
16515 \end_inset
16516 </cell>
16517 </row>
16518 <row>
16519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16520 \begin_inset Text
16521
16522 \begin_layout Plain Layout
16523 +
16524 \end_layout
16525
16526 \end_inset
16527 </cell>
16528 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16529 \begin_inset Text
16530
16531 \begin_layout Plain Layout
16532 \begin_inset Formula $+$
16533 \end_inset
16534
16535
16536 \end_layout
16537
16538 \end_inset
16539 </cell>
16540 </row>
16541 <row>
16542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16543 \begin_inset Text
16544
16545 \begin_layout Plain Layout
16546 -
16547 \end_layout
16548
16549 \end_inset
16550 </cell>
16551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16552 \begin_inset Text
16553
16554 \begin_layout Plain Layout
16555 \begin_inset Formula $-$
16556 \end_inset
16557
16558
16559 \end_layout
16560
16561 \end_inset
16562 </cell>
16563 </row>
16564 <row>
16565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16566 \begin_inset Text
16567
16568 \begin_layout Plain Layout
16569
16570 \backslash
16571 pm
16572 \end_layout
16573
16574 \end_inset
16575 </cell>
16576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16577 \begin_inset Text
16578
16579 \begin_layout Plain Layout
16580 \begin_inset Formula $\pm$
16581 \end_inset
16582
16583
16584 \end_layout
16585
16586 \end_inset
16587 </cell>
16588 </row>
16589 <row>
16590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16591 \begin_inset Text
16592
16593 \begin_layout Plain Layout
16594
16595 \backslash
16596 mp
16597 \end_layout
16598
16599 \end_inset
16600 </cell>
16601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16602 \begin_inset Text
16603
16604 \begin_layout Plain Layout
16605 \begin_inset Formula $\mp$
16606 \end_inset
16607
16608
16609 \end_layout
16610
16611 \end_inset
16612 </cell>
16613 </row>
16614 <row>
16615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16616 \begin_inset Text
16617
16618 \begin_layout Plain Layout
16619
16620 \backslash
16621 cdot
16622 \end_layout
16623
16624 \end_inset
16625 </cell>
16626 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16627 \begin_inset Text
16628
16629 \begin_layout Plain Layout
16630 \begin_inset Formula $\cdot$
16631 \end_inset
16632
16633
16634 \end_layout
16635
16636 \end_inset
16637 </cell>
16638 </row>
16639 <row>
16640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16641 \begin_inset Text
16642
16643 \begin_layout Plain Layout
16644
16645 \backslash
16646 times
16647 \end_layout
16648
16649 \end_inset
16650 </cell>
16651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16652 \begin_inset Text
16653
16654 \begin_layout Plain Layout
16655 \begin_inset Formula $\times$
16656 \end_inset
16657
16658
16659 \end_layout
16660
16661 \end_inset
16662 </cell>
16663 </row>
16664 <row>
16665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16666 \begin_inset Text
16667
16668 \begin_layout Plain Layout
16669
16670 \backslash
16671 div
16672 \end_layout
16673
16674 \end_inset
16675 </cell>
16676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16677 \begin_inset Text
16678
16679 \begin_layout Plain Layout
16680 \begin_inset Formula $\div$
16681 \end_inset
16682
16683
16684 \end_layout
16685
16686 \end_inset
16687 </cell>
16688 </row>
16689 <row>
16690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16691 \begin_inset Text
16692
16693 \begin_layout Plain Layout
16694 \begin_inset ERT
16695 status collapsed
16696
16697 \begin_layout Plain Layout
16698
16699
16700 \backslash
16701 raisebox{-1.2mm}{
16702 \end_layout
16703
16704 \end_inset
16705
16706 *
16707 \begin_inset ERT
16708 status collapsed
16709
16710 \begin_layout Plain Layout
16711
16712 }
16713 \end_layout
16714
16715 \end_inset
16716
16717
16718 \end_layout
16719
16720 \end_inset
16721 </cell>
16722 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16723 \begin_inset Text
16724
16725 \begin_layout Plain Layout
16726 \begin_inset Formula $*$
16727 \end_inset
16728
16729
16730 \end_layout
16731
16732 \end_inset
16733 </cell>
16734 </row>
16735 <row>
16736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16737 \begin_inset Text
16738
16739 \begin_layout Plain Layout
16740
16741 \backslash
16742 star
16743 \end_layout
16744
16745 \end_inset
16746 </cell>
16747 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16748 \begin_inset Text
16749
16750 \begin_layout Plain Layout
16751 \begin_inset Formula $\star$
16752 \end_inset
16753
16754
16755 \end_layout
16756
16757 \end_inset
16758 </cell>
16759 </row>
16760 <row>
16761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16762 \begin_inset Text
16763
16764 \begin_layout Plain Layout
16765
16766 \backslash
16767 circ
16768 \end_layout
16769
16770 \end_inset
16771 </cell>
16772 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16773 \begin_inset Text
16774
16775 \begin_layout Plain Layout
16776 \begin_inset Formula $\circ$
16777 \end_inset
16778
16779
16780 \end_layout
16781
16782 \end_inset
16783 </cell>
16784 </row>
16785 <row>
16786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16787 \begin_inset Text
16788
16789 \begin_layout Plain Layout
16790
16791 \backslash
16792 diamond
16793 \end_layout
16794
16795 \end_inset
16796 </cell>
16797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16798 \begin_inset Text
16799
16800 \begin_layout Plain Layout
16801 \begin_inset Formula $\diamond$
16802 \end_inset
16803
16804
16805 \end_layout
16806
16807 \end_inset
16808 </cell>
16809 </row>
16810 <row>
16811 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16812 \begin_inset Text
16813
16814 \begin_layout Plain Layout
16815
16816 \backslash
16817 bullet
16818 \end_layout
16819
16820 \end_inset
16821 </cell>
16822 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16823 \begin_inset Text
16824
16825 \begin_layout Plain Layout
16826 \begin_inset Formula $\bullet$
16827 \end_inset
16828
16829
16830 \end_layout
16831
16832 \end_inset
16833 </cell>
16834 </row>
16835 </lyxtabular>
16836
16837 \end_inset
16838
16839
16840 \begin_inset space \hfill{}
16841 \end_inset
16842
16843
16844 \begin_inset Tabular
16845 <lyxtabular version="3" rows="13" columns="2">
16846 <features>
16847 <column alignment="center" valignment="top" width="0pt">
16848 <column alignment="center" valignment="top" width="0pt">
16849 <row>
16850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16851 \begin_inset Text
16852
16853 \begin_layout Plain Layout
16854 Command
16855 \end_layout
16856
16857 \end_inset
16858 </cell>
16859 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16860 \begin_inset Text
16861
16862 \begin_layout Plain Layout
16863 Result
16864 \end_layout
16865
16866 \end_inset
16867 </cell>
16868 </row>
16869 <row>
16870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16871 \begin_inset Text
16872
16873 \begin_layout Plain Layout
16874
16875 \backslash
16876 nabla
16877 \end_layout
16878
16879 \end_inset
16880 </cell>
16881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16882 \begin_inset Text
16883
16884 \begin_layout Plain Layout
16885 \begin_inset Formula $\nabla$
16886 \end_inset
16887
16888
16889 \end_layout
16890
16891 \end_inset
16892 </cell>
16893 </row>
16894 <row>
16895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16896 \begin_inset Text
16897
16898 \begin_layout Plain Layout
16899
16900 \backslash
16901 bigtriangledown
16902 \end_layout
16903
16904 \end_inset
16905 </cell>
16906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16907 \begin_inset Text
16908
16909 \begin_layout Plain Layout
16910 \begin_inset Formula $\bigtriangledown$
16911 \end_inset
16912
16913
16914 \end_layout
16915
16916 \end_inset
16917 </cell>
16918 </row>
16919 <row>
16920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16921 \begin_inset Text
16922
16923 \begin_layout Plain Layout
16924
16925 \backslash
16926 bigtriangleup
16927 \end_layout
16928
16929 \end_inset
16930 </cell>
16931 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16932 \begin_inset Text
16933
16934 \begin_layout Plain Layout
16935 \begin_inset Formula $\bigtriangleup$
16936 \end_inset
16937
16938
16939 \end_layout
16940
16941 \end_inset
16942 </cell>
16943 </row>
16944 <row>
16945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16946 \begin_inset Text
16947
16948 \begin_layout Plain Layout
16949
16950 \backslash
16951 Box
16952 \end_layout
16953
16954 \end_inset
16955 </cell>
16956 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16957 \begin_inset Text
16958
16959 \begin_layout Plain Layout
16960 \begin_inset Formula $\Box$
16961 \end_inset
16962
16963
16964 \end_layout
16965
16966 \end_inset
16967 </cell>
16968 </row>
16969 <row>
16970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16971 \begin_inset Text
16972
16973 \begin_layout Plain Layout
16974
16975 \backslash
16976 cap 
16977 \end_layout
16978
16979 \end_inset
16980 </cell>
16981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16982 \begin_inset Text
16983
16984 \begin_layout Plain Layout
16985 \begin_inset Formula $\cap$
16986 \end_inset
16987
16988
16989 \end_layout
16990
16991 \end_inset
16992 </cell>
16993 </row>
16994 <row>
16995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16996 \begin_inset Text
16997
16998 \begin_layout Plain Layout
16999
17000 \backslash
17001 cup
17002 \end_layout
17003
17004 \end_inset
17005 </cell>
17006 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17007 \begin_inset Text
17008
17009 \begin_layout Plain Layout
17010 \begin_inset Formula $\cup$
17011 \end_inset
17012
17013
17014 \end_layout
17015
17016 \end_inset
17017 </cell>
17018 </row>
17019 <row>
17020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17021 \begin_inset Text
17022
17023 \begin_layout Plain Layout
17024
17025 \backslash
17026 dagger
17027 \end_layout
17028
17029 \end_inset
17030 </cell>
17031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17032 \begin_inset Text
17033
17034 \begin_layout Plain Layout
17035 \begin_inset Formula $\dagger$
17036 \end_inset
17037
17038
17039 \end_layout
17040
17041 \end_inset
17042 </cell>
17043 </row>
17044 <row>
17045 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17046 \begin_inset Text
17047
17048 \begin_layout Plain Layout
17049
17050 \backslash
17051 ddagger
17052 \end_layout
17053
17054 \end_inset
17055 </cell>
17056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17057 \begin_inset Text
17058
17059 \begin_layout Plain Layout
17060 \begin_inset Formula $\ddagger$
17061 \end_inset
17062
17063
17064 \end_layout
17065
17066 \end_inset
17067 </cell>
17068 </row>
17069 <row>
17070 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17071 \begin_inset Text
17072
17073 \begin_layout Plain Layout
17074
17075 \backslash
17076 wr
17077 \end_layout
17078
17079 \end_inset
17080 </cell>
17081 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17082 \begin_inset Text
17083
17084 \begin_layout Plain Layout
17085 \begin_inset Formula $\wr$
17086 \end_inset
17087
17088
17089 \end_layout
17090
17091 \end_inset
17092 </cell>
17093 </row>
17094 <row>
17095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17096 \begin_inset Text
17097
17098 \begin_layout Plain Layout
17099
17100 \backslash
17101 bigcirc
17102 \end_layout
17103
17104 \end_inset
17105 </cell>
17106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17107 \begin_inset Text
17108
17109 \begin_layout Plain Layout
17110 \begin_inset Formula $\bigcirc$
17111 \end_inset
17112
17113
17114 \end_layout
17115
17116 \end_inset
17117 </cell>
17118 </row>
17119 <row>
17120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17121 \begin_inset Text
17122
17123 \begin_layout Plain Layout
17124
17125 \backslash
17126 wedge
17127 \end_layout
17128
17129 \end_inset
17130 </cell>
17131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17132 \begin_inset Text
17133
17134 \begin_layout Plain Layout
17135 \begin_inset Formula $\wedge$
17136 \end_inset
17137
17138
17139 \end_layout
17140
17141 \end_inset
17142 </cell>
17143 </row>
17144 <row>
17145 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17146 \begin_inset Text
17147
17148 \begin_layout Plain Layout
17149
17150 \backslash
17151 vee
17152 \end_layout
17153
17154 \end_inset
17155 </cell>
17156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17157 \begin_inset Text
17158
17159 \begin_layout Plain Layout
17160 \begin_inset Formula $\vee$
17161 \end_inset
17162
17163
17164 \end_layout
17165
17166 \end_inset
17167 </cell>
17168 </row>
17169 </lyxtabular>
17170
17171 \end_inset
17172
17173
17174 \begin_inset space \hfill{}
17175 \end_inset
17176
17177
17178 \begin_inset Tabular
17179 <lyxtabular version="3" rows="13" columns="2">
17180 <features>
17181 <column alignment="center" valignment="top" width="0pt">
17182 <column alignment="center" valignment="top" width="0pt">
17183 <row>
17184 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17185 \begin_inset Text
17186
17187 \begin_layout Plain Layout
17188 Command
17189 \end_layout
17190
17191 \end_inset
17192 </cell>
17193 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17194 \begin_inset Text
17195
17196 \begin_layout Plain Layout
17197 Result
17198 \end_layout
17199
17200 \end_inset
17201 </cell>
17202 </row>
17203 <row>
17204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17205 \begin_inset Text
17206
17207 \begin_layout Plain Layout
17208
17209 \backslash
17210 oplus
17211 \end_layout
17212
17213 \end_inset
17214 </cell>
17215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17216 \begin_inset Text
17217
17218 \begin_layout Plain Layout
17219 \begin_inset Formula $\oplus$
17220 \end_inset
17221
17222
17223 \end_layout
17224
17225 \end_inset
17226 </cell>
17227 </row>
17228 <row>
17229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17230 \begin_inset Text
17231
17232 \begin_layout Plain Layout
17233
17234 \backslash
17235 ominus
17236 \end_layout
17237
17238 \end_inset
17239 </cell>
17240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17241 \begin_inset Text
17242
17243 \begin_layout Plain Layout
17244 \begin_inset Formula $\ominus$
17245 \end_inset
17246
17247
17248 \end_layout
17249
17250 \end_inset
17251 </cell>
17252 </row>
17253 <row>
17254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17255 \begin_inset Text
17256
17257 \begin_layout Plain Layout
17258
17259 \backslash
17260 otimes
17261 \end_layout
17262
17263 \end_inset
17264 </cell>
17265 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17266 \begin_inset Text
17267
17268 \begin_layout Plain Layout
17269 \begin_inset Formula $\otimes$
17270 \end_inset
17271
17272
17273 \end_layout
17274
17275 \end_inset
17276 </cell>
17277 </row>
17278 <row>
17279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17280 \begin_inset Text
17281
17282 \begin_layout Plain Layout
17283
17284 \backslash
17285 oslash
17286 \end_layout
17287
17288 \end_inset
17289 </cell>
17290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17291 \begin_inset Text
17292
17293 \begin_layout Plain Layout
17294 \begin_inset Formula $\oslash$
17295 \end_inset
17296
17297
17298 \end_layout
17299
17300 \end_inset
17301 </cell>
17302 </row>
17303 <row>
17304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17305 \begin_inset Text
17306
17307 \begin_layout Plain Layout
17308
17309 \backslash
17310 odot
17311 \end_layout
17312
17313 \end_inset
17314 </cell>
17315 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17316 \begin_inset Text
17317
17318 \begin_layout Plain Layout
17319 \begin_inset Formula $\odot$
17320 \end_inset
17321
17322
17323 \end_layout
17324
17325 \end_inset
17326 </cell>
17327 </row>
17328 <row>
17329 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17330 \begin_inset Text
17331
17332 \begin_layout Plain Layout
17333
17334 \backslash
17335 amalg
17336 \end_layout
17337
17338 \end_inset
17339 </cell>
17340 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17341 \begin_inset Text
17342
17343 \begin_layout Plain Layout
17344 \begin_inset Formula $\amalg$
17345 \end_inset
17346
17347
17348 \end_layout
17349
17350 \end_inset
17351 </cell>
17352 </row>
17353 <row>
17354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17355 \begin_inset Text
17356
17357 \begin_layout Plain Layout
17358
17359 \backslash
17360 uplus
17361 \end_layout
17362
17363 \end_inset
17364 </cell>
17365 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17366 \begin_inset Text
17367
17368 \begin_layout Plain Layout
17369 \begin_inset Formula $\uplus$
17370 \end_inset
17371
17372
17373 \end_layout
17374
17375 \end_inset
17376 </cell>
17377 </row>
17378 <row>
17379 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17380 \begin_inset Text
17381
17382 \begin_layout Plain Layout
17383
17384 \backslash
17385 setminus
17386 \end_layout
17387
17388 \end_inset
17389 </cell>
17390 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17391 \begin_inset Text
17392
17393 \begin_layout Plain Layout
17394 \begin_inset Formula $\setminus$
17395 \end_inset
17396
17397
17398 \end_layout
17399
17400 \end_inset
17401 </cell>
17402 </row>
17403 <row>
17404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17405 \begin_inset Text
17406
17407 \begin_layout Plain Layout
17408
17409 \backslash
17410 sqcap
17411 \end_layout
17412
17413 \end_inset
17414 </cell>
17415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17416 \begin_inset Text
17417
17418 \begin_layout Plain Layout
17419 \begin_inset Formula $\sqcap$
17420 \end_inset
17421
17422
17423 \end_layout
17424
17425 \end_inset
17426 </cell>
17427 </row>
17428 <row>
17429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17430 \begin_inset Text
17431
17432 \begin_layout Plain Layout
17433
17434 \backslash
17435 sqcup
17436 \end_layout
17437
17438 \end_inset
17439 </cell>
17440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17441 \begin_inset Text
17442
17443 \begin_layout Plain Layout
17444 \begin_inset Formula $\sqcup$
17445 \end_inset
17446
17447
17448 \end_layout
17449
17450 \end_inset
17451 </cell>
17452 </row>
17453 <row>
17454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17455 \begin_inset Text
17456
17457 \begin_layout Plain Layout
17458
17459 \backslash
17460 triangleleft
17461 \end_layout
17462
17463 \end_inset
17464 </cell>
17465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17466 \begin_inset Text
17467
17468 \begin_layout Plain Layout
17469 \begin_inset Formula $\triangleleft$
17470 \end_inset
17471
17472
17473 \end_layout
17474
17475 \end_inset
17476 </cell>
17477 </row>
17478 <row>
17479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17480 \begin_inset Text
17481
17482 \begin_layout Plain Layout
17483
17484 \backslash
17485 triangleright
17486 \end_layout
17487
17488 \end_inset
17489 </cell>
17490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17491 \begin_inset Text
17492
17493 \begin_layout Plain Layout
17494 \begin_inset Formula $\triangleright$
17495 \end_inset
17496
17497
17498 \end_layout
17499
17500 \end_inset
17501 </cell>
17502 </row>
17503 </lyxtabular>
17504
17505 \end_inset
17506
17507
17508 \begin_inset space \hfill{}
17509 \end_inset
17510
17511
17512 \end_layout
17513
17514 \begin_layout Standard
17515 All binary operators can also be inserted via the math toolbar button 
17516 \begin_inset Graphics
17517         filename ../images/math/pm.png
17518         scale 85
17519
17520 \end_inset
17521
17522 .
17523 \end_layout
17524
17525 \begin_layout Standard
17526 To typeset the Laplace operator also 
17527 \series bold
17528
17529 \backslash
17530 Delta
17531 \series default
17532  or 
17533 \series bold
17534
17535 \backslash
17536 nabla
17537 \series default
17538 ^
17539 \series bold
17540 2
17541 \series default
17542  (
17543 \begin_inset Formula $\nabla^{2}$
17544 \end_inset
17545
17546 ) can be used instead of 
17547 \series bold
17548
17549 \backslash
17550 bigtriangleup
17551 \series default
17552  .
17553 \end_layout
17554
17555 \begin_layout Standard
17556 The character 
17557 \family sans
17558 Menu Separator
17559 \family default
17560  from the menu 
17561 \family sans
17562 Insert\SpecialChar \menuseparator
17563 Special Character
17564 \family default
17565  is the operator 
17566 \series bold
17567
17568 \backslash
17569 triangleright
17570 \series default
17571 .
17572 \end_layout
17573
17574 \begin_layout Subsection
17575 Self-defined Operators
17576 \begin_inset CommandInset label
17577 LatexCommand label
17578 name "sub:Self-defined-Operators"
17579
17580 \end_inset
17581
17582
17583 \begin_inset Index
17584 status collapsed
17585
17586 \begin_layout Plain Layout
17587 Operators ! self-defined
17588 \end_layout
17589
17590 \end_inset
17591
17592
17593 \end_layout
17594
17595 \begin_layout Standard
17596 With the help of the command 
17597 \series bold
17598
17599 \backslash
17600 DeclareMathOperator
17601 \series default
17602
17603 \begin_inset Index
17604 status collapsed
17605
17606 \begin_layout Plain Layout
17607 Commands ! D ! 
17608 \backslash
17609 dbinom@
17610 \backslash
17611 DeclareMathOperator
17612 \end_layout
17613
17614 \end_inset
17615
17616  custom operators can be defined in the LaTeX-preamble.
17617  Its command scheme is:
17618 \end_layout
17619
17620 \begin_layout Standard
17621
17622 \series bold
17623
17624 \backslash
17625 DeclareMathOperator{new command}{display}
17626 \end_layout
17627
17628 \begin_layout Standard
17629 Display can be characters or symbols that define how the operator looks
17630  in the output.
17631  To define a big operator a * is set behind the command.
17632  All self-defined big operators can have limits as described in 
17633 \begin_inset CommandInset ref
17634 LatexCommand ref
17635 reference "sub:Operator-Limits"
17636
17637 \end_inset
17638
17639 .
17640 \end_layout
17641
17642 \begin_layout Standard
17643 For example the LaTeX-preamble line
17644 \end_layout
17645
17646 \begin_layout Standard
17647
17648 \series bold
17649
17650 \backslash
17651 DeclareMathOperator*{
17652 \backslash
17653 Lozenge}{
17654 \backslash
17655 blacklozenge}
17656 \end_layout
17657
17658 \begin_layout Standard
17659 defines the command 
17660 \series bold
17661
17662 \backslash
17663 Lozenge
17664 \series default
17665 , that inserts a big operator consisting of the lozenge symbol from 
17666 \begin_inset CommandInset ref
17667 LatexCommand ref
17668 reference "sub:Miscellaneous-Symbols"
17669
17670 \end_inset
17671
17672 :
17673 \begin_inset Formula \[
17674 \Lozenge_{n=1}^{\infty}\]
17675
17676 \end_inset
17677
17678 The command for this formula is: 
17679 \series bold
17680
17681 \backslash
17682 Lozenge
17683 \series default
17684 ^
17685 \series bold
17686
17687 \backslash
17688 infty
17689 \begin_inset Formula $\to$
17690 \end_inset
17691
17692 _n=1
17693 \end_layout
17694
17695 \begin_layout Standard
17696 \begin_inset VSpace bigskip
17697 \end_inset
17698
17699 When self-defined operators are not used several times in the document,
17700  they can also be defined with the commands 
17701 \series bold
17702
17703 \backslash
17704 mathop
17705 \series default
17706
17707 \begin_inset Index
17708 status collapsed
17709
17710 \begin_layout Plain Layout
17711 Commands ! M ! 
17712 \backslash
17713 mathop
17714 \end_layout
17715
17716 \end_inset
17717
17718  and 
17719 \series bold
17720
17721 \backslash
17722 mathbin
17723 \series default
17724
17725 \begin_inset Index
17726 status collapsed
17727
17728 \begin_layout Plain Layout
17729 Commands ! M ! 
17730 \backslash
17731 mathbin
17732 \end_layout
17733
17734 \end_inset
17735
17736 , which have the following scheme:
17737 \end_layout
17738
17739 \begin_layout Standard
17740
17741 \series bold
17742
17743 \backslash
17744 mathop{display}
17745 \series default
17746  and 
17747 \series bold
17748
17749 \backslash
17750 mathbin{display}
17751 \end_layout
17752
17753 \begin_layout Standard
17754
17755 \series bold
17756
17757 \backslash
17758 mathop
17759 \series default
17760  defines big operators, 
17761 \series bold
17762
17763 \backslash
17764 mathbin
17765 \series default
17766  binary operators.
17767 \end_layout
17768
17769 \begin_layout Standard
17770
17771 \series bold
17772
17773 \backslash
17774 mathop
17775 \series default
17776  can e.
17777 \begin_inset space \thinspace{}
17778 \end_inset
17779
17780 g.
17781 \begin_inset space \space{}
17782 \end_inset
17783
17784 be used to use one limit for several operators:
17785 \end_layout
17786
17787 \begin_layout Standard
17788 \begin_inset Formula \[
17789 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17790
17791 \end_inset
17792
17793
17794 \end_layout
17795
17796 \begin_layout Standard
17797 The command for the formula above is:
17798 \begin_inset Newline newline
17799 \end_inset
17800
17801
17802 \series bold
17803
17804 \backslash
17805 mathop{
17806 \backslash
17807 sum
17808 \backslash
17809 negmedspace
17810 \backslash
17811 sum
17812 \series default
17813
17814 \begin_inset ERT
17815 status collapsed
17816
17817 \begin_layout Plain Layout
17818
17819
17820 \backslash
17821 spce 
17822 \end_layout
17823
17824 \end_inset
17825
17826
17827 \series bold
17828
17829 \begin_inset Formula $\to$
17830 \end_inset
17831
17832 ^N
17833 \series default
17834
17835 \begin_inset ERT
17836 status collapsed
17837
17838 \begin_layout Plain Layout
17839
17840
17841 \backslash
17842 spce 
17843 \end_layout
17844
17845 \end_inset
17846
17847
17848 \series bold
17849 _i,j=1
17850 \end_layout
17851
17852 \begin_layout Section
17853 Fonts
17854 \begin_inset Index
17855 status collapsed
17856
17857 \begin_layout Plain Layout
17858 Fonts
17859 \end_layout
17860
17861 \end_inset
17862
17863
17864 \end_layout
17865
17866 \begin_layout Subsection
17867 Font Styles
17868 \begin_inset CommandInset label
17869 LatexCommand label
17870 name "sub:Font-Styles"
17871
17872 \end_inset
17873
17874
17875 \begin_inset Index
17876 status collapsed
17877
17878 \begin_layout Plain Layout
17879 Font ! style
17880 \end_layout
17881
17882 \end_inset
17883
17884
17885 \end_layout
17886
17887 \begin_layout Standard
17888 Latin letters in formulas can be set in one of the following font styles:
17889 \begin_inset VSpace -2mm
17890 \end_inset
17891
17892
17893 \end_layout
17894
17895 \begin_layout Standard
17896 \align center
17897 \begin_inset Tabular
17898 <lyxtabular version="3" rows="6" columns="3">
17899 <features>
17900 <column alignment="center" valignment="top" width="0">
17901 <column alignment="center" valignment="top" width="0">
17902 <column alignment="center" valignment="top" width="0">
17903 <row>
17904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17905 \begin_inset Text
17906
17907 \begin_layout Plain Layout
17908 Command
17909 \end_layout
17910
17911 \end_inset
17912 </cell>
17913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17914 \begin_inset Text
17915
17916 \begin_layout Plain Layout
17917 Result
17918 \end_layout
17919
17920 \end_inset
17921 </cell>
17922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17923 \begin_inset Text
17924
17925 \begin_layout Plain Layout
17926 shortcut
17927 \end_layout
17928
17929 \end_inset
17930 </cell>
17931 </row>
17932 <row>
17933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17934 \begin_inset Text
17935
17936 \begin_layout Plain Layout
17937
17938 \backslash
17939 mathbb
17940 \series bold
17941
17942 \begin_inset ERT
17943 status collapsed
17944
17945 \begin_layout Plain Layout
17946
17947
17948 \backslash
17949 spce 
17950 \end_layout
17951
17952 \end_inset
17953
17954
17955 \series default
17956 ABC
17957 \end_layout
17958
17959 \end_inset
17960 </cell>
17961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17962 \begin_inset Text
17963
17964 \begin_layout Plain Layout
17965 \begin_inset Formula $\mathbb{ABC}$
17966 \end_inset
17967
17968
17969 \end_layout
17970
17971 \end_inset
17972 </cell>
17973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17974 \begin_inset Text
17975
17976 \begin_layout Plain Layout
17977 \begin_inset Info
17978 type  "shortcut"
17979 arg   "font-noun"
17980 \end_inset
17981
17982
17983 \end_layout
17984
17985 \end_inset
17986 </cell>
17987 </row>
17988 <row>
17989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17990 \begin_inset Text
17991
17992 \begin_layout Plain Layout
17993
17994 \backslash
17995 mathbf
17996 \series bold
17997
17998 \begin_inset ERT
17999 status collapsed
18000
18001 \begin_layout Plain Layout
18002
18003
18004 \backslash
18005 spce 
18006 \end_layout
18007
18008 \end_inset
18009
18010
18011 \series default
18012 AbC
18013 \end_layout
18014
18015 \end_inset
18016 </cell>
18017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18018 \begin_inset Text
18019
18020 \begin_layout Plain Layout
18021 \begin_inset Formula $\mathbf{AbC}$
18022 \end_inset
18023
18024
18025 \end_layout
18026
18027 \end_inset
18028 </cell>
18029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18030 \begin_inset Text
18031
18032 \begin_layout Plain Layout
18033 \begin_inset Info
18034 type  "shortcut"
18035 arg   "font-bold"
18036 \end_inset
18037
18038
18039 \end_layout
18040
18041 \end_inset
18042 </cell>
18043 </row>
18044 <row>
18045 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18046 \begin_inset Text
18047
18048 \begin_layout Plain Layout
18049
18050 \backslash
18051 boldsymbol
18052 \series bold
18053
18054 \begin_inset ERT
18055 status collapsed
18056
18057 \begin_layout Plain Layout
18058
18059
18060 \backslash
18061 spce 
18062 \end_layout
18063
18064 \end_inset
18065
18066
18067 \series default
18068 AbC
18069 \end_layout
18070
18071 \end_inset
18072 </cell>
18073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18074 \begin_inset Text
18075
18076 \begin_layout Plain Layout
18077 \begin_inset Formula $\boldsymbol{AbC}$
18078 \end_inset
18079
18080
18081 \end_layout
18082
18083 \end_inset
18084 </cell>
18085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18086 \begin_inset Text
18087
18088 \begin_layout Plain Layout
18089 \begin_inset Info
18090 type  "shortcuts"
18091 arg   "font-boldsymbol"
18092 \end_inset
18093
18094
18095 \end_layout
18096
18097 \end_inset
18098 </cell>
18099 </row>
18100 <row>
18101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18102 \begin_inset Text
18103
18104 \begin_layout Plain Layout
18105
18106 \backslash
18107 mathcal
18108 \series bold
18109
18110 \begin_inset ERT
18111 status collapsed
18112
18113 \begin_layout Plain Layout
18114
18115
18116 \backslash
18117 spce 
18118 \end_layout
18119
18120 \end_inset
18121
18122
18123 \series default
18124 ABC
18125 \end_layout
18126
18127 \end_inset
18128 </cell>
18129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18130 \begin_inset Text
18131
18132 \begin_layout Plain Layout
18133 \begin_inset Formula $\mathcal{ABC}$
18134 \end_inset
18135
18136
18137 \end_layout
18138
18139 \end_inset
18140 </cell>
18141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18142 \begin_inset Text
18143
18144 \begin_layout Plain Layout
18145 \begin_inset Info
18146 type  "shortcut"
18147 arg   "font-emph"
18148 \end_inset
18149
18150
18151 \end_layout
18152
18153 \end_inset
18154 </cell>
18155 </row>
18156 <row>
18157 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18158 \begin_inset Text
18159
18160 \begin_layout Plain Layout
18161
18162 \backslash
18163 mathfrak
18164 \series bold
18165
18166 \begin_inset ERT
18167 status collapsed
18168
18169 \begin_layout Plain Layout
18170
18171
18172 \backslash
18173 spce 
18174 \end_layout
18175
18176 \end_inset
18177
18178
18179 \series default
18180 AbC
18181 \end_layout
18182
18183 \end_inset
18184 </cell>
18185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18186 \begin_inset Text
18187
18188 \begin_layout Plain Layout
18189 \begin_inset Formula $\mathfrak{AbC}$
18190 \end_inset
18191
18192
18193 \end_layout
18194
18195 \end_inset
18196 </cell>
18197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18198 \begin_inset Text
18199
18200 \begin_layout Plain Layout
18201 -
18202 \end_layout
18203
18204 \end_inset
18205 </cell>
18206 </row>
18207 </lyxtabular>
18208
18209 \end_inset
18210
18211
18212 \end_layout
18213
18214 \begin_layout Standard
18215 \align center
18216 \begin_inset Tabular
18217 <lyxtabular version="3" rows="5" columns="3">
18218 <features>
18219 <column alignment="center" valignment="top" width="0">
18220 <column alignment="center" valignment="top" width="0">
18221 <column alignment="center" valignment="top" width="0">
18222 <row>
18223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18224 \begin_inset Text
18225
18226 \begin_layout Plain Layout
18227 Command
18228 \end_layout
18229
18230 \end_inset
18231 </cell>
18232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18233 \begin_inset Text
18234
18235 \begin_layout Plain Layout
18236 Result
18237 \end_layout
18238
18239 \end_inset
18240 </cell>
18241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18242 \begin_inset Text
18243
18244 \begin_layout Plain Layout
18245 shortcut
18246 \end_layout
18247
18248 \end_inset
18249 </cell>
18250 </row>
18251 <row>
18252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18253 \begin_inset Text
18254
18255 \begin_layout Plain Layout
18256
18257 \backslash
18258 mathit
18259 \series bold
18260
18261 \begin_inset ERT
18262 status collapsed
18263
18264 \begin_layout Plain Layout
18265
18266
18267 \backslash
18268 spce 
18269 \end_layout
18270
18271 \end_inset
18272
18273
18274 \series default
18275 AbC
18276 \end_layout
18277
18278 \end_inset
18279 </cell>
18280 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18281 \begin_inset Text
18282
18283 \begin_layout Plain Layout
18284 \begin_inset Formula $\mathit{AbC}$
18285 \end_inset
18286
18287
18288 \end_layout
18289
18290 \end_inset
18291 </cell>
18292 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18293 \begin_inset Text
18294
18295 \begin_layout Plain Layout
18296 -
18297 \end_layout
18298
18299 \end_inset
18300 </cell>
18301 </row>
18302 <row>
18303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18304 \begin_inset Text
18305
18306 \begin_layout Plain Layout
18307
18308 \backslash
18309 mathrm
18310 \series bold
18311
18312 \begin_inset ERT
18313 status collapsed
18314
18315 \begin_layout Plain Layout
18316
18317
18318 \backslash
18319 spce 
18320 \end_layout
18321
18322 \end_inset
18323
18324
18325 \series default
18326 AbC
18327 \end_layout
18328
18329 \end_inset
18330 </cell>
18331 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18332 \begin_inset Text
18333
18334 \begin_layout Plain Layout
18335 \begin_inset Formula $\mathrm{AbC}$
18336 \end_inset
18337
18338
18339 \end_layout
18340
18341 \end_inset
18342 </cell>
18343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18344 \begin_inset Text
18345
18346 \begin_layout Plain Layout
18347 \begin_inset Info
18348 type  "shortcut"
18349 arg   "font-roman"
18350 \end_inset
18351
18352
18353 \end_layout
18354
18355 \end_inset
18356 </cell>
18357 </row>
18358 <row>
18359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18360 \begin_inset Text
18361
18362 \begin_layout Plain Layout
18363
18364 \backslash
18365 mathsf
18366 \series bold
18367
18368 \begin_inset ERT
18369 status collapsed
18370
18371 \begin_layout Plain Layout
18372
18373
18374 \backslash
18375 spce 
18376 \end_layout
18377
18378 \end_inset
18379
18380
18381 \series default
18382 AbC
18383 \end_layout
18384
18385 \end_inset
18386 </cell>
18387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18388 \begin_inset Text
18389
18390 \begin_layout Plain Layout
18391 \begin_inset Formula $\mathsf{AbC}$
18392 \end_inset
18393
18394
18395 \end_layout
18396
18397 \end_inset
18398 </cell>
18399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18400 \begin_inset Text
18401
18402 \begin_layout Plain Layout
18403 \begin_inset Info
18404 type  "shortcut"
18405 arg   "font-sans"
18406 \end_inset
18407
18408
18409 \end_layout
18410
18411 \end_inset
18412 </cell>
18413 </row>
18414 <row>
18415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18416 \begin_inset Text
18417
18418 \begin_layout Plain Layout
18419
18420 \backslash
18421 mathtt
18422 \series bold
18423
18424 \begin_inset ERT
18425 status collapsed
18426
18427 \begin_layout Plain Layout
18428
18429
18430 \backslash
18431 spce 
18432 \end_layout
18433
18434 \end_inset
18435
18436
18437 \series default
18438 AbC
18439 \end_layout
18440
18441 \end_inset
18442 </cell>
18443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18444 \begin_inset Text
18445
18446 \begin_layout Plain Layout
18447 \begin_inset Formula $\mathtt{AbC}$
18448 \end_inset
18449
18450
18451 \end_layout
18452
18453 \end_inset
18454 </cell>
18455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18456 \begin_inset Text
18457
18458 \begin_layout Plain Layout
18459 \begin_inset Info
18460 type  "shortcut"
18461 arg   "font-typewriter"
18462 \end_inset
18463
18464
18465 \end_layout
18466
18467 \end_inset
18468 </cell>
18469 </row>
18470 </lyxtabular>
18471
18472 \end_inset
18473
18474
18475 \end_layout
18476
18477 \begin_layout Standard
18478 \begin_inset Note Greyedout
18479 status open
18480
18481 \begin_layout Plain Layout
18482
18483 \series bold
18484 Note:
18485 \series default
18486  The styles 
18487 \series bold
18488
18489 \backslash
18490 mathbb
18491 \series default
18492  and 
18493 \series bold
18494
18495 \backslash
18496 mathcal
18497 \series default
18498  can only be used for big letters.
18499 \end_layout
18500
18501 \end_inset
18502
18503
18504 \end_layout
18505
18506 \begin_layout Standard
18507 Predefined is the style 
18508 \series bold
18509
18510 \backslash
18511 mathnormal
18512 \series default
18513 .
18514 \end_layout
18515
18516 \begin_layout Standard
18517 The style commands work also for letters in mathematical constructs:
18518 \begin_inset Formula \[
18519 \mathfrak{A=\frac{b}{C}}\]
18520
18521 \end_inset
18522
18523
18524 \end_layout
18525
18526 \begin_layout Standard
18527 Characters in mathematical text don't appear in a math font style but in
18528  the text font style 
18529 \series bold
18530
18531 \backslash
18532 textrm
18533 \series default
18534 .
18535  That their style can't be set correctly via the text style dialog is a
18536  bug in LyX.
18537 \begin_inset Foot
18538 status collapsed
18539
18540 \begin_layout Plain Layout
18541 \begin_inset CommandInset href
18542 LatexCommand href
18543 name "LyX-bug #4629"
18544 target "http://www.lyx.org/trac/ticket/4629"
18545
18546 \end_inset
18547
18548
18549 \end_layout
18550
18551 \end_inset
18552
18553
18554 \end_layout
18555
18556 \begin_layout Standard
18557 Instead of the style commands the dialog 
18558 \family sans
18559 Edit\SpecialChar \menuseparator
18560 Math\SpecialChar \menuseparator
18561 Text Style
18562 \family default
18563  or the toolbar button 
18564 \begin_inset Graphics
18565         filename ../images/math/font.png
18566         scale 85
18567
18568 \end_inset
18569
18570  can be used.
18571 \end_layout
18572
18573 \begin_layout Subsection
18574 Bold Formulas
18575 \begin_inset CommandInset label
18576 LatexCommand label
18577 name "sub:Bold-Formulas"
18578
18579 \end_inset
18580
18581
18582 \begin_inset Index
18583 status collapsed
18584
18585 \begin_layout Plain Layout
18586 Formula ! bold
18587 \end_layout
18588
18589 \end_inset
18590
18591
18592 \end_layout
18593
18594 \begin_layout Standard
18595 To make a complete formula bold, the command 
18596 \series bold
18597
18598 \backslash
18599 mathbf
18600 \series default
18601  from the previous subsection cannot be used, because it doesn't work for
18602  small Greek letters.
18603  Furthermore it prints Latin letters always upright, like in the following
18604  equation:
18605 \end_layout
18606
18607 \begin_layout Standard
18608 \begin_inset Formula \[
18609 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{equation with \textbackslash mathbf}\]
18610
18611 \end_inset
18612
18613
18614 \end_layout
18615
18616 \begin_layout Standard
18617 To display the formula correctly, the command 
18618 \series bold
18619
18620 \backslash
18621 boldsymbol
18622 \series default
18623  is used:
18624 \begin_inset Formula \[
18625 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{equation with \textbackslash boldsymbol}}\]
18626
18627 \end_inset
18628
18629 It is also possible to set the formula in a 
18630 \series bold
18631 boldmath environment
18632 \series default
18633 .
18634  This environment is created by inserting the command 
18635 \series bold
18636
18637 \backslash
18638 boldmath
18639 \begin_inset Index
18640 status collapsed
18641
18642 \begin_layout Plain Layout
18643 Commands ! B ! 
18644 \backslash
18645 boldmath
18646 \end_layout
18647
18648 \end_inset
18649
18650
18651 \series default
18652  in TeX-mode.
18653  To end the environment, the command 
18654 \series bold
18655
18656 \backslash
18657 unboldmath
18658 \begin_inset Index
18659 status collapsed
18660
18661 \begin_layout Plain Layout
18662 Commands ! U ! 
18663 \backslash
18664 unboldmath
18665 \end_layout
18666
18667 \end_inset
18668
18669
18670 \series default
18671  is inserted in TeX-mode.
18672 \begin_inset ERT
18673 status collapsed
18674
18675 \begin_layout Plain Layout
18676
18677
18678 \backslash
18679 boldmath 
18680 \end_layout
18681
18682 \end_inset
18683
18684
18685 \begin_inset Formula \[
18686 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{equation in a boldmath environment}\]
18687
18688 \end_inset
18689
18690
18691 \begin_inset ERT
18692 status collapsed
18693
18694 \begin_layout Plain Layout
18695
18696
18697 \backslash
18698 unboldmath 
18699 \end_layout
18700
18701 \end_inset
18702
18703
18704 \end_layout
18705
18706 \begin_layout Subsection
18707 Colored Formulas
18708 \begin_inset Index
18709 status collapsed
18710
18711 \begin_layout Plain Layout
18712 Formula ! colored
18713 \end_layout
18714
18715 \end_inset
18716
18717
18718 \end_layout
18719
18720 \begin_layout Standard
18721 Formulas can be colored like normal text: Highlight a formula or a formula
18722  part and use the 
18723 \family sans
18724 Text Style
18725 \family default
18726  dialog.
18727  Here is a formula in magenta:
18728 \begin_inset Formula \[
18729 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}\]
18730
18731 \end_inset
18732
18733
18734 \end_layout
18735
18736 \begin_layout Standard
18737 You can also define your own colors as described in 
18738 \begin_inset CommandInset ref
18739 LatexCommand ref
18740 reference "sub:Colored-Boxes"
18741
18742 \end_inset
18743
18744 .
18745  They can be used with the TeX code command 
18746 \series bold
18747
18748 \backslash
18749 textcolor
18750 \series default
18751
18752 \begin_inset Index
18753 status collapsed
18754
18755 \begin_layout Plain Layout
18756 Commands ! T ! 
18757 \backslash
18758 textcolor
18759 \end_layout
18760
18761 \end_inset
18762
18763  in the scheme
18764 \end_layout
18765
18766 \begin_layout Standard
18767
18768 \series bold
18769
18770 \backslash
18771 textcolor{color}{characters or formula}
18772 \end_layout
18773
18774 \begin_layout Standard
18775 The following example was colored completely dark green and partly red:
18776 \end_layout
18777
18778 \begin_layout Standard
18779 \begin_inset ERT
18780 status collapsed
18781
18782 \begin_layout Plain Layout
18783
18784
18785 \backslash
18786 textcolor{darkgreen}{
18787 \end_layout
18788
18789 \end_inset
18790
18791
18792 \begin_inset Formula \[
18793 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}\]
18794
18795 \end_inset
18796
18797
18798 \begin_inset ERT
18799 status collapsed
18800
18801 \begin_layout Plain Layout
18802
18803 }
18804 \end_layout
18805
18806 \end_inset
18807
18808
18809 \end_layout
18810
18811 \begin_layout Standard
18812 Due to a bug in LyX only complete formulas can be colored with self-defined
18813  colors.
18814 \begin_inset Foot
18815 status collapsed
18816
18817 \begin_layout Plain Layout
18818 \begin_inset CommandInset href
18819 LatexCommand href
18820 name "LyX-bug #5269"
18821 target "http://www.lyx.org/trac/ticket/5269"
18822
18823 \end_inset
18824
18825
18826 \end_layout
18827
18828 \end_inset
18829
18830
18831 \end_layout
18832
18833 \begin_layout Subsection
18834 Font Sizes
18835 \begin_inset CommandInset label
18836 LatexCommand label
18837 name "sub:Font-Sizes"
18838
18839 \end_inset
18840
18841
18842 \begin_inset Index
18843 status collapsed
18844
18845 \begin_layout Plain Layout
18846 Font ! size
18847 \end_layout
18848
18849 \end_inset
18850
18851
18852 \end_layout
18853
18854 \begin_layout Standard
18855 For characters in formulas there are, analog to characters in text, the
18856  following size commands:
18857 \end_layout
18858
18859 \begin_layout Standard
18860
18861 \series bold
18862
18863 \backslash
18864 Huge
18865 \series default
18866
18867 \series bold
18868
18869 \backslash
18870 huge
18871 \series default
18872
18873 \series bold
18874
18875 \backslash
18876 LARGE
18877 \series default
18878
18879 \series bold
18880
18881 \backslash
18882 Large
18883 \series default
18884
18885 \series bold
18886
18887 \backslash
18888 large
18889 \series default
18890
18891 \series bold
18892
18893 \backslash
18894 normalsize
18895 \series default
18896
18897 \series bold
18898
18899 \backslash
18900 small
18901 \series default
18902 ,
18903 \begin_inset Newline newline
18904 \end_inset
18905
18906
18907 \series bold
18908
18909 \backslash
18910 footnotesize
18911 \series default
18912
18913 \series bold
18914
18915 \backslash
18916 scriptsize
18917 \series default
18918  and 
18919 \series bold
18920
18921 \backslash
18922 tiny
18923 \end_layout
18924
18925 \begin_layout Standard
18926 The size produced by the commands depends on the document font size, that
18927  corresponds with the command 
18928 \series bold
18929
18930 \backslash
18931 normalsize
18932 \series default
18933 .
18934  The other commands produce smaller or larger sizes than 
18935 \series bold
18936
18937 \backslash
18938 normalsize
18939 \series default
18940 .
18941  The font size can however not exceed a certain value.
18942  Is for example the document font size 12
18943 \begin_inset space \thinspace{}
18944 \end_inset
18945
18946 pt, the command 
18947 \series bold
18948
18949 \backslash
18950 Huge
18951 \series default
18952  switches to the same size as 
18953 \series bold
18954
18955 \backslash
18956 huge
18957 \series default
18958 .
18959  
18960 \end_layout
18961
18962 \begin_layout Standard
18963 A size command is inserted in TeX-mode before the formula and sets the size
18964  for all following formula and text characters.
18965  To switch back to the initial size, the command 
18966 \series bold
18967
18968 \backslash
18969 normalsize
18970 \series default
18971  is inserted behind the formula in TeX-mode.
18972 \end_layout
18973
18974 \begin_layout Standard
18975 \begin_inset Newpage newpage
18976 \end_inset
18977
18978
18979 \end_layout
18980
18981 \begin_layout Standard
18982 Within a formula the size can be changed using the following size commands:
18983 \end_layout
18984
18985 \begin_layout Standard
18986 \noindent
18987 \align center
18988 \begin_inset Tabular
18989 <lyxtabular version="3" rows="5" columns="2">
18990 <features>
18991 <column alignment="center" valignment="top" width="0">
18992 <column alignment="center" valignment="top" width="0">
18993 <row>
18994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18995 \begin_inset Text
18996
18997 \begin_layout Plain Layout
18998 Command
18999 \end_layout
19000
19001 \end_inset
19002 </cell>
19003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19004 \begin_inset Text
19005
19006 \begin_layout Plain Layout
19007 Result
19008 \begin_inset Note Note
19009 status collapsed
19010
19011 \begin_layout Plain Layout
19012
19013 \series bold
19014
19015 \backslash
19016 raisebox
19017 \series default
19018  is only used as spacer.
19019 \end_layout
19020
19021 \end_inset
19022
19023
19024 \end_layout
19025
19026 \end_inset
19027 </cell>
19028 </row>
19029 <row>
19030 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19031 \begin_inset Text
19032
19033 \begin_layout Plain Layout
19034
19035 \backslash
19036 displaystyle
19037 \begin_inset Index
19038 status collapsed
19039
19040 \begin_layout Plain Layout
19041 Commands ! D ! 
19042 \backslash
19043 displaystyle
19044 \end_layout
19045
19046 \end_inset
19047
19048
19049 \end_layout
19050
19051 \end_inset
19052 </cell>
19053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19054 \begin_inset Text
19055
19056 \begin_layout Plain Layout
19057 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19058 \end_inset
19059
19060
19061 \end_layout
19062
19063 \end_inset
19064 </cell>
19065 </row>
19066 <row>
19067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19068 \begin_inset Text
19069
19070 \begin_layout Plain Layout
19071
19072 \backslash
19073 textstyle
19074 \end_layout
19075
19076 \end_inset
19077 </cell>
19078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19079 \begin_inset Text
19080
19081 \begin_layout Plain Layout
19082 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19083 \end_inset
19084
19085
19086 \end_layout
19087
19088 \end_inset
19089 </cell>
19090 </row>
19091 <row>
19092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19093 \begin_inset Text
19094
19095 \begin_layout Plain Layout
19096
19097 \backslash
19098 scriptstyle
19099 \end_layout
19100
19101 \end_inset
19102 </cell>
19103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19104 \begin_inset Text
19105
19106 \begin_layout Plain Layout
19107 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19108 \end_inset
19109
19110
19111 \end_layout
19112
19113 \end_inset
19114 </cell>
19115 </row>
19116 <row>
19117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19118 \begin_inset Text
19119
19120 \begin_layout Plain Layout
19121
19122 \backslash
19123 scriptscriptstyle
19124 \end_layout
19125
19126 \end_inset
19127 </cell>
19128 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19129 \begin_inset Text
19130
19131 \begin_layout Plain Layout
19132 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19133 \end_inset
19134
19135
19136 \end_layout
19137
19138 \end_inset
19139 </cell>
19140 </row>
19141 </lyxtabular>
19142
19143 \end_inset
19144
19145
19146 \end_layout
19147
19148 \begin_layout Standard
19149 After entering these commands, a blue box appears in which the formula parts
19150  are inserted.
19151 \end_layout
19152
19153 \begin_layout Standard
19154 There is a further method to change the font size, that though only works
19155  for symbols or letters in mathematical text.
19156  To use it, one of the above text size commands is inserted in mathematical
19157  text.
19158  All following characters until the end of the mathematical text or until
19159  another size command will have the selected size.
19160  Two examples:
19161 \begin_inset VSpace -2mm
19162 \end_inset
19163
19164
19165 \end_layout
19166
19167 \begin_layout Standard
19168 \begin_inset ERT
19169 status collapsed
19170
19171 \begin_layout Plain Layout
19172
19173
19174 \backslash
19175 huge 
19176 \end_layout
19177
19178 \end_inset
19179
19180
19181 \begin_inset Formula \[
19182 A=\frac{B}{c}\cdot\maltese\]
19183
19184 \end_inset
19185
19186
19187 \begin_inset Formula \[
19188 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
19189
19190 \end_inset
19191
19192
19193 \begin_inset ERT
19194 status collapsed
19195
19196 \begin_layout Plain Layout
19197
19198
19199 \backslash
19200 normalsize 
19201 \end_layout
19202
19203 \end_inset
19204
19205
19206 \end_layout
19207
19208 \begin_layout Standard
19209 \begin_inset VSpace medskip
19210 \end_inset
19211
19212 Before both formulas the command 
19213 \series bold
19214
19215 \backslash
19216 huge
19217 \series default
19218  was inserted.
19219  The command for the second formula is:
19220 \begin_inset Newline newline
19221 \end_inset
19222
19223
19224 \series bold
19225
19226 \backslash
19227 maltese
19228 \begin_inset ERT
19229 status collapsed
19230
19231 \begin_layout Plain Layout
19232
19233
19234 \backslash
19235 spce 
19236 \end_layout
19237
19238 \end_inset
19239
19240 A Alt+M M 
19241 \backslash
19242 Large
19243 \begin_inset ERT
19244 status collapsed
19245
19246 \begin_layout Plain Layout
19247
19248
19249 \backslash
19250 spce 
19251 \end_layout
19252
19253 \end_inset
19254
19255
19256 \backslash
19257 maltese
19258 \begin_inset ERT
19259 status collapsed
19260
19261 \begin_layout Plain Layout
19262
19263
19264 \backslash
19265 spce 
19266 \end_layout
19267
19268 \end_inset
19269
19270
19271 \backslash
19272 textit
19273 \begin_inset ERT
19274 status collapsed
19275
19276 \begin_layout Plain Layout
19277
19278
19279 \backslash
19280 spce 
19281 \end_layout
19282
19283 \end_inset
19284
19285 A
19286 \begin_inset Formula $\to$
19287 \end_inset
19288
19289
19290 \begin_inset Formula $\to$
19291 \end_inset
19292
19293
19294 \begin_inset Newline newline
19295 \end_inset
19296
19297
19298 \begin_inset space \hspace*{}
19299 \length 1cm
19300 \end_inset
19301
19302 Alt+M
19303 \series default
19304  
19305 \series bold
19306
19307 \backslash
19308 tiny
19309 \begin_inset ERT
19310 status collapsed
19311
19312 \begin_layout Plain Layout
19313
19314
19315 \backslash
19316 spce 
19317 \end_layout
19318
19319 \end_inset
19320
19321
19322 \backslash
19323 maltese
19324 \begin_inset ERT
19325 status collapsed
19326
19327 \begin_layout Plain Layout
19328
19329
19330 \backslash
19331 spce 
19332 \end_layout
19333
19334 \end_inset
19335
19336
19337 \backslash
19338 textit
19339 \begin_inset ERT
19340 status collapsed
19341
19342 \begin_layout Plain Layout
19343
19344
19345 \backslash
19346 spce 
19347 \end_layout
19348
19349 \end_inset
19350
19351 A
19352 \end_layout
19353
19354 \begin_layout Standard
19355 If a symbol cannot be displayed in different sizes, it will always be displayed
19356  in the default size.
19357 \end_layout
19358
19359 \begin_layout Standard
19360 \begin_inset Newpage newpage
19361 \end_inset
19362
19363
19364 \end_layout
19365
19366 \begin_layout Section
19367 Greek Letters
19368 \begin_inset Index
19369 status collapsed
19370
19371 \begin_layout Plain Layout
19372 Greek letters
19373 \end_layout
19374
19375 \end_inset
19376
19377
19378 \end_layout
19379
19380 \begin_layout Standard
19381 All Greek letters can also be inserted via the toolbar button 
19382 \begin_inset Graphics
19383         filename ../images/math/alpha.png
19384         scale 85
19385
19386 \end_inset
19387
19388 .
19389 \end_layout
19390
19391 \begin_layout Subsection
19392 Small Letters
19393 \begin_inset Index
19394 status collapsed
19395
19396 \begin_layout Plain Layout
19397 Greek letters ! small
19398 \end_layout
19399
19400 \end_inset
19401
19402
19403 \end_layout
19404
19405 \begin_layout Standard
19406 \begin_inset space \hfill{}
19407 \end_inset
19408
19409
19410 \begin_inset Tabular
19411 <lyxtabular version="3" rows="11" columns="2">
19412 <features>
19413 <column alignment="center" valignment="top" width="0pt">
19414 <column alignment="center" valignment="top" width="0pt">
19415 <row>
19416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19417 \begin_inset Text
19418
19419 \begin_layout Plain Layout
19420 Command
19421 \end_layout
19422
19423 \end_inset
19424 </cell>
19425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19426 \begin_inset Text
19427
19428 \begin_layout Plain Layout
19429 Result
19430 \end_layout
19431
19432 \end_inset
19433 </cell>
19434 </row>
19435 <row>
19436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19437 \begin_inset Text
19438
19439 \begin_layout Plain Layout
19440
19441 \backslash
19442 alpha
19443 \end_layout
19444
19445 \end_inset
19446 </cell>
19447 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19448 \begin_inset Text
19449
19450 \begin_layout Plain Layout
19451 \begin_inset Formula $\alpha$
19452 \end_inset
19453
19454
19455 \end_layout
19456
19457 \end_inset
19458 </cell>
19459 </row>
19460 <row>
19461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19462 \begin_inset Text
19463
19464 \begin_layout Plain Layout
19465
19466 \backslash
19467 beta
19468 \end_layout
19469
19470 \end_inset
19471 </cell>
19472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19473 \begin_inset Text
19474
19475 \begin_layout Plain Layout
19476 \begin_inset Formula $\beta$
19477 \end_inset
19478
19479
19480 \end_layout
19481
19482 \end_inset
19483 </cell>
19484 </row>
19485 <row>
19486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19487 \begin_inset Text
19488
19489 \begin_layout Plain Layout
19490
19491 \backslash
19492 gamma
19493 \end_layout
19494
19495 \end_inset
19496 </cell>
19497 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19498 \begin_inset Text
19499
19500 \begin_layout Plain Layout
19501 \begin_inset Formula $\gamma$
19502 \end_inset
19503
19504
19505 \end_layout
19506
19507 \end_inset
19508 </cell>
19509 </row>
19510 <row>
19511 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19512 \begin_inset Text
19513
19514 \begin_layout Plain Layout
19515
19516 \backslash
19517 delta
19518 \end_layout
19519
19520 \end_inset
19521 </cell>
19522 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19523 \begin_inset Text
19524
19525 \begin_layout Plain Layout
19526 \begin_inset Formula $\delta$
19527 \end_inset
19528
19529
19530 \end_layout
19531
19532 \end_inset
19533 </cell>
19534 </row>
19535 <row>
19536 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19537 \begin_inset Text
19538
19539 \begin_layout Plain Layout
19540
19541 \backslash
19542 epsilon
19543 \end_layout
19544
19545 \end_inset
19546 </cell>
19547 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19548 \begin_inset Text
19549
19550 \begin_layout Plain Layout
19551 \begin_inset Formula $\epsilon$
19552 \end_inset
19553
19554
19555 \end_layout
19556
19557 \end_inset
19558 </cell>
19559 </row>
19560 <row>
19561 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19562 \begin_inset Text
19563
19564 \begin_layout Plain Layout
19565
19566 \backslash
19567 varepsilon
19568 \end_layout
19569
19570 \end_inset
19571 </cell>
19572 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19573 \begin_inset Text
19574
19575 \begin_layout Plain Layout
19576 \begin_inset Formula $\varepsilon$
19577 \end_inset
19578
19579
19580 \end_layout
19581
19582 \end_inset
19583 </cell>
19584 </row>
19585 <row>
19586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19587 \begin_inset Text
19588
19589 \begin_layout Plain Layout
19590
19591 \backslash
19592 zeta
19593 \end_layout
19594
19595 \end_inset
19596 </cell>
19597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19598 \begin_inset Text
19599
19600 \begin_layout Plain Layout
19601 \begin_inset Formula $\zeta$
19602 \end_inset
19603
19604
19605 \end_layout
19606
19607 \end_inset
19608 </cell>
19609 </row>
19610 <row>
19611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19612 \begin_inset Text
19613
19614 \begin_layout Plain Layout
19615
19616 \backslash
19617 eta
19618 \end_layout
19619
19620 \end_inset
19621 </cell>
19622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19623 \begin_inset Text
19624
19625 \begin_layout Plain Layout
19626 \begin_inset Formula $\eta$
19627 \end_inset
19628
19629
19630 \end_layout
19631
19632 \end_inset
19633 </cell>
19634 </row>
19635 <row>
19636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19637 \begin_inset Text
19638
19639 \begin_layout Plain Layout
19640
19641 \backslash
19642 theta
19643 \end_layout
19644
19645 \end_inset
19646 </cell>
19647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19648 \begin_inset Text
19649
19650 \begin_layout Plain Layout
19651 \begin_inset Formula $\theta$
19652 \end_inset
19653
19654
19655 \end_layout
19656
19657 \end_inset
19658 </cell>
19659 </row>
19660 <row>
19661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19662 \begin_inset Text
19663
19664 \begin_layout Plain Layout
19665
19666 \backslash
19667 vartheta
19668 \end_layout
19669
19670 \end_inset
19671 </cell>
19672 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19673 \begin_inset Text
19674
19675 \begin_layout Plain Layout
19676 \begin_inset Formula $\vartheta$
19677 \end_inset
19678
19679
19680 \end_layout
19681
19682 \end_inset
19683 </cell>
19684 </row>
19685 </lyxtabular>
19686
19687 \end_inset
19688
19689
19690 \begin_inset space \hfill{}
19691 \end_inset
19692
19693
19694 \begin_inset Tabular
19695 <lyxtabular version="3" rows="12" columns="2">
19696 <features>
19697 <column alignment="center" valignment="top" width="0pt">
19698 <column alignment="center" valignment="top" width="0pt">
19699 <row>
19700 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19701 \begin_inset Text
19702
19703 \begin_layout Plain Layout
19704 Command
19705 \end_layout
19706
19707 \end_inset
19708 </cell>
19709 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19710 \begin_inset Text
19711
19712 \begin_layout Plain Layout
19713 Result
19714 \end_layout
19715
19716 \end_inset
19717 </cell>
19718 </row>
19719 <row>
19720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19721 \begin_inset Text
19722
19723 \begin_layout Plain Layout
19724
19725 \backslash
19726 iota
19727 \end_layout
19728
19729 \end_inset
19730 </cell>
19731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19732 \begin_inset Text
19733
19734 \begin_layout Plain Layout
19735 \begin_inset Formula $\iota$
19736 \end_inset
19737
19738
19739 \end_layout
19740
19741 \end_inset
19742 </cell>
19743 </row>
19744 <row>
19745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19746 \begin_inset Text
19747
19748 \begin_layout Plain Layout
19749
19750 \backslash
19751 kappa
19752 \end_layout
19753
19754 \end_inset
19755 </cell>
19756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19757 \begin_inset Text
19758
19759 \begin_layout Plain Layout
19760 \begin_inset Formula $\kappa$
19761 \end_inset
19762
19763
19764 \end_layout
19765
19766 \end_inset
19767 </cell>
19768 </row>
19769 <row>
19770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19771 \begin_inset Text
19772
19773 \begin_layout Plain Layout
19774
19775 \backslash
19776 varkappa
19777 \end_layout
19778
19779 \end_inset
19780 </cell>
19781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19782 \begin_inset Text
19783
19784 \begin_layout Plain Layout
19785 \begin_inset Formula $\varkappa$
19786 \end_inset
19787
19788
19789 \end_layout
19790
19791 \end_inset
19792 </cell>
19793 </row>
19794 <row>
19795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19796 \begin_inset Text
19797
19798 \begin_layout Plain Layout
19799
19800 \backslash
19801 lambda
19802 \end_layout
19803
19804 \end_inset
19805 </cell>
19806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19807 \begin_inset Text
19808
19809 \begin_layout Plain Layout
19810 \begin_inset Formula $\lambda$
19811 \end_inset
19812
19813
19814 \end_layout
19815
19816 \end_inset
19817 </cell>
19818 </row>
19819 <row>
19820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19821 \begin_inset Text
19822
19823 \begin_layout Plain Layout
19824
19825 \backslash
19826 mu
19827 \end_layout
19828
19829 \end_inset
19830 </cell>
19831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19832 \begin_inset Text
19833
19834 \begin_layout Plain Layout
19835 \begin_inset Formula $\mu$
19836 \end_inset
19837
19838
19839 \end_layout
19840
19841 \end_inset
19842 </cell>
19843 </row>
19844 <row>
19845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19846 \begin_inset Text
19847
19848 \begin_layout Plain Layout
19849
19850 \backslash
19851 nu
19852 \end_layout
19853
19854 \end_inset
19855 </cell>
19856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19857 \begin_inset Text
19858
19859 \begin_layout Plain Layout
19860 \begin_inset Formula $\nu$
19861 \end_inset
19862
19863
19864 \end_layout
19865
19866 \end_inset
19867 </cell>
19868 </row>
19869 <row>
19870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19871 \begin_inset Text
19872
19873 \begin_layout Plain Layout
19874
19875 \backslash
19876 xi
19877 \end_layout
19878
19879 \end_inset
19880 </cell>
19881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19882 \begin_inset Text
19883
19884 \begin_layout Plain Layout
19885 \begin_inset Formula $\xi$
19886 \end_inset
19887
19888
19889 \end_layout
19890
19891 \end_inset
19892 </cell>
19893 </row>
19894 <row>
19895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19896 \begin_inset Text
19897
19898 \begin_layout Plain Layout
19899 o
19900 \end_layout
19901
19902 \end_inset
19903 </cell>
19904 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19905 \begin_inset Text
19906
19907 \begin_layout Plain Layout
19908 \begin_inset Formula $o$
19909 \end_inset
19910
19911
19912 \end_layout
19913
19914 \end_inset
19915 </cell>
19916 </row>
19917 <row>
19918 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19919 \begin_inset Text
19920
19921 \begin_layout Plain Layout
19922
19923 \backslash
19924 pi
19925 \end_layout
19926
19927 \end_inset
19928 </cell>
19929 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19930 \begin_inset Text
19931
19932 \begin_layout Plain Layout
19933 \begin_inset Formula $\pi$
19934 \end_inset
19935
19936
19937 \end_layout
19938
19939 \end_inset
19940 </cell>
19941 </row>
19942 <row>
19943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19944 \begin_inset Text
19945
19946 \begin_layout Plain Layout
19947
19948 \backslash
19949 varpi
19950 \end_layout
19951
19952 \end_inset
19953 </cell>
19954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19955 \begin_inset Text
19956
19957 \begin_layout Plain Layout
19958 \begin_inset Formula $\varpi$
19959 \end_inset
19960
19961
19962 \end_layout
19963
19964 \end_inset
19965 </cell>
19966 </row>
19967 <row>
19968 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19969 \begin_inset Text
19970
19971 \begin_layout Plain Layout
19972
19973 \backslash
19974 rho
19975 \end_layout
19976
19977 \end_inset
19978 </cell>
19979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19980 \begin_inset Text
19981
19982 \begin_layout Plain Layout
19983 \begin_inset Formula $\rho$
19984 \end_inset
19985
19986
19987 \end_layout
19988
19989 \end_inset
19990 </cell>
19991 </row>
19992 </lyxtabular>
19993
19994 \end_inset
19995
19996
19997 \begin_inset space \hfill{}
19998 \end_inset
19999
20000
20001 \begin_inset Tabular
20002 <lyxtabular version="3" rows="11" columns="2">
20003 <features>
20004 <column alignment="center" valignment="top" width="0pt">
20005 <column alignment="center" valignment="top" width="0pt">
20006 <row>
20007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20008 \begin_inset Text
20009
20010 \begin_layout Plain Layout
20011 Command
20012 \end_layout
20013
20014 \end_inset
20015 </cell>
20016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20017 \begin_inset Text
20018
20019 \begin_layout Plain Layout
20020 Result
20021 \end_layout
20022
20023 \end_inset
20024 </cell>
20025 </row>
20026 <row>
20027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20028 \begin_inset Text
20029
20030 \begin_layout Plain Layout
20031
20032 \backslash
20033 varrho
20034 \end_layout
20035
20036 \end_inset
20037 </cell>
20038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20039 \begin_inset Text
20040
20041 \begin_layout Plain Layout
20042 \begin_inset Formula $\varrho$
20043 \end_inset
20044
20045
20046 \end_layout
20047
20048 \end_inset
20049 </cell>
20050 </row>
20051 <row>
20052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20053 \begin_inset Text
20054
20055 \begin_layout Plain Layout
20056
20057 \backslash
20058 sigma
20059 \end_layout
20060
20061 \end_inset
20062 </cell>
20063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20064 \begin_inset Text
20065
20066 \begin_layout Plain Layout
20067 \begin_inset Formula $\sigma$
20068 \end_inset
20069
20070
20071 \end_layout
20072
20073 \end_inset
20074 </cell>
20075 </row>
20076 <row>
20077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20078 \begin_inset Text
20079
20080 \begin_layout Plain Layout
20081
20082 \backslash
20083 varsigma
20084 \end_layout
20085
20086 \end_inset
20087 </cell>
20088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20089 \begin_inset Text
20090
20091 \begin_layout Plain Layout
20092 \begin_inset Formula $\varsigma$
20093 \end_inset
20094
20095
20096 \end_layout
20097
20098 \end_inset
20099 </cell>
20100 </row>
20101 <row>
20102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20103 \begin_inset Text
20104
20105 \begin_layout Plain Layout
20106
20107 \backslash
20108 tau
20109 \end_layout
20110
20111 \end_inset
20112 </cell>
20113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20114 \begin_inset Text
20115
20116 \begin_layout Plain Layout
20117 \begin_inset Formula $\tau$
20118 \end_inset
20119
20120
20121 \end_layout
20122
20123 \end_inset
20124 </cell>
20125 </row>
20126 <row>
20127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20128 \begin_inset Text
20129
20130 \begin_layout Plain Layout
20131
20132 \backslash
20133 upsilon
20134 \end_layout
20135
20136 \end_inset
20137 </cell>
20138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20139 \begin_inset Text
20140
20141 \begin_layout Plain Layout
20142 \begin_inset Formula $\upsilon$
20143 \end_inset
20144
20145
20146 \end_layout
20147
20148 \end_inset
20149 </cell>
20150 </row>
20151 <row>
20152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20153 \begin_inset Text
20154
20155 \begin_layout Plain Layout
20156
20157 \backslash
20158 phi
20159 \end_layout
20160
20161 \end_inset
20162 </cell>
20163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20164 \begin_inset Text
20165
20166 \begin_layout Plain Layout
20167 \begin_inset Formula $\phi$
20168 \end_inset
20169
20170
20171 \end_layout
20172
20173 \end_inset
20174 </cell>
20175 </row>
20176 <row>
20177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20178 \begin_inset Text
20179
20180 \begin_layout Plain Layout
20181
20182 \backslash
20183 varphi
20184 \end_layout
20185
20186 \end_inset
20187 </cell>
20188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20189 \begin_inset Text
20190
20191 \begin_layout Plain Layout
20192 \begin_inset Formula $\varphi$
20193 \end_inset
20194
20195
20196 \end_layout
20197
20198 \end_inset
20199 </cell>
20200 </row>
20201 <row>
20202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20203 \begin_inset Text
20204
20205 \begin_layout Plain Layout
20206
20207 \backslash
20208 chi
20209 \end_layout
20210
20211 \end_inset
20212 </cell>
20213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20214 \begin_inset Text
20215
20216 \begin_layout Plain Layout
20217 \begin_inset Formula $\chi$
20218 \end_inset
20219
20220
20221 \end_layout
20222
20223 \end_inset
20224 </cell>
20225 </row>
20226 <row>
20227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20228 \begin_inset Text
20229
20230 \begin_layout Plain Layout
20231
20232 \backslash
20233 psi
20234 \end_layout
20235
20236 \end_inset
20237 </cell>
20238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20239 \begin_inset Text
20240
20241 \begin_layout Plain Layout
20242 \begin_inset Formula $\psi$
20243 \end_inset
20244
20245
20246 \end_layout
20247
20248 \end_inset
20249 </cell>
20250 </row>
20251 <row>
20252 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20253 \begin_inset Text
20254
20255 \begin_layout Plain Layout
20256
20257 \backslash
20258 omega
20259 \end_layout
20260
20261 \end_inset
20262 </cell>
20263 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20264 \begin_inset Text
20265
20266 \begin_layout Plain Layout
20267 \begin_inset Formula $\omega$
20268 \end_inset
20269
20270
20271 \end_layout
20272
20273 \end_inset
20274 </cell>
20275 </row>
20276 </lyxtabular>
20277
20278 \end_inset
20279
20280
20281 \begin_inset space \hfill{}
20282 \end_inset
20283
20284
20285 \end_layout
20286
20287 \begin_layout Standard
20288 \begin_inset VSpace medskip
20289 \end_inset
20290
20291
20292 \end_layout
20293
20294 \begin_layout Standard
20295 How to create upright Greek letters is explained in 
20296 \begin_inset CommandInset ref
20297 LatexCommand ref
20298 reference "sub:Upright-small-Greek"
20299
20300 \end_inset
20301
20302 .
20303 \end_layout
20304
20305 \begin_layout Subsection
20306 Big Letters
20307 \begin_inset Index
20308 status collapsed
20309
20310 \begin_layout Plain Layout
20311 Greek letters ! big
20312 \end_layout
20313
20314 \end_inset
20315
20316
20317 \end_layout
20318
20319 \begin_layout Standard
20320 \begin_inset space \hfill{}
20321 \end_inset
20322
20323
20324 \begin_inset Tabular
20325 <lyxtabular version="3" rows="7" columns="2">
20326 <features>
20327 <column alignment="center" valignment="top" width="0pt">
20328 <column alignment="center" valignment="top" width="0pt">
20329 <row>
20330 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20331 \begin_inset Text
20332
20333 \begin_layout Plain Layout
20334 Command
20335 \end_layout
20336
20337 \end_inset
20338 </cell>
20339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20340 \begin_inset Text
20341
20342 \begin_layout Plain Layout
20343 Result
20344 \end_layout
20345
20346 \end_inset
20347 </cell>
20348 </row>
20349 <row>
20350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20351 \begin_inset Text
20352
20353 \begin_layout Plain Layout
20354
20355 \backslash
20356 Gamma
20357 \end_layout
20358
20359 \end_inset
20360 </cell>
20361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20362 \begin_inset Text
20363
20364 \begin_layout Plain Layout
20365 \begin_inset Formula $\Gamma$
20366 \end_inset
20367
20368
20369 \end_layout
20370
20371 \end_inset
20372 </cell>
20373 </row>
20374 <row>
20375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20376 \begin_inset Text
20377
20378 \begin_layout Plain Layout
20379
20380 \backslash
20381 Delta
20382 \end_layout
20383
20384 \end_inset
20385 </cell>
20386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20387 \begin_inset Text
20388
20389 \begin_layout Plain Layout
20390 \begin_inset Formula $\Delta$
20391 \end_inset
20392
20393
20394 \end_layout
20395
20396 \end_inset
20397 </cell>
20398 </row>
20399 <row>
20400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20401 \begin_inset Text
20402
20403 \begin_layout Plain Layout
20404
20405 \backslash
20406 Theta
20407 \end_layout
20408
20409 \end_inset
20410 </cell>
20411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20412 \begin_inset Text
20413
20414 \begin_layout Plain Layout
20415 \begin_inset Formula $\Theta$
20416 \end_inset
20417
20418
20419 \end_layout
20420
20421 \end_inset
20422 </cell>
20423 </row>
20424 <row>
20425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20426 \begin_inset Text
20427
20428 \begin_layout Plain Layout
20429
20430 \backslash
20431 Lambda
20432 \end_layout
20433
20434 \end_inset
20435 </cell>
20436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20437 \begin_inset Text
20438
20439 \begin_layout Plain Layout
20440 \begin_inset Formula $\Lambda$
20441 \end_inset
20442
20443
20444 \end_layout
20445
20446 \end_inset
20447 </cell>
20448 </row>
20449 <row>
20450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20451 \begin_inset Text
20452
20453 \begin_layout Plain Layout
20454
20455 \backslash
20456 Xi
20457 \end_layout
20458
20459 \end_inset
20460 </cell>
20461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20462 \begin_inset Text
20463
20464 \begin_layout Plain Layout
20465 \begin_inset Formula $\Xi$
20466 \end_inset
20467
20468
20469 \end_layout
20470
20471 \end_inset
20472 </cell>
20473 </row>
20474 <row>
20475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20476 \begin_inset Text
20477
20478 \begin_layout Plain Layout
20479
20480 \backslash
20481 Pi
20482 \end_layout
20483
20484 \end_inset
20485 </cell>
20486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20487 \begin_inset Text
20488
20489 \begin_layout Plain Layout
20490 \begin_inset Formula $\Pi$
20491 \end_inset
20492
20493
20494 \end_layout
20495
20496 \end_inset
20497 </cell>
20498 </row>
20499 </lyxtabular>
20500
20501 \end_inset
20502
20503
20504 \begin_inset space \hfill{}
20505 \end_inset
20506
20507
20508 \begin_inset Tabular
20509 <lyxtabular version="3" rows="6" columns="2">
20510 <features>
20511 <column alignment="center" valignment="top" width="0pt">
20512 <column alignment="center" valignment="top" width="0pt">
20513 <row>
20514 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20515 \begin_inset Text
20516
20517 \begin_layout Plain Layout
20518 Command
20519 \end_layout
20520
20521 \end_inset
20522 </cell>
20523 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20524 \begin_inset Text
20525
20526 \begin_layout Plain Layout
20527 Result
20528 \end_layout
20529
20530 \end_inset
20531 </cell>
20532 </row>
20533 <row>
20534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20535 \begin_inset Text
20536
20537 \begin_layout Plain Layout
20538
20539 \backslash
20540 Sigma
20541 \end_layout
20542
20543 \end_inset
20544 </cell>
20545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20546 \begin_inset Text
20547
20548 \begin_layout Plain Layout
20549 \begin_inset Formula $\Sigma$
20550 \end_inset
20551
20552
20553 \end_layout
20554
20555 \end_inset
20556 </cell>
20557 </row>
20558 <row>
20559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20560 \begin_inset Text
20561
20562 \begin_layout Plain Layout
20563
20564 \backslash
20565 Upsilon
20566 \end_layout
20567
20568 \end_inset
20569 </cell>
20570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20571 \begin_inset Text
20572
20573 \begin_layout Plain Layout
20574 \begin_inset Formula $\Upsilon$
20575 \end_inset
20576
20577
20578 \end_layout
20579
20580 \end_inset
20581 </cell>
20582 </row>
20583 <row>
20584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20585 \begin_inset Text
20586
20587 \begin_layout Plain Layout
20588
20589 \backslash
20590 Phi
20591 \end_layout
20592
20593 \end_inset
20594 </cell>
20595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20596 \begin_inset Text
20597
20598 \begin_layout Plain Layout
20599 \begin_inset Formula $\Phi$
20600 \end_inset
20601
20602
20603 \end_layout
20604
20605 \end_inset
20606 </cell>
20607 </row>
20608 <row>
20609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20610 \begin_inset Text
20611
20612 \begin_layout Plain Layout
20613
20614 \backslash
20615 Psi
20616 \end_layout
20617
20618 \end_inset
20619 </cell>
20620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20621 \begin_inset Text
20622
20623 \begin_layout Plain Layout
20624 \begin_inset Formula $\Psi$
20625 \end_inset
20626
20627
20628 \end_layout
20629
20630 \end_inset
20631 </cell>
20632 </row>
20633 <row>
20634 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20635 \begin_inset Text
20636
20637 \begin_layout Plain Layout
20638
20639 \backslash
20640 Omega
20641 \end_layout
20642
20643 \end_inset
20644 </cell>
20645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20646 \begin_inset Text
20647
20648 \begin_layout Plain Layout
20649 \begin_inset Formula $\Omega$
20650 \end_inset
20651
20652
20653 \end_layout
20654
20655 \end_inset
20656 </cell>
20657 </row>
20658 </lyxtabular>
20659
20660 \end_inset
20661
20662
20663 \begin_inset space \hfill{}
20664 \end_inset
20665
20666
20667 \end_layout
20668
20669 \begin_layout Standard
20670 \begin_inset VSpace medskip
20671 \end_inset
20672
20673 That the big Greek letters appear upright is caused by a design bug when
20674  TeX was developed.
20675  To get correct italic big letters, begin every command with 
20676 \series bold
20677 var
20678 \series default
20679 .
20680  For example the command 
20681 \series bold
20682
20683 \backslash
20684 varGamma
20685 \series default
20686  produces: 
20687 \begin_inset Formula $\varGamma$
20688 \end_inset
20689
20690
20691 \end_layout
20692
20693 \begin_layout Subsection
20694 Bold Letters
20695 \begin_inset Index
20696 status collapsed
20697
20698 \begin_layout Plain Layout
20699 Greek letters ! bold
20700 \end_layout
20701
20702 \end_inset
20703
20704
20705 \end_layout
20706
20707 \begin_layout Standard
20708 Greek letters cannot be set with different font styles like Latin letters.
20709  They can only be made bold with the command 
20710 \series bold
20711
20712 \backslash
20713 boldsymbol
20714 \series default
20715
20716 \begin_inset Index
20717 status collapsed
20718
20719 \begin_layout Plain Layout
20720 Commands ! B ! 
20721 \backslash
20722 boldsymbol
20723 \end_layout
20724
20725 \end_inset
20726
20727 .
20728 \end_layout
20729
20730 \begin_layout Standard
20731 \align center
20732 \begin_inset Tabular
20733 <lyxtabular version="3" rows="3" columns="2">
20734 <features>
20735 <column alignment="center" valignment="top" width="0">
20736 <column alignment="center" valignment="top" width="0">
20737 <row>
20738 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20739 \begin_inset Text
20740
20741 \begin_layout Plain Layout
20742 Command
20743 \end_layout
20744
20745 \end_inset
20746 </cell>
20747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20748 \begin_inset Text
20749
20750 \begin_layout Plain Layout
20751 Result
20752 \end_layout
20753
20754 \end_inset
20755 </cell>
20756 </row>
20757 <row>
20758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20759 \begin_inset Text
20760
20761 \begin_layout Plain Layout
20762
20763 \backslash
20764 Upsilon
20765 \backslash
20766 boldsymbol
20767 \backslash
20768 Upsilon
20769 \end_layout
20770
20771 \end_inset
20772 </cell>
20773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20774 \begin_inset Text
20775
20776 \begin_layout Plain Layout
20777 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20778 \end_inset
20779
20780
20781 \end_layout
20782
20783 \end_inset
20784 </cell>
20785 </row>
20786 <row>
20787 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20788 \begin_inset Text
20789
20790 \begin_layout Plain Layout
20791
20792 \backslash
20793 theta
20794 \backslash
20795 boldsymbol
20796 \backslash
20797 theta
20798 \end_layout
20799
20800 \end_inset
20801 </cell>
20802 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20803 \begin_inset Text
20804
20805 \begin_layout Plain Layout
20806 \begin_inset Formula $\theta\boldsymbol{\theta}$
20807 \end_inset
20808
20809
20810 \end_layout
20811
20812 \end_inset
20813 </cell>
20814 </row>
20815 </lyxtabular>
20816
20817 \end_inset
20818
20819
20820 \end_layout
20821
20822 \begin_layout Section
20823 Symbols
20824 \begin_inset ERT
20825 status collapsed
20826
20827 \begin_layout Plain Layout
20828
20829
20830 \backslash
20831 texorpdfstring{
20832 \end_layout
20833
20834 \end_inset
20835
20836
20837 \begin_inset Foot
20838 status collapsed
20839
20840 \begin_layout Plain Layout
20841 A list with all symbols of most of the LaTeX-packages can be found in 
20842 \begin_inset CommandInset citation
20843 LatexCommand cite
20844 key "Symbols"
20845
20846 \end_inset
20847
20848 .
20849 \end_layout
20850
20851 \end_inset
20852
20853
20854 \begin_inset ERT
20855 status collapsed
20856
20857 \begin_layout Plain Layout
20858
20859 }{}
20860 \end_layout
20861
20862 \end_inset
20863
20864
20865 \begin_inset Note Note
20866 status collapsed
20867
20868 \begin_layout Plain Layout
20869
20870 \backslash
20871 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
20872 \end_layout
20873
20874 \begin_layout Plain Layout
20875 More about 
20876 \backslash
20877 texorpdfstring is in section 
20878 \begin_inset CommandInset ref
20879 LatexCommand ref
20880 reference "sub:Formulas-in-Section"
20881
20882 \end_inset
20883
20884 .
20885 \end_layout
20886
20887 \end_inset
20888
20889
20890 \begin_inset Index
20891 status collapsed
20892
20893 \begin_layout Plain Layout
20894 Symbols
20895 \end_layout
20896
20897 \end_inset
20898
20899
20900 \end_layout
20901
20902 \begin_layout Standard
20903 Many of the symbols listed in this section can also be inserted via the
20904  toolbar buttons 
20905 \begin_inset Graphics
20906         filename ../images/math/nabla.png
20907         scale 85
20908
20909 \end_inset
20910
20911  and 
20912 \begin_inset Graphics
20913         filename ../images/math/digamma.png
20914         scale 85
20915
20916 \end_inset
20917
20918 .
20919 \end_layout
20920
20921 \begin_layout Subsection
20922 Mathematical Symbols
20923 \begin_inset CommandInset label
20924 LatexCommand label
20925 name "sub:Mathematical-Symbols"
20926
20927 \end_inset
20928
20929
20930 \begin_inset Index
20931 status collapsed
20932
20933 \begin_layout Plain Layout
20934 Symbols ! mathematical
20935 \end_layout
20936
20937 \end_inset
20938
20939
20940 \end_layout
20941
20942 \begin_layout Standard
20943 \begin_inset space \hfill{}
20944 \end_inset
20945
20946
20947 \begin_inset Tabular
20948 <lyxtabular version="3" rows="10" columns="2">
20949 <features>
20950 <column alignment="center" valignment="top" width="0pt">
20951 <column alignment="center" valignment="top" width="0pt">
20952 <row>
20953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20954 \begin_inset Text
20955
20956 \begin_layout Plain Layout
20957 Command
20958 \end_layout
20959
20960 \end_inset
20961 </cell>
20962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20963 \begin_inset Text
20964
20965 \begin_layout Plain Layout
20966 Result
20967 \end_layout
20968
20969 \end_inset
20970 </cell>
20971 </row>
20972 <row>
20973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20974 \begin_inset Text
20975
20976 \begin_layout Plain Layout
20977
20978 \backslash
20979 neg
20980 \end_layout
20981
20982 \end_inset
20983 </cell>
20984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20985 \begin_inset Text
20986
20987 \begin_layout Plain Layout
20988 \begin_inset Formula $\neg$
20989 \end_inset
20990
20991
20992 \end_layout
20993
20994 \end_inset
20995 </cell>
20996 </row>
20997 <row>
20998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20999 \begin_inset Text
21000
21001 \begin_layout Plain Layout
21002
21003 \backslash
21004 Im
21005 \end_layout
21006
21007 \end_inset
21008 </cell>
21009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21010 \begin_inset Text
21011
21012 \begin_layout Plain Layout
21013 \begin_inset Formula $\Im$
21014 \end_inset
21015
21016
21017 \end_layout
21018
21019 \end_inset
21020 </cell>
21021 </row>
21022 <row>
21023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21024 \begin_inset Text
21025
21026 \begin_layout Plain Layout
21027
21028 \backslash
21029 Re
21030 \end_layout
21031
21032 \end_inset
21033 </cell>
21034 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21035 \begin_inset Text
21036
21037 \begin_layout Plain Layout
21038 \begin_inset Formula $\Re$
21039 \end_inset
21040
21041
21042 \end_layout
21043
21044 \end_inset
21045 </cell>
21046 </row>
21047 <row>
21048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21049 \begin_inset Text
21050
21051 \begin_layout Plain Layout
21052
21053 \backslash
21054 aleph
21055 \end_layout
21056
21057 \end_inset
21058 </cell>
21059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21060 \begin_inset Text
21061
21062 \begin_layout Plain Layout
21063 \begin_inset Formula $\aleph$
21064 \end_inset
21065
21066
21067 \end_layout
21068
21069 \end_inset
21070 </cell>
21071 </row>
21072 <row>
21073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21074 \begin_inset Text
21075
21076 \begin_layout Plain Layout
21077
21078 \backslash
21079 partial
21080 \end_layout
21081
21082 \end_inset
21083 </cell>
21084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21085 \begin_inset Text
21086
21087 \begin_layout Plain Layout
21088 \begin_inset Formula $\partial$
21089 \end_inset
21090
21091
21092 \end_layout
21093
21094 \end_inset
21095 </cell>
21096 </row>
21097 <row>
21098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21099 \begin_inset Text
21100
21101 \begin_layout Plain Layout
21102
21103 \backslash
21104 infty
21105 \end_layout
21106
21107 \end_inset
21108 </cell>
21109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21110 \begin_inset Text
21111
21112 \begin_layout Plain Layout
21113 \begin_inset Formula $\infty$
21114 \end_inset
21115
21116
21117 \end_layout
21118
21119 \end_inset
21120 </cell>
21121 </row>
21122 <row>
21123 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21124 \begin_inset Text
21125
21126 \begin_layout Plain Layout
21127
21128 \backslash
21129 wp
21130 \end_layout
21131
21132 \end_inset
21133 </cell>
21134 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21135 \begin_inset Text
21136
21137 \begin_layout Plain Layout
21138 \begin_inset Formula $\wp$
21139 \end_inset
21140
21141
21142 \end_layout
21143
21144 \end_inset
21145 </cell>
21146 </row>
21147 <row>
21148 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21149 \begin_inset Text
21150
21151 \begin_layout Plain Layout
21152
21153 \backslash
21154 imath
21155 \end_layout
21156
21157 \end_inset
21158 </cell>
21159 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21160 \begin_inset Text
21161
21162 \begin_layout Plain Layout
21163 \begin_inset Formula $\imath$
21164 \end_inset
21165
21166
21167 \end_layout
21168
21169 \end_inset
21170 </cell>
21171 </row>
21172 <row>
21173 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21174 \begin_inset Text
21175
21176 \begin_layout Plain Layout
21177
21178 \backslash
21179 jmath
21180 \end_layout
21181
21182 \end_inset
21183 </cell>
21184 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21185 \begin_inset Text
21186
21187 \begin_layout Plain Layout
21188 \begin_inset Formula $\jmath$
21189 \end_inset
21190
21191
21192 \end_layout
21193
21194 \end_inset
21195 </cell>
21196 </row>
21197 </lyxtabular>
21198
21199 \end_inset
21200
21201
21202 \begin_inset space \hfill{}
21203 \end_inset
21204
21205
21206 \begin_inset Tabular
21207 <lyxtabular version="3" rows="10" columns="2">
21208 <features>
21209 <column alignment="center" valignment="top" width="0pt">
21210 <column alignment="center" valignment="top" width="0pt">
21211 <row>
21212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21213 \begin_inset Text
21214
21215 \begin_layout Plain Layout
21216 Command
21217 \end_layout
21218
21219 \end_inset
21220 </cell>
21221 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21222 \begin_inset Text
21223
21224 \begin_layout Plain Layout
21225 Result
21226 \begin_inset Note Note
21227 status collapsed
21228
21229 \begin_layout Plain Layout
21230
21231 \series bold
21232
21233 \backslash
21234 raisebox
21235 \series default
21236  is only used as spacer.
21237 \end_layout
21238
21239 \end_inset
21240
21241
21242 \end_layout
21243
21244 \end_inset
21245 </cell>
21246 </row>
21247 <row>
21248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21249 \begin_inset Text
21250
21251 \begin_layout Plain Layout
21252
21253 \backslash
21254 forall
21255 \end_layout
21256
21257 \end_inset
21258 </cell>
21259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21260 \begin_inset Text
21261
21262 \begin_layout Plain Layout
21263 \begin_inset Formula $\forall$
21264 \end_inset
21265
21266
21267 \end_layout
21268
21269 \end_inset
21270 </cell>
21271 </row>
21272 <row>
21273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21274 \begin_inset Text
21275
21276 \begin_layout Plain Layout
21277
21278 \backslash
21279 exists
21280 \end_layout
21281
21282 \end_inset
21283 </cell>
21284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21285 \begin_inset Text
21286
21287 \begin_layout Plain Layout
21288 \begin_inset Formula $\exists$
21289 \end_inset
21290
21291
21292 \end_layout
21293
21294 \end_inset
21295 </cell>
21296 </row>
21297 <row>
21298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21299 \begin_inset Text
21300
21301 \begin_layout Plain Layout
21302
21303 \backslash
21304 nexists
21305 \end_layout
21306
21307 \end_inset
21308 </cell>
21309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21310 \begin_inset Text
21311
21312 \begin_layout Plain Layout
21313 \begin_inset Formula $\nexists$
21314 \end_inset
21315
21316
21317 \end_layout
21318
21319 \end_inset
21320 </cell>
21321 </row>
21322 <row>
21323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21324 \begin_inset Text
21325
21326 \begin_layout Plain Layout
21327
21328 \backslash
21329 emptyset
21330 \end_layout
21331
21332 \end_inset
21333 </cell>
21334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21335 \begin_inset Text
21336
21337 \begin_layout Plain Layout
21338 \begin_inset Formula $\emptyset$
21339 \end_inset
21340
21341
21342 \end_layout
21343
21344 \end_inset
21345 </cell>
21346 </row>
21347 <row>
21348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21349 \begin_inset Text
21350
21351 \begin_layout Plain Layout
21352
21353 \backslash
21354 varnothing
21355 \end_layout
21356
21357 \end_inset
21358 </cell>
21359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21360 \begin_inset Text
21361
21362 \begin_layout Plain Layout
21363 \begin_inset Formula $\varnothing$
21364 \end_inset
21365
21366
21367 \end_layout
21368
21369 \end_inset
21370 </cell>
21371 </row>
21372 <row>
21373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21374 \begin_inset Text
21375
21376 \begin_layout Plain Layout
21377
21378 \backslash
21379 dag
21380 \end_layout
21381
21382 \end_inset
21383 </cell>
21384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21385 \begin_inset Text
21386
21387 \begin_layout Plain Layout
21388 \begin_inset Formula $\dag$
21389 \end_inset
21390
21391
21392 \end_layout
21393
21394 \end_inset
21395 </cell>
21396 </row>
21397 <row>
21398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21399 \begin_inset Text
21400
21401 \begin_layout Plain Layout
21402
21403 \backslash
21404 ddag
21405 \end_layout
21406
21407 \end_inset
21408 </cell>
21409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21410 \begin_inset Text
21411
21412 \begin_layout Plain Layout
21413 \begin_inset Formula $\ddag$
21414 \end_inset
21415
21416
21417 \end_layout
21418
21419 \end_inset
21420 </cell>
21421 </row>
21422 <row>
21423 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21424 \begin_inset Text
21425
21426 \begin_layout Plain Layout
21427
21428 \backslash
21429 complement
21430 \end_layout
21431
21432 \end_inset
21433 </cell>
21434 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21435 \begin_inset Text
21436
21437 \begin_layout Plain Layout
21438 \begin_inset ERT
21439 status collapsed
21440
21441 \begin_layout Plain Layout
21442
21443
21444 \backslash
21445 raisebox{-0.8mm}{
21446 \end_layout
21447
21448 \end_inset
21449
21450
21451 \begin_inset Formula $\complement$
21452 \end_inset
21453
21454
21455 \begin_inset ERT
21456 status collapsed
21457
21458 \begin_layout Plain Layout
21459
21460 }
21461 \end_layout
21462
21463 \end_inset
21464
21465
21466 \end_layout
21467
21468 \end_inset
21469 </cell>
21470 </row>
21471 <row>
21472 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21473 \begin_inset Text
21474
21475 \begin_layout Plain Layout
21476
21477 \backslash
21478 Bbbk
21479 \end_layout
21480
21481 \end_inset
21482 </cell>
21483 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21484 \begin_inset Text
21485
21486 \begin_layout Plain Layout
21487 \begin_inset Formula $\Bbbk$
21488 \end_inset
21489
21490
21491 \end_layout
21492
21493 \end_inset
21494 </cell>
21495 </row>
21496 </lyxtabular>
21497
21498 \end_inset
21499
21500
21501 \begin_inset space \hfill{}
21502 \end_inset
21503
21504
21505 \begin_inset Tabular
21506 <lyxtabular version="3" rows="10" columns="2">
21507 <features>
21508 <column alignment="center" valignment="top" width="0pt">
21509 <column alignment="center" valignment="top" width="0pt">
21510 <row>
21511 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21512 \begin_inset Text
21513
21514 \begin_layout Plain Layout
21515 Command
21516 \end_layout
21517
21518 \end_inset
21519 </cell>
21520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21521 \begin_inset Text
21522
21523 \begin_layout Plain Layout
21524 Result
21525 \end_layout
21526
21527 \end_inset
21528 </cell>
21529 </row>
21530 <row>
21531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21532 \begin_inset Text
21533
21534 \begin_layout Plain Layout
21535
21536 \backslash
21537 prime
21538 \end_layout
21539
21540 \end_inset
21541 </cell>
21542 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21543 \begin_inset Text
21544
21545 \begin_layout Plain Layout
21546 \begin_inset Formula $\prime$
21547 \end_inset
21548
21549
21550 \end_layout
21551
21552 \end_inset
21553 </cell>
21554 </row>
21555 <row>
21556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21557 \begin_inset Text
21558
21559 \begin_layout Plain Layout
21560
21561 \backslash
21562 backprime
21563 \end_layout
21564
21565 \end_inset
21566 </cell>
21567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21568 \begin_inset Text
21569
21570 \begin_layout Plain Layout
21571 \begin_inset Formula $\backprime$
21572 \end_inset
21573
21574
21575 \end_layout
21576
21577 \end_inset
21578 </cell>
21579 </row>
21580 <row>
21581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21582 \begin_inset Text
21583
21584 \begin_layout Plain Layout
21585
21586 \backslash
21587 mho
21588 \end_layout
21589
21590 \end_inset
21591 </cell>
21592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21593 \begin_inset Text
21594
21595 \begin_layout Plain Layout
21596 \begin_inset Formula $\mho$
21597 \end_inset
21598
21599
21600 \end_layout
21601
21602 \end_inset
21603 </cell>
21604 </row>
21605 <row>
21606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21607 \begin_inset Text
21608
21609 \begin_layout Plain Layout
21610
21611 \backslash
21612 triangle
21613 \end_layout
21614
21615 \end_inset
21616 </cell>
21617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21618 \begin_inset Text
21619
21620 \begin_layout Plain Layout
21621 \begin_inset Formula $\triangle$
21622 \end_inset
21623
21624
21625 \end_layout
21626
21627 \end_inset
21628 </cell>
21629 </row>
21630 <row>
21631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21632 \begin_inset Text
21633
21634 \begin_layout Plain Layout
21635
21636 \backslash
21637 angle
21638 \end_layout
21639
21640 \end_inset
21641 </cell>
21642 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21643 \begin_inset Text
21644
21645 \begin_layout Plain Layout
21646 \begin_inset Formula $\angle$
21647 \end_inset
21648
21649
21650 \end_layout
21651
21652 \end_inset
21653 </cell>
21654 </row>
21655 <row>
21656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21657 \begin_inset Text
21658
21659 \begin_layout Plain Layout
21660
21661 \backslash
21662 measuredangle
21663 \end_layout
21664
21665 \end_inset
21666 </cell>
21667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21668 \begin_inset Text
21669
21670 \begin_layout Plain Layout
21671 \begin_inset Formula $\measuredangle$
21672 \end_inset
21673
21674
21675 \end_layout
21676
21677 \end_inset
21678 </cell>
21679 </row>
21680 <row>
21681 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21682 \begin_inset Text
21683
21684 \begin_layout Plain Layout
21685
21686 \backslash
21687 sphericalangle
21688 \end_layout
21689
21690 \end_inset
21691 </cell>
21692 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21693 \begin_inset Text
21694
21695 \begin_layout Plain Layout
21696 \begin_inset Formula $\sphericalangle$
21697 \end_inset
21698
21699
21700 \end_layout
21701
21702 \end_inset
21703 </cell>
21704 </row>
21705 <row>
21706 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21707 \begin_inset Text
21708
21709 \begin_layout Plain Layout
21710
21711 \backslash
21712 top
21713 \end_layout
21714
21715 \end_inset
21716 </cell>
21717 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21718 \begin_inset Text
21719
21720 \begin_layout Plain Layout
21721 \begin_inset Formula $\top$
21722 \end_inset
21723
21724
21725 \end_layout
21726
21727 \end_inset
21728 </cell>
21729 </row>
21730 <row>
21731 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21732 \begin_inset Text
21733
21734 \begin_layout Plain Layout
21735
21736 \backslash
21737 bot
21738 \end_layout
21739
21740 \end_inset
21741 </cell>
21742 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21743 \begin_inset Text
21744
21745 \begin_layout Plain Layout
21746 \begin_inset Formula $\bot$
21747 \end_inset
21748
21749
21750 \end_layout
21751
21752 \end_inset
21753 </cell>
21754 </row>
21755 </lyxtabular>
21756
21757 \end_inset
21758
21759
21760 \begin_inset space \hfill{}
21761 \end_inset
21762
21763
21764 \end_layout
21765
21766 \begin_layout Subsection
21767 Miscellaneous Symbols
21768 \begin_inset CommandInset label
21769 LatexCommand label
21770 name "sub:Miscellaneous-Symbols"
21771
21772 \end_inset
21773
21774
21775 \begin_inset Index
21776 status collapsed
21777
21778 \begin_layout Plain Layout
21779 Symbols ! miscellaneous
21780 \end_layout
21781
21782 \end_inset
21783
21784
21785 \end_layout
21786
21787 \begin_layout Standard
21788 \noindent
21789 \align center
21790 \begin_inset Tabular
21791 <lyxtabular version="3" rows="10" columns="2">
21792 <features>
21793 <column alignment="center" valignment="top" width="0pt">
21794 <column alignment="center" valignment="top" width="0pt">
21795 <row>
21796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21797 \begin_inset Text
21798
21799 \begin_layout Plain Layout
21800 Command
21801 \end_layout
21802
21803 \end_inset
21804 </cell>
21805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21806 \begin_inset Text
21807
21808 \begin_layout Plain Layout
21809 Result
21810 \end_layout
21811
21812 \end_inset
21813 </cell>
21814 </row>
21815 <row>
21816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21817 \begin_inset Text
21818
21819 \begin_layout Plain Layout
21820
21821 \backslash
21822 flat
21823 \end_layout
21824
21825 \end_inset
21826 </cell>
21827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21828 \begin_inset Text
21829
21830 \begin_layout Plain Layout
21831 \begin_inset Formula $\flat$
21832 \end_inset
21833
21834
21835 \end_layout
21836
21837 \end_inset
21838 </cell>
21839 </row>
21840 <row>
21841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21842 \begin_inset Text
21843
21844 \begin_layout Plain Layout
21845
21846 \backslash
21847 natural
21848 \end_layout
21849
21850 \end_inset
21851 </cell>
21852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21853 \begin_inset Text
21854
21855 \begin_layout Plain Layout
21856 \begin_inset Formula $\natural$
21857 \end_inset
21858
21859
21860 \end_layout
21861
21862 \end_inset
21863 </cell>
21864 </row>
21865 <row>
21866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21867 \begin_inset Text
21868
21869 \begin_layout Plain Layout
21870
21871 \backslash
21872 sharp
21873 \end_layout
21874
21875 \end_inset
21876 </cell>
21877 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21878 \begin_inset Text
21879
21880 \begin_layout Plain Layout
21881 \begin_inset Formula $\sharp$
21882 \end_inset
21883
21884
21885 \end_layout
21886
21887 \end_inset
21888 </cell>
21889 </row>
21890 <row>
21891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21892 \begin_inset Text
21893
21894 \begin_layout Plain Layout
21895
21896 \backslash
21897 surd
21898 \end_layout
21899
21900 \end_inset
21901 </cell>
21902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21903 \begin_inset Text
21904
21905 \begin_layout Plain Layout
21906 \begin_inset Formula $\surd$
21907 \end_inset
21908
21909
21910 \end_layout
21911
21912 \end_inset
21913 </cell>
21914 </row>
21915 <row>
21916 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21917 \begin_inset Text
21918
21919 \begin_layout Plain Layout
21920
21921 \backslash
21922 checkmark
21923 \end_layout
21924
21925 \end_inset
21926 </cell>
21927 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21928 \begin_inset Text
21929
21930 \begin_layout Plain Layout
21931 \begin_inset Formula $\checkmark$
21932 \end_inset
21933
21934
21935 \end_layout
21936
21937 \end_inset
21938 </cell>
21939 </row>
21940 <row>
21941 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21942 \begin_inset Text
21943
21944 \begin_layout Plain Layout
21945
21946 \backslash
21947 yen
21948 \end_layout
21949
21950 \end_inset
21951 </cell>
21952 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21953 \begin_inset Text
21954
21955 \begin_layout Plain Layout
21956 \begin_inset Formula $\yen$
21957 \end_inset
21958
21959
21960 \end_layout
21961
21962 \end_inset
21963 </cell>
21964 </row>
21965 <row>
21966 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21967 \begin_inset Text
21968
21969 \begin_layout Plain Layout
21970
21971 \backslash
21972 pounds
21973 \end_layout
21974
21975 \end_inset
21976 </cell>
21977 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21978 \begin_inset Text
21979
21980 \begin_layout Plain Layout
21981 \begin_inset Formula $\pounds$
21982 \end_inset
21983
21984
21985 \end_layout
21986
21987 \end_inset
21988 </cell>
21989 </row>
21990 <row>
21991 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21992 \begin_inset Text
21993
21994 \begin_layout Plain Layout
21995 $
21996 \end_layout
21997
21998 \end_inset
21999 </cell>
22000 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22001 \begin_inset Text
22002
22003 \begin_layout Plain Layout
22004 \begin_inset Formula $\$$
22005 \end_inset
22006
22007
22008 \end_layout
22009
22010 \end_inset
22011 </cell>
22012 </row>
22013 <row>
22014 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22015 \begin_inset Text
22016
22017 \begin_layout Plain Layout
22018 §
22019 \end_layout
22020
22021 \end_inset
22022 </cell>
22023 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22024 \begin_inset Text
22025
22026 \begin_layout Plain Layout
22027 \begin_inset Formula $§$
22028 \end_inset
22029
22030
22031 \end_layout
22032
22033 \end_inset
22034 </cell>
22035 </row>
22036 </lyxtabular>
22037
22038 \end_inset
22039
22040
22041 \begin_inset Tabular
22042 <lyxtabular version="3" rows="10" columns="2">
22043 <features>
22044 <column alignment="center" valignment="top" width="0">
22045 <column alignment="center" valignment="top" width="0">
22046 <row>
22047 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22048 \begin_inset Text
22049
22050 \begin_layout Plain Layout
22051 Command
22052 \end_layout
22053
22054 \end_inset
22055 </cell>
22056 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22057 \begin_inset Text
22058
22059 \begin_layout Plain Layout
22060 Result
22061 \end_layout
22062
22063 \end_inset
22064 </cell>
22065 </row>
22066 <row>
22067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22068 \begin_inset Text
22069
22070 \begin_layout Plain Layout
22071
22072 \backslash
22073 hbar
22074 \end_layout
22075
22076 \end_inset
22077 </cell>
22078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22079 \begin_inset Text
22080
22081 \begin_layout Plain Layout
22082 \begin_inset Formula $\hbar$
22083 \end_inset
22084
22085
22086 \end_layout
22087
22088 \end_inset
22089 </cell>
22090 </row>
22091 <row>
22092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22093 \begin_inset Text
22094
22095 \begin_layout Plain Layout
22096
22097 \backslash
22098 hslash
22099 \end_layout
22100
22101 \end_inset
22102 </cell>
22103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22104 \begin_inset Text
22105
22106 \begin_layout Plain Layout
22107 \begin_inset Formula $\hslash$
22108 \end_inset
22109
22110
22111 \end_layout
22112
22113 \end_inset
22114 </cell>
22115 </row>
22116 <row>
22117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22118 \begin_inset Text
22119
22120 \begin_layout Plain Layout
22121
22122 \backslash
22123 clubsuit
22124 \end_layout
22125
22126 \end_inset
22127 </cell>
22128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22129 \begin_inset Text
22130
22131 \begin_layout Plain Layout
22132 \begin_inset Formula $\clubsuit$
22133 \end_inset
22134
22135
22136 \end_layout
22137
22138 \end_inset
22139 </cell>
22140 </row>
22141 <row>
22142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22143 \begin_inset Text
22144
22145 \begin_layout Plain Layout
22146
22147 \backslash
22148 spadesuit
22149 \end_layout
22150
22151 \end_inset
22152 </cell>
22153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22154 \begin_inset Text
22155
22156 \begin_layout Plain Layout
22157 \begin_inset Formula $\spadesuit$
22158 \end_inset
22159
22160
22161 \end_layout
22162
22163 \end_inset
22164 </cell>
22165 </row>
22166 <row>
22167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22168 \begin_inset Text
22169
22170 \begin_layout Plain Layout
22171
22172 \backslash
22173 bigstar
22174 \end_layout
22175
22176 \end_inset
22177 </cell>
22178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22179 \begin_inset Text
22180
22181 \begin_layout Plain Layout
22182 \begin_inset Formula $\bigstar$
22183 \end_inset
22184
22185
22186 \end_layout
22187
22188 \end_inset
22189 </cell>
22190 </row>
22191 <row>
22192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22193 \begin_inset Text
22194
22195 \begin_layout Plain Layout
22196
22197 \backslash
22198 blacklozenge
22199 \end_layout
22200
22201 \end_inset
22202 </cell>
22203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22204 \begin_inset Text
22205
22206 \begin_layout Plain Layout
22207 \begin_inset Formula $\blacklozenge$
22208 \end_inset
22209
22210
22211 \end_layout
22212
22213 \end_inset
22214 </cell>
22215 </row>
22216 <row>
22217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22218 \begin_inset Text
22219
22220 \begin_layout Plain Layout
22221
22222 \backslash
22223 blacktriangle
22224 \end_layout
22225
22226 \end_inset
22227 </cell>
22228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22229 \begin_inset Text
22230
22231 \begin_layout Plain Layout
22232 \begin_inset Formula $\blacktriangle$
22233 \end_inset
22234
22235
22236 \end_layout
22237
22238 \end_inset
22239 </cell>
22240 </row>
22241 <row>
22242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22243 \begin_inset Text
22244
22245 \begin_layout Plain Layout
22246
22247 \backslash
22248 blacktiangledown
22249 \end_layout
22250
22251 \end_inset
22252 </cell>
22253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22254 \begin_inset Text
22255
22256 \begin_layout Plain Layout
22257 \begin_inset Formula $\blacktriangledown$
22258 \end_inset
22259
22260
22261 \end_layout
22262
22263 \end_inset
22264 </cell>
22265 </row>
22266 <row>
22267 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22268 \begin_inset Text
22269
22270 \begin_layout Plain Layout
22271
22272 \backslash
22273 bullet
22274 \end_layout
22275
22276 \end_inset
22277 </cell>
22278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22279 \begin_inset Text
22280
22281 \begin_layout Plain Layout
22282 \begin_inset Formula $\bullet$
22283 \end_inset
22284
22285
22286 \end_layout
22287
22288 \end_inset
22289 </cell>
22290 </row>
22291 </lyxtabular>
22292
22293 \end_inset
22294
22295
22296 \begin_inset Tabular
22297 <lyxtabular version="3" rows="10" columns="2">
22298 <features>
22299 <column alignment="center" valignment="top" width="0pt">
22300 <column alignment="center" valignment="top" width="0pt">
22301 <row>
22302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22303 \begin_inset Text
22304
22305 \begin_layout Plain Layout
22306 Command
22307 \end_layout
22308
22309 \end_inset
22310 </cell>
22311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22312 \begin_inset Text
22313
22314 \begin_layout Plain Layout
22315 Result
22316 \end_layout
22317
22318 \end_inset
22319 </cell>
22320 </row>
22321 <row>
22322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22323 \begin_inset Text
22324
22325 \begin_layout Plain Layout
22326
22327 \backslash
22328 diamondsuit
22329 \end_layout
22330
22331 \end_inset
22332 </cell>
22333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22334 \begin_inset Text
22335
22336 \begin_layout Plain Layout
22337 \begin_inset Formula $\diamondsuit$
22338 \end_inset
22339
22340
22341 \end_layout
22342
22343 \end_inset
22344 </cell>
22345 </row>
22346 <row>
22347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22348 \begin_inset Text
22349
22350 \begin_layout Plain Layout
22351
22352 \backslash
22353 Diamond
22354 \end_layout
22355
22356 \end_inset
22357 </cell>
22358 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22359 \begin_inset Text
22360
22361 \begin_layout Plain Layout
22362 \begin_inset Formula $\Diamond$
22363 \end_inset
22364
22365
22366 \end_layout
22367
22368 \end_inset
22369 </cell>
22370 </row>
22371 <row>
22372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22373 \begin_inset Text
22374
22375 \begin_layout Plain Layout
22376
22377 \backslash
22378 heartsuit
22379 \end_layout
22380
22381 \end_inset
22382 </cell>
22383 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22384 \begin_inset Text
22385
22386 \begin_layout Plain Layout
22387 \begin_inset Formula $\heartsuit$
22388 \end_inset
22389
22390
22391 \end_layout
22392
22393 \end_inset
22394 </cell>
22395 </row>
22396 <row>
22397 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22398 \begin_inset Text
22399
22400 \begin_layout Plain Layout
22401
22402 \backslash
22403 P
22404 \end_layout
22405
22406 \end_inset
22407 </cell>
22408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22409 \begin_inset Text
22410
22411 \begin_layout Plain Layout
22412 \begin_inset Formula $\P$
22413 \end_inset
22414
22415
22416 \end_layout
22417
22418 \end_inset
22419 </cell>
22420 </row>
22421 <row>
22422 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22423 \begin_inset Text
22424
22425 \begin_layout Plain Layout
22426
22427 \backslash
22428 copyright
22429 \end_layout
22430
22431 \end_inset
22432 </cell>
22433 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22434 \begin_inset Text
22435
22436 \begin_layout Plain Layout
22437 \begin_inset Formula $\copyright$
22438 \end_inset
22439
22440
22441 \end_layout
22442
22443 \end_inset
22444 </cell>
22445 </row>
22446 <row>
22447 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22448 \begin_inset Text
22449
22450 \begin_layout Plain Layout
22451
22452 \backslash
22453 circledR
22454 \end_layout
22455
22456 \end_inset
22457 </cell>
22458 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22459 \begin_inset Text
22460
22461 \begin_layout Plain Layout
22462 \begin_inset Formula $\circledR$
22463 \end_inset
22464
22465
22466 \end_layout
22467
22468 \end_inset
22469 </cell>
22470 </row>
22471 <row>
22472 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22473 \begin_inset Text
22474
22475 \begin_layout Plain Layout
22476
22477 \backslash
22478 maltese
22479 \end_layout
22480
22481 \end_inset
22482 </cell>
22483 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22484 \begin_inset Text
22485
22486 \begin_layout Plain Layout
22487 \begin_inset Formula $\maltese$
22488 \end_inset
22489
22490
22491 \end_layout
22492
22493 \end_inset
22494 </cell>
22495 </row>
22496 <row>
22497 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22498 \begin_inset Text
22499
22500 \begin_layout Plain Layout
22501
22502 \backslash
22503 diagup
22504 \end_layout
22505
22506 \end_inset
22507 </cell>
22508 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22509 \begin_inset Text
22510
22511 \begin_layout Plain Layout
22512 \begin_inset Formula $\diagup$
22513 \end_inset
22514
22515
22516 \end_layout
22517
22518 \end_inset
22519 </cell>
22520 </row>
22521 <row>
22522 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22523 \begin_inset Text
22524
22525 \begin_layout Plain Layout
22526
22527 \backslash
22528 diagdown
22529 \end_layout
22530
22531 \end_inset
22532 </cell>
22533 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22534 \begin_inset Text
22535
22536 \begin_layout Plain Layout
22537 \begin_inset Formula $\diagdown$
22538 \end_inset
22539
22540
22541 \end_layout
22542
22543 \end_inset
22544 </cell>
22545 </row>
22546 </lyxtabular>
22547
22548 \end_inset
22549
22550
22551 \end_layout
22552
22553 \begin_layout Standard
22554 \begin_inset VSpace medskip
22555 \end_inset
22556
22557 More symbols are listed in 
22558 \begin_inset CommandInset ref
22559 LatexCommand ref
22560 reference "sub:Miscellaneous-special-Characters"
22561
22562 \end_inset
22563
22564 .
22565 \end_layout
22566
22567 \begin_layout Standard
22568 Some symbols can be displayed in different sizes, see 
22569 \begin_inset CommandInset ref
22570 LatexCommand ref
22571 reference "sub:Font-Sizes"
22572
22573 \end_inset
22574
22575 .
22576 \end_layout
22577
22578 \begin_layout Subsection
22579 The Euro-Symbol €
22580 \begin_inset Index
22581 status collapsed
22582
22583 \begin_layout Plain Layout
22584 Symbols ! Euro-symbol
22585 \end_layout
22586
22587 \end_inset
22588
22589
22590 \begin_inset Index
22591 status collapsed
22592
22593 \begin_layout Plain Layout
22594
22595 \backslash
22596 @
22597 \begin_inset ERT
22598 status collapsed
22599
22600 \begin_layout Plain Layout
22601
22602
22603 \backslash
22604 officialeuro
22605 \end_layout
22606
22607 \end_inset
22608
22609
22610 \end_layout
22611
22612 \end_inset
22613
22614
22615 \end_layout
22616
22617 \begin_layout Standard
22618 To use the Euro symbol in formulas, the LaTeX-package 
22619 \series bold
22620 eurosym
22621 \series default
22622
22623 \begin_inset Index
22624 status collapsed
22625
22626 \begin_layout Plain Layout
22627 Packages ! eurosym
22628 \end_layout
22629
22630 \end_inset
22631
22632  must be installed and loaded with the LaTeX-preamble line
22633 \end_layout
22634
22635 \begin_layout Standard
22636
22637 \series bold
22638
22639 \backslash
22640 usepackage[gennarrow]{eurosym}
22641 \end_layout
22642
22643 \begin_layout Standard
22644 The Euro symbol can now be inserted with the command 
22645 \series bold
22646
22647 \backslash
22648 euro
22649 \series default
22650
22651 \begin_inset Index
22652 status collapsed
22653
22654 \begin_layout Plain Layout
22655 Commands ! E ! 
22656 \backslash
22657 euro
22658 \end_layout
22659
22660 \end_inset
22661
22662 .
22663 \end_layout
22664
22665 \begin_layout Standard
22666 The Euro symbol can directly be inserted with the € key in mathematical
22667  text, without having 
22668 \series bold
22669 eurosym
22670 \series default
22671  installed.
22672  When 
22673 \series bold
22674 eurosym
22675 \series default
22676  is installed, 
22677 \series bold
22678
22679 \backslash
22680 euro
22681 \series default
22682  can also be inserted in TeX-mode.
22683  The official currency symbol can then be inserted with the command 
22684 \series bold
22685
22686 \backslash
22687 officialeuro
22688 \series default
22689
22690 \begin_inset Index
22691 status collapsed
22692
22693 \begin_layout Plain Layout
22694 Commands ! O ! 
22695 \backslash
22696 officialeuro
22697 \end_layout
22698
22699 \end_inset
22700
22701 , that is only available in TeX-mode.
22702 \end_layout
22703
22704 \begin_layout Standard
22705 \begin_inset ERT
22706 status collapsed
22707
22708 \begin_layout Plain Layout
22709
22710
22711 \backslash
22712 ifeurosym 
22713 \end_layout
22714
22715 \end_inset
22716
22717
22718 \begin_inset Note Note
22719 status open
22720
22721 \begin_layout Plain Layout
22722 The following table will only be displayed when the LaTeX-package 
22723 \series bold
22724 eurosym
22725 \series default
22726  is installed.
22727 \end_layout
22728
22729 \end_inset
22730
22731
22732 \end_layout
22733
22734 \begin_layout Standard
22735 An overview about the different Euro symbols:
22736 \end_layout
22737
22738 \begin_layout Standard
22739 \align center
22740 \begin_inset Tabular
22741 <lyxtabular version="3" rows="4" columns="3">
22742 <features>
22743 <column alignment="center" valignment="top" width="0pt">
22744 <column alignment="center" valignment="top" width="0pt">
22745 <column alignment="center" valignment="top" width="0pt">
22746 <row>
22747 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22748 \begin_inset Text
22749
22750 \begin_layout Plain Layout
22751
22752 \end_layout
22753
22754 \end_inset
22755 </cell>
22756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22757 \begin_inset Text
22758
22759 \begin_layout Plain Layout
22760 Command 
22761 \end_layout
22762
22763 \end_inset
22764 </cell>
22765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22766 \begin_inset Text
22767
22768 \begin_layout Plain Layout
22769 Result
22770 \end_layout
22771
22772 \end_inset
22773 </cell>
22774 </row>
22775 <row>
22776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22777 \begin_inset Text
22778
22779 \begin_layout Plain Layout
22780 formula
22781 \end_layout
22782
22783 \end_inset
22784 </cell>
22785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22786 \begin_inset Text
22787
22788 \begin_layout Plain Layout
22789
22790 \backslash
22791 euro
22792 \end_layout
22793
22794 \end_inset
22795 </cell>
22796 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22797 \begin_inset Text
22798
22799 \begin_layout Plain Layout
22800 \begin_inset Formula $\euro$
22801 \end_inset
22802
22803
22804 \end_layout
22805
22806 \end_inset
22807 </cell>
22808 </row>
22809 <row>
22810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22811 \begin_inset Text
22812
22813 \begin_layout Plain Layout
22814 mathematical text
22815 \end_layout
22816
22817 \end_inset
22818 </cell>
22819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22820 \begin_inset Text
22821
22822 \begin_layout Plain Layout
22823
22824 \end_layout
22825
22826 \end_inset
22827 </cell>
22828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22829 \begin_inset Text
22830
22831 \begin_layout Plain Layout
22832 \begin_inset Formula $\mbox{€}$
22833 \end_inset
22834
22835
22836 \end_layout
22837
22838 \end_inset
22839 </cell>
22840 </row>
22841 <row>
22842 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22843 \begin_inset Text
22844
22845 \begin_layout Plain Layout
22846 TeX-mode
22847 \end_layout
22848
22849 \end_inset
22850 </cell>
22851 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22852 \begin_inset Text
22853
22854 \begin_layout Plain Layout
22855
22856 \backslash
22857 officialeuro
22858 \end_layout
22859
22860 \end_inset
22861 </cell>
22862 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22863 \begin_inset Text
22864
22865 \begin_layout Plain Layout
22866 \begin_inset ERT
22867 status collapsed
22868
22869 \begin_layout Plain Layout
22870
22871
22872 \backslash
22873 officialeuro
22874 \end_layout
22875
22876 \end_inset
22877
22878
22879 \end_layout
22880
22881 \end_inset
22882 </cell>
22883 </row>
22884 </lyxtabular>
22885
22886 \end_inset
22887
22888
22889 \end_layout
22890
22891 \begin_layout Standard
22892 \begin_inset ERT
22893 status collapsed
22894
22895 \begin_layout Plain Layout
22896
22897
22898 \backslash
22899 else 
22900 \end_layout
22901
22902 \end_inset
22903
22904
22905 \begin_inset Note Note
22906 status open
22907
22908 \begin_layout Plain Layout
22909 The following will be displayed when the LaTeX-package 
22910 \series bold
22911 eurosym
22912 \series default
22913  is not installed:
22914 \end_layout
22915
22916 \end_inset
22917
22918
22919 \end_layout
22920
22921 \begin_layout Standard
22922 You need to install the LaTeX-package 
22923 \series bold
22924 eurosym
22925 \series default
22926  to see the rest of this subsection in the output.
22927 \end_layout
22928
22929 \begin_layout Standard
22930 \begin_inset ERT
22931 status collapsed
22932
22933 \begin_layout Plain Layout
22934
22935
22936 \backslash
22937 fi 
22938 \end_layout
22939
22940 \end_inset
22941
22942
22943 \end_layout
22944
22945 \begin_layout Section
22946 Relations
22947 \begin_inset CommandInset label
22948 LatexCommand label
22949 name "sec:Relations"
22950
22951 \end_inset
22952
22953
22954 \begin_inset Index
22955 status collapsed
22956
22957 \begin_layout Plain Layout
22958 Relations
22959 \end_layout
22960
22961 \end_inset
22962
22963
22964 \begin_inset Index
22965 status collapsed
22966
22967 \begin_layout Plain Layout
22968 Comparisons|see
22969 \begin_inset ERT
22970 status collapsed
22971
22972 \begin_layout Plain Layout
22973
22974 {
22975 \end_layout
22976
22977 \end_inset
22978
22979 Relations
22980 \begin_inset ERT
22981 status collapsed
22982
22983 \begin_layout Plain Layout
22984
22985 }
22986 \end_layout
22987
22988 \end_inset
22989
22990
22991 \end_layout
22992
22993 \end_inset
22994
22995
22996 \end_layout
22997
22998 \begin_layout Standard
22999 All relations can also be inserted via the toolbar button 
23000 \begin_inset Graphics
23001         filename ../images/math/leq.png
23002         scale 85
23003
23004 \end_inset
23005
23006 .
23007 \end_layout
23008
23009 \begin_layout Standard
23010 \begin_inset space \hfill{}
23011 \end_inset
23012
23013
23014 \begin_inset Tabular
23015 <lyxtabular version="3" rows="17" columns="2">
23016 <features>
23017 <column alignment="center" valignment="top" width="0pt">
23018 <column alignment="center" valignment="top" width="0pt">
23019 <row>
23020 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23021 \begin_inset Text
23022
23023 \begin_layout Plain Layout
23024 Command
23025 \end_layout
23026
23027 \end_inset
23028 </cell>
23029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23030 \begin_inset Text
23031
23032 \begin_layout Plain Layout
23033 Result
23034 \end_layout
23035
23036 \end_inset
23037 </cell>
23038 </row>
23039 <row>
23040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23041 \begin_inset Text
23042
23043 \begin_layout Plain Layout
23044 <
23045 \end_layout
23046
23047 \end_inset
23048 </cell>
23049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23050 \begin_inset Text
23051
23052 \begin_layout Plain Layout
23053 \begin_inset Formula $<$
23054 \end_inset
23055
23056
23057 \end_layout
23058
23059 \end_inset
23060 </cell>
23061 </row>
23062 <row>
23063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23064 \begin_inset Text
23065
23066 \begin_layout Plain Layout
23067
23068 \backslash
23069 le
23070 \end_layout
23071
23072 \end_inset
23073 </cell>
23074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23075 \begin_inset Text
23076
23077 \begin_layout Plain Layout
23078 \begin_inset Formula $\le$
23079 \end_inset
23080
23081
23082 \end_layout
23083
23084 \end_inset
23085 </cell>
23086 </row>
23087 <row>
23088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23089 \begin_inset Text
23090
23091 \begin_layout Plain Layout
23092
23093 \backslash
23094 ll
23095 \end_layout
23096
23097 \end_inset
23098 </cell>
23099 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23100 \begin_inset Text
23101
23102 \begin_layout Plain Layout
23103 \begin_inset Formula $\ll$
23104 \end_inset
23105
23106
23107 \end_layout
23108
23109 \end_inset
23110 </cell>
23111 </row>
23112 <row>
23113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23114 \begin_inset Text
23115
23116 \begin_layout Plain Layout
23117
23118 \backslash
23119 prec
23120 \end_layout
23121
23122 \end_inset
23123 </cell>
23124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23125 \begin_inset Text
23126
23127 \begin_layout Plain Layout
23128 \begin_inset Formula $\prec$
23129 \end_inset
23130
23131
23132 \end_layout
23133
23134 \end_inset
23135 </cell>
23136 </row>
23137 <row>
23138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23139 \begin_inset Text
23140
23141 \begin_layout Plain Layout
23142
23143 \backslash
23144 preceq
23145 \end_layout
23146
23147 \end_inset
23148 </cell>
23149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23150 \begin_inset Text
23151
23152 \begin_layout Plain Layout
23153 \begin_inset Formula $\preceq$
23154 \end_inset
23155
23156
23157 \end_layout
23158
23159 \end_inset
23160 </cell>
23161 </row>
23162 <row>
23163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23164 \begin_inset Text
23165
23166 \begin_layout Plain Layout
23167
23168 \backslash
23169 subset
23170 \end_layout
23171
23172 \end_inset
23173 </cell>
23174 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23175 \begin_inset Text
23176
23177 \begin_layout Plain Layout
23178 \begin_inset Formula $\subset$
23179 \end_inset
23180
23181
23182 \end_layout
23183
23184 \end_inset
23185 </cell>
23186 </row>
23187 <row>
23188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23189 \begin_inset Text
23190
23191 \begin_layout Plain Layout
23192
23193 \backslash
23194 subseteq
23195 \end_layout
23196
23197 \end_inset
23198 </cell>
23199 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23200 \begin_inset Text
23201
23202 \begin_layout Plain Layout
23203 \begin_inset Formula $\subseteq$
23204 \end_inset
23205
23206
23207 \end_layout
23208
23209 \end_inset
23210 </cell>
23211 </row>
23212 <row>
23213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23214 \begin_inset Text
23215
23216 \begin_layout Plain Layout
23217
23218 \backslash
23219 sqsubseteq
23220 \end_layout
23221
23222 \end_inset
23223 </cell>
23224 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23225 \begin_inset Text
23226
23227 \begin_layout Plain Layout
23228 \begin_inset Formula $\sqsubseteq$
23229 \end_inset
23230
23231
23232 \end_layout
23233
23234 \end_inset
23235 </cell>
23236 </row>
23237 <row>
23238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23239 \begin_inset Text
23240
23241 \begin_layout Plain Layout
23242
23243 \backslash
23244 in
23245 \end_layout
23246
23247 \end_inset
23248 </cell>
23249 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23250 \begin_inset Text
23251
23252 \begin_layout Plain Layout
23253 \begin_inset Formula $\in$
23254 \end_inset
23255
23256
23257 \end_layout
23258
23259 \end_inset
23260 </cell>
23261 </row>
23262 <row>
23263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23264 \begin_inset Text
23265
23266 \begin_layout Plain Layout
23267
23268 \backslash
23269 vdash
23270 \end_layout
23271
23272 \end_inset
23273 </cell>
23274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23275 \begin_inset Text
23276
23277 \begin_layout Plain Layout
23278 \begin_inset Formula $\vdash$
23279 \end_inset
23280
23281
23282 \end_layout
23283
23284 \end_inset
23285 </cell>
23286 </row>
23287 <row>
23288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23289 \begin_inset Text
23290
23291 \begin_layout Plain Layout
23292
23293 \backslash
23294 smile
23295 \end_layout
23296
23297 \end_inset
23298 </cell>
23299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23300 \begin_inset Text
23301
23302 \begin_layout Plain Layout
23303 \begin_inset Formula $\smile$
23304 \end_inset
23305
23306
23307 \end_layout
23308
23309 \end_inset
23310 </cell>
23311 </row>
23312 <row>
23313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23314 \begin_inset Text
23315
23316 \begin_layout Plain Layout
23317
23318 \backslash
23319 lhd
23320 \end_layout
23321
23322 \end_inset
23323 </cell>
23324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23325 \begin_inset Text
23326
23327 \begin_layout Plain Layout
23328 \begin_inset Formula $\lhd$
23329 \end_inset
23330
23331
23332 \end_layout
23333
23334 \end_inset
23335 </cell>
23336 </row>
23337 <row>
23338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23339 \begin_inset Text
23340
23341 \begin_layout Plain Layout
23342
23343 \backslash
23344 unlhd
23345 \end_layout
23346
23347 \end_inset
23348 </cell>
23349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23350 \begin_inset Text
23351
23352 \begin_layout Plain Layout
23353 \begin_inset Formula $\unlhd$
23354 \end_inset
23355
23356
23357 \end_layout
23358
23359 \end_inset
23360 </cell>
23361 </row>
23362 <row>
23363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23364 \begin_inset Text
23365
23366 \begin_layout Plain Layout
23367
23368 \backslash
23369 gtrless
23370 \end_layout
23371
23372 \end_inset
23373 </cell>
23374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23375 \begin_inset Text
23376
23377 \begin_layout Plain Layout
23378 \begin_inset Formula $\gtrless$
23379 \end_inset
23380
23381
23382 \end_layout
23383
23384 \end_inset
23385 </cell>
23386 </row>
23387 <row>
23388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23389 \begin_inset Text
23390
23391 \begin_layout Plain Layout
23392
23393 \backslash
23394 mid
23395 \end_layout
23396
23397 \end_inset
23398 </cell>
23399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23400 \begin_inset Text
23401
23402 \begin_layout Plain Layout
23403 \begin_inset Formula $\mid$
23404 \end_inset
23405
23406
23407 \end_layout
23408
23409 \end_inset
23410 </cell>
23411 </row>
23412 <row>
23413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23414 \begin_inset Text
23415
23416 \begin_layout Plain Layout
23417
23418 \backslash
23419 nmid
23420 \end_layout
23421
23422 \end_inset
23423 </cell>
23424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23425 \begin_inset Text
23426
23427 \begin_layout Plain Layout
23428 \begin_inset Formula $\nmid$
23429 \end_inset
23430
23431
23432 \end_layout
23433
23434 \end_inset
23435 </cell>
23436 </row>
23437 </lyxtabular>
23438
23439 \end_inset
23440
23441
23442 \begin_inset space \hfill{}
23443 \end_inset
23444
23445
23446 \begin_inset Tabular
23447 <lyxtabular version="3" rows="17" columns="2">
23448 <features>
23449 <column alignment="center" valignment="top" width="0pt">
23450 <column alignment="center" valignment="top" width="0pt">
23451 <row>
23452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23453 \begin_inset Text
23454
23455 \begin_layout Plain Layout
23456 Command
23457 \end_layout
23458
23459 \end_inset
23460 </cell>
23461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23462 \begin_inset Text
23463
23464 \begin_layout Plain Layout
23465 Result
23466 \end_layout
23467
23468 \end_inset
23469 </cell>
23470 </row>
23471 <row>
23472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23473 \begin_inset Text
23474
23475 \begin_layout Plain Layout
23476 =
23477 \end_layout
23478
23479 \end_inset
23480 </cell>
23481 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23482 \begin_inset Text
23483
23484 \begin_layout Plain Layout
23485 \begin_inset Formula $=$
23486 \end_inset
23487
23488
23489 \end_layout
23490
23491 \end_inset
23492 </cell>
23493 </row>
23494 <row>
23495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23496 \begin_inset Text
23497
23498 \begin_layout Plain Layout
23499
23500 \backslash
23501 not=
23502 \end_layout
23503
23504 \end_inset
23505 </cell>
23506 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23507 \begin_inset Text
23508
23509 \begin_layout Plain Layout
23510 \begin_inset Formula $\not=$
23511 \end_inset
23512
23513
23514 \end_layout
23515
23516 \end_inset
23517 </cell>
23518 </row>
23519 <row>
23520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23521 \begin_inset Text
23522
23523 \begin_layout Plain Layout
23524
23525 \backslash
23526 equiv
23527 \end_layout
23528
23529 \end_inset
23530 </cell>
23531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23532 \begin_inset Text
23533
23534 \begin_layout Plain Layout
23535 \begin_inset Formula $\equiv$
23536 \end_inset
23537
23538
23539 \end_layout
23540
23541 \end_inset
23542 </cell>
23543 </row>
23544 <row>
23545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23546 \begin_inset Text
23547
23548 \begin_layout Plain Layout
23549
23550 \backslash
23551 sim
23552 \end_layout
23553
23554 \end_inset
23555 </cell>
23556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23557 \begin_inset Text
23558
23559 \begin_layout Plain Layout
23560 \begin_inset Formula $\sim$
23561 \end_inset
23562
23563
23564 \end_layout
23565
23566 \end_inset
23567 </cell>
23568 </row>
23569 <row>
23570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23571 \begin_inset Text
23572
23573 \begin_layout Plain Layout
23574
23575 \backslash
23576 simeq
23577 \end_layout
23578
23579 \end_inset
23580 </cell>
23581 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23582 \begin_inset Text
23583
23584 \begin_layout Plain Layout
23585 \begin_inset Formula $\simeq$
23586 \end_inset
23587
23588
23589 \end_layout
23590
23591 \end_inset
23592 </cell>
23593 </row>
23594 <row>
23595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23596 \begin_inset Text
23597
23598 \begin_layout Plain Layout
23599
23600 \backslash
23601 approx
23602 \end_layout
23603
23604 \end_inset
23605 </cell>
23606 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23607 \begin_inset Text
23608
23609 \begin_layout Plain Layout
23610 \begin_inset Formula $\approx$
23611 \end_inset
23612
23613
23614 \end_layout
23615
23616 \end_inset
23617 </cell>
23618 </row>
23619 <row>
23620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23621 \begin_inset Text
23622
23623 \begin_layout Plain Layout
23624
23625 \backslash
23626 cong
23627 \end_layout
23628
23629 \end_inset
23630 </cell>
23631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23632 \begin_inset Text
23633
23634 \begin_layout Plain Layout
23635 \begin_inset Formula $\cong$
23636 \end_inset
23637
23638
23639 \end_layout
23640
23641 \end_inset
23642 </cell>
23643 </row>
23644 <row>
23645 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23646 \begin_inset Text
23647
23648 \begin_layout Plain Layout
23649
23650 \backslash
23651 bowtie
23652 \end_layout
23653
23654 \end_inset
23655 </cell>
23656 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23657 \begin_inset Text
23658
23659 \begin_layout Plain Layout
23660 \begin_inset Formula $\bowtie$
23661 \end_inset
23662
23663
23664 \end_layout
23665
23666 \end_inset
23667 </cell>
23668 </row>
23669 <row>
23670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23671 \begin_inset Text
23672
23673 \begin_layout Plain Layout
23674
23675 \backslash
23676 notin
23677 \end_layout
23678
23679 \end_inset
23680 </cell>
23681 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23682 \begin_inset Text
23683
23684 \begin_layout Plain Layout
23685 \begin_inset Formula $\notin$
23686 \end_inset
23687
23688
23689 \end_layout
23690
23691 \end_inset
23692 </cell>
23693 </row>
23694 <row>
23695 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23696 \begin_inset Text
23697
23698 \begin_layout Plain Layout
23699
23700 \backslash
23701 perp
23702 \end_layout
23703
23704 \end_inset
23705 </cell>
23706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23707 \begin_inset Text
23708
23709 \begin_layout Plain Layout
23710 \begin_inset Formula $\perp$
23711 \end_inset
23712
23713
23714 \end_layout
23715
23716 \end_inset
23717 </cell>
23718 </row>
23719 <row>
23720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23721 \begin_inset Text
23722
23723 \begin_layout Plain Layout
23724
23725 \backslash
23726 propto
23727 \end_layout
23728
23729 \end_inset
23730 </cell>
23731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23732 \begin_inset Text
23733
23734 \begin_layout Plain Layout
23735 \begin_inset Formula $\propto$
23736 \end_inset
23737
23738
23739 \end_layout
23740
23741 \end_inset
23742 </cell>
23743 </row>
23744 <row>
23745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23746 \begin_inset Text
23747
23748 \begin_layout Plain Layout
23749
23750 \backslash
23751 asymp
23752 \end_layout
23753
23754 \end_inset
23755 </cell>
23756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23757 \begin_inset Text
23758
23759 \begin_layout Plain Layout
23760 \begin_inset Formula $\asymp$
23761 \end_inset
23762
23763
23764 \end_layout
23765
23766 \end_inset
23767 </cell>
23768 </row>
23769 <row>
23770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23771 \begin_inset Text
23772
23773 \begin_layout Plain Layout
23774
23775 \backslash
23776 doteq
23777 \end_layout
23778
23779 \end_inset
23780 </cell>
23781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23782 \begin_inset Text
23783
23784 \begin_layout Plain Layout
23785 \begin_inset Formula $\doteq$
23786 \end_inset
23787
23788
23789 \end_layout
23790
23791 \end_inset
23792 </cell>
23793 </row>
23794 <row>
23795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23796 \begin_inset Text
23797
23798 \begin_layout Plain Layout
23799
23800 \backslash
23801 circeq
23802 \end_layout
23803
23804 \end_inset
23805 </cell>
23806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23807 \begin_inset Text
23808
23809 \begin_layout Plain Layout
23810 \begin_inset Formula $\circeq$
23811 \end_inset
23812
23813
23814 \end_layout
23815
23816 \end_inset
23817 </cell>
23818 </row>
23819 <row>
23820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23821 \begin_inset Text
23822
23823 \begin_layout Plain Layout
23824
23825 \backslash
23826 models
23827 \end_layout
23828
23829 \end_inset
23830 </cell>
23831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23832 \begin_inset Text
23833
23834 \begin_layout Plain Layout
23835 \begin_inset Formula $\models$
23836 \end_inset
23837
23838
23839 \end_layout
23840
23841 \end_inset
23842 </cell>
23843 </row>
23844 <row>
23845 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23846 \begin_inset Text
23847
23848 \begin_layout Plain Layout
23849
23850 \backslash
23851 widehat=
23852 \end_layout
23853
23854 \end_inset
23855 </cell>
23856 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23857 \begin_inset Text
23858
23859 \begin_layout Plain Layout
23860 \begin_inset Formula $\widehat{=}$
23861 \end_inset
23862
23863
23864 \end_layout
23865
23866 \end_inset
23867 </cell>
23868 </row>
23869 </lyxtabular>
23870
23871 \end_inset
23872
23873
23874 \begin_inset space \hfill{}
23875 \end_inset
23876
23877
23878 \begin_inset Tabular
23879 <lyxtabular version="3" rows="17" columns="2">
23880 <features>
23881 <column alignment="center" valignment="top" width="0pt">
23882 <column alignment="center" valignment="top" width="0pt">
23883 <row>
23884 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23885 \begin_inset Text
23886
23887 \begin_layout Plain Layout
23888 Command
23889 \end_layout
23890
23891 \end_inset
23892 </cell>
23893 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23894 \begin_inset Text
23895
23896 \begin_layout Plain Layout
23897 Result
23898 \end_layout
23899
23900 \end_inset
23901 </cell>
23902 </row>
23903 <row>
23904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23905 \begin_inset Text
23906
23907 \begin_layout Plain Layout
23908 >
23909 \end_layout
23910
23911 \end_inset
23912 </cell>
23913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23914 \begin_inset Text
23915
23916 \begin_layout Plain Layout
23917 \begin_inset Formula $>$
23918 \end_inset
23919
23920
23921 \end_layout
23922
23923 \end_inset
23924 </cell>
23925 </row>
23926 <row>
23927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23928 \begin_inset Text
23929
23930 \begin_layout Plain Layout
23931
23932 \backslash
23933 ge
23934 \end_layout
23935
23936 \end_inset
23937 </cell>
23938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23939 \begin_inset Text
23940
23941 \begin_layout Plain Layout
23942 \begin_inset Formula $\ge$
23943 \end_inset
23944
23945
23946 \end_layout
23947
23948 \end_inset
23949 </cell>
23950 </row>
23951 <row>
23952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23953 \begin_inset Text
23954
23955 \begin_layout Plain Layout
23956
23957 \backslash
23958 gg
23959 \end_layout
23960
23961 \end_inset
23962 </cell>
23963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23964 \begin_inset Text
23965
23966 \begin_layout Plain Layout
23967 \begin_inset Formula $\gg$
23968 \end_inset
23969
23970
23971 \end_layout
23972
23973 \end_inset
23974 </cell>
23975 </row>
23976 <row>
23977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23978 \begin_inset Text
23979
23980 \begin_layout Plain Layout
23981
23982 \backslash
23983 succ
23984 \end_layout
23985
23986 \end_inset
23987 </cell>
23988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23989 \begin_inset Text
23990
23991 \begin_layout Plain Layout
23992 \begin_inset Formula $\succ$
23993 \end_inset
23994
23995
23996 \end_layout
23997
23998 \end_inset
23999 </cell>
24000 </row>
24001 <row>
24002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24003 \begin_inset Text
24004
24005 \begin_layout Plain Layout
24006
24007 \backslash
24008 succeq
24009 \end_layout
24010
24011 \end_inset
24012 </cell>
24013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24014 \begin_inset Text
24015
24016 \begin_layout Plain Layout
24017 \begin_inset Formula $\succeq$
24018 \end_inset
24019
24020
24021 \end_layout
24022
24023 \end_inset
24024 </cell>
24025 </row>
24026 <row>
24027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24028 \begin_inset Text
24029
24030 \begin_layout Plain Layout
24031
24032 \backslash
24033 supset
24034 \end_layout
24035
24036 \end_inset
24037 </cell>
24038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24039 \begin_inset Text
24040
24041 \begin_layout Plain Layout
24042 \begin_inset Formula $\supset$
24043 \end_inset
24044
24045
24046 \end_layout
24047
24048 \end_inset
24049 </cell>
24050 </row>
24051 <row>
24052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24053 \begin_inset Text
24054
24055 \begin_layout Plain Layout
24056
24057 \backslash
24058 supseteq
24059 \end_layout
24060
24061 \end_inset
24062 </cell>
24063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24064 \begin_inset Text
24065
24066 \begin_layout Plain Layout
24067 \begin_inset Formula $\supseteq$
24068 \end_inset
24069
24070
24071 \end_layout
24072
24073 \end_inset
24074 </cell>
24075 </row>
24076 <row>
24077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24078 \begin_inset Text
24079
24080 \begin_layout Plain Layout
24081
24082 \backslash
24083 sqsupseteq
24084 \end_layout
24085
24086 \end_inset
24087 </cell>
24088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24089 \begin_inset Text
24090
24091 \begin_layout Plain Layout
24092 \begin_inset Formula $\sqsupseteq$
24093 \end_inset
24094
24095
24096 \end_layout
24097
24098 \end_inset
24099 </cell>
24100 </row>
24101 <row>
24102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24103 \begin_inset Text
24104
24105 \begin_layout Plain Layout
24106
24107 \backslash
24108 ni
24109 \end_layout
24110
24111 \end_inset
24112 </cell>
24113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24114 \begin_inset Text
24115
24116 \begin_layout Plain Layout
24117 \begin_inset Formula $\ni$
24118 \end_inset
24119
24120
24121 \end_layout
24122
24123 \end_inset
24124 </cell>
24125 </row>
24126 <row>
24127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24128 \begin_inset Text
24129
24130 \begin_layout Plain Layout
24131
24132 \backslash
24133 dashv
24134 \end_layout
24135
24136 \end_inset
24137 </cell>
24138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24139 \begin_inset Text
24140
24141 \begin_layout Plain Layout
24142 \begin_inset Formula $\dashv$
24143 \end_inset
24144
24145
24146 \end_layout
24147
24148 \end_inset
24149 </cell>
24150 </row>
24151 <row>
24152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24153 \begin_inset Text
24154
24155 \begin_layout Plain Layout
24156
24157 \backslash
24158 frown
24159 \end_layout
24160
24161 \end_inset
24162 </cell>
24163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24164 \begin_inset Text
24165
24166 \begin_layout Plain Layout
24167 \begin_inset Formula $\frown$
24168 \end_inset
24169
24170
24171 \end_layout
24172
24173 \end_inset
24174 </cell>
24175 </row>
24176 <row>
24177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24178 \begin_inset Text
24179
24180 \begin_layout Plain Layout
24181
24182 \backslash
24183 rhd
24184 \end_layout
24185
24186 \end_inset
24187 </cell>
24188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24189 \begin_inset Text
24190
24191 \begin_layout Plain Layout
24192 \begin_inset Formula $\rhd$
24193 \end_inset
24194
24195
24196 \end_layout
24197
24198 \end_inset
24199 </cell>
24200 </row>
24201 <row>
24202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24203 \begin_inset Text
24204
24205 \begin_layout Plain Layout
24206
24207 \backslash
24208 unrhd
24209 \end_layout
24210
24211 \end_inset
24212 </cell>
24213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24214 \begin_inset Text
24215
24216 \begin_layout Plain Layout
24217 \begin_inset Formula $\unrhd$
24218 \end_inset
24219
24220
24221 \end_layout
24222
24223 \end_inset
24224 </cell>
24225 </row>
24226 <row>
24227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24228 \begin_inset Text
24229
24230 \begin_layout Plain Layout
24231
24232 \backslash
24233 lessgtr
24234 \end_layout
24235
24236 \end_inset
24237 </cell>
24238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24239 \begin_inset Text
24240
24241 \begin_layout Plain Layout
24242 \begin_inset Formula $\lessgtr$
24243 \end_inset
24244
24245
24246 \end_layout
24247
24248 \end_inset
24249 </cell>
24250 </row>
24251 <row>
24252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24253 \begin_inset Text
24254
24255 \begin_layout Plain Layout
24256
24257 \backslash
24258 parallel
24259 \end_layout
24260
24261 \end_inset
24262 </cell>
24263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24264 \begin_inset Text
24265
24266 \begin_layout Plain Layout
24267 \begin_inset Formula $\parallel$
24268 \end_inset
24269
24270
24271 \end_layout
24272
24273 \end_inset
24274 </cell>
24275 </row>
24276 <row>
24277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24278 \begin_inset Text
24279
24280 \begin_layout Plain Layout
24281
24282 \backslash
24283 nparallel
24284 \end_layout
24285
24286 \end_inset
24287 </cell>
24288 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24289 \begin_inset Text
24290
24291 \begin_layout Plain Layout
24292 \begin_inset Formula $\nparallel$
24293 \end_inset
24294
24295
24296 \end_layout
24297
24298 \end_inset
24299 </cell>
24300 </row>
24301 </lyxtabular>
24302
24303 \end_inset
24304
24305
24306 \begin_inset space \hfill{}
24307 \end_inset
24308
24309
24310 \end_layout
24311
24312 \begin_layout Standard
24313 \begin_inset VSpace medskip
24314 \end_inset
24315
24316 The characters 
24317 \series bold
24318
24319 \backslash
24320 lhd
24321 \series default
24322  and 
24323 \series bold
24324
24325 \backslash
24326 rhd
24327 \series default
24328  are bigger than the equal looking operators 
24329 \series bold
24330
24331 \backslash
24332 triangleleft
24333 \series default
24334  and 
24335 \series bold
24336
24337 \backslash
24338 triangleright
24339 \series default
24340 , respectively.
24341 \end_layout
24342
24343 \begin_layout Standard
24344 Relations are, in contrary to symbols, always surrounded by space.
24345 \end_layout
24346
24347 \begin_layout Standard
24348 Relations with labels can be created with the command 
24349 \series bold
24350
24351 \backslash
24352 stackrel
24353 \series default
24354
24355 \begin_inset Index
24356 status collapsed
24357
24358 \begin_layout Plain Layout
24359 Commands ! S ! 
24360 \backslash
24361 stackrel
24362 \end_layout
24363
24364 \end_inset
24365
24366 :
24367 \end_layout
24368
24369 \begin_layout Standard
24370 \align center
24371 \begin_inset Tabular
24372 <lyxtabular version="3" rows="2" columns="2">
24373 <features>
24374 <column alignment="center" valignment="top" width="0">
24375 <column alignment="center" valignment="top" width="0">
24376 <row>
24377 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24378 \begin_inset Text
24379
24380 \begin_layout Plain Layout
24381 Command
24382 \end_layout
24383
24384 \end_inset
24385 </cell>
24386 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24387 \begin_inset Text
24388
24389 \begin_layout Plain Layout
24390 Result
24391 \begin_inset Note Note
24392 status collapsed
24393
24394 \begin_layout Plain Layout
24395
24396 \series bold
24397
24398 \backslash
24399 raisebox
24400 \series default
24401  is only used as spacer.
24402 \end_layout
24403
24404 \end_inset
24405
24406
24407 \end_layout
24408
24409 \end_inset
24410 </cell>
24411 </row>
24412 <row>
24413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24414 \begin_inset Text
24415
24416 \begin_layout Plain Layout
24417 A(r)
24418 \backslash
24419 stackrel
24420 \begin_inset ERT
24421 status collapsed
24422
24423 \begin_layout Plain Layout
24424
24425
24426 \backslash
24427 spce 
24428 \end_layout
24429
24430 \end_inset
24431
24432 r
24433 \backslash
24434 to
24435 \backslash
24436 infty
24437 \begin_inset ERT
24438 status collapsed
24439
24440 \begin_layout Plain Layout
24441
24442
24443 \backslash
24444 spce 
24445 \end_layout
24446
24447 \end_inset
24448
24449
24450 \begin_inset Formula $\downarrow$
24451 \end_inset
24452
24453
24454 \backslash
24455 approx
24456 \begin_inset ERT
24457 status collapsed
24458
24459 \begin_layout Plain Layout
24460
24461
24462 \backslash
24463 spce 
24464 \end_layout
24465
24466 \end_inset
24467
24468
24469 \begin_inset ERT
24470 status collapsed
24471
24472 \begin_layout Plain Layout
24473
24474
24475 \backslash
24476 spce 
24477 \end_layout
24478
24479 \end_inset
24480
24481 B
24482 \end_layout
24483
24484 \end_inset
24485 </cell>
24486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24487 \begin_inset Text
24488
24489 \begin_layout Plain Layout
24490 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24491 \end_inset
24492
24493
24494 \end_layout
24495
24496 \end_inset
24497 </cell>
24498 </row>
24499 </lyxtabular>
24500
24501 \end_inset
24502
24503
24504 \end_layout
24505
24506 \begin_layout Section
24507 Functions
24508 \end_layout
24509
24510 \begin_layout Subsection
24511 Predefined Functions
24512 \begin_inset CommandInset label
24513 LatexCommand label
24514 name "sub:Predefined-Functions"
24515
24516 \end_inset
24517
24518
24519 \begin_inset Index
24520 status collapsed
24521
24522 \begin_layout Plain Layout
24523 Functions ! predefined
24524 \end_layout
24525
24526 \end_inset
24527
24528
24529 \end_layout
24530
24531 \begin_layout Standard
24532 In general, variables are set 
24533 \emph on
24534 italic
24535 \emph default
24536  in mathematical expressions, but not function names, because 
24537 \begin_inset Formula $sin$
24538 \end_inset
24539
24540  could be misunderstood as 
24541 \begin_inset Formula $s\cdot i\cdot n$
24542 \end_inset
24543
24544 .
24545  Therefore there are predefined functions, that are additionally a bit separated
24546  from prefactors.
24547  They are inserted as commands starting with a backslash before their name.
24548 \end_layout
24549
24550 \begin_layout Standard
24551 \align center
24552 \begin_inset Tabular
24553 <lyxtabular version="3" rows="2" columns="4">
24554 <features>
24555 <column alignment="center" valignment="top" width="0pt">
24556 <column alignment="center" valignment="top" width="0pt">
24557 <column alignment="center" valignment="top" width="0pt">
24558 <column alignment="center" valignment="top" width="0pt">
24559 <row>
24560 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24561 \begin_inset Text
24562
24563 \begin_layout Plain Layout
24564 Command
24565 \end_layout
24566
24567 \end_inset
24568 </cell>
24569 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24570 \begin_inset Text
24571
24572 \begin_layout Plain Layout
24573 Result
24574 \end_layout
24575
24576 \end_inset
24577 </cell>
24578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24579 \begin_inset Text
24580
24581 \begin_layout Plain Layout
24582 Command
24583 \end_layout
24584
24585 \end_inset
24586 </cell>
24587 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24588 \begin_inset Text
24589
24590 \begin_layout Plain Layout
24591 Result
24592 \end_layout
24593
24594 \end_inset
24595 </cell>
24596 </row>
24597 <row>
24598 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24599 \begin_inset Text
24600
24601 \begin_layout Plain Layout
24602 Asin(x)+B
24603 \end_layout
24604
24605 \end_inset
24606 </cell>
24607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24608 \begin_inset Text
24609
24610 \begin_layout Plain Layout
24611 \begin_inset Formula $Asin(x)+B$
24612 \end_inset
24613
24614
24615 \end_layout
24616
24617 \end_inset
24618 </cell>
24619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24620 \begin_inset Text
24621
24622 \begin_layout Plain Layout
24623 A
24624 \backslash
24625 sin(x)+B
24626 \end_layout
24627
24628 \end_inset
24629 </cell>
24630 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24631 \begin_inset Text
24632
24633 \begin_layout Plain Layout
24634 \begin_inset Formula $A\sin(x)+B$
24635 \end_inset
24636
24637
24638 \end_layout
24639
24640 \end_inset
24641 </cell>
24642 </row>
24643 </lyxtabular>
24644
24645 \end_inset
24646
24647
24648 \end_layout
24649
24650 \begin_layout Standard
24651 The following functions are predefined:
24652 \end_layout
24653
24654 \begin_layout Standard
24655 \begin_inset VSpace -2mm
24656 \end_inset
24657
24658
24659 \end_layout
24660
24661 \begin_layout Standard
24662 \align center
24663 \begin_inset Tabular
24664 <lyxtabular version="3" rows="9" columns="4">
24665 <features>
24666 <column alignment="center" valignment="top" width="0pt">
24667 <column alignment="center" valignment="top" width="0pt">
24668 <column alignment="center" valignment="top" width="0pt">
24669 <column alignment="center" valignment="top" width="0pt">
24670 <row>
24671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24672 \begin_inset Text
24673
24674 \begin_layout Plain Layout
24675 Command
24676 \end_layout
24677
24678 \end_inset
24679 </cell>
24680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24681 \begin_inset Text
24682
24683 \begin_layout Plain Layout
24684 Command
24685 \end_layout
24686
24687 \end_inset
24688 </cell>
24689 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24690 \begin_inset Text
24691
24692 \begin_layout Plain Layout
24693 Command
24694 \end_layout
24695
24696 \end_inset
24697 </cell>
24698 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24699 \begin_inset Text
24700
24701 \begin_layout Plain Layout
24702 Command
24703 \end_layout
24704
24705 \end_inset
24706 </cell>
24707 </row>
24708 <row>
24709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24710 \begin_inset Text
24711
24712 \begin_layout Plain Layout
24713
24714 \backslash
24715 sin
24716 \end_layout
24717
24718 \end_inset
24719 </cell>
24720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24721 \begin_inset Text
24722
24723 \begin_layout Plain Layout
24724
24725 \backslash
24726 sinh
24727 \end_layout
24728
24729 \end_inset
24730 </cell>
24731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24732 \begin_inset Text
24733
24734 \begin_layout Plain Layout
24735
24736 \backslash
24737 arcsin
24738 \end_layout
24739
24740 \end_inset
24741 </cell>
24742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24743 \begin_inset Text
24744
24745 \begin_layout Plain Layout
24746
24747 \backslash
24748 sup
24749 \end_layout
24750
24751 \end_inset
24752 </cell>
24753 </row>
24754 <row>
24755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24756 \begin_inset Text
24757
24758 \begin_layout Plain Layout
24759
24760 \backslash
24761 cos
24762 \end_layout
24763
24764 \end_inset
24765 </cell>
24766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24767 \begin_inset Text
24768
24769 \begin_layout Plain Layout
24770
24771 \backslash
24772 cosh
24773 \end_layout
24774
24775 \end_inset
24776 </cell>
24777 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24778 \begin_inset Text
24779
24780 \begin_layout Plain Layout
24781
24782 \backslash
24783 arccos
24784 \end_layout
24785
24786 \end_inset
24787 </cell>
24788 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24789 \begin_inset Text
24790
24791 \begin_layout Plain Layout
24792
24793 \backslash
24794 inf
24795 \end_layout
24796
24797 \end_inset
24798 </cell>
24799 </row>
24800 <row>
24801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24802 \begin_inset Text
24803
24804 \begin_layout Plain Layout
24805
24806 \backslash
24807 tan
24808 \end_layout
24809
24810 \end_inset
24811 </cell>
24812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24813 \begin_inset Text
24814
24815 \begin_layout Plain Layout
24816
24817 \backslash
24818 tanh
24819 \end_layout
24820
24821 \end_inset
24822 </cell>
24823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24824 \begin_inset Text
24825
24826 \begin_layout Plain Layout
24827
24828 \backslash
24829 arctan
24830 \end_layout
24831
24832 \end_inset
24833 </cell>
24834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24835 \begin_inset Text
24836
24837 \begin_layout Plain Layout
24838
24839 \backslash
24840 lim
24841 \end_layout
24842
24843 \end_inset
24844 </cell>
24845 </row>
24846 <row>
24847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24848 \begin_inset Text
24849
24850 \begin_layout Plain Layout
24851
24852 \backslash
24853 cot
24854 \end_layout
24855
24856 \end_inset
24857 </cell>
24858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24859 \begin_inset Text
24860
24861 \begin_layout Plain Layout
24862
24863 \backslash
24864 coth
24865 \end_layout
24866
24867 \end_inset
24868 </cell>
24869 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24870 \begin_inset Text
24871
24872 \begin_layout Plain Layout
24873
24874 \backslash
24875 arg
24876 \end_layout
24877
24878 \end_inset
24879 </cell>
24880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24881 \begin_inset Text
24882
24883 \begin_layout Plain Layout
24884
24885 \backslash
24886 liminf
24887 \end_layout
24888
24889 \end_inset
24890 </cell>
24891 </row>
24892 <row>
24893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24894 \begin_inset Text
24895
24896 \begin_layout Plain Layout
24897
24898 \backslash
24899 sec
24900 \end_layout
24901
24902 \end_inset
24903 </cell>
24904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24905 \begin_inset Text
24906
24907 \begin_layout Plain Layout
24908
24909 \backslash
24910 min
24911 \end_layout
24912
24913 \end_inset
24914 </cell>
24915 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24916 \begin_inset Text
24917
24918 \begin_layout Plain Layout
24919
24920 \backslash
24921 deg
24922 \end_layout
24923
24924 \end_inset
24925 </cell>
24926 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24927 \begin_inset Text
24928
24929 \begin_layout Plain Layout
24930
24931 \backslash
24932 limsup
24933 \end_layout
24934
24935 \end_inset
24936 </cell>
24937 </row>
24938 <row>
24939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24940 \begin_inset Text
24941
24942 \begin_layout Plain Layout
24943
24944 \backslash
24945 csc
24946 \end_layout
24947
24948 \end_inset
24949 </cell>
24950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24951 \begin_inset Text
24952
24953 \begin_layout Plain Layout
24954
24955 \backslash
24956 max
24957 \end_layout
24958
24959 \end_inset
24960 </cell>
24961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24962 \begin_inset Text
24963
24964 \begin_layout Plain Layout
24965
24966 \backslash
24967 det
24968 \end_layout
24969
24970 \end_inset
24971 </cell>
24972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24973 \begin_inset Text
24974
24975 \begin_layout Plain Layout
24976
24977 \backslash
24978 Pr
24979 \end_layout
24980
24981 \end_inset
24982 </cell>
24983 </row>
24984 <row>
24985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24986 \begin_inset Text
24987
24988 \begin_layout Plain Layout
24989
24990 \backslash
24991 ln
24992 \end_layout
24993
24994 \end_inset
24995 </cell>
24996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24997 \begin_inset Text
24998
24999 \begin_layout Plain Layout
25000
25001 \backslash
25002 exp
25003 \end_layout
25004
25005 \end_inset
25006 </cell>
25007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25008 \begin_inset Text
25009
25010 \begin_layout Plain Layout
25011
25012 \backslash
25013 dim
25014 \end_layout
25015
25016 \end_inset
25017 </cell>
25018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25019 \begin_inset Text
25020
25021 \begin_layout Plain Layout
25022
25023 \backslash
25024 hom
25025 \end_layout
25026
25027 \end_inset
25028 </cell>
25029 </row>
25030 <row>
25031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25032 \begin_inset Text
25033
25034 \begin_layout Plain Layout
25035
25036 \backslash
25037 lg
25038 \end_layout
25039
25040 \end_inset
25041 </cell>
25042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25043 \begin_inset Text
25044
25045 \begin_layout Plain Layout
25046
25047 \backslash
25048 log
25049 \end_layout
25050
25051 \end_inset
25052 </cell>
25053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25054 \begin_inset Text
25055
25056 \begin_layout Plain Layout
25057
25058 \backslash
25059 ker
25060 \end_layout
25061
25062 \end_inset
25063 </cell>
25064 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25065 \begin_inset Text
25066
25067 \begin_layout Plain Layout
25068
25069 \backslash
25070 gcd
25071 \end_layout
25072
25073 \end_inset
25074 </cell>
25075 </row>
25076 </lyxtabular>
25077
25078 \end_inset
25079
25080
25081 \end_layout
25082
25083 \begin_layout Standard
25084 They can also be inserted with the math toolbar button 
25085 \begin_inset Graphics
25086         filename ../images/math/functions.png
25087         scale 85
25088
25089 \end_inset
25090
25091 .
25092 \end_layout
25093
25094 \begin_layout Subsection
25095 Self-defined Functions
25096 \begin_inset Index
25097 status collapsed
25098
25099 \begin_layout Plain Layout
25100 Functions ! self-defined
25101 \end_layout
25102
25103 \end_inset
25104
25105
25106 \end_layout
25107
25108 \begin_layout Standard
25109 To use a function that is not predefined, like for example the sign function
25110  sgn(x), there are two possibilities:
25111 \end_layout
25112
25113 \begin_layout Itemize
25114 Define the function by inserting the following line to the LaTeX-preamble
25115 \begin_inset Foot
25116 status collapsed
25117
25118 \begin_layout Plain Layout
25119 For more about 
25120 \series bold
25121
25122 \backslash
25123 DeclareMathOperator
25124 \series default
25125  see 
25126 \begin_inset CommandInset ref
25127 LatexCommand ref
25128 reference "sub:Self-defined-Operators"
25129
25130 \end_inset
25131
25132 .
25133 \end_layout
25134
25135 \end_inset
25136
25137
25138 \begin_inset Newline newline
25139 \end_inset
25140
25141
25142 \begin_inset VSpace -3mm
25143 \end_inset
25144
25145
25146 \begin_inset Newline newline
25147 \end_inset
25148
25149
25150 \series bold
25151
25152 \backslash
25153 DeclareMathOperator{
25154 \backslash
25155 sgn}{sgn}
25156 \series default
25157
25158 \begin_inset Index
25159 status collapsed
25160
25161 \begin_layout Plain Layout
25162 Commands ! D ! 
25163 \backslash
25164 dbinom@
25165 \backslash
25166 DeclareMathOperator
25167 \end_layout
25168
25169 \end_inset
25170
25171
25172 \begin_inset Newline newline
25173 \end_inset
25174
25175
25176 \begin_inset VSpace -2mm
25177 \end_inset
25178
25179
25180 \begin_inset Newline newline
25181 \end_inset
25182
25183 Now the new defined function can be called with the command 
25184 \series bold
25185
25186 \backslash
25187 sgn
25188 \series default
25189 .
25190 \end_layout
25191
25192 \begin_layout Itemize
25193 Write the formula as usual, mark the formula name, in our example the letters
25194  
25195 \emph on
25196 sgn
25197 \emph default
25198 , and change it to mathematical text.
25199  At last a space is inserted between prefactor and function.
25200 \end_layout
25201
25202 \begin_layout Standard
25203 The result is the same with both methods as with a predefined function
25204 \begin_inset Foot
25205 status collapsed
25206
25207 \begin_layout Plain Layout
25208 In LyX self-defined functions are displayed red, predefined ones black.
25209 \end_layout
25210
25211 \end_inset
25212
25213 :
25214 \end_layout
25215
25216 \begin_layout Standard
25217 \align center
25218 \begin_inset Tabular
25219 <lyxtabular version="3" rows="3" columns="2">
25220 <features>
25221 <column alignment="center" valignment="top" width="0pt">
25222 <column alignment="center" valignment="top" width="0pt">
25223 <row>
25224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25225 \begin_inset Text
25226
25227 \begin_layout Plain Layout
25228 Command
25229 \end_layout
25230
25231 \end_inset
25232 </cell>
25233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25234 \begin_inset Text
25235
25236 \begin_layout Plain Layout
25237 Result
25238 \end_layout
25239
25240 \end_inset
25241 </cell>
25242 </row>
25243 <row>
25244 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25245 \begin_inset Text
25246
25247 \begin_layout Plain Layout
25248 A
25249 \backslash
25250 sgn(x)+B
25251 \end_layout
25252
25253 \end_inset
25254 </cell>
25255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25256 \begin_inset Text
25257
25258 \begin_layout Plain Layout
25259 \begin_inset Formula $A\sgn(x)+B$
25260 \end_inset
25261
25262
25263 \end_layout
25264
25265 \end_inset
25266 </cell>
25267 </row>
25268 <row>
25269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25270 \begin_inset Text
25271
25272 \begin_layout Plain Layout
25273 A
25274 \backslash
25275 ,
25276 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt+M}\,\textrm{M}}$
25277 \end_inset
25278
25279 (x)+B
25280 \end_layout
25281
25282 \end_inset
25283 </cell>
25284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25285 \begin_inset Text
25286
25287 \begin_layout Plain Layout
25288 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25289 \end_inset
25290
25291
25292 \end_layout
25293
25294 \end_inset
25295 </cell>
25296 </row>
25297 </lyxtabular>
25298
25299 \end_inset
25300
25301
25302 \end_layout
25303
25304 \begin_layout Standard
25305 The first method is more suitable when the self-defined function should
25306  be used several times.
25307 \end_layout
25308
25309 \begin_layout Subsection
25310 Limits
25311 \begin_inset Index
25312 status collapsed
25313
25314 \begin_layout Plain Layout
25315 Limits
25316 \end_layout
25317
25318 \end_inset
25319
25320
25321 \end_layout
25322
25323 \begin_layout Standard
25324 For limits there are defined besides 
25325 \series bold
25326
25327 \backslash
25328 lim
25329 \series default
25330
25331 \begin_inset Index
25332 status collapsed
25333
25334 \begin_layout Plain Layout
25335 Commands ! L ! 
25336 \backslash
25337 lim
25338 \end_layout
25339
25340 \end_inset
25341
25342
25343 \series bold
25344
25345 \backslash
25346 liminf
25347 \series default
25348  and 
25349 \series bold
25350
25351 \backslash
25352 limsup
25353 \series default
25354  furthermore the following functions:
25355 \end_layout
25356
25357 \begin_layout Standard
25358 \align center
25359 \begin_inset Tabular
25360 <lyxtabular version="3" rows="5" columns="2">
25361 <features>
25362 <column alignment="center" valignment="top" width="0">
25363 <column alignment="center" valignment="top" width="0">
25364 <row>
25365 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25366 \begin_inset Text
25367
25368 \begin_layout Plain Layout
25369 Command
25370 \end_layout
25371
25372 \end_inset
25373 </cell>
25374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25375 \begin_inset Text
25376
25377 \begin_layout Plain Layout
25378 Result
25379 \begin_inset Note Note
25380 status collapsed
25381
25382 \begin_layout Plain Layout
25383
25384 \series bold
25385
25386 \backslash
25387 raisebox
25388 \series default
25389  is only used as spacer.
25390 \end_layout
25391
25392 \end_inset
25393
25394
25395 \end_layout
25396
25397 \end_inset
25398 </cell>
25399 </row>
25400 <row>
25401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25402 \begin_inset Text
25403
25404 \begin_layout Plain Layout
25405
25406 \backslash
25407 varliminf
25408 \end_layout
25409
25410 \end_inset
25411 </cell>
25412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25413 \begin_inset Text
25414
25415 \begin_layout Plain Layout
25416 \begin_inset Formula $\varliminf$
25417 \end_inset
25418
25419
25420 \end_layout
25421
25422 \end_inset
25423 </cell>
25424 </row>
25425 <row>
25426 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25427 \begin_inset Text
25428
25429 \begin_layout Plain Layout
25430
25431 \backslash
25432 varlimsup
25433 \end_layout
25434
25435 \end_inset
25436 </cell>
25437 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25438 \begin_inset Text
25439
25440 \begin_layout Plain Layout
25441 \begin_inset Formula $\varlimsup$
25442 \end_inset
25443
25444
25445 \end_layout
25446
25447 \end_inset
25448 </cell>
25449 </row>
25450 <row>
25451 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25452 \begin_inset Text
25453
25454 \begin_layout Plain Layout
25455
25456 \backslash
25457 varprojlim
25458 \end_layout
25459
25460 \end_inset
25461 </cell>
25462 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25463 \begin_inset Text
25464
25465 \begin_layout Plain Layout
25466 \begin_inset Formula $\varprojlim$
25467 \end_inset
25468
25469
25470 \end_layout
25471
25472 \end_inset
25473 </cell>
25474 </row>
25475 <row>
25476 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25477 \begin_inset Text
25478
25479 \begin_layout Plain Layout
25480
25481 \backslash
25482 varinjlim
25483 \end_layout
25484
25485 \end_inset
25486 </cell>
25487 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25488 \begin_inset Text
25489
25490 \begin_layout Plain Layout
25491 \begin_inset Formula $\varinjlim$
25492 \end_inset
25493
25494
25495 \begin_inset Formula $\raisebox{-2.5mm}{}$
25496 \end_inset
25497
25498
25499 \end_layout
25500
25501 \end_inset
25502 </cell>
25503 </row>
25504 </lyxtabular>
25505
25506 \end_inset
25507
25508
25509 \end_layout
25510
25511 \begin_layout Standard
25512 \begin_inset VSpace medskip
25513 \end_inset
25514
25515 The limit is created by inserting a subscript.
25516  It is set right beside the function in an inline formula:
25517 \end_layout
25518
25519 \begin_layout Standard
25520 \align center
25521 \begin_inset Tabular
25522 <lyxtabular version="3" rows="2" columns="2">
25523 <features>
25524 <column alignment="center" valignment="top" width="0pt">
25525 <column alignment="center" valignment="top" width="0pt">
25526 <row>
25527 <cell alignment="center" valignment="top" usebox="none">
25528 \begin_inset Text
25529
25530 \begin_layout Plain Layout
25531 Command
25532 \end_layout
25533
25534 \end_inset
25535 </cell>
25536 <cell alignment="center" valignment="top" usebox="none">
25537 \begin_inset Text
25538
25539 \begin_layout Plain Layout
25540 \begin_inset space \hspace{}
25541 \length 1cm
25542 \end_inset
25543
25544 Result
25545 \begin_inset Note Note
25546 status collapsed
25547
25548 \begin_layout Plain Layout
25549 The space and
25550 \series bold
25551  
25552 \backslash
25553 raisebox
25554 \series default
25555  are used here as spacer.
25556 \end_layout
25557
25558 \end_inset
25559
25560
25561 \end_layout
25562
25563 \end_inset
25564 </cell>
25565 </row>
25566 <row>
25567 <cell alignment="center" valignment="top" usebox="none">
25568 \begin_inset Text
25569
25570 \begin_layout Plain Layout
25571
25572 \backslash
25573 lim_x
25574 \backslash
25575 to
25576 \begin_inset ERT
25577 status collapsed
25578
25579 \begin_layout Plain Layout
25580
25581
25582 \backslash
25583 spce 
25584 \end_layout
25585
25586 \end_inset
25587
25588 A
25589 \begin_inset ERT
25590 status collapsed
25591
25592 \begin_layout Plain Layout
25593
25594
25595 \backslash
25596 spce 
25597 \end_layout
25598
25599 \end_inset
25600
25601 x=B
25602 \end_layout
25603
25604 \end_inset
25605 </cell>
25606 <cell alignment="center" valignment="top" usebox="none">
25607 \begin_inset Text
25608
25609 \begin_layout Plain Layout
25610 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25611 \end_inset
25612
25613
25614 \end_layout
25615
25616 \end_inset
25617 </cell>
25618 </row>
25619 </lyxtabular>
25620
25621 \end_inset
25622
25623
25624 \end_layout
25625
25626 \begin_layout Standard
25627 In a displayed formula the limit is set below the formula, as usual:
25628 \begin_inset Formula \[
25629 \lim_{x\to A}x=B\]
25630
25631 \end_inset
25632
25633
25634 \end_layout
25635
25636 \begin_layout Subsection
25637 Modulo-Functions
25638 \begin_inset Index
25639 status collapsed
25640
25641 \begin_layout Plain Layout
25642 Functions ! modulo-
25643 \end_layout
25644
25645 \end_inset
25646
25647
25648 \end_layout
25649
25650 \begin_layout Standard
25651 The modulo-function is special, because it exists in four variants.
25652 \end_layout
25653
25654 \begin_layout Standard
25655 The variants in a displayed formula:
25656 \begin_inset Formula \begin{align*}
25657 \underline{\textrm{Command}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Result}}\\
25658 \mathrm{a\backslash mod\textrm{\spce}b} &  & a\mod b\\
25659 \mathrm{a\backslash pmod\textrm{\spce}b} &  & a\pmod b\\
25660 \mathrm{a\backslash bmod\textrm{\spce}b} &  & a\bmod b\\
25661 \mathrm{a\backslash pod\textrm{\spce}b} &  & a\pod b\end{align*}
25662
25663 \end_inset
25664
25665
25666 \end_layout
25667
25668 \begin_layout Standard
25669 In an inline formula less space is set before the function names for all
25670  variants.
25671 \end_layout
25672
25673 \begin_layout Section
25674 Special Characters
25675 \begin_inset Index
25676 status collapsed
25677
25678 \begin_layout Plain Layout
25679 Special characters
25680 \end_layout
25681
25682 \end_inset
25683
25684
25685 \end_layout
25686
25687 \begin_layout Subsection
25688 Special Characters in Mathematical Text
25689 \end_layout
25690
25691 \begin_layout Standard
25692 The following commands can only be used in mathematical text or in TeX-mode:
25693 \end_layout
25694
25695 \begin_layout Standard
25696 \begin_inset space \hfill{}
25697 \end_inset
25698
25699
25700 \begin_inset Tabular
25701 <lyxtabular version="3" rows="8" columns="2">
25702 <features>
25703 <column alignment="block" valignment="top" width="0">
25704 <column alignment="block" valignment="top" width="0">
25705 <row>
25706 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25707 \begin_inset Text
25708
25709 \begin_layout Plain Layout
25710 Command
25711 \end_layout
25712
25713 \end_inset
25714 </cell>
25715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25716 \begin_inset Text
25717
25718 \begin_layout Plain Layout
25719 Result
25720 \end_layout
25721
25722 \end_inset
25723 </cell>
25724 </row>
25725 <row>
25726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25727 \begin_inset Text
25728
25729 \begin_layout Plain Layout
25730
25731 \backslash
25732 oe
25733 \end_layout
25734
25735 \end_inset
25736 </cell>
25737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25738 \begin_inset Text
25739
25740 \begin_layout Plain Layout
25741 \begin_inset Formula $\textrm{œ}$
25742 \end_inset
25743
25744
25745 \end_layout
25746
25747 \end_inset
25748 </cell>
25749 </row>
25750 <row>
25751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25752 \begin_inset Text
25753
25754 \begin_layout Plain Layout
25755
25756 \backslash
25757 OE
25758 \end_layout
25759
25760 \end_inset
25761 </cell>
25762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25763 \begin_inset Text
25764
25765 \begin_layout Plain Layout
25766 \begin_inset Formula $\textrm{Œ}$
25767 \end_inset
25768
25769
25770 \end_layout
25771
25772 \end_inset
25773 </cell>
25774 </row>
25775 <row>
25776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25777 \begin_inset Text
25778
25779 \begin_layout Plain Layout
25780
25781 \backslash
25782 ae
25783 \end_layout
25784
25785 \end_inset
25786 </cell>
25787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25788 \begin_inset Text
25789
25790 \begin_layout Plain Layout
25791 \begin_inset Formula $\textrm{æ}$
25792 \end_inset
25793
25794
25795 \end_layout
25796
25797 \end_inset
25798 </cell>
25799 </row>
25800 <row>
25801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25802 \begin_inset Text
25803
25804 \begin_layout Plain Layout
25805
25806 \backslash
25807 AE
25808 \end_layout
25809
25810 \end_inset
25811 </cell>
25812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25813 \begin_inset Text
25814
25815 \begin_layout Plain Layout
25816 \begin_inset Formula $\textrm{Æ}$
25817 \end_inset
25818
25819
25820 \end_layout
25821
25822 \end_inset
25823 </cell>
25824 </row>
25825 <row>
25826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25827 \begin_inset Text
25828
25829 \begin_layout Plain Layout
25830
25831 \backslash
25832 aa
25833 \end_layout
25834
25835 \end_inset
25836 </cell>
25837 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25838 \begin_inset Text
25839
25840 \begin_layout Plain Layout
25841 \begin_inset Formula $\textrm{\aa}$
25842 \end_inset
25843
25844
25845 \end_layout
25846
25847 \end_inset
25848 </cell>
25849 </row>
25850 <row>
25851 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25852 \begin_inset Text
25853
25854 \begin_layout Plain Layout
25855
25856 \backslash
25857 AA
25858 \begin_inset Index
25859 status collapsed
25860
25861 \begin_layout Plain Layout
25862
25863 \backslash
25864 @
25865 \begin_inset ERT
25866 status collapsed
25867
25868 \begin_layout Plain Layout
25869
25870
25871 \backslash
25872 textrm{
25873 \backslash
25874 AA}
25875 \end_layout
25876
25877 \end_inset
25878
25879
25880 \end_layout
25881
25882 \end_inset
25883
25884
25885 \end_layout
25886
25887 \end_inset
25888 </cell>
25889 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25890 \begin_inset Text
25891
25892 \begin_layout Plain Layout
25893 \begin_inset Formula $\textrm{Å}$
25894 \end_inset
25895
25896
25897 \end_layout
25898
25899 \end_inset
25900 </cell>
25901 </row>
25902 <row>
25903 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25904 \begin_inset Text
25905
25906 \begin_layout Plain Layout
25907
25908 \backslash
25909 i
25910 \end_layout
25911
25912 \end_inset
25913 </cell>
25914 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25915 \begin_inset Text
25916
25917 \begin_layout Plain Layout
25918 \begin_inset Formula $\textrm{ı}$
25919 \end_inset
25920
25921
25922 \end_layout
25923
25924 \end_inset
25925 </cell>
25926 </row>
25927 </lyxtabular>
25928
25929 \end_inset
25930
25931
25932 \begin_inset space \hfill{}
25933 \end_inset
25934
25935
25936 \begin_inset Tabular
25937 <lyxtabular version="3" rows="8" columns="2">
25938 <features>
25939 <column alignment="block" valignment="top" width="0">
25940 <column alignment="center" valignment="top" width="0">
25941 <row>
25942 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25943 \begin_inset Text
25944
25945 \begin_layout Plain Layout
25946 command
25947 \begin_inset Note Note
25948 status collapsed
25949
25950 \begin_layout Plain Layout
25951 The space of 0
25952 \begin_inset space \thinspace{}
25953 \end_inset
25954
25955 mm is used for separation, because otherwise the output will be ¡ and ¿
25956  respectively.
25957 \end_layout
25958
25959 \end_inset
25960
25961
25962 \end_layout
25963
25964 \end_inset
25965 </cell>
25966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25967 \begin_inset Text
25968
25969 \begin_layout Plain Layout
25970 Result
25971 \end_layout
25972
25973 \end_inset
25974 </cell>
25975 </row>
25976 <row>
25977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25978 \begin_inset Text
25979
25980 \begin_layout Plain Layout
25981
25982 \backslash
25983 o
25984 \end_layout
25985
25986 \end_inset
25987 </cell>
25988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25989 \begin_inset Text
25990
25991 \begin_layout Plain Layout
25992 \begin_inset Formula $\textrm{ø}$
25993 \end_inset
25994
25995
25996 \end_layout
25997
25998 \end_inset
25999 </cell>
26000 </row>
26001 <row>
26002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26003 \begin_inset Text
26004
26005 \begin_layout Plain Layout
26006
26007 \backslash
26008 O
26009 \end_layout
26010
26011 \end_inset
26012 </cell>
26013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26014 \begin_inset Text
26015
26016 \begin_layout Plain Layout
26017 \begin_inset Formula $\textrm{Ø}$
26018 \end_inset
26019
26020
26021 \end_layout
26022
26023 \end_inset
26024 </cell>
26025 </row>
26026 <row>
26027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26028 \begin_inset Text
26029
26030 \begin_layout Plain Layout
26031
26032 \backslash
26033 l
26034 \end_layout
26035
26036 \end_inset
26037 </cell>
26038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26039 \begin_inset Text
26040
26041 \begin_layout Plain Layout
26042 \begin_inset Formula $\textrm{ł}$
26043 \end_inset
26044
26045
26046 \end_layout
26047
26048 \end_inset
26049 </cell>
26050 </row>
26051 <row>
26052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26053 \begin_inset Text
26054
26055 \begin_layout Plain Layout
26056
26057 \backslash
26058 L
26059 \end_layout
26060
26061 \end_inset
26062 </cell>
26063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26064 \begin_inset Text
26065
26066 \begin_layout Plain Layout
26067 \begin_inset Formula $\textrm{Ł}$
26068 \end_inset
26069
26070
26071 \end_layout
26072
26073 \end_inset
26074 </cell>
26075 </row>
26076 <row>
26077 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26078 \begin_inset Text
26079
26080 \begin_layout Plain Layout
26081 !
26082 \begin_inset space \hspace{}
26083 \length 0mm
26084 \end_inset
26085
26086 `
26087 \begin_inset ERT
26088 status collapsed
26089
26090 \begin_layout Plain Layout
26091
26092
26093 \backslash
26094 spce 
26095 \end_layout
26096
26097 \end_inset
26098
26099
26100 \end_layout
26101
26102 \end_inset
26103 </cell>
26104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26105 \begin_inset Text
26106
26107 \begin_layout Plain Layout
26108 \begin_inset Formula $\textrm{!`}$
26109 \end_inset
26110
26111
26112 \end_layout
26113
26114 \end_inset
26115 </cell>
26116 </row>
26117 <row>
26118 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26119 \begin_inset Text
26120
26121 \begin_layout Plain Layout
26122 ?
26123 \begin_inset space \hspace{}
26124 \length 0mm
26125 \end_inset
26126
26127 `
26128 \begin_inset ERT
26129 status collapsed
26130
26131 \begin_layout Plain Layout
26132
26133
26134 \backslash
26135 spce 
26136 \end_layout
26137
26138 \end_inset
26139
26140
26141 \end_layout
26142
26143 \end_inset
26144 </cell>
26145 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26146 \begin_inset Text
26147
26148 \begin_layout Plain Layout
26149 \begin_inset Formula $\textrm{?`}$
26150 \end_inset
26151
26152
26153 \end_layout
26154
26155 \end_inset
26156 </cell>
26157 </row>
26158 <row>
26159 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26160 \begin_inset Text
26161
26162 \begin_layout Plain Layout
26163
26164 \backslash
26165 j
26166 \end_layout
26167
26168 \end_inset
26169 </cell>
26170 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26171 \begin_inset Text
26172
26173 \begin_layout Plain Layout
26174 \begin_inset Formula $\textrm{ȷ}$
26175 \end_inset
26176
26177
26178 \end_layout
26179
26180 \end_inset
26181 </cell>
26182 </row>
26183 </lyxtabular>
26184
26185 \end_inset
26186
26187
26188 \begin_inset space \hfill{}
26189 \end_inset
26190
26191
26192 \end_layout
26193
26194 \begin_layout Standard
26195 The characters 
26196 \begin_inset Formula $\textrm{\textrm{Å}}$
26197 \end_inset
26198
26199  and 
26200 \begin_inset Formula $\textrm{\textrm{Ø}}$
26201 \end_inset
26202
26203  can also be inserted via the math toolbar button 
26204 \begin_inset Graphics
26205         filename ../images/math/digamma.png
26206         scale 85
26207
26208 \end_inset
26209
26210 .
26211 \end_layout
26212
26213 \begin_layout Standard
26214 An exception are the commands 
26215 \series bold
26216 !
26217 \begin_inset space \hspace{}
26218 \length 0mm
26219 \end_inset
26220
26221 `
26222 \series default
26223  and 
26224 \series bold
26225 ?
26226 \begin_inset space \hspace{}
26227 \length 0mm
26228 \end_inset
26229
26230 `
26231 \series default
26232 , because they can be inserted in LyX directly to text.
26233 \end_layout
26234
26235 \begin_layout Subsection
26236 Accents in Text
26237 \begin_inset CommandInset label
26238 LatexCommand label
26239 name "sub:Accents-in-Text"
26240
26241 \end_inset
26242
26243
26244 \begin_inset Index
26245 status collapsed
26246
26247 \begin_layout Plain Layout
26248 Accents ! in text
26249 \end_layout
26250
26251 \end_inset
26252
26253
26254 \end_layout
26255
26256 \begin_layout Standard
26257 With the following commands all letters can be accented.
26258  The commands must be inserted in TeX-mode.
26259 \end_layout
26260
26261 \begin_layout Standard
26262 \begin_inset space \hfill{}
26263 \end_inset
26264
26265
26266 \begin_inset Tabular
26267 <lyxtabular version="3" rows="8" columns="2">
26268 <features>
26269 <column alignment="block" valignment="top" width="0">
26270 <column alignment="block" valignment="top" width="0">
26271 <row>
26272 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26273 \begin_inset Text
26274
26275 \begin_layout Plain Layout
26276 Command
26277 \end_layout
26278
26279 \end_inset
26280 </cell>
26281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26282 \begin_inset Text
26283
26284 \begin_layout Plain Layout
26285 Result
26286 \end_layout
26287
26288 \end_inset
26289 </cell>
26290 </row>
26291 <row>
26292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26293 \begin_inset Text
26294
26295 \begin_layout Plain Layout
26296
26297 \backslash
26298
26299 \begin_inset Quotes grd
26300 \end_inset
26301
26302 e
26303 \end_layout
26304
26305 \end_inset
26306 </cell>
26307 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26308 \begin_inset Text
26309
26310 \begin_layout Plain Layout
26311 \begin_inset ERT
26312 status collapsed
26313
26314 \begin_layout Plain Layout
26315
26316
26317 \backslash
26318 "e
26319 \end_layout
26320
26321 \end_inset
26322
26323
26324 \end_layout
26325
26326 \end_inset
26327 </cell>
26328 </row>
26329 <row>
26330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26331 \begin_inset Text
26332
26333 \begin_layout Plain Layout
26334
26335 \backslash
26336 `e
26337 \end_layout
26338
26339 \end_inset
26340 </cell>
26341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26342 \begin_inset Text
26343
26344 \begin_layout Plain Layout
26345 \begin_inset ERT
26346 status collapsed
26347
26348 \begin_layout Plain Layout
26349
26350
26351 \backslash
26352 `e
26353 \end_layout
26354
26355 \end_inset
26356
26357
26358 \end_layout
26359
26360 \end_inset
26361 </cell>
26362 </row>
26363 <row>
26364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26365 \begin_inset Text
26366
26367 \begin_layout Plain Layout
26368
26369 \backslash
26370 ^
26371 \begin_inset ERT
26372 status collapsed
26373
26374 \begin_layout Plain Layout
26375
26376
26377 \backslash
26378 spce 
26379 \end_layout
26380
26381 \end_inset
26382
26383 e
26384 \end_layout
26385
26386 \end_inset
26387 </cell>
26388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26389 \begin_inset Text
26390
26391 \begin_layout Plain Layout
26392 \begin_inset ERT
26393 status collapsed
26394
26395 \begin_layout Plain Layout
26396
26397
26398 \backslash
26399 ^e
26400 \end_layout
26401
26402 \end_inset
26403
26404
26405 \end_layout
26406
26407 \end_inset
26408 </cell>
26409 </row>
26410 <row>
26411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26412 \begin_inset Text
26413
26414 \begin_layout Plain Layout
26415
26416 \backslash
26417 =e
26418 \end_layout
26419
26420 \end_inset
26421 </cell>
26422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26423 \begin_inset Text
26424
26425 \begin_layout Plain Layout
26426 \begin_inset ERT
26427 status collapsed
26428
26429 \begin_layout Plain Layout
26430
26431
26432 \backslash
26433 =e
26434 \end_layout
26435
26436 \end_inset
26437
26438
26439 \end_layout
26440
26441 \end_inset
26442 </cell>
26443 </row>
26444 <row>
26445 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26446 \begin_inset Text
26447
26448 \begin_layout Plain Layout
26449
26450 \backslash
26451 u
26452 \begin_inset ERT
26453 status collapsed
26454
26455 \begin_layout Plain Layout
26456
26457
26458 \backslash
26459 spce 
26460 \end_layout
26461
26462 \end_inset
26463
26464 e
26465 \end_layout
26466
26467 \end_inset
26468 </cell>
26469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26470 \begin_inset Text
26471
26472 \begin_layout Plain Layout
26473 \begin_inset ERT
26474 status collapsed
26475
26476 \begin_layout Plain Layout
26477
26478
26479 \backslash
26480 u e
26481 \end_layout
26482
26483 \end_inset
26484
26485
26486 \end_layout
26487
26488 \end_inset
26489 </cell>
26490 </row>
26491 <row>
26492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26493 \begin_inset Text
26494
26495 \begin_layout Plain Layout
26496
26497 \backslash
26498 b
26499 \begin_inset ERT
26500 status collapsed
26501
26502 \begin_layout Plain Layout
26503
26504
26505 \backslash
26506 spce 
26507 \end_layout
26508
26509 \end_inset
26510
26511 e
26512 \end_layout
26513
26514 \end_inset
26515 </cell>
26516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26517 \begin_inset Text
26518
26519 \begin_layout Plain Layout
26520 \begin_inset ERT
26521 status collapsed
26522
26523 \begin_layout Plain Layout
26524
26525
26526 \backslash
26527 b e
26528 \end_layout
26529
26530 \end_inset
26531
26532
26533 \end_layout
26534
26535 \end_inset
26536 </cell>
26537 </row>
26538 <row>
26539 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26540 \begin_inset Text
26541
26542 \begin_layout Plain Layout
26543
26544 \backslash
26545 t
26546 \begin_inset ERT
26547 status collapsed
26548
26549 \begin_layout Plain Layout
26550
26551
26552 \backslash
26553 spce 
26554 \end_layout
26555
26556 \end_inset
26557
26558 ee
26559 \end_layout
26560
26561 \end_inset
26562 </cell>
26563 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26564 \begin_inset Text
26565
26566 \begin_layout Plain Layout
26567 \begin_inset ERT
26568 status collapsed
26569
26570 \begin_layout Plain Layout
26571
26572
26573 \backslash
26574 t ee
26575 \end_layout
26576
26577 \end_inset
26578
26579
26580 \end_layout
26581
26582 \end_inset
26583 </cell>
26584 </row>
26585 </lyxtabular>
26586
26587 \end_inset
26588
26589
26590 \begin_inset space \hfill{}
26591 \end_inset
26592
26593
26594 \begin_inset Tabular
26595 <lyxtabular version="3" rows="8" columns="2">
26596 <features>
26597 <column alignment="block" valignment="top" width="0">
26598 <column alignment="center" valignment="top" width="0">
26599 <row>
26600 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26601 \begin_inset Text
26602
26603 \begin_layout Plain Layout
26604 Command
26605 \end_layout
26606
26607 \end_inset
26608 </cell>
26609 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26610 \begin_inset Text
26611
26612 \begin_layout Plain Layout
26613 Result
26614 \end_layout
26615
26616 \end_inset
26617 </cell>
26618 </row>
26619 <row>
26620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26621 \begin_inset Text
26622
26623 \begin_layout Plain Layout
26624
26625 \backslash
26626 H
26627 \begin_inset ERT
26628 status collapsed
26629
26630 \begin_layout Plain Layout
26631
26632
26633 \backslash
26634 spce 
26635 \end_layout
26636
26637 \end_inset
26638
26639 e
26640 \end_layout
26641
26642 \end_inset
26643 </cell>
26644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26645 \begin_inset Text
26646
26647 \begin_layout Plain Layout
26648 \begin_inset ERT
26649 status collapsed
26650
26651 \begin_layout Plain Layout
26652
26653
26654 \backslash
26655 H e
26656 \end_layout
26657
26658 \end_inset
26659
26660
26661 \end_layout
26662
26663 \end_inset
26664 </cell>
26665 </row>
26666 <row>
26667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26668 \begin_inset Text
26669
26670 \begin_layout Plain Layout
26671
26672 \backslash
26673 'e
26674 \end_layout
26675
26676 \end_inset
26677 </cell>
26678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26679 \begin_inset Text
26680
26681 \begin_layout Plain Layout
26682 \begin_inset ERT
26683 status collapsed
26684
26685 \begin_layout Plain Layout
26686
26687
26688 \backslash
26689 'e
26690 \end_layout
26691
26692 \end_inset
26693
26694
26695 \end_layout
26696
26697 \end_inset
26698 </cell>
26699 </row>
26700 <row>
26701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26702 \begin_inset Text
26703
26704 \begin_layout Plain Layout
26705
26706 \backslash
26707 ~e
26708 \begin_inset Index
26709 status collapsed
26710
26711 \begin_layout Plain Layout
26712 Tilde
26713 \end_layout
26714
26715 \end_inset
26716
26717
26718 \end_layout
26719
26720 \end_inset
26721 </cell>
26722 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26723 \begin_inset Text
26724
26725 \begin_layout Plain Layout
26726 \begin_inset ERT
26727 status collapsed
26728
26729 \begin_layout Plain Layout
26730
26731
26732 \backslash
26733 ~e
26734 \end_layout
26735
26736 \end_inset
26737
26738
26739 \end_layout
26740
26741 \end_inset
26742 </cell>
26743 </row>
26744 <row>
26745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26746 \begin_inset Text
26747
26748 \begin_layout Plain Layout
26749
26750 \backslash
26751 .e
26752 \end_layout
26753
26754 \end_inset
26755 </cell>
26756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26757 \begin_inset Text
26758
26759 \begin_layout Plain Layout
26760 \begin_inset ERT
26761 status collapsed
26762
26763 \begin_layout Plain Layout
26764
26765
26766 \backslash
26767 .e
26768 \end_layout
26769
26770 \end_inset
26771
26772
26773 \end_layout
26774
26775 \end_inset
26776 </cell>
26777 </row>
26778 <row>
26779 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26780 \begin_inset Text
26781
26782 \begin_layout Plain Layout
26783
26784 \backslash
26785 v
26786 \begin_inset ERT
26787 status collapsed
26788
26789 \begin_layout Plain Layout
26790
26791
26792 \backslash
26793 spce 
26794 \end_layout
26795
26796 \end_inset
26797
26798 e
26799 \end_layout
26800
26801 \end_inset
26802 </cell>
26803 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26804 \begin_inset Text
26805
26806 \begin_layout Plain Layout
26807 \begin_inset ERT
26808 status collapsed
26809
26810 \begin_layout Plain Layout
26811
26812
26813 \backslash
26814 v e
26815 \end_layout
26816
26817 \end_inset
26818
26819
26820 \end_layout
26821
26822 \end_inset
26823 </cell>
26824 </row>
26825 <row>
26826 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26827 \begin_inset Text
26828
26829 \begin_layout Plain Layout
26830
26831 \backslash
26832 d
26833 \begin_inset ERT
26834 status collapsed
26835
26836 \begin_layout Plain Layout
26837
26838
26839 \backslash
26840 spce 
26841 \end_layout
26842
26843 \end_inset
26844
26845 e
26846 \end_layout
26847
26848 \end_inset
26849 </cell>
26850 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26851 \begin_inset Text
26852
26853 \begin_layout Plain Layout
26854 \begin_inset ERT
26855 status collapsed
26856
26857 \begin_layout Plain Layout
26858
26859
26860 \backslash
26861 d e
26862 \end_layout
26863
26864 \end_inset
26865
26866
26867 \end_layout
26868
26869 \end_inset
26870 </cell>
26871 </row>
26872 <row>
26873 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26874 \begin_inset Text
26875
26876 \begin_layout Plain Layout
26877
26878 \backslash
26879 c
26880 \begin_inset ERT
26881 status collapsed
26882
26883 \begin_layout Plain Layout
26884
26885
26886 \backslash
26887 spce 
26888 \end_layout
26889
26890 \end_inset
26891
26892 e
26893 \end_layout
26894
26895 \end_inset
26896 </cell>
26897 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26898 \begin_inset Text
26899
26900 \begin_layout Plain Layout
26901 \begin_inset ERT
26902 status collapsed
26903
26904 \begin_layout Plain Layout
26905
26906
26907 \backslash
26908 c e
26909 \end_layout
26910
26911 \end_inset
26912
26913
26914 \end_layout
26915
26916 \end_inset
26917 </cell>
26918 </row>
26919 </lyxtabular>
26920
26921 \end_inset
26922
26923
26924 \begin_inset space \hfill{}
26925 \end_inset
26926
26927
26928 \end_layout
26929
26930 \begin_layout Standard
26931 \begin_inset VSpace medskip
26932 \end_inset
26933
26934 With the command 
26935 \series bold
26936
26937 \backslash
26938 t
26939 \series default
26940  also two different characters can be accented.
26941  The command 
26942 \series bold
26943
26944 \backslash
26945 t
26946 \begin_inset ERT
26947 status collapsed
26948
26949 \begin_layout Plain Layout
26950
26951
26952 \backslash
26953 spce 
26954 \end_layout
26955
26956 \end_inset
26957
26958 sz
26959 \series default
26960  creates: 
26961 \begin_inset ERT
26962 status collapsed
26963
26964 \begin_layout Plain Layout
26965
26966
26967 \backslash
26968 t sz
26969 \end_layout
26970
26971 \end_inset
26972
26973
26974 \end_layout
26975
26976 \begin_layout Standard
26977 The accents 
26978 \series bold
26979 `
26980 \series default
26981  , 
26982 \series bold
26983 '
26984 \series default
26985  and 
26986 \series bold
26987 ^
26988 \series default
26989  can in combination with vowels directly be inserted with the keyboard without
26990  using TeX-mode.
26991  The same applies for the tilde
26992 \begin_inset Foot
26993 status collapsed
26994
26995 \begin_layout Plain Layout
26996 This only applies for keyboards where the tilde is defined as accent.
26997 \end_layout
26998
26999 \end_inset
27000
27001  
27002 \series bold
27003 ~
27004 \series default
27005  in combination with 
27006 \emph on
27007 a
27008 \emph default
27009  , 
27010 \emph on
27011 n
27012 \emph default
27013  , or 
27014 \emph on
27015 o
27016 \emph default
27017 .
27018 \end_layout
27019
27020 \begin_layout Standard
27021 The commands 
27022 \series bold
27023
27024 \backslash
27025 b
27026 \series default
27027  , 
27028 \series bold
27029
27030 \backslash
27031 c
27032 \series default
27033  , 
27034 \series bold
27035
27036 \backslash
27037 d
27038 \series default
27039  , 
27040 \series bold
27041
27042 \backslash
27043 H
27044 \series default
27045  , 
27046 \series bold
27047
27048 \backslash
27049 t
27050 \series default
27051  , 
27052 \series bold
27053
27054 \backslash
27055 u
27056 \series default
27057  , 
27058 \series bold
27059
27060 \backslash
27061 v
27062 \series default
27063  and accents that are inserted directly with the keyboard are also available
27064  in mathematical text.
27065  For the other accents there are special math commands to be used in formulas,
27066  see 
27067 \begin_inset CommandInset ref
27068 LatexCommand ref
27069 reference "sub:Accents-for-one"
27070
27071 \end_inset
27072
27073 .
27074 \end_layout
27075
27076 \begin_layout Standard
27077 \begin_inset VSpace bigskip
27078 \end_inset
27079
27080 Furthermore, with the command 
27081 \series bold
27082
27083 \backslash
27084 textcircled
27085 \series default
27086
27087 \begin_inset Index
27088 status collapsed
27089
27090 \begin_layout Plain Layout
27091 Commands ! T ! 
27092 \backslash
27093 textcircled
27094 \end_layout
27095
27096 \end_inset
27097
27098  all numbers and letters can be set into a circle, quasi accented with a
27099  circle, similar to the copyright symbol.
27100 \end_layout
27101
27102 \begin_layout Standard
27103 \align center
27104 \begin_inset Tabular
27105 <lyxtabular version="3" rows="3" columns="2">
27106 <features>
27107 <column alignment="center" valignment="top" width="0">
27108 <column alignment="center" valignment="top" width="0">
27109 <row>
27110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27111 \begin_inset Text
27112
27113 \begin_layout Plain Layout
27114 Command
27115 \end_layout
27116
27117 \end_inset
27118 </cell>
27119 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27120 \begin_inset Text
27121
27122 \begin_layout Plain Layout
27123 Result
27124 \begin_inset Note Note
27125 status collapsed
27126
27127 \begin_layout Plain Layout
27128
27129 \series bold
27130
27131 \backslash
27132 raisebox
27133 \series default
27134  is only used as spacer.
27135 \end_layout
27136
27137 \end_inset
27138
27139
27140 \end_layout
27141
27142 \end_inset
27143 </cell>
27144 </row>
27145 <row>
27146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27147 \begin_inset Text
27148
27149 \begin_layout Plain Layout
27150
27151 \backslash
27152 textcircled{w}
27153 \end_layout
27154
27155 \end_inset
27156 </cell>
27157 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27158 \begin_inset Text
27159
27160 \begin_layout Plain Layout
27161 \begin_inset ERT
27162 status collapsed
27163
27164 \begin_layout Plain Layout
27165
27166
27167 \backslash
27168 textcircled{w}
27169 \end_layout
27170
27171 \end_inset
27172
27173
27174 \end_layout
27175
27176 \end_inset
27177 </cell>
27178 </row>
27179 <row>
27180 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27181 \begin_inset Text
27182
27183 \begin_layout Plain Layout
27184
27185 \backslash
27186 Large 
27187 \backslash
27188 textcircled{
27189 \backslash
27190 normalsize
27191 \backslash
27192 protect
27193 \backslash
27194 raisebox{-1.5pt}{W}}
27195 \end_layout
27196
27197 \end_inset
27198 </cell>
27199 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27200 \begin_inset Text
27201
27202 \begin_layout Plain Layout
27203 \begin_inset Formula $\raisebox{4.5mm}{}$
27204 \end_inset
27205
27206
27207 \begin_inset ERT
27208 status collapsed
27209
27210 \begin_layout Plain Layout
27211
27212
27213 \backslash
27214 Large 
27215 \backslash
27216 textcircled{
27217 \backslash
27218 normalsize
27219 \backslash
27220 protect
27221 \backslash
27222 raisebox{-1.5pt}W}
27223 \end_layout
27224
27225 \end_inset
27226
27227
27228 \begin_inset Formula $\raisebox{-2mm}{}$
27229 \end_inset
27230
27231
27232 \end_layout
27233
27234 \end_inset
27235 </cell>
27236 </row>
27237 </lyxtabular>
27238
27239 \end_inset
27240
27241
27242 \end_layout
27243
27244 \begin_layout Standard
27245 One has to take care that the character fits in the circle.
27246  
27247 \series bold
27248
27249 \backslash
27250 Large
27251 \series default
27252
27253 \begin_inset Foot
27254 status collapsed
27255
27256 \begin_layout Plain Layout
27257 see 
27258 \begin_inset CommandInset ref
27259 LatexCommand ref
27260 reference "sub:Font-Sizes"
27261
27262 \end_inset
27263
27264
27265 \end_layout
27266
27267 \end_inset
27268
27269  specifies thereby the size of the circle.
27270  With the help of 
27271 \series bold
27272
27273 \backslash
27274 raisebox
27275 \series default
27276
27277 \begin_inset Foot
27278 status collapsed
27279
27280 \begin_layout Plain Layout
27281 see 
27282 \begin_inset CommandInset ref
27283 LatexCommand ref
27284 reference "sub:Boxes-without-Frame"
27285
27286 \end_inset
27287
27288
27289 \end_layout
27290
27291 \end_inset
27292
27293  the character can be centered.
27294 \end_layout
27295
27296 \begin_layout Subsection
27297 Minuscule Numbers
27298 \begin_inset Index
27299 status collapsed
27300
27301 \begin_layout Plain Layout
27302 Minuscule numbers
27303 \end_layout
27304
27305 \end_inset
27306
27307
27308 \end_layout
27309
27310 \begin_layout Standard
27311 Minuscule numbers are created with the command 
27312 \series bold
27313
27314 \backslash
27315 oldstylenums
27316 \series default
27317
27318 \begin_inset Index
27319 status collapsed
27320
27321 \begin_layout Plain Layout
27322 Commands ! O ! 
27323 \backslash
27324 oldstylenums
27325 \end_layout
27326
27327 \end_inset
27328
27329 .
27330  The command can be used in formulas and in TeX-mode.
27331  The command scheme is:
27332 \end_layout
27333
27334 \begin_layout Standard
27335
27336 \series bold
27337
27338 \backslash
27339 oldstylenums{number}
27340 \end_layout
27341
27342 \begin_layout Standard
27343 The command 
27344 \series bold
27345
27346 \backslash
27347 oldstylenums{0123456789
27348 \series default
27349  produces: 
27350 \begin_inset Formula $\oldstylenums{0123456789}$
27351 \end_inset
27352
27353
27354 \end_layout
27355
27356 \begin_layout Subsection
27357 Miscellaneous special Characters
27358 \begin_inset CommandInset label
27359 LatexCommand label
27360 name "sub:Miscellaneous-special-Characters"
27361
27362 \end_inset
27363
27364
27365 \begin_inset Index
27366 status collapsed
27367
27368 \begin_layout Plain Layout
27369 Special characters ! miscellaneous
27370 \end_layout
27371
27372 \end_inset
27373
27374
27375 \end_layout
27376
27377 \begin_layout Standard
27378 The following characters can only be inserted to formulas by using commands:
27379 \end_layout
27380
27381 \begin_layout Standard
27382 \align center
27383 \begin_inset Tabular
27384 <lyxtabular version="3" rows="4" columns="2">
27385 <features>
27386 <column alignment="center" valignment="top" width="0">
27387 <column alignment="center" valignment="top" width="0">
27388 <row>
27389 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27390 \begin_inset Text
27391
27392 \begin_layout Plain Layout
27393 Command
27394 \end_layout
27395
27396 \end_inset
27397 </cell>
27398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27399 \begin_inset Text
27400
27401 \begin_layout Plain Layout
27402 Result
27403 \end_layout
27404
27405 \end_inset
27406 </cell>
27407 </row>
27408 <row>
27409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27410 \begin_inset Text
27411
27412 \begin_layout Plain Layout
27413
27414 \backslash
27415 ^
27416 \begin_inset ERT
27417 status collapsed
27418
27419 \begin_layout Plain Layout
27420
27421
27422 \backslash
27423 spce 
27424 \end_layout
27425
27426 \end_inset
27427
27428
27429 \end_layout
27430
27431 \end_inset
27432 </cell>
27433 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27434 \begin_inset Text
27435
27436 \begin_layout Plain Layout
27437 \begin_inset Formula $\mathcircumflex$
27438 \end_inset
27439
27440
27441 \end_layout
27442
27443 \end_inset
27444 </cell>
27445 </row>
27446 <row>
27447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27448 \begin_inset Text
27449
27450 \begin_layout Plain Layout
27451
27452 \backslash
27453 _
27454 \end_layout
27455
27456 \end_inset
27457 </cell>
27458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27459 \begin_inset Text
27460
27461 \begin_layout Plain Layout
27462 \begin_inset Formula $\_$
27463 \end_inset
27464
27465
27466 \end_layout
27467
27468 \end_inset
27469 </cell>
27470 </row>
27471 <row>
27472 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27473 \begin_inset Text
27474
27475 \begin_layout Plain Layout
27476 ^
27477 \begin_inset ERT
27478 status collapsed
27479
27480 \begin_layout Plain Layout
27481
27482
27483 \backslash
27484 spce 
27485 \end_layout
27486
27487 \end_inset
27488
27489
27490 \backslash
27491 circ
27492 \begin_inset Index
27493 status collapsed
27494
27495 \begin_layout Plain Layout
27496
27497 \backslash
27498
27499 \end_layout
27500
27501 \end_inset
27502
27503
27504 \end_layout
27505
27506 \end_inset
27507 </cell>
27508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27509 \begin_inset Text
27510
27511 \begin_layout Plain Layout
27512 \begin_inset Formula $^{\circ}$
27513 \end_inset
27514
27515
27516 \end_layout
27517
27518 \end_inset
27519 </cell>
27520 </row>
27521 </lyxtabular>
27522
27523 \end_inset
27524
27525
27526 \end_layout
27527
27528 \begin_layout Standard
27529 The degree sign ° can nevertheless be directly inserted if the LaTeX-preamble
27530  contains the following line
27531 \begin_inset Foot
27532 status collapsed
27533
27534 \begin_layout Plain Layout
27535 More about this is described in 
27536 \begin_inset CommandInset ref
27537 LatexCommand ref
27538 reference "sub:Text-Characters-in"
27539
27540 \end_inset
27541
27542 .
27543 \end_layout
27544
27545 \end_inset
27546
27547 :
27548 \end_layout
27549
27550 \begin_layout Standard
27551
27552 \series bold
27553
27554 \backslash
27555 DeclareInputtext{176}{
27556 \backslash
27557 ifmmode^
27558 \backslash
27559 circ
27560 \backslash
27561 else
27562 \backslash
27563 textdegree
27564 \backslash
27565 fi}
27566 \end_layout
27567
27568 \begin_layout Section
27569 Formula Styles
27570 \begin_inset CommandInset label
27571 LatexCommand label
27572 name "sec:Formula-Styles"
27573
27574 \end_inset
27575
27576
27577 \begin_inset Index
27578 status collapsed
27579
27580 \begin_layout Plain Layout
27581 Formula ! styles
27582 \end_layout
27583
27584 \end_inset
27585
27586
27587 \end_layout
27588
27589 \begin_layout Itemize
27590 There are two different alignment styles:
27591 \end_layout
27592
27593 \begin_deeper
27594 \begin_layout Description
27595 Centered is the predefined standard
27596 \end_layout
27597
27598 \begin_layout Description
27599 Indented for this the option 
27600 \series bold
27601 fleqn
27602 \series default
27603  must be inserted in the menu 
27604 \family sans
27605 Document\SpecialChar \menuseparator
27606 Settings
27607 \family default
27608  under 
27609 \family sans
27610 Document
27611 \begin_inset space ~
27612 \end_inset
27613
27614 Class
27615 \end_layout
27616
27617 \begin_layout Standard
27618 When 
27619 \series bold
27620 Indented
27621 \series default
27622  is used, the indentation can be adjusted with the length 
27623 \series bold
27624
27625 \backslash
27626 mathindent
27627 \series default
27628
27629 \begin_inset Index
27630 status collapsed
27631
27632 \begin_layout Plain Layout
27633 Commands ! M ! 
27634 \backslash
27635 mathindent
27636 \end_layout
27637
27638 \end_inset
27639
27640 .
27641  Should the distance be 15
27642 \begin_inset space \thinspace{}
27643 \end_inset
27644
27645 mm, the following command line is inserted in the LaTeX-preamble
27646 \end_layout
27647
27648 \begin_layout Standard
27649
27650 \series bold
27651
27652 \backslash
27653 setlength{
27654 \backslash
27655 mathindent}{15mm}
27656 \end_layout
27657
27658 \begin_layout Standard
27659 When no length is specified, the predefined value of 30
27660 \begin_inset space \thinspace{}
27661 \end_inset
27662
27663 pt will be used.
27664 \end_layout
27665
27666 \end_deeper
27667 \begin_layout Itemize
27668 And two different numbering styles:
27669 \end_layout
27670
27671 \begin_deeper
27672 \begin_layout Description
27673 Right is the predefined standard
27674 \end_layout
27675
27676 \begin_layout Description
27677 Left for this the option 
27678 \series bold
27679 leqno
27680 \series default
27681  must be inserted in the menu 
27682 \family sans
27683 Document\SpecialChar \menuseparator
27684 Settings
27685 \family default
27686  under 
27687 \family sans
27688 Document
27689 \begin_inset space ~
27690 \end_inset
27691
27692 Class
27693 \end_layout
27694
27695 \end_deeper
27696 \begin_layout Standard
27697
27698 \series bold
27699 fleqn
27700 \series default
27701  and 
27702 \series bold
27703 leqno
27704 \series default
27705  can also be used together.
27706  In this case both options are inserted, separated by a comma.
27707 \end_layout
27708
27709 \begin_layout Standard
27710 The chosen styles are used for all displayed formulas of the document.
27711  When both, centered and indented formulas should be created in a document,
27712  the style 
27713 \series bold
27714 Centered
27715 \series default
27716  is used.
27717  The indented formulas are then set in a flalign environment, see 
27718 \begin_inset CommandInset ref
27719 LatexCommand ref
27720 reference "sub:Flalign-Environment"
27721
27722 \end_inset
27723
27724 .
27725 \end_layout
27726
27727 \begin_layout Section
27728 Multiline Formulas
27729 \begin_inset CommandInset label
27730 LatexCommand label
27731 name "sec:Multiline-Formulas"
27732
27733 \end_inset
27734
27735
27736 \begin_inset Index
27737 status collapsed
27738
27739 \begin_layout Plain Layout
27740 Formula ! multiline
27741 \end_layout
27742
27743 \end_inset
27744
27745
27746 \end_layout
27747
27748 \begin_layout Subsection
27749 General
27750 \end_layout
27751
27752 \begin_layout Standard
27753 In LyX multiline formulas are created by pressing 
27754 \series bold
27755
27756 \begin_inset Info
27757 type  "shortcut"
27758 arg   "newline-insert newline"
27759 \end_inset
27760
27761
27762 \series default
27763  inside a formula.
27764  This creates either an 
27765 \series bold
27766 eqnarray environment
27767 \series default
27768  that is described in 
27769 \begin_inset CommandInset ref
27770 LatexCommand ref
27771 reference "sub:Eqnarray-Environment"
27772
27773 \end_inset
27774
27775  or, when the option 
27776 \family sans
27777 Use AMS math package
27778 \family default
27779  in the document settings is selected, an 
27780 \series bold
27781 align environment
27782 \series default
27783  that is described in 
27784 \begin_inset CommandInset ref
27785 LatexCommand ref
27786 reference "sub:Standard-align-Environment"
27787
27788 \end_inset
27789
27790 .
27791 \end_layout
27792
27793 \begin_layout Standard
27794 There are other multiline formula environments that can be created via the
27795  menu 
27796 \family sans
27797 Insert\SpecialChar \menuseparator
27798 Math
27799 \family default
27800 .
27801  These environments are described in the following sections.
27802 \end_layout
27803
27804 \begin_layout Standard
27805 In all multiline formula environments a new line is created by pressing
27806  
27807 \begin_inset Info
27808 type  "shortcut"
27809 arg   "newline-insert newline"
27810 \end_inset
27811
27812 .
27813  To add or delete lines, the math toolbar buttons 
27814 \begin_inset Graphics
27815         filename ../images/tabular-feature_append-row.png
27816         scale 85
27817
27818 \end_inset
27819
27820  or 
27821 \begin_inset Graphics
27822         filename ../images/tabular-feature_delete-row.png
27823         scale 85
27824
27825 \end_inset
27826
27827 , respectively, or the menu 
27828 \family sans
27829 Edit\SpecialChar \menuseparator
27830 Rows & Columns
27831 \family default
27832  can be used.
27833 \end_layout
27834
27835 \begin_layout Subsubsection
27836 Line Separation
27837 \begin_inset CommandInset label
27838 LatexCommand label
27839 name "sub:Line-Separation"
27840
27841 \end_inset
27842
27843
27844 \begin_inset Index
27845 status collapsed
27846
27847 \begin_layout Plain Layout
27848 Formula ! multiline ! Line separation
27849 \end_layout
27850
27851 \end_inset
27852
27853
27854 \end_layout
27855
27856 \begin_layout Standard
27857 There is sometimes not enough space in multiline formulas between the lines:
27858 \begin_inset Formula \begin{eqnarray*}
27859 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
27860 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0\end{eqnarray*}
27861
27862 \end_inset
27863
27864
27865 \end_layout
27866
27867 \begin_layout Standard
27868 In LaTeX additional line space is specified as optional argument of the
27869  new line command.
27870  This is not yet possible in LyX
27871 \begin_inset Foot
27872 status collapsed
27873
27874 \begin_layout Plain Layout
27875 see 
27876 \begin_inset CommandInset href
27877 LatexCommand href
27878 name "LyX-bug #1505"
27879 target "http://www.lyx.org/trac/ticket/1505"
27880
27881 \end_inset
27882
27883
27884 \end_layout
27885
27886 \end_inset
27887
27888 , therefore the whole formula must be inserted in TeX-mode.
27889  To add in our example space, the command 
27890 \series bold
27891
27892 \backslash
27893
27894 \backslash
27895 [3mm]
27896 \series default
27897  is inserted at the end of the first line.
27898  One gets: 
27899 \begin_inset ERT
27900 status collapsed
27901
27902 \begin_layout Plain Layout
27903
27904
27905 \backslash
27906 begin{eqnarray*}
27907 \end_layout
27908
27909 \begin_layout Plain Layout
27910
27911 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
27912  = & 
27913 \backslash
27914 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
27915 \backslash
27916
27917 \backslash
27918 [3mm]
27919 \end_layout
27920
27921 \begin_layout Plain Layout
27922
27923 4x^{2}
27924 \backslash
27925 left(B^{2}+x_{0}^{2}
27926 \backslash
27927 right)+4x_{0}x
27928 \backslash
27929 left(D-B^{2}
27930 \backslash
27931 right)+B^{2}
27932 \backslash
27933 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
27934 \backslash
27935 right) & = & 0
27936 \end_layout
27937
27938 \begin_layout Plain Layout
27939
27940
27941 \backslash
27942 end{eqnarray*}
27943 \end_layout
27944
27945 \end_inset
27946
27947
27948 \end_layout
27949
27950 \begin_layout Standard
27951 \begin_inset VSpace bigskip
27952 \end_inset
27953
27954 To set the line separation for all lines in a formula, the length 
27955 \series bold
27956
27957 \backslash
27958 jot
27959 \series default
27960
27961 \begin_inset Index
27962 status collapsed
27963
27964 \begin_layout Plain Layout
27965 Commands ! J ! 
27966 \backslash
27967 jot
27968 \end_layout
27969
27970 \end_inset
27971
27972  is changed.
27973  The definition is: 
27974 \begin_inset Formula $\mbox{line separation}=\mathrm{6\, pt+\backslash jot}$
27975 \end_inset
27976
27977 .
27978  Predefined for 
27979 \series bold
27980
27981 \backslash
27982 jot
27983 \series default
27984  is the value 3
27985 \begin_inset space \thinspace{}
27986 \end_inset
27987
27988 pt.
27989  To create 3
27990 \begin_inset space \thinspace{}
27991 \end_inset
27992
27993 mm additional line separation as in the previous example, the command
27994 \end_layout
27995
27996 \begin_layout Standard
27997
27998 \series bold
27999
28000 \backslash
28001 setlength{
28002 \backslash
28003 jot}{3mm+3pt}
28004 \end_layout
28005
28006 \begin_layout Standard
28007 is inserted in TeX-mode before the formula.
28008  This requires that the LaTeX-package 
28009 \series bold
28010 calc
28011 \series default
28012
28013 \begin_inset Foot
28014 status collapsed
28015
28016 \begin_layout Plain Layout
28017
28018 \series bold
28019 calc
28020 \series default
28021  is part of every LaTeX standard installation.
28022 \end_layout
28023
28024 \end_inset
28025
28026
28027 \begin_inset Index
28028 status collapsed
28029
28030 \begin_layout Plain Layout
28031 Packages ! calc
28032 \end_layout
28033
28034 \end_inset
28035
28036  was loaded in LaTeX-preamble with the line
28037 \end_layout
28038
28039 \begin_layout Standard
28040
28041 \series bold
28042
28043 \backslash
28044 usepackage{calc}
28045 \end_layout
28046
28047 \begin_layout Standard
28048 One gets: 
28049 \begin_inset ERT
28050 status collapsed
28051
28052 \begin_layout Plain Layout
28053
28054
28055 \backslash
28056 setlength{
28057 \backslash
28058 jot}{3mm+3pt}
28059 \end_layout
28060
28061 \end_inset
28062
28063
28064 \begin_inset Formula \begin{eqnarray*}
28065 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
28066 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0\end{eqnarray*}
28067
28068 \end_inset
28069
28070
28071 \end_layout
28072
28073 \begin_layout Standard
28074 \begin_inset ERT
28075 status collapsed
28076
28077 \begin_layout Plain Layout
28078
28079
28080 \backslash
28081 setlength{
28082 \backslash
28083 jot}{3pt}
28084 \end_layout
28085
28086 \end_inset
28087
28088  To get back to the predefined distance, 
28089 \series bold
28090
28091 \backslash
28092 jot
28093 \series default
28094  is set to the value 3
28095 \begin_inset space \thinspace{}
28096 \end_inset
28097
28098 pt.
28099 \end_layout
28100
28101 \begin_layout Subsubsection
28102 Column Separation
28103 \begin_inset CommandInset label
28104 LatexCommand label
28105 name "sub:Column-Separation"
28106
28107 \end_inset
28108
28109
28110 \begin_inset Index
28111 status collapsed
28112
28113 \begin_layout Plain Layout
28114 Formula ! multiline ! Column separation
28115 \end_layout
28116
28117 \end_inset
28118
28119
28120 \end_layout
28121
28122 \begin_layout Standard
28123 Multiline formulas form a matrix.
28124  A formula in the eqnarray environment is for example a matrix with three
28125  columns.
28126  By changing the column separation in this environment, the space beside
28127  the relation sign can be changed.
28128 \end_layout
28129
28130 \begin_layout Standard
28131 The column separation is specified with the length 
28132 \series bold
28133
28134 \backslash
28135 arraycolsep
28136 \series default
28137
28138 \begin_inset Index
28139 status collapsed
28140
28141 \begin_layout Plain Layout
28142 Commands ! A ! 
28143 \backslash
28144 arraycolsep
28145 \end_layout
28146
28147 \end_inset
28148
28149  according to:
28150 \begin_inset Newline newline
28151 \end_inset
28152
28153 column separation = 2
28154 \begin_inset space \thinspace{}
28155 \end_inset
28156
28157
28158 \series bold
28159
28160 \backslash
28161 arraycolsep
28162 \series default
28163
28164 \begin_inset Newline newline
28165 \end_inset
28166
28167 Thus, the command
28168 \end_layout
28169
28170 \begin_layout Standard
28171
28172 \series bold
28173
28174 \backslash
28175 setlength{
28176 \backslash
28177 arraycolsep}{1cm}
28178 \end_layout
28179
28180 \begin_layout Standard
28181 inserted in TeX-mode, sets for all following formulas a column separation
28182  of 2
28183 \begin_inset space \thinspace{}
28184 \end_inset
28185
28186 cm.
28187  To get back to the predefined distance, 
28188 \series bold
28189
28190 \backslash
28191 arraycolsep
28192 \series default
28193  is set to 5
28194 \begin_inset space \thinspace{}
28195 \end_inset
28196
28197 pt.
28198 \end_layout
28199
28200 \begin_layout Standard
28201 A formula with 2
28202 \begin_inset space \thinspace{}
28203 \end_inset
28204
28205 cm column separation:
28206 \begin_inset ERT
28207 status collapsed
28208
28209 \begin_layout Plain Layout
28210
28211
28212 \backslash
28213 setlength{
28214 \backslash
28215 arraycolsep}{1cm}
28216 \end_layout
28217
28218 \end_inset
28219
28220
28221 \begin_inset Formula \begin{eqnarray*}
28222 A & = & B\\
28223 C & \ne & A\end{eqnarray*}
28224
28225 \end_inset
28226
28227 A formula with the predefined column separation for matrices of 10
28228 \begin_inset space \thinspace{}
28229 \end_inset
28230
28231 pt:
28232 \begin_inset ERT
28233 status collapsed
28234
28235 \begin_layout Plain Layout
28236
28237
28238 \backslash
28239 setlength{
28240 \backslash
28241 arraycolsep}{5pt}
28242 \end_layout
28243
28244 \end_inset
28245
28246
28247 \begin_inset Formula \begin{eqnarray*}
28248 A & = & B\\
28249 C & \ne & A\end{eqnarray*}
28250
28251 \end_inset
28252
28253
28254 \end_layout
28255
28256 \begin_layout Subsubsection
28257 Long Formulas
28258 \begin_inset Index
28259 status collapsed
28260
28261 \begin_layout Plain Layout
28262 Formula ! long
28263 \end_layout
28264
28265 \end_inset
28266
28267
28268 \end_layout
28269
28270 \begin_layout Standard
28271 Long formulas can be typeset using these methods:
28272 \end_layout
28273
28274 \begin_layout Itemize
28275 When one side of the equation is much shorther than the line width, this
28276  one is chosen for the left side and the right side is typeset over two
28277  lines:
28278 \begin_inset Formula \begin{eqnarray}
28279 H & = & W_{SB}+W_{mv}+W_{D}-\frac{\hbar^{2}}{2m_{0}}\Delta-\frac{\hbar^{2}}{2m_{1}}\Delta_{1}-\frac{\hbar^{2}}{2m_{2}}\Delta_{2}-\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{1}|}\nonumber \\
28280  &  & -\hspace{3pt}\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{2}|}+\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{R}_{1}-\mathbf{R}_{2}|}\label{eq:shortlong}\end{eqnarray}
28281
28282 \end_inset
28283
28284 The minus sign at the beginning of the second line does normally not appear
28285  as operator because it is the first character of the line.
28286  Thus it would not be surrounded by space and could not be distinguished
28287  from the fraction bar.
28288  To avoid this, 3
28289 \begin_inset space \thinspace{}
28290 \end_inset
28291
28292 pt space was inserted behind the minus sign with the command 
28293 \series bold
28294
28295 \backslash
28296 hspace
28297 \series default
28298 .
28299 \begin_inset Foot
28300 status collapsed
28301
28302 \begin_layout Plain Layout
28303 more about 
28304 \series bold
28305
28306 \backslash
28307 hspace
28308 \series default
28309  see 
28310 \begin_inset CommandInset ref
28311 LatexCommand ref
28312 reference "sub:Variable-Space"
28313
28314 \end_inset
28315
28316
28317 \end_layout
28318
28319 \end_inset
28320
28321
28322 \begin_inset Index
28323 status collapsed
28324
28325 \begin_layout Plain Layout
28326 Commands ! H ! 
28327 \backslash
28328 hspace
28329 \end_layout
28330
28331 \end_inset
28332
28333
28334 \end_layout
28335
28336 \begin_layout Itemize
28337 When both sides of the equation are too long, the command 
28338 \series bold
28339
28340 \backslash
28341 lefteqn
28342 \series default
28343
28344 \begin_inset Index
28345 status collapsed
28346
28347 \begin_layout Plain Layout
28348 Commands ! L ! 
28349 \backslash
28350 lefteqn
28351 \end_layout
28352
28353 \end_inset
28354
28355  is used.
28356  It is inserted to the first column of the first line and effects that all
28357  further insertions overwrite the following columns:
28358 \begin_inset Formula \begin{eqnarray}
28359 \lefteqn{4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}}\nonumber \\
28360  &  & -\hspace{3pt}B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}\nonumber \\
28361  &  & =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\label{eq:lefteqn}\end{eqnarray}
28362
28363 \end_inset
28364
28365 After the insertion of 
28366 \series bold
28367
28368 \backslash
28369 lefteqn
28370 \series default
28371 , the cursor is in a purple box that is a bit shifted to the left from the
28372  blue one.
28373  In this the formula is inserted.
28374 \begin_inset Newline newline
28375 \end_inset
28376
28377 The content of the further lines is inserted to the second or another formula
28378  column.
28379  The greater the column number where it was inserted, the larger the indentation.
28380 \begin_inset VSpace medskip
28381 \end_inset
28382
28383
28384 \begin_inset Newline newline
28385 \end_inset
28386
28387
28388 \begin_inset Note Greyedout
28389 status open
28390
28391 \begin_layout Plain Layout
28392 Note the following when using 
28393 \series bold
28394
28395 \backslash
28396 lefteqn
28397 \series default
28398 :
28399 \end_layout
28400
28401 \begin_layout Itemize
28402 The formula doesn't use the full page width.
28403  When e.
28404 \begin_inset space \thinspace{}
28405 \end_inset
28406
28407 g.
28408 \begin_inset space \space{}
28409 \end_inset
28410
28411 the term 
28412 \begin_inset Formula $-B^{2}$
28413 \end_inset
28414
28415  is added to the first line in the above example, it would have been outside
28416  the page margin.
28417  To better use the width, negative space can be inserted at the beginning
28418  of the first line.
28419 \end_layout
28420
28421 \begin_layout Itemize
28422 Due to a bug in LyX the cursor cannot be set with the mouse into the first
28423  line.
28424 \begin_inset Foot
28425 status collapsed
28426
28427 \begin_layout Plain Layout
28428 \begin_inset CommandInset href
28429 LatexCommand href
28430 name "LyX-bug #1429"
28431 target "http://www.lyx.org/trac/ticket/1429"
28432
28433 \end_inset
28434
28435
28436 \end_layout
28437
28438 \end_inset
28439
28440  One can only set the cursor at the beginning of the line and move it with
28441  the arrow keys.
28442 \end_layout
28443
28444 \end_inset
28445
28446
28447 \end_layout
28448
28449 \begin_layout Itemize
28450 Other methods to set long formulas are offered by the environments described
28451  in 
28452 \begin_inset CommandInset ref
28453 LatexCommand ref
28454 reference "sub:Multline-Environment"
28455
28456 \end_inset
28457
28458  and 
28459 \begin_inset CommandInset ref
28460 LatexCommand ref
28461 reference "sub:Multiline-Formula-Parts"
28462
28463 \end_inset
28464
28465 .
28466 \end_layout
28467
28468 \begin_layout Subsubsection
28469 Multiline Brackets
28470 \begin_inset CommandInset label
28471 LatexCommand label
28472 name "sub:Multiline-Brackets"
28473
28474 \end_inset
28475
28476
28477 \begin_inset Index
28478 status collapsed
28479
28480 \begin_layout Plain Layout
28481 Brackets ! for multiline expressions
28482 \end_layout
28483
28484 \end_inset
28485
28486
28487 \end_layout
28488
28489 \begin_layout Standard
28490 For brackets spanning multiple lines the following problem occurs:
28491 \begin_inset Formula \begin{eqnarray*}
28492 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28493  &  & \left.\cdots+B-D\right]\end{eqnarray*}
28494
28495 \end_inset
28496
28497
28498 \end_layout
28499
28500 \begin_layout Standard
28501 The closing bracket is smaller than the opening bracket because brackets
28502  with variable size may not span multiple lines.
28503 \end_layout
28504
28505 \begin_layout Standard
28506 To set the bracket size for the second line correctly, the first line is
28507  ended with 
28508 \series bold
28509
28510 \backslash
28511 right.
28512 \series default
28513
28514 \begin_inset Index
28515 status collapsed
28516
28517 \begin_layout Plain Layout
28518 Commands ! R ! 
28519 \backslash
28520 right
28521 \end_layout
28522
28523 \end_inset
28524
28525  and the second line with 
28526 \series bold
28527
28528 \backslash
28529 left.
28530 \begin_inset Foot
28531 status collapsed
28532
28533 \begin_layout Plain Layout
28534 for more about 
28535 \series bold
28536
28537 \backslash
28538 left
28539 \series default
28540  and 
28541 \series bold
28542
28543 \backslash
28544 right
28545 \series default
28546  see 
28547 \begin_inset CommandInset ref
28548 LatexCommand ref
28549 reference "sub:Automatic-Bracket-Size"
28550
28551 \end_inset
28552
28553
28554 \end_layout
28555
28556 \end_inset
28557
28558
28559 \series default
28560
28561 \begin_inset Index
28562 status collapsed
28563
28564 \begin_layout Plain Layout
28565 Commands ! L ! 
28566 \backslash
28567 left
28568 \end_layout
28569
28570 \end_inset
28571
28572 .
28573  After 
28574 \series bold
28575
28576 \backslash
28577 left.
28578
28579 \series default
28580  the command 
28581 \series bold
28582
28583 \backslash
28584 vphantom
28585 \series default
28586
28587 \begin_inset ERT
28588 status collapsed
28589
28590 \begin_layout Plain Layout
28591
28592
28593 \backslash
28594 spce 
28595 \end_layout
28596
28597 \end_inset
28598
28599
28600 \series bold
28601
28602 \backslash
28603 prod
28604 \series default
28605 ^
28606 \begin_inset ERT
28607 status collapsed
28608
28609 \begin_layout Plain Layout
28610
28611
28612 \backslash
28613 spce 
28614 \end_layout
28615
28616 \end_inset
28617
28618
28619 \series bold
28620
28621 \backslash
28622 infty
28623 \series default
28624
28625 \begin_inset ERT
28626 status collapsed
28627
28628 \begin_layout Plain Layout
28629
28630
28631 \backslash
28632 spce 
28633 \end_layout
28634
28635 \end_inset
28636
28637
28638 \series bold
28639
28640 \begin_inset Formula $\downarrow$
28641 \end_inset
28642
28643 _R=1}
28644 \series default
28645
28646 \begin_inset Index
28647 status collapsed
28648
28649 \begin_layout Plain Layout
28650 Commands ! V ! 
28651 \backslash
28652 vphantom
28653 \end_layout
28654
28655 \end_inset
28656
28657  is inserted, because the multiplication operator with its limits is the
28658  largest symbol in the first line and this should be the size for the bracket
28659  in the second line.
28660 \end_layout
28661
28662 \begin_layout Standard
28663 The result is this:
28664 \begin_inset Formula \begin{eqnarray*}
28665 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28666  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]\end{eqnarray*}
28667
28668 \end_inset
28669
28670
28671 \end_layout
28672
28673 \begin_layout Subsection
28674 Align Environments
28675 \end_layout
28676
28677 \begin_layout Standard
28678 Align environments can be used for every kind of multiline formulas.
28679  They are specially useful to set several formulas side by side.
28680 \end_layout
28681
28682 \begin_layout Standard
28683 Align environments consist of columns.
28684  The odd columns are right aligned, the even ones left aligned.
28685  Every line in an Align environment can be numbered.
28686 \end_layout
28687
28688 \begin_layout Standard
28689 Align environments are created via the menu 
28690 \family sans
28691 Insert\SpecialChar \menuseparator
28692 Math
28693 \family default
28694 .
28695  With the menu 
28696 \family sans
28697 Edit\SpecialChar \menuseparator
28698 Math\SpecialChar \menuseparator
28699 Change Formula Type
28700 \family default
28701  already existing formulas can be converted to Align environments.
28702 \end_layout
28703
28704 \begin_layout Standard
28705 To add or delete columns, the math toolbar buttons 
28706 \begin_inset Graphics
28707         filename ../images/tabular-feature_append-column.png
28708         scale 85
28709
28710 \end_inset
28711
28712  or 
28713 \begin_inset Graphics
28714         filename ../images/tabular-feature_delete-column.png
28715         scale 85
28716
28717 \end_inset
28718
28719 , respectively, or the menu 
28720 \family sans
28721 Edit\SpecialChar \menuseparator
28722 Rows & Columns
28723 \family default
28724  can be used.
28725 \end_layout
28726
28727 \begin_layout Subsubsection
28728 Standard align Environment
28729 \begin_inset CommandInset label
28730 LatexCommand label
28731 name "sub:Standard-align-Environment"
28732
28733 \end_inset
28734
28735
28736 \begin_inset Index
28737 status collapsed
28738
28739 \begin_layout Plain Layout
28740 Formula ! multiline ! align environment
28741 \end_layout
28742
28743 \end_inset
28744
28745
28746 \end_layout
28747
28748 \begin_layout Standard
28749 This Align environment is created by presssing 
28750 \begin_inset Info
28751 type  "shortcut"
28752 arg   "newline-insert newline"
28753 \end_inset
28754
28755  in a formula or by the menu 
28756 \family sans
28757 Insert\SpecialChar \menuseparator
28758 Math\SpecialChar \menuseparator
28759 AMS align Environment
28760 \family default
28761 .
28762 \end_layout
28763
28764 \begin_layout Standard
28765 An example for two formulas set side by side, that are created with a four
28766  column align environment:
28767 \begin_inset Formula \begin{align*}
28768 A & =\sin(B) & C & =D\\
28769 C & \ne A & B & \ne D\end{align*}
28770
28771 \end_inset
28772
28773 As it can be seen, the formulas in this environment are placed so as if
28774  there would be a 
28775 \series bold
28776
28777 \backslash
28778 hfill
28779 \begin_inset Foot
28780 status collapsed
28781
28782 \begin_layout Plain Layout
28783 more about 
28784 \series bold
28785
28786 \backslash
28787 hfill
28788 \series default
28789  see 
28790 \begin_inset CommandInset ref
28791 LatexCommand ref
28792 reference "sub:Variable-Space"
28793
28794 \end_inset
28795
28796
28797 \end_layout
28798
28799 \end_inset
28800
28801
28802 \series default
28803  before the first and after every even column.
28804  When the formula style 
28805 \series bold
28806 Indented
28807 \begin_inset Foot
28808 status collapsed
28809
28810 \begin_layout Plain Layout
28811 formula styles see 
28812 \begin_inset CommandInset ref
28813 LatexCommand ref
28814 reference "sec:Formula-Styles"
28815
28816 \end_inset
28817
28818
28819 \end_layout
28820
28821 \end_inset
28822
28823
28824 \series default
28825  is used, the formula is set without the 
28826 \series bold
28827
28828 \backslash
28829 hfill
28830 \series default
28831  before the first column.
28832 \end_layout
28833
28834 \begin_layout Subsubsection
28835 Alignat Environment
28836 \begin_inset Index
28837 status collapsed
28838
28839 \begin_layout Plain Layout
28840 Formula ! multiline ! alignat environment
28841 \end_layout
28842
28843 \end_inset
28844
28845
28846 \end_layout
28847
28848 \begin_layout Standard
28849 The alignat environment has no predefined column separation.
28850  It can be inserted manually with the spaces that are described 
28851 \begin_inset CommandInset ref
28852 LatexCommand ref
28853 reference "sub:Space"
28854
28855 \end_inset
28856
28857 .
28858 \end_layout
28859
28860 \begin_layout Standard
28861 The above example in the alignat environment where 1
28862 \begin_inset space \thinspace{}
28863 \end_inset
28864
28865 cm space was inserted at the beginning of the second formula:
28866 \begin_inset Formula \begin{alignat*}{2}
28867 A & =\sin(B) & \hspace{1cm}C & =D\\
28868 C & \ne A & B & \ne D\end{alignat*}
28869
28870 \end_inset
28871
28872 Because the column separation can be set separately for every column, this
28873  environment is especially suitable to set three and more formulas side
28874  by side.
28875 \end_layout
28876
28877 \begin_layout Subsubsection
28878 Flalign Environment
28879 \begin_inset CommandInset label
28880 LatexCommand label
28881 name "sub:Flalign-Environment"
28882
28883 \end_inset
28884
28885
28886 \begin_inset Index
28887 status collapsed
28888
28889 \begin_layout Plain Layout
28890 Formula ! multiline ! flalign environment
28891 \end_layout
28892
28893 \end_inset
28894
28895
28896 \end_layout
28897
28898 \begin_layout Standard
28899 In this environment the first two columns are always set as much as possible
28900  to the left and the last two ones to the right.
28901  An example:
28902 \begin_inset Formula \begin{flalign*}
28903 A & =1 & B & =2 & C & =3\\
28904 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4\end{flalign*}
28905
28906 \end_inset
28907
28908
28909 \end_layout
28910
28911 \begin_layout Standard
28912 By creating a flalign environment with an odd number of columns where an
28913  empty TeX-brace is inserted to the last column, several formulas in a document
28914  can be set to the left, although the formula style 
28915 \series bold
28916 Centered
28917 \series default
28918  is used.
28919  As example the indented formula 
28920 \begin_inset CommandInset ref
28921 LatexCommand eqref
28922 reference "eq:VolInt"
28923
28924 \end_inset
28925
28926 :
28927 \begin_inset Formula \begin{flalign}
28928 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}\end{flalign}
28929
28930 \end_inset
28931
28932 The first two columns contain the formula.
28933  To indent it as with the formula style 
28934 \series bold
28935 Indented
28936 \series default
28937 , 30
28938 \begin_inset space \thinspace{}
28939 \end_inset
28940
28941 pt space was inserted at the beginning of the first column.
28942 \end_layout
28943
28944 \begin_layout Subsection
28945 Eqnarray Environment
28946 \begin_inset CommandInset label
28947 LatexCommand label
28948 name "sub:Eqnarray-Environment"
28949
28950 \end_inset
28951
28952
28953 \begin_inset Index
28954 status collapsed
28955
28956 \begin_layout Plain Layout
28957 Formula ! multiline ! eqnarray environment
28958 \end_layout
28959
28960 \end_inset
28961
28962
28963 \end_layout
28964
28965 \begin_layout Standard
28966 When this environment has been created, three blue boxes appear.
28967  The content of the first box is right aligned, the content of the last
28968  one left aligned.
28969  The content of the middle box appears centered and a bit smaller, because
28970  it is designed to insert there only relation characters.
28971 \begin_inset Formula \begin{eqnarray*}
28972 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
28973 AB & AB & AB\\
28974 A & = & A\end{eqnarray*}
28975
28976 \end_inset
28977
28978
28979 \end_layout
28980
28981 \begin_layout Subsection
28982 Gather Environment
28983 \begin_inset Index
28984 status collapsed
28985
28986 \begin_layout Plain Layout
28987 Formula ! multiline ! gather environment
28988 \end_layout
28989
28990 \end_inset
28991
28992
28993 \end_layout
28994
28995 \begin_layout Standard
28996 This environment consists of only one centered column.
28997  Every line can be numbered.
28998 \begin_inset Formula \begin{gather}
28999 A=1\\
29000 X=\textrm{-}1\end{gather}
29001
29002 \end_inset
29003
29004
29005 \end_layout
29006
29007 \begin_layout Subsection
29008 Multline Environment
29009 \begin_inset CommandInset label
29010 LatexCommand label
29011 name "sub:Multline-Environment"
29012
29013 \end_inset
29014
29015
29016 \begin_inset Index
29017 status collapsed
29018
29019 \begin_layout Plain Layout
29020 Formula ! multiline ! multline environment
29021 \end_layout
29022
29023 \end_inset
29024
29025
29026 \end_layout
29027
29028 \begin_layout Standard
29029 The multline environment consists, like the gather environment, of only
29030  one column.
29031  But the first line is left aligned, the last one right aligned.
29032  All other lines are centered.
29033  Therefore this environment is suitable for long formulas.
29034  As example formula 
29035 \begin_inset CommandInset ref
29036 LatexCommand eqref
29037 reference "eq:lefteqn"
29038
29039 \end_inset
29040
29041  in the multline environment:
29042 \begin_inset Formula \begin{multline}
29043 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}\\
29044 -B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}\\
29045 =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\end{multline}
29046
29047 \end_inset
29048
29049
29050 \end_layout
29051
29052 \begin_layout Standard
29053 In the output only the last (first) line of a multline environment appears
29054  numbered when the document numbering is right (left).
29055 \begin_inset Foot
29056 status collapsed
29057
29058 \begin_layout Plain Layout
29059 numbering styles see 
29060 \begin_inset CommandInset ref
29061 LatexCommand ref
29062 reference "sec:Formula-Styles"
29063
29064 \end_inset
29065
29066
29067 \end_layout
29068
29069 \end_inset
29070
29071
29072 \end_layout
29073
29074 \begin_layout Standard
29075 With the commands 
29076 \series bold
29077
29078 \backslash
29079 shoveright
29080 \begin_inset Index
29081 status collapsed
29082
29083 \begin_layout Plain Layout
29084 Commands ! S ! 
29085 \backslash
29086 shoveright
29087 \end_layout
29088
29089 \end_inset
29090
29091
29092 \series default
29093  and 
29094 \series bold
29095
29096 \backslash
29097 shoveleft
29098 \begin_inset Index
29099 status collapsed
29100
29101 \begin_layout Plain Layout
29102 Commands ! S ! 
29103 \backslash
29104 shoveleft
29105 \end_layout
29106
29107 \end_inset
29108
29109
29110 \series default
29111  a centered line can be right or left aligned, respectively.
29112  The commands are used as follows:
29113 \end_layout
29114
29115 \begin_layout Standard
29116
29117 \series bold
29118
29119 \backslash
29120 shoveright{line content}
29121 \series default
29122  and 
29123 \series bold
29124
29125 \backslash
29126 shoveleft{line content}
29127 \end_layout
29128
29129 \begin_layout Standard
29130 \begin_inset VSpace medskip
29131 \end_inset
29132
29133 The length 
29134 \series bold
29135
29136 \backslash
29137 multlinegap
29138 \begin_inset Index
29139 status collapsed
29140
29141 \begin_layout Plain Layout
29142 Commands ! M ! 
29143 \backslash
29144 multlinegap
29145 \end_layout
29146
29147 \end_inset
29148
29149
29150 \series default
29151  specifies the distance of the first line from the left page margin.
29152  Predefined is the length 0
29153 \begin_inset space \thinspace{}
29154 \end_inset
29155
29156 pt.
29157 \end_layout
29158
29159 \begin_layout Standard
29160 As example the above formula where the command
29161 \end_layout
29162
29163 \begin_layout Standard
29164
29165 \series bold
29166
29167 \backslash
29168 setlength{
29169 \backslash
29170 multlinegap}{2cm}
29171 \end_layout
29172
29173 \begin_layout Standard
29174 was inserted in TeX-mode before:
29175 \begin_inset ERT
29176 status collapsed
29177
29178 \begin_layout Plain Layout
29179
29180
29181 \backslash
29182 setlength{
29183 \backslash
29184 multlinegap}{2cm}
29185 \end_layout
29186
29187 \end_inset
29188
29189
29190 \begin_inset Formula \begin{multline}
29191 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right)+D^{2}\\
29192 \shoveleft{-B^{2}-2B\sqrt{r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}+r_{g}^{2}-x^{2}+2x_{0}x-x_{0}^{2}}\\
29193 =B^{2}+2\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)+\frac{\left(r_{g}^{2}+2x_{0}x-x_{0}^{2}-r_{k}^{2}\right)^{2}}{B^{2}}\end{multline}
29194
29195 \end_inset
29196
29197
29198 \begin_inset ERT
29199 status collapsed
29200
29201 \begin_layout Plain Layout
29202
29203
29204 \backslash
29205 setlength{
29206 \backslash
29207 multlinegap}{0pt}
29208 \end_layout
29209
29210 \end_inset
29211
29212 The second line was left aligned using 
29213 \series bold
29214
29215 \backslash
29216 shoveleft
29217 \series default
29218 .
29219 \end_layout
29220
29221 \begin_layout Subsection
29222 Multiline Formula Parts
29223 \begin_inset CommandInset label
29224 LatexCommand label
29225 name "sub:Multiline-Formula-Parts"
29226
29227 \end_inset
29228
29229
29230 \begin_inset Index
29231 status collapsed
29232
29233 \begin_layout Plain Layout
29234 Formula ! multiline ! formula parts
29235 \end_layout
29236
29237 \end_inset
29238
29239
29240 \end_layout
29241
29242 \begin_layout Standard
29243 To display only parts of a formula with multiple lines, one of the following
29244  environments are used: 
29245 \series bold
29246 aligned
29247 \series default
29248
29249 \series bold
29250 alignedat
29251 \series default
29252
29253 \series bold
29254 gathered
29255 \series default
29256  or 
29257 \series bold
29258 split
29259 \series default
29260 .
29261  They can be inserted via the menu 
29262 \family sans
29263 Insert\SpecialChar \menuseparator
29264 Math
29265 \family default
29266  or by using the commands described in this section.
29267 \end_layout
29268
29269 \begin_layout Standard
29270 The first three have the same properties as the corresponding multiline
29271  formula environments, but it is possible to set further formula parts beside
29272  them.
29273  An example:
29274 \begin_inset Formula \[
29275 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29276 \Delta E\Delta t & \ge\frac{\hbar}{2}\end{aligned}
29277 \right\} \textrm{Uncertainty relations}\]
29278
29279 \end_inset
29280
29281
29282 \end_layout
29283
29284 \begin_layout Standard
29285 To get this formula, a displayed formula is created where the command 
29286 \series bold
29287
29288 \backslash
29289 aligned
29290 \begin_inset Index
29291 status collapsed
29292
29293 \begin_layout Plain Layout
29294 Commands ! A ! 
29295 \backslash
29296 aligned
29297 \end_layout
29298
29299 \end_inset
29300
29301
29302 \series default
29303  is inserted.
29304  A purple box appears around the blue formula box where now columns and
29305  lines can be added.
29306  Outside the multiline environment other formula parts can be set, like
29307  the brace.
29308 \end_layout
29309
29310 \begin_layout Standard
29311 The aligned environment is also suitable for long formulas whose lines are
29312  horizontally aligned.
29313  Using aligned in a displayed formula has the advantage that the formula
29314  number is vertically centered behind the lines.
29315  As example formula 
29316 \begin_inset CommandInset ref
29317 LatexCommand eqref
29318 reference "eq:shortlong"
29319
29320 \end_inset
29321
29322  in the aligned environment:
29323 \begin_inset Formula \begin{equation}
29324 \begin{aligned}H=\; & W_{SB}+W_{mv}+W_{D}-\frac{\hbar^{2}}{2m_{0}}\Delta-\frac{\hbar^{2}}{2m_{1}}\Delta_{1}-\frac{\hbar^{2}}{2m_{2}}\Delta_{2}-\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{1}|}\\
29325  & -\hspace{3pt}\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{r}-\mathbf{R}_{2}|}+\frac{e^{2}}{4\pi\varepsilon_{0}|\mathbf{R}_{1}-\mathbf{R}_{2}|}\end{aligned}
29326 \end{equation}
29327
29328 \end_inset
29329
29330
29331 \end_layout
29332
29333 \begin_layout Standard
29334 To use the environments 
29335 \series bold
29336 alignedat
29337 \series default
29338
29339 \series bold
29340 gathered
29341 \series default
29342 , or 
29343 \series bold
29344 split
29345 \series default
29346 , the command 
29347 \series bold
29348
29349 \backslash
29350 alignedat
29351 \series default
29352 ,
29353 \begin_inset Index
29354 status collapsed
29355
29356 \begin_layout Plain Layout
29357 Commands ! A ! 
29358 \backslash
29359 alignedat
29360 \end_layout
29361
29362 \end_inset
29363
29364  
29365 \series bold
29366
29367 \backslash
29368 gathered
29369 \series default
29370
29371 \begin_inset Index
29372 status collapsed
29373
29374 \begin_layout Plain Layout
29375 Commands ! G ! 
29376 \backslash
29377 gathered
29378 \end_layout
29379
29380 \end_inset
29381
29382 , or 
29383 \series bold
29384
29385 \backslash
29386 split
29387 \series default
29388
29389 \begin_inset Index
29390 status collapsed
29391
29392 \begin_layout Plain Layout
29393 Commands ! S ! 
29394 \backslash
29395 split
29396 \end_layout
29397
29398 \end_inset
29399
29400  are inserted, respectively.
29401  The split environment has the same properties as the aligned environment
29402  but it can only have two columns.
29403 \end_layout
29404
29405 \begin_layout Subsection
29406 Text in multiline Formulas
29407 \begin_inset CommandInset label
29408 LatexCommand label
29409 name "sub:Text-in-multiline"
29410
29411 \end_inset
29412
29413
29414 \begin_inset Index
29415 status collapsed
29416
29417 \begin_layout Plain Layout
29418 Text ! in formulas
29419 \end_layout
29420
29421 \end_inset
29422
29423
29424 \begin_inset Index
29425 status collapsed
29426
29427 \begin_layout Plain Layout
29428 Formula ! multiline ! text
29429 \end_layout
29430
29431 \end_inset
29432
29433
29434 \end_layout
29435
29436 \begin_layout Standard
29437 In the Align environments, and the multline and gather environment, text
29438  can be inserted that will appear in a separate line and doesn't affect
29439  the column alignment.
29440  To do this, the command 
29441 \series bold
29442
29443 \backslash
29444 intertext
29445 \begin_inset Index
29446 status collapsed
29447
29448 \begin_layout Plain Layout
29449 Commands ! I ! 
29450 \backslash
29451 intertext
29452 \end_layout
29453
29454 \end_inset
29455
29456
29457 \series default
29458  is used in the following scheme:
29459 \end_layout
29460
29461 \begin_layout Standard
29462
29463 \series bold
29464
29465 \backslash
29466 intertext{text}
29467 \end_layout
29468
29469 \begin_layout Standard
29470 The text should not be longer than a line because it cannot be hyphenated.
29471  As LyX doesn't yet support 
29472 \series bold
29473
29474 \backslash
29475 intertext
29476 \series default
29477  directly, the text is written as mathematical text.
29478  
29479 \series bold
29480
29481 \backslash
29482 intertext
29483 \series default
29484  must hereby be at the beginning of a line and appears in the output above
29485  this line.
29486  An example where the text was inserted at the beginning of the second line:
29487 \begin_inset Formula \begin{align}
29488 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29489 \intertext{\text{integrand is symmetric to \ensuremath{\phi=\pi}, therefore}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\end{align}
29490
29491 \end_inset
29492
29493
29494 \end_layout
29495
29496 \begin_layout Section
29497 Formula Numbering
29498 \begin_inset Index
29499 status collapsed
29500
29501 \begin_layout Plain Layout
29502 Formula numbering
29503 \end_layout
29504
29505 \end_inset
29506
29507
29508 \begin_inset Index
29509 status collapsed
29510
29511 \begin_layout Plain Layout
29512 Formula ! numbering|see
29513 \begin_inset ERT
29514 status collapsed
29515
29516 \begin_layout Plain Layout
29517
29518 {
29519 \end_layout
29520
29521 \end_inset
29522
29523 Formula numbering
29524 \begin_inset ERT
29525 status collapsed
29526
29527 \begin_layout Plain Layout
29528
29529 }
29530 \end_layout
29531
29532 \end_inset
29533
29534
29535 \end_layout
29536
29537 \end_inset
29538
29539
29540 \end_layout
29541
29542 \begin_layout Subsection
29543 General
29544 \end_layout
29545
29546 \begin_layout Standard
29547 Numbered formulas can be created with the menu 
29548 \family sans
29549 Insert\SpecialChar \menuseparator
29550 Math\SpecialChar \menuseparator
29551 Numbered
29552 \begin_inset space ~
29553 \end_inset
29554
29555 Formula
29556 \family default
29557  (shortcut 
29558 \family sans
29559 Ctrl+Alt
29560 \begin_inset space ~
29561 \end_inset
29562
29563 N
29564 \family default
29565 ).
29566  Existing formulas can be numbered with the menu 
29567 \family sans
29568 Edit\SpecialChar \menuseparator
29569 Math\SpecialChar \menuseparator
29570 Toggle
29571 \begin_inset space ~
29572 \end_inset
29573
29574 Numbering
29575 \family default
29576  (shortcut 
29577 \begin_inset Info
29578 type  "shortcut"
29579 arg   "math-number-toggle"
29580 \end_inset
29581
29582 ).
29583  The formula number is displayed in LyX behind the formula as number sign
29584  in parentheses.
29585  The number sign is replaced in the output by the formula number.
29586 \end_layout
29587
29588 \begin_layout Standard
29589 When numbering is turned on in multiline formulas, all lines will be numbered.
29590  But the numbering can be controlled with the menu 
29591 \family sans
29592 Edit\SpecialChar \menuseparator
29593 Math\SpecialChar \menuseparator
29594 Toggle
29595 \begin_inset space ~
29596 \end_inset
29597
29598 Numbering
29599 \begin_inset space ~
29600 \end_inset
29601
29602 of
29603 \begin_inset space ~
29604 \end_inset
29605
29606 Line
29607 \family default
29608  (shortcut
29609 \begin_inset Info
29610 type  "shortcut"
29611 arg   "math-number-line-toggle"
29612 \end_inset
29613
29614 ) for every line.
29615 \end_layout
29616
29617 \begin_layout Standard
29618 Except for inline formulas, all formulas can be numbered with two different
29619  styles, see 
29620 \begin_inset CommandInset ref
29621 LatexCommand ref
29622 reference "sec:Formula-Styles"
29623
29624 \end_inset
29625
29626 .
29627 \end_layout
29628
29629 \begin_layout Subsection
29630 Cross-References
29631 \begin_inset Index
29632 status collapsed
29633
29634 \begin_layout Plain Layout
29635 Cross-references ! to formulas
29636 \end_layout
29637
29638 \end_inset
29639
29640
29641 \end_layout
29642
29643 \begin_layout Standard
29644 All labeled formulas can be cross-referenced.
29645  A label is added by the menu 
29646 \family sans
29647 Insert\SpecialChar \menuseparator
29648 Label
29649 \family default
29650  or the toolbar button 
29651 \begin_inset Graphics
29652         filename ../images/label-insert.png
29653         scale 85
29654
29655 \end_inset
29656
29657 .
29658  The cursor must hereby be inside a displayed formula.
29659  A dialog pops up displaying the prefix 
29660 \series bold
29661 eq:
29662 \series default
29663  in a text field.
29664  The label is inserted there behind the prefix.
29665  The predefined prefix means 
29666 \begin_inset Quotes eld
29667 \end_inset
29668
29669 equation
29670 \begin_inset Quotes erd
29671 \end_inset
29672
29673  and makes it easier to find labels in large documents because it marks
29674  it as formula label to divide it from e.
29675 \begin_inset space \thinspace{}
29676 \end_inset
29677
29678 g.
29679 \begin_inset space \space{}
29680 \end_inset
29681
29682 section labels.
29683  To change a label, the menu 
29684 \family sans
29685 Insert\SpecialChar \menuseparator
29686 Label
29687 \family default
29688  is used again.
29689 \end_layout
29690
29691 \begin_layout Standard
29692 The name of the label is displayed in LyX within two parentheses behind
29693  formula.
29694  A formula with a label is always numbered.
29695 \end_layout
29696
29697 \begin_layout Standard
29698 Cross-references are inserted via the menu 
29699 \family sans
29700 Insert\SpecialChar \menuseparator
29701 Cross-Reference
29702 \family default
29703  or with the toolbar button 
29704 \begin_inset Graphics
29705         filename ../images/dialog-show-new-inset_ref.png
29706         scale 85
29707
29708 \end_inset
29709
29710 .
29711  A formula cross-reference appears in the output as formula number.
29712  When in the cross-reference dialog window the format 
29713 \series bold
29714 (<reference>)
29715 \series default
29716  is chosen, the cross-reference appears in the output as formula number
29717  in parentheses.
29718 \begin_inset Newline newline
29719 \end_inset
29720
29721 By right-clicking on a cross-reference in LyX, one jumps to the formula
29722  that is referenced.
29723 \end_layout
29724
29725 \begin_layout Standard
29726 Here are as examples cross-references to formulas of the following subsections:
29727 \begin_inset Note Note
29728 status open
29729
29730 \begin_layout Plain Layout
29731 Note the different cross-reference types.
29732 \end_layout
29733
29734 \end_inset
29735
29736
29737 \end_layout
29738
29739 \begin_layout Standard
29740 The equations 
29741 \begin_inset CommandInset ref
29742 LatexCommand eqref
29743 reference "eq:tag"
29744
29745 \end_inset
29746
29747  and 
29748 \begin_inset CommandInset ref
29749 LatexCommand eqref
29750 reference "eq:c"
29751
29752 \end_inset
29753
29754  are equivalent.
29755  In (
29756 \begin_inset CommandInset ref
29757 LatexCommand ref
29758 reference "eq:Lat"
29759
29760 \end_inset
29761
29762 ) big Latin letters are used for the numbering in contrary to (
29763 \begin_inset CommandInset ref
29764 LatexCommand ref
29765 reference "eq:Rom"
29766
29767 \end_inset
29768
29769 ).
29770 \end_layout
29771
29772 \begin_layout Standard
29773 \begin_inset VSpace medskip
29774 \end_inset
29775
29776 When the argument of 
29777 \series bold
29778
29779 \backslash
29780 tag
29781 \begin_inset Foot
29782 status collapsed
29783
29784 \begin_layout Plain Layout
29785
29786 \series bold
29787
29788 \backslash
29789 tag
29790 \series default
29791  is described in 
29792 \begin_inset CommandInset ref
29793 LatexCommand ref
29794 reference "sub:User-defined-Numbering"
29795
29796 \end_inset
29797
29798 .
29799 \end_layout
29800
29801 \end_inset
29802
29803
29804 \series default
29805  contains a box like in 
29806 \begin_inset CommandInset ref
29807 LatexCommand ref
29808 reference "sub:Paragraph-Boxes"
29809
29810 \end_inset
29811
29812 , the formula cannot be referenced.
29813 \end_layout
29814
29815 \begin_layout Subsection
29816 Subnumbering
29817 \begin_inset Index
29818 status collapsed
29819
29820 \begin_layout Plain Layout
29821 Formula numbering ! subnumbering
29822 \end_layout
29823
29824 \end_inset
29825
29826
29827 \end_layout
29828
29829 \begin_layout Standard
29830 With the help of the commands 
29831 \series bold
29832
29833 \backslash
29834 begin{subequations}
29835 \series default
29836  and 
29837 \series bold
29838
29839 \backslash
29840 end{subequations}
29841 \series default
29842  formulas can be subnumbered.
29843  Both commands are inserted in TeX-mode.
29844 \end_layout
29845
29846 \begin_layout Standard
29847 An example:
29848 \begin_inset Formula \begin{equation}
29849 A=C-B\label{eq:a}\end{equation}
29850
29851 \end_inset
29852
29853
29854 \begin_inset ERT
29855 status collapsed
29856
29857 \begin_layout Plain Layout
29858
29859
29860 \backslash
29861 addtocounter{equation}{-1}
29862 \end_layout
29863
29864 \end_inset
29865
29866
29867 \begin_inset ERT
29868 status collapsed
29869
29870 \begin_layout Plain Layout
29871
29872
29873 \backslash
29874 begin{subequations}
29875 \end_layout
29876
29877 \end_inset
29878
29879
29880 \begin_inset VSpace -5mm
29881 \end_inset
29882
29883
29884 \begin_inset Formula \begin{equation}
29885 B=C-A\label{eq:b}\end{equation}
29886
29887 \end_inset
29888
29889
29890 \begin_inset Formula \begin{equation}
29891 C=A+B\label{eq:c}\end{equation}
29892
29893 \end_inset
29894
29895
29896 \end_layout
29897
29898 \begin_layout Standard
29899 \begin_inset ERT
29900 status collapsed
29901
29902 \begin_layout Plain Layout
29903
29904
29905 \backslash
29906 end{subequations}
29907 \end_layout
29908
29909 \end_inset
29910
29911
29912 \end_layout
29913
29914 \begin_layout Standard
29915 To create the example, the following is done:
29916 \end_layout
29917
29918 \begin_layout Enumerate
29919 first formula is inserted
29920 \end_layout
29921
29922 \begin_layout Enumerate
29923
29924 \series bold
29925
29926 \backslash
29927 addtocounter{equation}{-1} 
29928 \backslash
29929 begin{subequations}
29930 \begin_inset Index
29931 status collapsed
29932
29933 \begin_layout Plain Layout
29934 Commands ! A ! 
29935 \backslash
29936 addtocounter
29937 \end_layout
29938
29939 \end_inset
29940
29941
29942 \begin_inset Newline newline
29943 \end_inset
29944
29945
29946 \series default
29947 is inserted after the first formula
29948 \end_layout
29949
29950 \begin_layout Enumerate
29951 second formula is inserted
29952 \end_layout
29953
29954 \begin_layout Enumerate
29955 third formula is inserted
29956 \end_layout
29957
29958 \begin_layout Enumerate
29959
29960 \series bold
29961
29962 \backslash
29963 end{subequations}
29964 \series default
29965  is inserted after the third formula
29966 \end_layout
29967
29968 \begin_layout Standard
29969 Every formula between the commands 
29970 \series bold
29971
29972 \backslash
29973 begin
29974 \series default
29975  and 
29976 \series bold
29977
29978 \backslash
29979 end
29980 \series default
29981  is subnumbered as a, b, 
29982 \begin_inset Newline linebreak
29983 \end_inset
29984
29985 c, \SpecialChar \ldots{}
29986  For multiline formulas every line will be subnumbered.
29987  All subnumbered formulas are treated as 
29988 \emph on
29989 one
29990 \emph default
29991  numbered formula.
29992  But as every numbered formula increases the counter 
29993 \series bold
29994 equation
29995 \series default
29996  by one, the command 
29997 \series bold
29998
29999 \backslash
30000 addtocounter
30001 \series default
30002  is needed to decrease it.
30003  Otherwise the formulas 
30004 \begin_inset CommandInset ref
30005 LatexCommand eqref
30006 reference "eq:a"
30007
30008 \end_inset
30009
30010
30011 \begin_inset CommandInset ref
30012 LatexCommand eqref
30013 reference "eq:b"
30014
30015 \end_inset
30016
30017
30018 \begin_inset CommandInset ref
30019 LatexCommand eqref
30020 reference "eq:c"
30021
30022 \end_inset
30023
30024  would be numbered as 
30025 \begin_inset CommandInset ref
30026 LatexCommand eqref
30027 reference "eq:a"
30028
30029 \end_inset
30030
30031
30032 \begin_inset CommandInset ref
30033 LatexCommand eqref
30034 reference "eq:d"
30035
30036 \end_inset
30037
30038
30039 \begin_inset CommandInset ref
30040 LatexCommand eqref
30041 reference "eq:f"
30042
30043 \end_inset
30044
30045 .
30046 \end_layout
30047
30048 \begin_layout Standard
30049 By inserting the commands in TeX-mode, a space is created between the first
30050  two formulas.
30051  To revert this -5
30052 \begin_inset space \thinspace{}
30053 \end_inset
30054
30055 mm vertical space is inserted after the command 
30056 \series bold
30057
30058 \backslash
30059 begin{subequations}
30060 \series default
30061 .
30062  When the formula style 
30063 \series bold
30064 Indented
30065 \begin_inset Foot
30066 status collapsed
30067
30068 \begin_layout Plain Layout
30069 formula styles see 
30070 \begin_inset CommandInset ref
30071 LatexCommand ref
30072 reference "sec:Formula-Styles"
30073
30074 \end_inset
30075
30076
30077 \end_layout
30078
30079 \end_inset
30080
30081
30082 \series default
30083  is used, -7
30084 \begin_inset space \thinspace{}
30085 \end_inset
30086
30087 mm space is inserted instead.
30088 \end_layout
30089
30090 \begin_layout Standard
30091 Here is an example for a multiline formula where the numbering was turned
30092  off for the second line:
30093 \begin_inset ERT
30094 status collapsed
30095
30096 \begin_layout Plain Layout
30097
30098
30099 \backslash
30100 begin{subequations}
30101 \end_layout
30102
30103 \end_inset
30104
30105
30106 \begin_inset Formula \begin{eqnarray}
30107 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30108  & = & B^{2}-ZB-BZ+Z^{2}\nonumber \\
30109  & = & B^{2}-2BZ+Z^{2}\label{eq:f}\end{eqnarray}
30110
30111 \end_inset
30112
30113
30114 \begin_inset ERT
30115 status collapsed
30116
30117 \begin_layout Plain Layout
30118
30119
30120 \backslash
30121 end{subequations}
30122 \end_layout
30123
30124 \end_inset
30125
30126
30127 \end_layout
30128
30129 \begin_layout Subsection
30130 User-defined Numbering
30131 \begin_inset CommandInset label
30132 LatexCommand label
30133 name "sub:User-defined-Numbering"
30134
30135 \end_inset
30136
30137
30138 \begin_inset Index
30139 status collapsed
30140
30141 \begin_layout Plain Layout
30142 Formula numbering ! user-defined
30143 \end_layout
30144
30145 \end_inset
30146
30147
30148 \end_layout
30149
30150 \begin_layout Standard
30151 \begin_inset Index
30152 status collapsed
30153
30154 \begin_layout Plain Layout
30155 Formula numbering ! self-defined delimiters
30156 \end_layout
30157
30158 \end_inset
30159
30160 With the standard numbering parentheses are set around the formula number.
30161  To replace the parentheses for example by vertical bars, the following
30162  line is added to the LaTeX-preamble:
30163 \end_layout
30164
30165 \begin_layout Standard
30166
30167 \series bold
30168
30169 \backslash
30170 def
30171 \backslash
30172 tagform@#1{
30173 \backslash
30174 maketag@@@{|#1|}}
30175 \series default
30176
30177 \begin_inset Note Note
30178 status collapsed
30179
30180 \begin_layout Plain Layout
30181 This macro is already declared in the LaTeX-preamble for testing.
30182  To activate it, remove the percent sign at the beginning.
30183 \end_layout
30184
30185 \end_inset
30186
30187
30188 \end_layout
30189
30190 \begin_layout Standard
30191 To use other characters, the vertical bars besides the 
30192 \series bold
30193 #1
30194 \series default
30195  are replaced by one ore more characters.
30196  To get only the formula number the vertical bars are omitted.
30197 \end_layout
30198
30199 \begin_layout Standard
30200 \begin_inset VSpace bigskip
30201 \end_inset
30202
30203 When there should be an expression of your choice instead of the consecutive
30204  formula number in parentheses behind the formula, the command 
30205 \series bold
30206
30207 \backslash
30208 tag
30209 \series default
30210
30211 \begin_inset Index
30212 status collapsed
30213
30214 \begin_layout Plain Layout
30215 Commands ! T ! 
30216 \backslash
30217 tag
30218 \end_layout
30219
30220 \end_inset
30221
30222  is used:
30223 \begin_inset Formula \begin{equation}
30224 A+B=C\tag{something}\label{eq:tag}\end{equation}
30225
30226 \end_inset
30227
30228 In this example the command 
30229 \series bold
30230
30231 \backslash
30232 tag
30233 \begin_inset ERT
30234 status collapsed
30235
30236 \begin_layout Plain Layout
30237
30238
30239 \backslash
30240 spce 
30241 \end_layout
30242
30243 \end_inset
30244
30245 something
30246 \series default
30247  was inserted to the formula.
30248 \end_layout
30249
30250 \begin_layout Standard
30251 When the command 
30252 \series bold
30253
30254 \backslash
30255 tag*
30256 \begin_inset ERT
30257 status collapsed
30258
30259 \begin_layout Plain Layout
30260
30261
30262 \backslash
30263 spce 
30264 \end_layout
30265
30266 \end_inset
30267
30268 something
30269 \series default
30270  is inserted instead, the star prevents the parentheses around the expression:
30271 \begin_inset Formula \[
30272 A+B=C\tag*{something}\]
30273
30274 \end_inset
30275
30276
30277 \end_layout
30278
30279 \begin_layout Standard
30280 \begin_inset VSpace bigskip
30281 \end_inset
30282
30283 To restart the formula numbering with new document parts or sections, the
30284  following command is used:
30285 \end_layout
30286
30287 \begin_layout Standard
30288
30289 \series bold
30290
30291 \backslash
30292 @addtoreset{equation}{part}
30293 \series default
30294
30295 \begin_inset Index
30296 status collapsed
30297
30298 \begin_layout Plain Layout
30299 Commands ! 
30300 \begin_inset ERT
30301 status collapsed
30302
30303 \begin_layout Plain Layout
30304
30305 "
30306 \end_layout
30307
30308 \end_inset
30309
30310 @
30311 \begin_inset ERT
30312 status collapsed
30313
30314 \begin_layout Plain Layout
30315
30316 "
30317 \end_layout
30318
30319 \end_inset
30320
30321  ! 
30322 \backslash
30323
30324 \begin_inset ERT
30325 status collapsed
30326
30327 \begin_layout Plain Layout
30328
30329 "
30330 \end_layout
30331
30332 \end_inset
30333
30334 @
30335 \begin_inset ERT
30336 status collapsed
30337
30338 \begin_layout Plain Layout
30339
30340 "
30341 \end_layout
30342
30343 \end_inset
30344
30345 addtoreset
30346 \end_layout
30347
30348 \end_inset
30349
30350
30351 \begin_inset Newline newline
30352 \end_inset
30353
30354 resp.
30355 \begin_inset Newline newline
30356 \end_inset
30357
30358
30359 \series bold
30360
30361 \backslash
30362 @addtoreset{equation}{section}
30363 \end_layout
30364
30365 \begin_layout Standard
30366 To be able to use these commands in TeX-mode, the 
30367 \begin_inset Quotes eld
30368 \end_inset
30369
30370 @
30371 \begin_inset Quotes erd
30372 \end_inset
30373
30374  character has to be made 
30375 \begin_inset Quotes eld
30376 \end_inset
30377
30378 active
30379 \begin_inset Quotes erd
30380 \end_inset
30381
30382  for LaTeX using the command 
30383 \series bold
30384
30385 \backslash
30386 makeatletter.
30387
30388 \series default
30389  The command 
30390 \series bold
30391
30392 \backslash
30393 makeatother
30394 \series default
30395  reverts this.
30396  So the command sequence in TeX-mode is:
30397 \end_layout
30398
30399 \begin_layout Standard
30400
30401 \series bold
30402
30403 \backslash
30404 makeatletter
30405 \begin_inset Newline newline
30406 \end_inset
30407
30408
30409 \backslash
30410 @addtoreset{equation}{section}
30411 \begin_inset Newline newline
30412 \end_inset
30413
30414
30415 \backslash
30416 makeatother
30417 \end_layout
30418
30419 \begin_layout Standard
30420 In the LaTeX-preamble 
30421 \series bold
30422
30423 \backslash
30424 makeatletter
30425 \series default
30426  and 
30427 \series bold
30428
30429 \backslash
30430 makeatother
30431 \series default
30432  can be omitted as they are automatically internally inserted by LyX.
30433 \end_layout
30434
30435 \begin_layout Standard
30436 To revert 
30437 \series bold
30438
30439 \backslash
30440 @addtoreset
30441 \series default
30442 , the file 
30443 \series bold
30444 remreset.sty
30445 \series default
30446
30447 \begin_inset Foot
30448 status collapsed
30449
30450 \begin_layout Plain Layout
30451
30452 \series bold
30453 remreset
30454 \series default
30455  is part of the LaTeX-package 
30456 \series bold
30457 carlisle
30458 \series default
30459
30460 \begin_inset Index
30461 status collapsed
30462
30463 \begin_layout Plain Layout
30464 Packages ! carlisle
30465 \end_layout
30466
30467 \end_inset
30468
30469  that is part of every LaTeX standard installation.
30470 \end_layout
30471
30472 \end_inset
30473
30474
30475 \begin_inset Index
30476 status collapsed
30477
30478 \begin_layout Plain Layout
30479 Packages ! remreset
30480 \end_layout
30481
30482 \end_inset
30483
30484  has to be loaded in the LaTeX-preamble with the line
30485 \end_layout
30486
30487 \begin_layout Standard
30488
30489 \series bold
30490
30491 \backslash
30492 usepackage{remreset}
30493 \end_layout
30494
30495 \begin_layout Standard
30496 Then the command 
30497 \series bold
30498
30499 \backslash
30500 @removefromreset
30501 \series default
30502
30503 \begin_inset Index
30504 status collapsed
30505
30506 \begin_layout Plain Layout
30507 Commands ! 
30508 \begin_inset ERT
30509 status collapsed
30510
30511 \begin_layout Plain Layout
30512
30513 "
30514 \end_layout
30515
30516 \end_inset
30517
30518 @
30519 \begin_inset ERT
30520 status collapsed
30521
30522 \begin_layout Plain Layout
30523
30524 "
30525 \end_layout
30526
30527 \end_inset
30528
30529  ! 
30530 \backslash
30531
30532 \begin_inset ERT
30533 status collapsed
30534
30535 \begin_layout Plain Layout
30536
30537 "
30538 \end_layout
30539
30540 \end_inset
30541
30542 @
30543 \begin_inset ERT
30544 status collapsed
30545
30546 \begin_layout Plain Layout
30547
30548 "
30549 \end_layout
30550
30551 \end_inset
30552
30553 removefromreset
30554 \end_layout
30555
30556 \end_inset
30557
30558  can be used with the same scheme as 
30559 \series bold
30560
30561 \backslash
30562 @addtoreset
30563 \series default
30564 .
30565 \end_layout
30566
30567 \begin_layout Standard
30568 \begin_inset VSpace bigskip
30569 \end_inset
30570
30571 Sometimes formulas should be numbered in the following form:
30572 \end_layout
30573
30574 \begin_layout Standard
30575
30576 \family typewriter
30577 (section number.formula number)
30578 \end_layout
30579
30580 \begin_layout Standard
30581 The formula number should start with every section with 
30582 \begin_inset Quotes eld
30583 \end_inset
30584
30585 1
30586 \begin_inset Quotes erd
30587 \end_inset
30588
30589 .
30590 \end_layout
30591
30592 \begin_layout Standard
30593 For this case there is the command 
30594 \series bold
30595
30596 \backslash
30597 numberwithin
30598 \series default
30599
30600 \begin_inset Index
30601 status collapsed
30602
30603 \begin_layout Plain Layout
30604 Commands ! N ! 
30605 \backslash
30606 numberwithin
30607 \end_layout
30608
30609 \end_inset
30610
30611 , which is used with the following scheme:
30612 \end_layout
30613
30614 \begin_layout Standard
30615
30616 \series bold
30617
30618 \backslash
30619 numberwithin{counter}{sectioning}
30620 \end_layout
30621
30622 \begin_layout Standard
30623 Counter denotes what kind of numbering is affected, sectioning denotes what
30624  number is before the dot.
30625 \end_layout
30626
30627 \begin_layout Standard
30628 Thus in our case the following LaTeX-preamble or TeX-Code line is used:
30629 \end_layout
30630
30631 \begin_layout Standard
30632
30633 \series bold
30634
30635 \backslash
30636 numberwithin{equation}{section}
30637 \end_layout
30638
30639 \begin_layout Standard
30640 This is the result:
30641 \begin_inset ERT
30642 status collapsed
30643
30644 \begin_layout Plain Layout
30645
30646
30647 \backslash
30648 numberwithin{equation}{section}
30649 \end_layout
30650
30651 \end_inset
30652
30653
30654 \begin_inset Formula \begin{equation}
30655 A+B=C\end{equation}
30656
30657 \end_inset
30658
30659
30660 \end_layout
30661
30662 \begin_layout Standard
30663 To number e.
30664 \begin_inset space \thinspace{}
30665 \end_inset
30666
30667 g.
30668 \begin_inset space \space{}
30669 \end_inset
30670
30671 tables so that the number of the part is the sectioning,
30672 \begin_inset Newline newline
30673 \end_inset
30674
30675
30676 \series bold
30677
30678 \backslash
30679 numberwithin{table}{part}
30680 \series default
30681  is used.
30682 \end_layout
30683
30684 \begin_layout Standard
30685 To go back to the standard numbering or to prevent this kind of numbering
30686  when it is defined by the document class, the following command is inserted
30687  as TeX-Code or to the LaTeX-preamble:
30688 \end_layout
30689
30690 \begin_layout Standard
30691
30692 \series bold
30693
30694 \backslash
30695 renewcommand{
30696 \backslash
30697 theequation}{
30698 \backslash
30699 arabic{equation}}
30700 \begin_inset Index
30701 status collapsed
30702
30703 \begin_layout Plain Layout
30704 Commands ! A ! 
30705 \backslash
30706 arabic
30707 \end_layout
30708
30709 \end_inset
30710
30711
30712 \series default
30713
30714 \begin_inset ERT
30715 status collapsed
30716
30717 \begin_layout Plain Layout
30718
30719
30720 \backslash
30721 renewcommand{
30722 \backslash
30723 theequation}{
30724 \backslash
30725 arabic{equation}}
30726 \end_layout
30727
30728 \end_inset
30729
30730
30731 \series bold
30732
30733 \begin_inset Newline newline
30734 \end_inset
30735
30736
30737 \series default
30738 or
30739 \series bold
30740
30741 \begin_inset Newline newline
30742 \end_inset
30743
30744
30745 \backslash
30746 renewcommand{
30747 \backslash
30748 thetable}{
30749 \backslash
30750 arabic{table}}
30751 \end_layout
30752
30753 \begin_layout Standard
30754
30755 \series bold
30756
30757 \backslash
30758 numberwithin
30759 \series default
30760  uses internally the command 
30761 \series bold
30762
30763 \backslash
30764 @addtoreset
30765 \series default
30766 , described above, that also needs to be reverted.
30767 \begin_inset ERT
30768 status collapsed
30769
30770 \begin_layout Plain Layout
30771
30772
30773 \backslash
30774 makeatletter
30775 \end_layout
30776
30777 \begin_layout Plain Layout
30778
30779
30780 \backslash
30781 @removefromreset{equation}{section}
30782 \end_layout
30783
30784 \begin_layout Plain Layout
30785
30786
30787 \backslash
30788 makeatother
30789 \end_layout
30790
30791 \end_inset
30792
30793
30794 \end_layout
30795
30796 \begin_layout Subsection
30797 Numbering with Roman Numbers and Letters
30798 \begin_inset Index
30799 status collapsed
30800
30801 \begin_layout Plain Layout
30802 Formula numbering ! with letters
30803 \end_layout
30804
30805 \end_inset
30806
30807
30808 \begin_inset Index
30809 status collapsed
30810
30811 \begin_layout Plain Layout
30812 Formula numbering ! with Roman numbers
30813 \end_layout
30814
30815 \end_inset
30816
30817
30818 \end_layout
30819
30820 \begin_layout Standard
30821 Formulas can also be numbered with Roman numbers and Latin letters.
30822  To number for example with small Roman numbers, the command
30823 \end_layout
30824
30825 \begin_layout Standard
30826
30827 \series bold
30828
30829 \backslash
30830 renewcommand{
30831 \backslash
30832 theequation}{
30833 \backslash
30834 roman{equation}}
30835 \end_layout
30836
30837 \begin_layout Standard
30838 is inserted before the formula in TeX-mode.
30839  
30840 \series bold
30841
30842 \backslash
30843 renewcommand
30844 \series default
30845
30846 \begin_inset Index
30847 status collapsed
30848
30849 \begin_layout Plain Layout
30850 Commands ! R ! 
30851 \backslash
30852 renewcommand
30853 \end_layout
30854
30855 \end_inset
30856
30857  redefines the predefined command 
30858 \series bold
30859
30860 \backslash
30861 theequation
30862 \series default
30863  to the command 
30864 \series bold
30865
30866 \backslash
30867 roman{equation}
30868 \series default
30869 .
30870 \begin_inset Foot
30871 status collapsed
30872
30873 \begin_layout Plain Layout
30874 The command 
30875 \series bold
30876
30877 \backslash
30878 renewcommand
30879 \series default
30880  has the same scheme like the command 
30881 \series bold
30882
30883 \backslash
30884 newcommand
30885 \series default
30886  that is described in 
30887 \begin_inset CommandInset ref
30888 LatexCommand ref
30889 reference "sub:The-Command-newcommand"
30890
30891 \end_inset
30892
30893 .
30894 \end_layout
30895
30896 \end_inset
30897
30898  
30899 \series bold
30900 equation
30901 \series default
30902  is the formula counter.
30903  When the command 
30904 \series bold
30905
30906 \backslash
30907 the
30908 \series default
30909  is used as prefix for a counter, the value of the counter is output as
30910  Arabic number.
30911  When a formula is numbered, LaTeX sets internally the command 
30912 \series bold
30913
30914 \backslash
30915 theequation
30916 \series default
30917  behind the formula.
30918  
30919 \series bold
30920
30921 \backslash
30922 roman{equation}
30923 \begin_inset Index
30924 status collapsed
30925
30926 \begin_layout Plain Layout
30927 Commands ! R ! 
30928 \backslash
30929 roman
30930 \end_layout
30931
30932 \end_inset
30933
30934
30935 \series default
30936  outputs the counter as small Roman number.
30937 \end_layout
30938
30939 \begin_layout Standard
30940 All formulas behind the command 
30941 \series bold
30942
30943 \backslash
30944 renew
30945 \series default
30946 c
30947 \series bold
30948 ommand
30949 \series default
30950  are now numbered Roman.
30951  To switch to numbering with big Roman numbers, the command is inserted
30952  again, but 
30953 \series bold
30954
30955 \backslash
30956 roman
30957 \series default
30958  is replaced by 
30959 \series bold
30960
30961 \backslash
30962 Roman
30963 \series default
30964
30965 \begin_inset Index
30966 status collapsed
30967
30968 \begin_layout Plain Layout
30969 Commands ! R ! 
30970 \backslash
30971 roman@
30972 \backslash
30973 Roman
30974 \end_layout
30975
30976 \end_inset
30977
30978 .
30979  To 
30980 \begin_inset Quotes eld
30981 \end_inset
30982
30983 number
30984 \begin_inset Quotes erd
30985 \end_inset
30986
30987  with small Latin letters there is the command 
30988 \series bold
30989
30990 \backslash
30991 alph
30992 \series default
30993
30994 \begin_inset Index
30995 status collapsed
30996
30997 \begin_layout Plain Layout
30998 Commands ! A ! 
30999 \backslash
31000 alph
31001 \end_layout
31002
31003 \end_inset
31004
31005 , for big ones there is the command 
31006 \series bold
31007
31008 \backslash
31009 Alph
31010 \series default
31011
31012 \begin_inset Index
31013 status collapsed
31014
31015 \begin_layout Plain Layout
31016 Commands ! A ! 
31017 \backslash
31018 alph@
31019 \backslash
31020 Alph
31021 \end_layout
31022
31023 \end_inset
31024
31025 .
31026 \end_layout
31027
31028 \begin_layout Standard
31029 \begin_inset Note Greyedout
31030 status open
31031
31032 \begin_layout Plain Layout
31033
31034 \series bold
31035 Note:
31036 \series default
31037  Only maximal 26 formulas can be numbered with Latin letters in one document.
31038 \end_layout
31039
31040 \end_inset
31041
31042
31043 \end_layout
31044
31045 \begin_layout Standard
31046 \begin_inset ERT
31047 status collapsed
31048
31049 \begin_layout Plain Layout
31050
31051
31052 \backslash
31053 renewcommand{
31054 \backslash
31055 theequation}{
31056 \backslash
31057 roman{equation}}
31058 \end_layout
31059
31060 \end_inset
31061
31062
31063 \end_layout
31064
31065 \begin_layout Standard
31066 \begin_inset Formula \begin{equation}
31067 A=\textrm{small roman}\end{equation}
31068
31069 \end_inset
31070
31071
31072 \begin_inset ERT
31073 status collapsed
31074
31075 \begin_layout Plain Layout
31076
31077
31078 \backslash
31079 renewcommand{
31080 \backslash
31081 theequation}{
31082 \backslash
31083 Roman{equation}}
31084 \end_layout
31085
31086 \end_inset
31087
31088
31089 \begin_inset Formula \begin{equation}
31090 B=\textrm{big Roman}\label{eq:Rom}\end{equation}
31091
31092 \end_inset
31093
31094
31095 \begin_inset ERT
31096 status collapsed
31097
31098 \begin_layout Plain Layout
31099
31100
31101 \backslash
31102 renewcommand{
31103 \backslash
31104 theequation}{
31105 \backslash
31106 alph{equation}}
31107 \end_layout
31108
31109 \end_inset
31110
31111
31112 \begin_inset Formula \begin{equation}
31113 C=\textrm{small Latin}\end{equation}
31114
31115 \end_inset
31116
31117
31118 \begin_inset ERT
31119 status collapsed
31120
31121 \begin_layout Plain Layout
31122
31123
31124 \backslash
31125 renewcommand{
31126 \backslash
31127 theequation}{
31128 \backslash
31129 Alph{equation}}
31130 \end_layout
31131
31132 \end_inset
31133
31134
31135 \begin_inset Formula \begin{equation}
31136 D=\textrm{big Latin}\label{eq:Lat}\end{equation}
31137
31138 \end_inset
31139
31140
31141 \end_layout
31142
31143 \begin_layout Standard
31144 To switch back to the default numbering, insert the command:
31145 \end_layout
31146
31147 \begin_layout Standard
31148
31149 \series bold
31150
31151 \backslash
31152 renewcommand{
31153 \backslash
31154 theequation}{
31155 \backslash
31156 arabic{equation}}
31157 \begin_inset Index
31158 status collapsed
31159
31160 \begin_layout Plain Layout
31161 Commands ! A ! 
31162 \backslash
31163 arabic
31164 \end_layout
31165
31166 \end_inset
31167
31168
31169 \end_layout
31170
31171 \begin_layout Standard
31172 \begin_inset ERT
31173 status collapsed
31174
31175 \begin_layout Plain Layout
31176
31177
31178 \backslash
31179 renewcommand{
31180 \backslash
31181 theequation}{
31182 \backslash
31183 arabic{equation}}
31184 \end_layout
31185
31186 \end_inset
31187
31188
31189 \begin_inset Formula \begin{equation}
31190 E=\textrm{Arabic}\end{equation}
31191
31192 \end_inset
31193
31194
31195 \end_layout
31196
31197 \begin_layout Standard
31198 \begin_inset VSpace medskip
31199 \end_inset
31200
31201 As you see, formulas are numbered serially independent from the numbering
31202  style.
31203  When then numbering should start with 
31204 \begin_inset Quotes eld
31205 \end_inset
31206
31207 1
31208 \begin_inset Quotes erd
31209 \end_inset
31210
31211  when the style is changed, new equation counters have to be defined.
31212  A description about this can be found in the file 
31213 \begin_inset CommandInset href
31214 LatexCommand href
31215 name "Formula-numbering.lyx"
31216 target "run:Formula-numbering.lyx"
31217
31218 \end_inset
31219
31220 .
31221 \end_layout
31222
31223 \begin_layout Section
31224 Chemical Symbols and Equations
31225 \begin_inset CommandInset label
31226 LatexCommand label
31227 name "sub:Chemical-Symbols-and"
31228
31229 \end_inset
31230
31231
31232 \begin_inset Index
31233 status collapsed
31234
31235 \begin_layout Plain Layout
31236 Chemical characters ! Symbols
31237 \end_layout
31238
31239 \end_inset
31240
31241
31242 \begin_inset Index
31243 status collapsed
31244
31245 \begin_layout Plain Layout
31246 Chemical equations
31247 \end_layout
31248
31249 \end_inset
31250
31251
31252 \begin_inset Index
31253 status collapsed
31254
31255 \begin_layout Plain Layout
31256 Symbols ! chemical
31257 \end_layout
31258
31259 \end_inset
31260
31261
31262 \end_layout
31263
31264 \begin_layout Standard
31265 An example text from chemistry:
31266 \end_layout
31267
31268 \begin_layout Quote
31269 The 
31270 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31271 \end_inset
31272
31273 -ion reacts with two 
31274 \begin_inset Formula $\mathrm{Na^{+}}$
31275 \end_inset
31276
31277 -ions to sodium sulfate 
31278 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31279 \end_inset
31280
31281 .
31282  The chemical equation for this is:
31283 \begin_inset Formula \begin{equation}
31284 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chem-reaction}\end{equation}
31285
31286 \end_inset
31287
31288
31289 \end_layout
31290
31291 \begin_layout Standard
31292 This chemical equation can directly be created as formula.
31293  To avoid that the symbols appear italic, everything is highlighted and
31294  changed by the shortcut 
31295 \begin_inset Info
31296 type  "shortcut"
31297 arg   "font-roman"
31298 \end_inset
31299
31300  to the upright font style.
31301 \begin_inset Foot
31302 status collapsed
31303
31304 \begin_layout Plain Layout
31305 font styles
31306 \series bold
31307  
31308 \series default
31309 see 
31310 \begin_inset CommandInset ref
31311 LatexCommand ref
31312 reference "sub:Font-Styles"
31313
31314 \end_inset
31315
31316
31317 \end_layout
31318
31319 \end_inset
31320
31321
31322 \end_layout
31323
31324 \begin_layout Standard
31325 A more convenient way to typeset chemical formulas is to use the command
31326  
31327 \series bold
31328
31329 \backslash
31330 ce
31331 \series default
31332
31333 \begin_inset Index
31334 status collapsed
31335
31336 \begin_layout Plain Layout
31337 Commands ! C ! 
31338 \backslash
31339 ce
31340 \end_layout
31341
31342 \end_inset
31343
31344  that is available when the LaTeX-package 
31345 \series bold
31346 mhchem
31347 \series default
31348
31349 \begin_inset Index
31350 status collapsed
31351
31352 \begin_layout Plain Layout
31353 Packages ! mhchem
31354 \end_layout
31355
31356 \end_inset
31357
31358  is installed.
31359  After inserting 
31360 \series bold
31361
31362 \backslash
31363 ce
31364 \series default
31365  to a formula a new blue box appears where chemical formulas can be inserted
31366  in an intuitive way.
31367 \end_layout
31368
31369 \begin_layout Standard
31370 \align center
31371 \begin_inset Tabular
31372 <lyxtabular version="3" rows="9" columns="2">
31373 <features>
31374 <column alignment="center" valignment="top" width="0">
31375 <column alignment="center" valignment="top" width="0">
31376 <row>
31377 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31378 \begin_inset Text
31379
31380 \begin_layout Plain Layout
31381 Command
31382 \end_layout
31383
31384 \end_inset
31385 </cell>
31386 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31387 \begin_inset Text
31388
31389 \begin_layout Plain Layout
31390 Result
31391 \begin_inset Note Note
31392 status collapsed
31393
31394 \begin_layout Plain Layout
31395
31396 \series bold
31397
31398 \backslash
31399 raisebox
31400 \series default
31401  is only used as spacer.
31402 \end_layout
31403
31404 \end_inset
31405
31406
31407 \end_layout
31408
31409 \end_inset
31410 </cell>
31411 </row>
31412 <row>
31413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31414 \begin_inset Text
31415
31416 \begin_layout Plain Layout
31417
31418 \backslash
31419 ce
31420 \begin_inset ERT
31421 status collapsed
31422
31423 \begin_layout Plain Layout
31424
31425
31426 \backslash
31427 spce 
31428 \end_layout
31429
31430 \end_inset
31431
31432 H2CO3
31433 \end_layout
31434
31435 \end_inset
31436 </cell>
31437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31438 \begin_inset Text
31439
31440 \begin_layout Plain Layout
31441 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31442 \end_inset
31443
31444
31445 \end_layout
31446
31447 \end_inset
31448 </cell>
31449 </row>
31450 <row>
31451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31452 \begin_inset Text
31453
31454 \begin_layout Plain Layout
31455
31456 \backslash
31457 ce
31458 \begin_inset ERT
31459 status collapsed
31460
31461 \begin_layout Plain Layout
31462
31463
31464 \backslash
31465 spce 
31466 \end_layout
31467
31468 \end_inset
31469
31470 SO4^2-
31471 \end_layout
31472
31473 \end_inset
31474 </cell>
31475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31476 \begin_inset Text
31477
31478 \begin_layout Plain Layout
31479 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
31480 \end_inset
31481
31482
31483 \end_layout
31484
31485 \end_inset
31486 </cell>
31487 </row>
31488 <row>
31489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31490 \begin_inset Text
31491
31492 \begin_layout Plain Layout
31493
31494 \backslash
31495 ce
31496 \begin_inset ERT
31497 status collapsed
31498
31499 \begin_layout Plain Layout
31500
31501
31502 \backslash
31503 spce 
31504 \end_layout
31505
31506 \end_inset
31507
31508 (NH4)2S
31509 \end_layout
31510
31511 \end_inset
31512 </cell>
31513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31514 \begin_inset Text
31515
31516 \begin_layout Plain Layout
31517 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
31518 \end_inset
31519
31520
31521 \end_layout
31522
31523 \end_inset
31524 </cell>
31525 </row>
31526 <row>
31527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31528 \begin_inset Text
31529
31530 \begin_layout Plain Layout
31531
31532 \backslash
31533 ce
31534 \begin_inset ERT
31535 status collapsed
31536
31537 \begin_layout Plain Layout
31538
31539
31540 \backslash
31541 spce 
31542 \end_layout
31543
31544 \end_inset
31545
31546 KCr(SO4)2.12H2O
31547 \end_layout
31548
31549 \end_inset
31550 </cell>
31551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31552 \begin_inset Text
31553
31554 \begin_layout Plain Layout
31555 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
31556 \end_inset
31557
31558
31559 \end_layout
31560
31561 \end_inset
31562 </cell>
31563 </row>
31564 <row>
31565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31566 \begin_inset Text
31567
31568 \begin_layout Plain Layout
31569
31570 \backslash
31571 ce
31572 \begin_inset ERT
31573 status collapsed
31574
31575 \begin_layout Plain Layout
31576
31577
31578 \backslash
31579 spce 
31580 \end_layout
31581
31582 \end_inset
31583
31584 A-B
31585 \backslash
31586 dbond
31587 \begin_inset ERT
31588 status collapsed
31589
31590 \begin_layout Plain Layout
31591
31592
31593 \backslash
31594 spce 
31595 \end_layout
31596
31597 \end_inset
31598
31599 C
31600 \backslash
31601 tbond
31602 \begin_inset ERT
31603 status collapsed
31604
31605 \begin_layout Plain Layout
31606
31607
31608 \backslash
31609 spce 
31610 \end_layout
31611
31612 \end_inset
31613
31614 D
31615 \end_layout
31616
31617 \end_inset
31618 </cell>
31619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31620 \begin_inset Text
31621
31622 \begin_layout Plain Layout
31623 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
31624 \end_inset
31625
31626
31627 \end_layout
31628
31629 \end_inset
31630 </cell>
31631 </row>
31632 <row>
31633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31634 \begin_inset Text
31635
31636 \begin_layout Plain Layout
31637
31638 \backslash
31639 ce
31640 \begin_inset ERT
31641 status collapsed
31642
31643 \begin_layout Plain Layout
31644
31645
31646 \backslash
31647 spce 
31648 \end_layout
31649
31650 \end_inset
31651
31652 ^227
31653 \begin_inset Formula $\downarrow$
31654 \end_inset
31655
31656 _90
31657 \begin_inset Formula $\to$
31658 \end_inset
31659
31660 Th+
31661 \end_layout
31662
31663 \end_inset
31664 </cell>
31665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31666 \begin_inset Text
31667
31668 \begin_layout Plain Layout
31669 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
31670 \end_inset
31671
31672
31673 \end_layout
31674
31675 \end_inset
31676 </cell>
31677 </row>
31678 <row>
31679 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31680 \begin_inset Text
31681
31682 \begin_layout Plain Layout
31683
31684 \backslash
31685 ce
31686 \begin_inset ERT
31687 status collapsed
31688
31689 \begin_layout Plain Layout
31690
31691
31692 \backslash
31693 spce 
31694 \end_layout
31695
31696 \end_inset
31697
31698 CO2
31699 \begin_inset ERT
31700 status collapsed
31701
31702 \begin_layout Plain Layout
31703
31704
31705 \backslash
31706 spce 
31707 \end_layout
31708
31709 \end_inset
31710
31711 +
31712 \begin_inset ERT
31713 status collapsed
31714
31715 \begin_layout Plain Layout
31716
31717
31718 \backslash
31719 spce 
31720 \end_layout
31721
31722 \end_inset
31723
31724 C
31725 \begin_inset ERT
31726 status collapsed
31727
31728 \begin_layout Plain Layout
31729
31730
31731 \backslash
31732 spce 
31733 \end_layout
31734
31735 \end_inset
31736
31737 <=>
31738 \begin_inset ERT
31739 status collapsed
31740
31741 \begin_layout Plain Layout
31742
31743
31744 \backslash
31745 spce 
31746 \end_layout
31747
31748 \end_inset
31749
31750 2CO
31751 \end_layout
31752
31753 \end_inset
31754 </cell>
31755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31756 \begin_inset Text
31757
31758 \begin_layout Plain Layout
31759 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
31760 \end_inset
31761
31762
31763 \end_layout
31764
31765 \end_inset
31766 </cell>
31767 </row>
31768 <row>
31769 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31770 \begin_inset Text
31771
31772 \begin_layout Plain Layout
31773
31774 \backslash
31775 ce
31776 \begin_inset ERT
31777 status collapsed
31778
31779 \begin_layout Plain Layout
31780
31781
31782 \backslash
31783 spce 
31784 \end_layout
31785
31786 \end_inset
31787
31788 CO2
31789 \begin_inset ERT
31790 status collapsed
31791
31792 \begin_layout Plain Layout
31793
31794
31795 \backslash
31796 spce 
31797 \end_layout
31798
31799 \end_inset
31800
31801 +
31802 \begin_inset ERT
31803 status collapsed
31804
31805 \begin_layout Plain Layout
31806
31807
31808 \backslash
31809 spce 
31810 \end_layout
31811
31812 \end_inset
31813
31814 C
31815 \begin_inset ERT
31816 status collapsed
31817
31818 \begin_layout Plain Layout
31819
31820
31821 \backslash
31822 spce 
31823 \end_layout
31824
31825 \end_inset
31826
31827 ->[
31828 \backslash
31829 alpha][
31830 \backslash
31831 beta]
31832 \begin_inset ERT
31833 status collapsed
31834
31835 \begin_layout Plain Layout
31836
31837
31838 \backslash
31839 spce 
31840 \end_layout
31841
31842 \end_inset
31843
31844 2CO}
31845 \end_layout
31846
31847 \end_inset
31848 </cell>
31849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31850 \begin_inset Text
31851
31852 \begin_layout Plain Layout
31853 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
31854 \end_inset
31855
31856
31857 \end_layout
31858
31859 \end_inset
31860 </cell>
31861 </row>
31862 </lyxtabular>
31863
31864 \end_inset
31865
31866
31867 \end_layout
31868
31869 \begin_layout Standard
31870 \begin_inset Note Greyedout
31871 status open
31872
31873 \begin_layout Plain Layout
31874
31875 \series bold
31876 Note:
31877 \series default
31878  Inserting a formula to a 
31879 \series bold
31880
31881 \backslash
31882 ce
31883 \series default
31884  box will lead to LaTeX errors.
31885  In this case TeX code has to be used like for 
31886 \series bold
31887
31888 \backslash
31889 ce{$
31890 \backslash
31891 mu
31892 \backslash
31893 hyphen$Cl}
31894 \series default
31895
31896 \begin_inset ERT
31897 status collapsed
31898
31899 \begin_layout Plain Layout
31900
31901
31902 \backslash
31903 ce{$
31904 \backslash
31905 mu
31906 \backslash
31907 hyphen$Cl}
31908 \end_layout
31909
31910 \end_inset
31911
31912  
31913 \end_layout
31914
31915 \end_inset
31916
31917
31918 \end_layout
31919
31920 \begin_layout Standard
31921 Using 
31922 \series bold
31923
31924 \backslash
31925 ce
31926 \series default
31927  the command for equation
31928 \begin_inset space ~
31929 \end_inset
31930
31931
31932 \begin_inset CommandInset ref
31933 LatexCommand eqref
31934 reference "eq:chem-reaction"
31935
31936 \end_inset
31937
31938  is:
31939 \begin_inset Newline newline
31940 \end_inset
31941
31942
31943 \series bold
31944  
31945 \backslash
31946 ce
31947 \begin_inset ERT
31948 status collapsed
31949
31950 \begin_layout Plain Layout
31951
31952
31953 \backslash
31954 spce 
31955 \end_layout
31956
31957 \end_inset
31958
31959 2Na+
31960 \begin_inset ERT
31961 status collapsed
31962
31963 \begin_layout Plain Layout
31964
31965
31966 \backslash
31967 spce 
31968 \end_layout
31969
31970 \end_inset
31971
31972 +
31973 \begin_inset ERT
31974 status collapsed
31975
31976 \begin_layout Plain Layout
31977
31978
31979 \backslash
31980 spce 
31981 \end_layout
31982
31983 \end_inset
31984
31985 SO4^2-
31986 \begin_inset ERT
31987 status collapsed
31988
31989 \begin_layout Plain Layout
31990
31991
31992 \backslash
31993 spce 
31994 \end_layout
31995
31996 \end_inset
31997
31998
31999 \begin_inset ERT
32000 status collapsed
32001
32002 \begin_layout Plain Layout
32003
32004
32005 \backslash
32006 spce 
32007 \end_layout
32008
32009 \end_inset
32010
32011 ->
32012 \begin_inset ERT
32013 status collapsed
32014
32015 \begin_layout Plain Layout
32016
32017
32018 \backslash
32019 spce 
32020 \end_layout
32021
32022 \end_inset
32023
32024 Na2SO4
32025 \end_layout
32026
32027 \begin_layout Standard
32028 To create multiline chemical equations first a multiline formula is created
32029  as described in 
32030 \begin_inset CommandInset ref
32031 LatexCommand ref
32032 reference "sec:Multiline-Formulas"
32033
32034 \end_inset
32035
32036 .
32037  Afterwards the command 
32038 \series bold
32039
32040 \backslash
32041 ce
32042 \series default
32043  is used in every small blue box of the formula.
32044  
32045 \begin_inset CommandInset ref
32046 LatexCommand eqref
32047 reference "eq:TEOS-reaction-1"
32048
32049 \end_inset
32050
32051  and 
32052 \begin_inset CommandInset ref
32053 LatexCommand eqref
32054 reference "eq:TEOS-reaction-2"
32055
32056 \end_inset
32057
32058  are an example of a multi-stage chemical reaction where every equation
32059  has its own number.
32060 \begin_inset Formula \begin{eqnarray}
32061 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-reaction-1}\\
32062 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-reaction-2}\end{eqnarray}
32063
32064 \end_inset
32065
32066
32067 \end_layout
32068
32069 \begin_layout Standard
32070 Besides 
32071 \series bold
32072
32073 \backslash
32074 ce
32075 \series default
32076  the 
32077 \series bold
32078 mhchem
32079 \series default
32080  package provides the command 
32081 \series bold
32082
32083 \backslash
32084 cf
32085 \series default
32086
32087 \begin_inset Index
32088 status collapsed
32089
32090 \begin_layout Plain Layout
32091 Commands ! C ! 
32092 \backslash
32093 cf
32094 \end_layout
32095
32096 \end_inset
32097
32098  that has to be used for special cases.
32099  For more information about 
32100 \series bold
32101
32102 \backslash
32103 cf
32104 \series default
32105  and more examples have a look at the documentation of 
32106 \series bold
32107 mhchem
32108 \series default
32109
32110 \begin_inset CommandInset citation
32111 LatexCommand cite
32112 key "mhchem"
32113
32114 \end_inset
32115
32116 .
32117 \end_layout
32118
32119 \begin_layout Standard
32120 \begin_inset Newpage newpage
32121 \end_inset
32122
32123
32124 \end_layout
32125
32126 \begin_layout Section
32127 Diagrams
32128 \end_layout
32129
32130 \begin_layout Standard
32131 LyX supports two types of commutative diagrams: 
32132 \series bold
32133 amscd
32134 \series default
32135  and 
32136 \series bold
32137 xymatrix
32138 \series default
32139  that are explained in the following.
32140 \end_layout
32141
32142 \begin_layout Subsection
32143 Amscd Diagrams
32144 \begin_inset Index
32145 status collapsed
32146
32147 \begin_layout Plain Layout
32148 Diagrams ! amscd
32149 \end_layout
32150
32151 \end_inset
32152
32153
32154 \end_layout
32155
32156 \begin_layout Standard
32157 Diagrams of this type visualize relations by vertical and horizontal lines
32158  or arrows:
32159 \begin_inset Formula \[
32160 \begin{CD}A@>>>B@>>>C\\
32161 @AAA@.@VVV\\
32162 F@<<<E@<<<D\end{CD}\]
32163
32164 \end_inset
32165
32166
32167 \end_layout
32168
32169 \begin_layout Standard
32170 To get them, the command 
32171 \series bold
32172
32173 \backslash
32174 CD
32175 \begin_inset Index
32176 status collapsed
32177
32178 \begin_layout Plain Layout
32179 Commands ! C ! 
32180 \backslash
32181 CD
32182 \end_layout
32183
32184 \end_inset
32185
32186
32187 \series default
32188  is inserted to a formula.
32189  A blue box appears with two dashed lines where further commands can be
32190  inserted.
32191  With 
32192 \begin_inset Info
32193 type  "shortcut"
32194 arg   "newline-insert newline"
32195 \end_inset
32196
32197  a new line is created.
32198  Horizontal relations are inserted in odd, vertical in even formula lines.
32199 \end_layout
32200
32201 \begin_layout Standard
32202 To create the relations there are the following commands:
32203 \end_layout
32204
32205 \begin_layout Itemize
32206
32207 \series bold
32208 @<<<
32209 \series default
32210  creates a left arrow, 
32211 \series bold
32212 @>>>
32213 \series default
32214  a right arrow and 
32215 \series bold
32216 @=
32217 \series default
32218  a long equal sign
32219 \end_layout
32220
32221 \begin_layout Itemize
32222
32223 \series bold
32224 @AAA
32225 \series default
32226  creates an up arrow, 
32227 \series bold
32228 @VVV
32229 \series default
32230  an down arrow and 
32231 \series bold
32232 @|
32233 \series default
32234  a vertical equal sign
32235 \end_layout
32236
32237 \begin_layout Itemize
32238
32239 \series bold
32240 @.
32241
32242 \series default
32243  is a placeholder for non-existent relations
32244 \end_layout
32245
32246 \begin_layout Standard
32247 All arrows can be labeled as follows:
32248 \end_layout
32249
32250 \begin_layout Itemize
32251 Is text inserted between the first and second < or >, resp., it is placed
32252  above the arrow.
32253  When it is inserted between the second and third one, it appears under
32254  the arrow.
32255 \end_layout
32256
32257 \begin_layout Itemize
32258 When text for vertical arrows is inserted between the first and second A
32259  or V, resp., it is placed left beside the arrow.
32260  When it is inserted between the second and third one, it appears right
32261  beside the arrow.
32262  If the text contains an A or V, these letters must be set into a TeX-brace.
32263 \end_layout
32264
32265 \begin_layout Standard
32266 As example a diagram with all possible relations:
32267 \end_layout
32268
32269 \begin_layout Standard
32270 \begin_inset Formula \[
32271 \begin{CD}A@>j>>B@>>k>C@=F\\
32272 @AmAA@.@VV{V}V@|\\
32273 D@<<j<E@>k>>F@=C\end{CD}\]
32274
32275 \end_inset
32276
32277
32278 \end_layout
32279
32280 \begin_layout Standard
32281 The command for this is:
32282 \begin_inset Newline newline
32283 \end_inset
32284
32285
32286 \series bold
32287
32288 \backslash
32289 CD
32290 \begin_inset ERT
32291 status collapsed
32292
32293 \begin_layout Plain Layout
32294
32295
32296 \backslash
32297 spce 
32298 \end_layout
32299
32300 \end_inset
32301
32302 A@>j>>B@>>k>C@=F Ctrl+Return
32303 \begin_inset Newline newline
32304 \end_inset
32305
32306
32307 \begin_inset ERT
32308 status collapsed
32309
32310 \begin_layout Plain Layout
32311
32312
32313 \backslash
32314 hphantom{
32315 \end_layout
32316
32317 \end_inset
32318
32319
32320 \backslash
32321 CD
32322 \begin_inset ERT
32323 status collapsed
32324
32325 \begin_layout Plain Layout
32326
32327
32328 \backslash
32329 spce 
32330 \end_layout
32331
32332 \end_inset
32333
32334
32335 \begin_inset ERT
32336 status collapsed
32337
32338 \begin_layout Plain Layout
32339
32340 }
32341 \end_layout
32342
32343 \end_inset
32344
32345 @AmAA@.@VV
32346 \backslash
32347 {V
32348 \series default
32349
32350 \begin_inset Formula $\to$
32351 \end_inset
32352
32353
32354 \series bold
32355 V@| Ctrl+Return
32356 \begin_inset Newline newline
32357 \end_inset
32358
32359
32360 \begin_inset ERT
32361 status collapsed
32362
32363 \begin_layout Plain Layout
32364
32365
32366 \backslash
32367 hphantom{
32368 \end_layout
32369
32370 \end_inset
32371
32372
32373 \backslash
32374 CD
32375 \begin_inset ERT
32376 status collapsed
32377
32378 \begin_layout Plain Layout
32379
32380
32381 \backslash
32382 spce 
32383 \end_layout
32384
32385 \end_inset
32386
32387
32388 \begin_inset ERT
32389 status collapsed
32390
32391 \begin_layout Plain Layout
32392
32393 }
32394 \end_layout
32395
32396 \end_inset
32397
32398 D@<<j<E@>k>>F@=C
32399 \end_layout
32400
32401 \begin_layout Subsection
32402 Xymatrix Diagrams
32403 \begin_inset Index
32404 status collapsed
32405
32406 \begin_layout Plain Layout
32407 Diagrams ! xymatrix
32408 \end_layout
32409
32410 \end_inset
32411
32412
32413 \end_layout
32414
32415 \begin_layout Standard
32416 To be able to use xymatrices, the LaTeX-package 
32417 \series bold
32418 xypic
32419 \series default
32420  must be installed.
32421  A xymatrix is created by inserting the command 
32422 \series bold
32423
32424 \backslash
32425 xymatrix
32426 \series default
32427  in a formula.
32428  Then you are able to add new matrix columns and rows like for normal matrices,
32429  see 
32430 \begin_inset CommandInset ref
32431 LatexCommand ref
32432 reference "sec:Matrices"
32433
32434 \end_inset
32435
32436 .
32437 \end_layout
32438
32439 \begin_layout Standard
32440 In contrary to amscd diagrams, xymatrices supports diagonal and curved arrows,
32441  and much more.
32442  All possibilities to create commutative diagrams and decorations are explained
32443  in detail in the 
32444 \emph on
32445 XY-pic manual
32446 \emph default
32447  that you find in the menu 
32448 \family sans
32449 Help\SpecialChar \menuseparator
32450 Specific
32451 \begin_inset space ~
32452 \end_inset
32453
32454 Manuals\SpecialChar \menuseparator
32455 XY-pic
32456 \begin_inset space ~
32457 \end_inset
32458
32459 Manual
32460 \family default
32461 .
32462 \end_layout
32463
32464 \begin_layout Section
32465 User-defined Commands
32466 \begin_inset Index
32467 status collapsed
32468
32469 \begin_layout Plain Layout
32470 User-defined commands
32471 \end_layout
32472
32473 \end_inset
32474
32475
32476 \end_layout
32477
32478 \begin_layout Standard
32479 \begin_inset Note Greyedout
32480 status open
32481
32482 \begin_layout Plain Layout
32483
32484 \series bold
32485 Note:
32486 \series default
32487  The names of user-defined commands and macros may only consist of Latin
32488  letters.
32489 \end_layout
32490
32491 \end_inset
32492
32493
32494 \end_layout
32495
32496 \begin_layout Subsection
32497 The Command 
32498 \backslash
32499 newcommand
32500 \begin_inset CommandInset label
32501 LatexCommand label
32502 name "sub:The-Command-newcommand"
32503
32504 \end_inset
32505
32506
32507 \begin_inset Index
32508 status collapsed
32509
32510 \begin_layout Plain Layout
32511 User-defined commands ! 
32512 \backslash
32513 newcommand
32514 \end_layout
32515
32516 \end_inset
32517
32518
32519 \begin_inset Index
32520 status collapsed
32521
32522 \begin_layout Plain Layout
32523 Commands ! N ! 
32524 \backslash
32525 newcommand
32526 \end_layout
32527
32528 \end_inset
32529
32530
32531 \end_layout
32532
32533 \begin_layout Standard
32534 Many LaTeX-commands are too long to be used frequently.
32535  But it is possible to define with the command 
32536 \series bold
32537
32538 \backslash
32539 newcommand
32540 \series default
32541  new shorter commands.
32542 \end_layout
32543
32544 \begin_layout Standard
32545 The command scheme of 
32546 \series bold
32547
32548 \backslash
32549 newcommand
32550 \series default
32551  is:
32552 \end_layout
32553
32554 \begin_layout Standard
32555
32556 \series bold
32557
32558 \backslash
32559 newcommand{new command name}[number of arguments][optional
32560 \series default
32561  
32562 \series bold
32563 value]
32564 \begin_inset Newline newline
32565 \end_inset
32566
32567
32568 \begin_inset ERT
32569 status collapsed
32570
32571 \begin_layout Plain Layout
32572
32573
32574 \backslash
32575 phantom{
32576 \end_layout
32577
32578 \end_inset
32579
32580
32581 \backslash
32582 newcommand
32583 \begin_inset ERT
32584 status collapsed
32585
32586 \begin_layout Plain Layout
32587
32588 }
32589 \end_layout
32590
32591 \end_inset
32592
32593 {command definition}
32594 \end_layout
32595
32596 \begin_layout Standard
32597 \begin_inset Note Greyedout
32598 status open
32599
32600 \begin_layout Plain Layout
32601
32602 \series bold
32603 Note:
32604 \series default
32605  Assure that the name of the new command is not already used in your document
32606  or by LaTeX-packages that you use.
32607  When you for example define the command 
32608 \series bold
32609
32610 \backslash
32611 le
32612 \series default
32613  for 
32614 \series bold
32615
32616 \backslash
32617 Leftarrow
32618 \series default
32619 , you get an error message because 
32620 \series bold
32621
32622 \backslash
32623 le
32624 \series default
32625  is already defined as command for 
32626 \begin_inset Quotes eld
32627 \end_inset
32628
32629
32630 \begin_inset Formula $\le$
32631 \end_inset
32632
32633
32634 \begin_inset Quotes erd
32635 \end_inset
32636
32637 .
32638 \end_layout
32639
32640 \end_inset
32641
32642
32643 \end_layout
32644
32645 \begin_layout Standard
32646 The number of arguments is an integer in the range 0
32647 \begin_inset space \thinspace{}
32648 \end_inset
32649
32650 -
32651 \begin_inset space \thinspace{}
32652 \end_inset
32653
32654 9 and specifies how many arguments the new command should have.
32655  With the optional value a value for an optional argument can be predefined.
32656  When this is done, the 
32657 \emph on
32658 first
32659 \emph default
32660  
32661 \emph on
32662 a
32663 \emph default
32664 rgument of the new command is automatically an optional one.
32665 \end_layout
32666
32667 \begin_layout Standard
32668 Here are some examples:
32669 \end_layout
32670
32671 \begin_layout Itemize
32672 To define the command 
32673 \series bold
32674
32675 \backslash
32676 gr
32677 \series default
32678  for 
32679 \series bold
32680
32681 \backslash
32682 Longrightarrow
32683 \series default
32684 , the LaTeX-preamble line is:
32685 \begin_inset VSpace medskip
32686 \end_inset
32687
32688
32689 \begin_inset Newline newline
32690 \end_inset
32691
32692
32693 \series bold
32694
32695 \backslash
32696 newcommand{
32697 \backslash
32698 gr}{
32699 \backslash
32700 Longrightarrow}
32701 \end_layout
32702
32703 \begin_layout Itemize
32704 To define the command 
32705 \series bold
32706
32707 \backslash
32708 us
32709 \series default
32710  for 
32711 \series bold
32712
32713 \backslash
32714 underline
32715 \series default
32716 , the argument (that should be underlined) must be taken into account.
32717  For this the preamble line is:
32718 \begin_inset VSpace medskip
32719 \end_inset
32720
32721
32722 \begin_inset Newline newline
32723 \end_inset
32724
32725
32726 \series bold
32727
32728 \backslash
32729 newcommand{
32730 \backslash
32731 us}[1]{
32732 \backslash
32733 underline{#1}}
32734 \series default
32735
32736 \begin_inset VSpace medskip
32737 \end_inset
32738
32739
32740 \begin_inset Newline newline
32741 \end_inset
32742
32743 The character 
32744 \series bold
32745 #
32746 \series default
32747  acts as argument placeholder, the 
32748 \series bold
32749 1
32750 \series default
32751  behind it denotes that it is the placeholder for the first argument.
32752 \end_layout
32753
32754 \begin_layout Itemize
32755 For 
32756 \series bold
32757
32758 \backslash
32759 framebox
32760 \series default
32761  one can e.
32762 \begin_inset space \thinspace{}
32763 \end_inset
32764
32765 g.
32766 \begin_inset space \space{}
32767 \end_inset
32768
32769 define the command 
32770 \series bold
32771
32772 \backslash
32773 fb
32774 \series default
32775 :
32776 \begin_inset VSpace medskip
32777 \end_inset
32778
32779
32780 \begin_inset Newline newline
32781 \end_inset
32782
32783
32784 \series bold
32785
32786 \backslash
32787 newcommand{
32788 \backslash
32789 fb}[3]{
32790 \backslash
32791 framebox#1#2{$#3$}}
32792 \series default
32793
32794 \begin_inset VSpace medskip
32795 \end_inset
32796
32797
32798 \begin_inset Newline newline
32799 \end_inset
32800
32801 The two Dollar signs creates the extra formula needed for 
32802 \series bold
32803
32804 \backslash
32805 framebox
32806 \series default
32807 , see 
32808 \begin_inset CommandInset ref
32809 LatexCommand ref
32810 reference "sub:Boxes-with-Frame"
32811
32812 \end_inset
32813
32814 .
32815 \end_layout
32816
32817 \begin_layout Itemize
32818 To create a new command for 
32819 \series bold
32820
32821 \backslash
32822 fcolorbox
32823 \series default
32824  where the color for the box needn't to be specified, the argument for the
32825  color is defined optional:
32826 \begin_inset VSpace medskip
32827 \end_inset
32828
32829
32830 \begin_inset Newline newline
32831 \end_inset
32832
32833
32834 \series bold
32835
32836 \backslash
32837 newcommand{
32838 \backslash
32839 cb}[3][white]{
32840 \backslash
32841 fcolorbox{#2}{#1}{$#3$}}
32842 \series default
32843
32844 \begin_inset VSpace medskip
32845 \end_inset
32846
32847
32848 \begin_inset Newline newline
32849 \end_inset
32850
32851 When the color is not specified when using 
32852 \series bold
32853
32854 \backslash
32855 cb
32856 \series default
32857 , the predefined color 
32858 \series bold
32859 white
32860 \series default
32861  will be used.
32862 \end_layout
32863
32864 \begin_layout Standard
32865 A test of the new defined commands:
32866 \end_layout
32867
32868 \begin_layout Standard
32869 \align center
32870 \begin_inset Tabular
32871 <lyxtabular version="3" rows="6" columns="2">
32872 <features>
32873 <column alignment="center" valignment="top" width="0">
32874 <column alignment="center" valignment="top" width="0">
32875 <row>
32876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32877 \begin_inset Text
32878
32879 \begin_layout Plain Layout
32880 Command
32881 \end_layout
32882
32883 \end_inset
32884 </cell>
32885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32886 \begin_inset Text
32887
32888 \begin_layout Plain Layout
32889 Result
32890 \begin_inset Note Note
32891 status collapsed
32892
32893 \begin_layout Plain Layout
32894
32895 \series bold
32896
32897 \backslash
32898 raisebox
32899 \series default
32900  is only used as spacer.
32901 \end_layout
32902
32903 \end_inset
32904
32905
32906 \end_layout
32907
32908 \end_inset
32909 </cell>
32910 </row>
32911 <row>
32912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32913 \begin_inset Text
32914
32915 \begin_layout Plain Layout
32916 A
32917 \backslash
32918 gr
32919 \begin_inset ERT
32920 status collapsed
32921
32922 \begin_layout Plain Layout
32923
32924
32925 \backslash
32926 spce 
32927 \end_layout
32928
32929 \end_inset
32930
32931 B
32932 \end_layout
32933
32934 \end_inset
32935 </cell>
32936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32937 \begin_inset Text
32938
32939 \begin_layout Plain Layout
32940 \begin_inset Formula $A\gr B$
32941 \end_inset
32942
32943
32944 \end_layout
32945
32946 \end_inset
32947 </cell>
32948 </row>
32949 <row>
32950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32951 \begin_inset Text
32952
32953 \begin_layout Plain Layout
32954
32955 \backslash
32956 us{ABcd
32957 \end_layout
32958
32959 \end_inset
32960 </cell>
32961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32962 \begin_inset Text
32963
32964 \begin_layout Plain Layout
32965 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
32966 \end_inset
32967
32968
32969 \end_layout
32970
32971 \end_inset
32972 </cell>
32973 </row>
32974 <row>
32975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32976 \begin_inset Text
32977
32978 \begin_layout Plain Layout
32979
32980 \backslash
32981 fb{[2cm]
32982 \begin_inset Formula $\to$
32983 \end_inset
32984
32985
32986 \backslash
32987 {
32988 \begin_inset Formula $\to$
32989 \end_inset
32990
32991
32992 \backslash
32993 {
32994 \backslash
32995 int
32996 \begin_inset ERT
32997 status collapsed
32998
32999 \begin_layout Plain Layout
33000
33001
33002 \backslash
33003 spce 
33004 \end_layout
33005
33006 \end_inset
33007
33008 A=B
33009 \end_layout
33010
33011 \end_inset
33012 </cell>
33013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33014 \begin_inset Text
33015
33016 \begin_layout Plain Layout
33017 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33018 \end_inset
33019
33020
33021 \end_layout
33022
33023 \end_inset
33024 </cell>
33025 </row>
33026 <row>
33027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33028 \begin_inset Text
33029
33030 \begin_layout Plain Layout
33031
33032 \backslash
33033 cb{red
33034 \begin_inset Formula $\to$
33035 \end_inset
33036
33037
33038 \backslash
33039 {
33040 \backslash
33041 int
33042 \begin_inset ERT
33043 status collapsed
33044
33045 \begin_layout Plain Layout
33046
33047
33048 \backslash
33049 spce 
33050 \end_layout
33051
33052 \end_inset
33053
33054 A=B
33055 \end_layout
33056
33057 \end_inset
33058 </cell>
33059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33060 \begin_inset Text
33061
33062 \begin_layout Plain Layout
33063 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33064 \end_inset
33065
33066
33067 \end_layout
33068
33069 \end_inset
33070 </cell>
33071 </row>
33072 <row>
33073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33074 \begin_inset Text
33075
33076 \begin_layout Plain Layout
33077
33078 \backslash
33079 cb[green]
33080 \backslash
33081 {red
33082 \begin_inset Formula $\to$
33083 \end_inset
33084
33085
33086 \backslash
33087 {
33088 \backslash
33089 int
33090 \begin_inset ERT
33091 status collapsed
33092
33093 \begin_layout Plain Layout
33094
33095
33096 \backslash
33097 spce 
33098 \end_layout
33099
33100 \end_inset
33101
33102 A=B
33103 \end_layout
33104
33105 \end_inset
33106 </cell>
33107 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33108 \begin_inset Text
33109
33110 \begin_layout Plain Layout
33111 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33112 \end_inset
33113
33114
33115 \end_layout
33116
33117 \end_inset
33118 </cell>
33119 </row>
33120 </lyxtabular>
33121
33122 \end_inset
33123
33124
33125 \end_layout
33126
33127 \begin_layout Subsection
33128 Math Macros
33129 \begin_inset Index
33130 status collapsed
33131
33132 \begin_layout Plain Layout
33133 User-defined commands! Math macros
33134 \end_layout
33135
33136 \end_inset
33137
33138
33139 \begin_inset Index
33140 status collapsed
33141
33142 \begin_layout Plain Layout
33143 Macros
33144 \end_layout
33145
33146 \end_inset
33147
33148
33149 \end_layout
33150
33151 \begin_layout Standard
33152 User-defined commands are especially convenient for complex expressions.
33153  When you are for example dealing in a document with quadratic equations,
33154  the same solution type occurs several times.
33155  The general form of a quadratic equation is
33156 \begin_inset Formula \[
33157 0=\lambda^{2}+p\lambda+q\]
33158
33159 \end_inset
33160
33161 The general form of the solution is
33162 \begin_inset Formula \[
33163 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}\]
33164
33165 \end_inset
33166
33167
33168 \end_layout
33169
33170 \begin_layout Standard
33171 To define a command for the solution formula where only the three parameters
33172  
33173 \begin_inset Formula $\lambda$
33174 \end_inset
33175
33176
33177 \begin_inset Formula $p$
33178 \end_inset
33179
33180  and 
33181 \begin_inset Formula $q$
33182 \end_inset
33183
33184  need to be specified and the index of 
33185 \begin_inset Formula $\lambda$
33186 \end_inset
33187
33188  can be given optionally, the LaTeX-preamble line is
33189 \begin_inset Newline newline
33190 \end_inset
33191
33192
33193 \series bold
33194
33195 \backslash
33196 newcommand{
33197 \backslash
33198 qG}[4][1,
33199 \backslash
33200 ,2]{#2_{#1}=-
33201 \backslash
33202 frac{#3}{2}
33203 \backslash
33204 pm
33205 \begin_inset Newline newline
33206 \end_inset
33207
33208
33209 \begin_inset ERT
33210 status collapsed
33211
33212 \begin_layout Plain Layout
33213
33214
33215 \backslash
33216 hphantom{
33217 \end_layout
33218
33219 \end_inset
33220
33221
33222 \backslash
33223 newcommand
33224 \begin_inset ERT
33225 status collapsed
33226
33227 \begin_layout Plain Layout
33228
33229 }
33230 \end_layout
33231
33232 \end_inset
33233
33234
33235 \backslash
33236 sqrt{
33237 \backslash
33238 frac{#3^{2}}{4}-#4}}
33239 \end_layout
33240
33241 \begin_layout Standard
33242 To create with this the solution formula, the command
33243 \begin_inset Newline newline
33244 \end_inset
33245
33246
33247 \series bold
33248
33249 \backslash
33250 qG{
33251 \backslash
33252 lambda
33253 \begin_inset Formula $\to$
33254 \end_inset
33255
33256
33257 \backslash
33258 {p
33259 \begin_inset Formula $\to$
33260 \end_inset
33261
33262
33263 \backslash
33264 {q
33265 \series default
33266  is inserted to a formula
33267 \series bold
33268 .
33269 \end_layout
33270
33271 \begin_layout Standard
33272 The definition of the new command is unintuitive because one has to know
33273  the schemes of all used LaTeX commands, e.
33274 \begin_inset space \thinspace{}
33275 \end_inset
33276
33277 g.
33278 \begin_inset space \space{}
33279 \end_inset
33280
33281 that a fraction is inserted in LaTeX as 
33282 \series bold
33283
33284 \backslash
33285 frac{numerator}{denominator}
33286 \series default
33287 .
33288  Furthermore one can easily forget a brace in the definition and cannot
33289  see in LyX what the new command is doing.
33290  To avoid these problems LyX offers the possibility to use math macros instead
33291  of the command 
33292 \series bold
33293
33294 \backslash
33295 newcommand
33296 \series default
33297 .
33298 \end_layout
33299
33300 \begin_layout Standard
33301 A math macro is created by using the menu 
33302 \family sans
33303 Insert\SpecialChar \menuseparator
33304 Math\SpecialChar \menuseparator
33305 Macro
33306 \family default
33307  or the toolbar button 
33308 \begin_inset Graphics
33309         filename ../images/math-macro_newmacroname_newcommand.png
33310         scale 85
33311
33312 \end_inset
33313
33314 .
33315  The math macro toolbar appears together with the following box where the
33316  macro is defined:
33317 \begin_inset Newline newline
33318 \end_inset
33319
33320
33321 \begin_inset space \hspace*{\fill}
33322 \end_inset
33323
33324
33325 \begin_inset Graphics
33326         filename clipart/macrobox.png
33327
33328 \end_inset
33329
33330
33331 \begin_inset space \hspace*{\fill}
33332 \end_inset
33333
33334
33335 \begin_inset Newline newline
33336 \end_inset
33337
33338
33339 \begin_inset FormulaMacro
33340 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33341 \end_inset
33342
33343
33344 \backslash
33345 newmacroname is the default name of the macro that should be changed to
33346  something sensible.
33347  The wanted formula is inserted in the first blue box.
33348  An argument placeholder is inserted with the command 
33349 \series bold
33350
33351 \backslash
33352 #argumentnumber
33353 \series default
33354 , e.
33355 \begin_inset space \thinspace{}
33356 \end_inset
33357
33358 g
33359 \begin_inset space \space{}
33360 \end_inset
33361
33362
33363 \series bold
33364
33365 \backslash
33366 #1
33367 \series default
33368  or by using the macro toolbar button 
33369 \begin_inset Graphics
33370         filename ../images/math-macro-add-param.png
33371         scale 85
33372
33373 \end_inset
33374
33375 .
33376  Argument placeholders are displayed red.
33377  Maximum 9 arguments are possible.
33378  Optional arguments are created with the toolbar button 
33379 \begin_inset Graphics
33380         filename ../images/math-macro-add-optional-param.png
33381         scale 85
33382
33383 \end_inset
33384
33385 .
33386  The first non-optional argument can be transformed to an optional one with
33387  the toolbar button 
33388 \begin_inset Graphics
33389         filename ../images/math-macro-make-optional.png
33390         scale 85
33391
33392 \end_inset
33393
33394 .
33395  In the second blue box the appearance of the macro in LyX can be defined.
33396  Normally you want to see it as it is defined, so the box is kept empty.
33397  But when you have created a macro that needs lot of space on the screen,
33398  you can insert in the box for example
33399 \begin_inset Newline newline
33400 \end_inset
33401
33402
33403 \series bold
33404 qG: 
33405 \backslash
33406 #1
33407 \series default
33408  
33409 \series bold
33410 ,
33411 \series default
33412  
33413 \series bold
33414
33415 \backslash
33416 #2
33417 \series default
33418  
33419 \series bold
33420 ,
33421 \series default
33422  
33423 \series bold
33424
33425 \backslash
33426 #3, 
33427 \backslash
33428 #4
33429 \begin_inset Newline newline
33430 \end_inset
33431
33432
33433 \series default
33434 For the macro only the arguments with the macro name in front of them will
33435  then be displayed in LyX, leading to a better overview.
33436  The formula appears in the output as defined in the first box.
33437 \begin_inset Newline newline
33438 \end_inset
33439
33440 The appearance of macros in formulas can furthermore be changed for single
33441  macros by setting the cursor in the macro and using the menu 
33442 \family sans
33443 View\SpecialChar \menuseparator
33444 (Un)fold
33445 \begin_inset space ~
33446 \end_inset
33447
33448 Math
33449 \begin_inset space ~
33450 \end_inset
33451
33452 Macro
33453 \family default
33454 .
33455 \end_layout
33456
33457 \begin_layout Standard
33458 To use a macro, the macro name is inserted as command to a formula, in our
33459  case 
33460 \series bold
33461
33462 \backslash
33463 qG
33464 \series default
33465 .
33466  Our macro looks in LyX like this:
33467 \begin_inset Newline newline
33468 \end_inset
33469
33470
33471 \begin_inset space \hspace*{\fill}
33472 \end_inset
33473
33474
33475 \begin_inset Graphics
33476         filename clipart/macrouse.png
33477
33478 \end_inset
33479
33480
33481 \begin_inset space \hspace*{\fill}
33482 \end_inset
33483
33484
33485 \begin_inset Newline newline
33486 \end_inset
33487
33488 Here is our macro example with the arguments 
33489 \begin_inset Formula $x$
33490 \end_inset
33491
33492
33493 \begin_inset Formula $\ln(x)$
33494 \end_inset
33495
33496  and 
33497 \begin_inset Formula $B$
33498 \end_inset
33499
33500 :
33501 \end_layout
33502
33503 \begin_layout Standard
33504 \begin_inset Formula \[
33505 \qG x{\ln(x)}B\]
33506
33507 \end_inset
33508
33509
33510 \end_layout
33511
33512 \begin_layout Standard
33513 LyX offers in the menu 
33514 \family sans
33515 Tools\SpecialChar \menuseparator
33516 Preferences\SpecialChar \menuseparator
33517 Editing\SpecialChar \menuseparator
33518 Control
33519 \family default
33520  different styles to edit macros.
33521  To find the style that suits you the most, choose a style and set the cursor
33522  in a macro formula to see the difference.
33523 \end_layout
33524
33525 \begin_layout Standard
33526 A math macro is transformed internally to a 
33527 \series bold
33528
33529 \backslash
33530 newcommand
33531 \series default
33532  command when exporting the document.
33533  The created 
33534 \series bold
33535
33536 \backslash
33537 newcommand
33538 \series default
33539  command is not placed in the LaTeX-preamble, therefore macros can only
33540  be used in formulas that are in the document below the macro definition
33541  box.
33542 \end_layout
33543
33544 \begin_layout Standard
33545 Math macros can also be directly be created from a 
33546 \series bold
33547
33548 \backslash
33549 newcommand
33550 \series default
33551  command.
33552  When writing for example the command
33553 \series bold
33554
33555 \begin_inset Newline newline
33556 \end_inset
33557
33558
33559 \backslash
33560 newcommand{
33561 \backslash
33562 larrow}[2]{
33563 \backslash
33564 xleftarrow[#2]{#1}}
33565 \begin_inset Newline newline
33566 \end_inset
33567
33568
33569 \series default
33570 in LyX as normal text, highlighting it completely and using then the shortcut
33571  
33572 \family sans
33573 Ctrl+M
33574 \family default
33575 , the command will be transformed to a math macro.
33576  Using this method you need to be careful that the 
33577 \series bold
33578
33579 \backslash
33580 newcommand
33581 \series default
33582  command is typed correctly, otherwise you get a faulty macro leading to
33583  LaTeX errors.
33584 \end_layout
33585
33586 \begin_layout Standard
33587 Math macros currently yet have the problem that further formulas in macro
33588  definitions are handled wrongly.
33589  Therefore the example 
33590 \series bold
33591
33592 \backslash
33593 fb
33594 \series default
33595  from 
33596 \begin_inset CommandInset ref
33597 LatexCommand ref
33598 reference "sub:The-Command-newcommand"
33599
33600 \end_inset
33601
33602  cannot be created as macro.
33603 \end_layout
33604
33605 \begin_layout Standard
33606 When the cursor is in a macro definition box, you will see the macro toolbar
33607  in LyX:
33608 \end_layout
33609
33610 \begin_layout Standard
33611 \begin_inset VSpace defskip
33612 \end_inset
33613
33614
33615 \end_layout
33616
33617 \begin_layout Standard
33618 \begin_inset Graphics
33619         filename clipart/MacroToolbar.png
33620
33621 \end_inset
33622
33623
33624 \begin_inset Index
33625 status collapsed
33626
33627 \begin_layout Plain Layout
33628 Macros ! Toolbar
33629 \end_layout
33630
33631 \end_inset
33632
33633
33634 \end_layout
33635
33636 \begin_layout Standard
33637 \begin_inset VSpace defskip
33638 \end_inset
33639
33640
33641 \end_layout
33642
33643 \begin_layout Standard
33644 The macro toolbar contains from left to right the following buttons:
33645 \end_layout
33646
33647 \begin_layout Standard
33648 \begin_inset VSpace defskip
33649 \end_inset
33650
33651
33652 \end_layout
33653
33654 \begin_layout Standard
33655 \begin_inset Tabular
33656 <lyxtabular version="3" rows="9" columns="2">
33657 <features islongtable="true">
33658 <column alignment="left" valignment="top" width="0">
33659 <column alignment="left" valignment="top" width="85col%">
33660 <row interlinespace="2.5mm">
33661 <cell alignment="center" valignment="top" usebox="none">
33662 \begin_inset Text
33663
33664 \begin_layout Plain Layout
33665 \begin_inset Graphics
33666         filename ../images/math-macro-remove-param.png
33667         BoundingBox 0bp 5bp 20bp 25bp
33668         rotateOrigin center
33669
33670 \end_inset
33671
33672
33673 \end_layout
33674
33675 \end_inset
33676 </cell>
33677 <cell alignment="center" valignment="top" usebox="none">
33678 \begin_inset Text
33679
33680 \begin_layout Plain Layout
33681
33682 \family sans
33683 Edit\SpecialChar \menuseparator
33684 Math\SpecialChar \menuseparator
33685 Macro
33686 \begin_inset space ~
33687 \end_inset
33688
33689 Definition\SpecialChar \menuseparator
33690 Remove Last Argument
33691 \end_layout
33692
33693 \end_inset
33694 </cell>
33695 </row>
33696 <row interlinespace="2.5mm">
33697 <cell alignment="center" valignment="top" usebox="none">
33698 \begin_inset Text
33699
33700 \begin_layout Plain Layout
33701 \begin_inset Graphics
33702         filename ../images/math-macro-add-param.png
33703         BoundingBox 0bp 5bp 20bp 25bp
33704         rotateOrigin center
33705
33706 \end_inset
33707
33708
33709 \end_layout
33710
33711 \end_inset
33712 </cell>
33713 <cell alignment="center" valignment="top" usebox="none">
33714 \begin_inset Text
33715
33716 \begin_layout Plain Layout
33717
33718 \family sans
33719 Edit\SpecialChar \menuseparator
33720 Math\SpecialChar \menuseparator
33721 Macro
33722 \begin_inset space ~
33723 \end_inset
33724
33725 Definition\SpecialChar \menuseparator
33726 Append Argument
33727 \end_layout
33728
33729 \end_inset
33730 </cell>
33731 </row>
33732 <row interlinespace="2.5mm">
33733 <cell alignment="center" valignment="top" usebox="none">
33734 \begin_inset Text
33735
33736 \begin_layout Plain Layout
33737 \begin_inset Graphics
33738         filename ../images/math-macro-make-optional.png
33739         BoundingBox 0bp 5bp 20bp 25bp
33740         rotateOrigin center
33741
33742 \end_inset
33743
33744
33745 \end_layout
33746
33747 \end_inset
33748 </cell>
33749 <cell alignment="center" valignment="top" usebox="none">
33750 \begin_inset Text
33751
33752 \begin_layout Plain Layout
33753
33754 \family sans
33755 Edit\SpecialChar \menuseparator
33756 Math\SpecialChar \menuseparator
33757 Macro
33758 \begin_inset space ~
33759 \end_inset
33760
33761 Definition\SpecialChar \menuseparator
33762 Make First Non-Optional into
33763 \begin_inset Newline newline
33764 \end_inset
33765
33766
33767 \begin_inset ERT
33768 status collapsed
33769
33770 \begin_layout Plain Layout
33771
33772
33773 \backslash
33774 hphantom{
33775 \end_layout
33776
33777 \end_inset
33778
33779 Edit\SpecialChar \menuseparator
33780 Math\SpecialChar \menuseparator
33781 Macro
33782 \begin_inset space ~
33783 \end_inset
33784
33785 Definition\SpecialChar \menuseparator
33786
33787 \begin_inset ERT
33788 status collapsed
33789
33790 \begin_layout Plain Layout
33791
33792 }
33793 \end_layout
33794
33795 \end_inset
33796
33797 Optional Argument
33798 \end_layout
33799
33800 \end_inset
33801 </cell>
33802 </row>
33803 <row interlinespace="2.5mm">
33804 <cell alignment="center" valignment="top" usebox="none">
33805 \begin_inset Text
33806
33807 \begin_layout Plain Layout
33808 \begin_inset Graphics
33809         filename ../images/math-macro-make-nonoptional.png
33810         BoundingBox 0bp 5bp 20bp 25bp
33811         rotateOrigin center
33812
33813 \end_inset
33814
33815
33816 \end_layout
33817
33818 \end_inset
33819 </cell>
33820 <cell alignment="center" valignment="top" usebox="none">
33821 \begin_inset Text
33822
33823 \begin_layout Plain Layout
33824
33825 \family sans
33826 Edit\SpecialChar \menuseparator
33827 Math\SpecialChar \menuseparator
33828 Macro
33829 \begin_inset space ~
33830 \end_inset
33831
33832 Definition\SpecialChar \menuseparator
33833 Make Last Optional into
33834 \begin_inset Newline newline
33835 \end_inset
33836
33837
33838 \begin_inset ERT
33839 status collapsed
33840
33841 \begin_layout Plain Layout
33842
33843
33844 \backslash
33845 hphantom{
33846 \end_layout
33847
33848 \end_inset
33849
33850 Edit\SpecialChar \menuseparator
33851 Math\SpecialChar \menuseparator
33852 Macro
33853 \begin_inset space ~
33854 \end_inset
33855
33856 Definition\SpecialChar \menuseparator
33857
33858 \begin_inset ERT
33859 status collapsed
33860
33861 \begin_layout Plain Layout
33862
33863 }
33864 \end_layout
33865
33866 \end_inset
33867
33868 Non-Optional Argument
33869 \end_layout
33870
33871 \end_inset
33872 </cell>
33873 </row>
33874 <row interlinespace="2.5mm">
33875 <cell alignment="center" valignment="top" usebox="none">
33876 \begin_inset Text
33877
33878 \begin_layout Plain Layout
33879 \begin_inset Graphics
33880         filename ../images/math-macro-remove-optional-param.png
33881         BoundingBox 0bp 5bp 20bp 25bp
33882         rotateOrigin center
33883
33884 \end_inset
33885
33886
33887 \end_layout
33888
33889 \end_inset
33890 </cell>
33891 <cell alignment="center" valignment="top" usebox="none">
33892 \begin_inset Text
33893
33894 \begin_layout Plain Layout
33895
33896 \family sans
33897 Edit\SpecialChar \menuseparator
33898 Math\SpecialChar \menuseparator
33899 Macro
33900 \begin_inset space ~
33901 \end_inset
33902
33903 Definition\SpecialChar \menuseparator
33904 Remove Optional Argument
33905 \end_layout
33906
33907 \end_inset
33908 </cell>
33909 </row>
33910 <row interlinespace="2.5mm">
33911 <cell alignment="center" valignment="top" usebox="none">
33912 \begin_inset Text
33913
33914 \begin_layout Plain Layout
33915 \begin_inset Graphics
33916         filename ../images/math-macro-add-optional-param.png
33917         BoundingBox 0bp 5bp 20bp 25bp
33918         rotateOrigin center
33919
33920 \end_inset
33921
33922
33923 \end_layout
33924
33925 \end_inset
33926 </cell>
33927 <cell alignment="center" valignment="top" usebox="none">
33928 \begin_inset Text
33929
33930 \begin_layout Plain Layout
33931
33932 \family sans
33933 Edit\SpecialChar \menuseparator
33934 Math\SpecialChar \menuseparator
33935 Macro
33936 \begin_inset space ~
33937 \end_inset
33938
33939 Definition\SpecialChar \menuseparator
33940 Insert Optional Argument
33941 \end_layout
33942
33943 \end_inset
33944 </cell>
33945 </row>
33946 <row interlinespace="2.5mm">
33947 <cell alignment="center" valignment="top" usebox="none">
33948 \begin_inset Text
33949
33950 \begin_layout Plain Layout
33951 \begin_inset Graphics
33952         filename ../images/math-macro-remove-greedy-param.png
33953         BoundingBox 0bp 5bp 20bp 25bp
33954         rotateOrigin center
33955
33956 \end_inset
33957
33958
33959 \end_layout
33960
33961 \end_inset
33962 </cell>
33963 <cell alignment="center" valignment="top" usebox="none">
33964 \begin_inset Text
33965
33966 \begin_layout Plain Layout
33967
33968 \family sans
33969 Edit\SpecialChar \menuseparator
33970 Math\SpecialChar \menuseparator
33971 Macro
33972 \begin_inset space ~
33973 \end_inset
33974
33975 Definition\SpecialChar \menuseparator
33976 Remove Last Argument
33977 \begin_inset Newline newline
33978 \end_inset
33979
33980
33981 \begin_inset ERT
33982 status collapsed
33983
33984 \begin_layout Plain Layout
33985
33986
33987 \backslash
33988 hphantom{
33989 \end_layout
33990
33991 \end_inset
33992
33993 Edit\SpecialChar \menuseparator
33994 Math\SpecialChar \menuseparator
33995 Macro
33996 \begin_inset space ~
33997 \end_inset
33998
33999 Definition\SpecialChar \menuseparator
34000
34001 \begin_inset ERT
34002 status collapsed
34003
34004 \begin_layout Plain Layout
34005
34006 }
34007 \end_layout
34008
34009 \end_inset
34010
34011 Spitting Out To The Right
34012 \end_layout
34013
34014 \end_inset
34015 </cell>
34016 </row>
34017 <row interlinespace="2.5mm">
34018 <cell alignment="center" valignment="top" usebox="none">
34019 \begin_inset Text
34020
34021 \begin_layout Plain Layout
34022 \begin_inset Graphics
34023         filename ../images/math-macro-append-greedy-param.png
34024         BoundingBox 0bp 5bp 20bp 25bp
34025         rotateOrigin center
34026
34027 \end_inset
34028
34029
34030 \end_layout
34031
34032 \end_inset
34033 </cell>
34034 <cell alignment="center" valignment="top" usebox="none">
34035 \begin_inset Text
34036
34037 \begin_layout Plain Layout
34038
34039 \family sans
34040 Edit\SpecialChar \menuseparator
34041 Math\SpecialChar \menuseparator
34042 Macro
34043 \begin_inset space ~
34044 \end_inset
34045
34046 Definition\SpecialChar \menuseparator
34047 Append Argument
34048 \begin_inset Newline newline
34049 \end_inset
34050
34051
34052 \begin_inset ERT
34053 status collapsed
34054
34055 \begin_layout Plain Layout
34056
34057
34058 \backslash
34059 hphantom{
34060 \end_layout
34061
34062 \end_inset
34063
34064 Edit\SpecialChar \menuseparator
34065 Math\SpecialChar \menuseparator
34066 Macro
34067 \begin_inset space ~
34068 \end_inset
34069
34070 Definition\SpecialChar \menuseparator
34071
34072 \begin_inset ERT
34073 status collapsed
34074
34075 \begin_layout Plain Layout
34076
34077 }
34078 \end_layout
34079
34080 \end_inset
34081
34082 Eating From The Right
34083 \end_layout
34084
34085 \end_inset
34086 </cell>
34087 </row>
34088 <row interlinespace="2.5mm">
34089 <cell alignment="center" valignment="top" usebox="none">
34090 \begin_inset Text
34091
34092 \begin_layout Plain Layout
34093 \begin_inset Graphics
34094         filename ../images/math-macro-add-greedy-optional-param.png
34095         BoundingBox 0bp 5bp 20bp 25bp
34096         rotateOrigin center
34097
34098 \end_inset
34099
34100
34101 \end_layout
34102
34103 \end_inset
34104 </cell>
34105 <cell alignment="center" valignment="top" usebox="none">
34106 \begin_inset Text
34107
34108 \begin_layout Plain Layout
34109
34110 \family sans
34111 Edit\SpecialChar \menuseparator
34112 Math\SpecialChar \menuseparator
34113 Macro
34114 \begin_inset space ~
34115 \end_inset
34116
34117 Definition\SpecialChar \menuseparator
34118 Append Optional Argument
34119 \begin_inset Newline newline
34120 \end_inset
34121
34122
34123 \begin_inset ERT
34124 status collapsed
34125
34126 \begin_layout Plain Layout
34127
34128
34129 \backslash
34130 hphantom{
34131 \end_layout
34132
34133 \end_inset
34134
34135 Edit\SpecialChar \menuseparator
34136 Math\SpecialChar \menuseparator
34137 Macro
34138 \begin_inset space ~
34139 \end_inset
34140
34141 Definition\SpecialChar \menuseparator
34142
34143 \begin_inset ERT
34144 status collapsed
34145
34146 \begin_layout Plain Layout
34147
34148 }
34149 \end_layout
34150
34151 \end_inset
34152
34153 Eating From The Right
34154 \end_layout
34155
34156 \end_inset
34157 </cell>
34158 </row>
34159 </lyxtabular>
34160
34161 \end_inset
34162
34163
34164 \end_layout
34165
34166 \begin_layout Standard
34167 \begin_inset Newpage newpage
34168 \end_inset
34169
34170
34171 \end_layout
34172
34173 \begin_layout Section
34174 Tips
34175 \begin_inset Index
34176 status collapsed
34177
34178 \begin_layout Plain Layout
34179 Tips
34180 \end_layout
34181
34182 \end_inset
34183
34184
34185 \end_layout
34186
34187 \begin_layout Subsection
34188 Negative Numbers
34189 \begin_inset Index
34190 status collapsed
34191
34192 \begin_layout Plain Layout
34193 Numbers ! negative
34194 \end_layout
34195
34196 \end_inset
34197
34198
34199 \end_layout
34200
34201 \begin_layout Standard
34202 Negative numbers often look ugly in formulas because the minus sign before
34203  the number is set with the same length as the minus operator sign.
34204  When writing the negative number in normal text, the minus sign appears
34205  correctly.
34206 \end_layout
34207
34208 \begin_layout Standard
34209 Thus, the problem disappears when converting the minus sign to mathematical
34210  text.
34211 \end_layout
34212
34213 \begin_layout Standard
34214 An example to visualize the problem:
34215 \end_layout
34216
34217 \begin_layout Standard
34218 \align center
34219 \begin_inset Tabular
34220 <lyxtabular version="3" rows="3" columns="2">
34221 <features>
34222 <column alignment="right" valignment="top" width="0">
34223 <column alignment="left" valignment="top" width="0">
34224 <row>
34225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34226 \begin_inset Text
34227
34228 \begin_layout Plain Layout
34229 normal text:
34230 \end_layout
34231
34232 \end_inset
34233 </cell>
34234 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34235 \begin_inset Text
34236
34237 \begin_layout Plain Layout
34238 x = -2
34239 \end_layout
34240
34241 \end_inset
34242 </cell>
34243 </row>
34244 <row>
34245 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34246 \begin_inset Text
34247
34248 \begin_layout Plain Layout
34249 formula:
34250 \end_layout
34251
34252 \end_inset
34253 </cell>
34254 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34255 \begin_inset Text
34256
34257 \begin_layout Plain Layout
34258 \begin_inset Formula $x=-2$
34259 \end_inset
34260
34261
34262 \end_layout
34263
34264 \end_inset
34265 </cell>
34266 </row>
34267 <row>
34268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34269 \begin_inset Text
34270
34271 \begin_layout Plain Layout
34272 solution:
34273 \end_layout
34274
34275 \end_inset
34276 </cell>
34277 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34278 \begin_inset Text
34279
34280 \begin_layout Plain Layout
34281 \begin_inset Formula $x=\textrm{-}2$
34282 \end_inset
34283
34284
34285 \end_layout
34286
34287 \end_inset
34288 </cell>
34289 </row>
34290 </lyxtabular>
34291
34292 \end_inset
34293
34294
34295 \end_layout
34296
34297 \begin_layout Subsection
34298 Comma as decimal Separator
34299 \begin_inset Index
34300 status collapsed
34301
34302 \begin_layout Plain Layout
34303 Comma
34304 \end_layout
34305
34306 \end_inset
34307
34308
34309 \end_layout
34310
34311 \begin_layout Standard
34312 In LaTeX a comma inside a formula is used, according to the English convention,
34313  as number group separator.
34314  So there will be space added behind all commas in formulas.
34315 \end_layout
34316
34317 \begin_layout Standard
34318 To avoid this, the comma is highlighted and changed to mathematical text
34319  (shortcut 
34320 \begin_inset Info
34321 type  "shortcut"
34322 arg   "math-mode"
34323 \end_inset
34324
34325 ).
34326 \end_layout
34327
34328 \begin_layout Standard
34329 To use all formula commas in the document as decimal separator, the file
34330  
34331 \series bold
34332 icomma.sty
34333 \series default
34334
34335 \begin_inset Foot
34336 status collapsed
34337
34338 \begin_layout Plain Layout
34339
34340 \series bold
34341 icomma
34342 \series default
34343  is part of the LaTeX-package 
34344 \series bold
34345 was
34346 \series default
34347
34348 \begin_inset Index
34349 status collapsed
34350
34351 \begin_layout Plain Layout
34352 Packages ! was
34353 \begin_inset ERT
34354 status collapsed
34355
34356 \begin_layout Plain Layout
34357
34358
34359 \backslash
34360 vspace{4mm}
34361 \end_layout
34362
34363 \end_inset
34364
34365
34366 \end_layout
34367
34368 \end_inset
34369
34370 .
34371 \end_layout
34372
34373 \end_inset
34374
34375
34376 \begin_inset Index
34377 status collapsed
34378
34379 \begin_layout Plain Layout
34380 Packages ! icomma
34381 \end_layout
34382
34383 \end_inset
34384
34385  is loaded with the LaTeX-preamble line
34386 \end_layout
34387
34388 \begin_layout Standard
34389
34390 \series bold
34391
34392 \backslash
34393 usepackage{icomma}
34394 \end_layout
34395
34396 \begin_layout Subsection
34397 Physical Vectors
34398 \begin_inset CommandInset label
34399 LatexCommand label
34400 name "sub:Physical-Vectors"
34401
34402 \end_inset
34403
34404
34405 \begin_inset Index
34406 status collapsed
34407
34408 \begin_layout Plain Layout
34409 Vectors ! physical
34410 \end_layout
34411
34412 \end_inset
34413
34414
34415 \end_layout
34416
34417 \begin_layout Standard
34418 Predefined vectors are offered by the LaTeX-package 
34419 \series bold
34420 braket
34421 \series default
34422
34423 \begin_inset Index
34424 status collapsed
34425
34426 \begin_layout Plain Layout
34427 Packages ! braket
34428 \end_layout
34429
34430 \end_inset
34431
34432  that is loaded with the LaTeX-preamble line
34433 \end_layout
34434
34435 \begin_layout Standard
34436
34437 \series bold
34438
34439 \backslash
34440 usepackage{braket}
34441 \end_layout
34442
34443 \begin_layout Standard
34444 \begin_inset ERT
34445 status collapsed
34446
34447 \begin_layout Plain Layout
34448
34449
34450 \backslash
34451 ifbraket 
34452 \end_layout
34453
34454 \end_inset
34455
34456
34457 \begin_inset Note Note
34458 status open
34459
34460 \begin_layout Plain Layout
34461 The following table will only be displayed when the LaTeX-package 
34462 \series bold
34463 braket
34464 \series default
34465  is installed.
34466 \end_layout
34467
34468 \end_inset
34469
34470
34471 \end_layout
34472
34473 \begin_layout Standard
34474 The following commands are defined:
34475 \end_layout
34476
34477 \begin_layout Standard
34478 \align center
34479 \begin_inset Tabular
34480 <lyxtabular version="3" rows="4" columns="2">
34481 <features>
34482 <column alignment="center" valignment="top" width="0">
34483 <column alignment="center" valignment="top" width="0">
34484 <row>
34485 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34486 \begin_inset Text
34487
34488 \begin_layout Plain Layout
34489 Command
34490 \end_layout
34491
34492 \end_inset
34493 </cell>
34494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34495 \begin_inset Text
34496
34497 \begin_layout Plain Layout
34498 Result
34499 \end_layout
34500
34501 \end_inset
34502 </cell>
34503 </row>
34504 <row>
34505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34506 \begin_inset Text
34507
34508 \begin_layout Plain Layout
34509
34510 \backslash
34511 Bra{
34512 \backslash
34513 psi
34514 \end_layout
34515
34516 \end_inset
34517 </cell>
34518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34519 \begin_inset Text
34520
34521 \begin_layout Plain Layout
34522 \begin_inset Formula $\Bra{\psi}$
34523 \end_inset
34524
34525
34526 \end_layout
34527
34528 \end_inset
34529 </cell>
34530 </row>
34531 <row>
34532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34533 \begin_inset Text
34534
34535 \begin_layout Plain Layout
34536
34537 \backslash
34538 Ket{
34539 \backslash
34540 psi
34541 \end_layout
34542
34543 \end_inset
34544 </cell>
34545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34546 \begin_inset Text
34547
34548 \begin_layout Plain Layout
34549 \begin_inset Formula $\Ket{\psi}$
34550 \end_inset
34551
34552
34553 \end_layout
34554
34555 \end_inset
34556 </cell>
34557 </row>
34558 <row>
34559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34560 \begin_inset Text
34561
34562 \begin_layout Plain Layout
34563
34564 \backslash
34565 Braket{
34566 \backslash
34567 psi|
34568 \backslash
34569 phi
34570 \end_layout
34571
34572 \end_inset
34573 </cell>
34574 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34575 \begin_inset Text
34576
34577 \begin_layout Plain Layout
34578 \begin_inset Formula $\Braket{\psi|\phi}$
34579 \end_inset
34580
34581
34582 \end_layout
34583
34584 \end_inset
34585 </cell>
34586 </row>
34587 </lyxtabular>
34588
34589 \end_inset
34590
34591
34592 \end_layout
34593
34594 \begin_layout Standard
34595 The command 
34596 \series bold
34597
34598 \backslash
34599 Braket
34600 \series default
34601  assures that all vertical bars are set in the size of the surrounding brackets:
34602 \begin_inset Formula \[
34603 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
34604
34605 \end_inset
34606
34607
34608 \begin_inset ERT
34609 status collapsed
34610
34611 \begin_layout Plain Layout
34612
34613
34614 \backslash
34615 else 
34616 \end_layout
34617
34618 \end_inset
34619
34620
34621 \begin_inset Note Note
34622 status open
34623
34624 \begin_layout Plain Layout
34625 The following will be displayed when the LaTeX-package 
34626 \series bold
34627 braket
34628 \series default
34629  is not installed:
34630 \end_layout
34631
34632 \end_inset
34633
34634
34635 \end_layout
34636
34637 \begin_layout Standard
34638 You need to install the LaTeX-package 
34639 \series bold
34640 braket
34641 \series default
34642  to see the rest of this subsection in the output.
34643 \end_layout
34644
34645 \begin_layout Standard
34646 \begin_inset ERT
34647 status collapsed
34648
34649 \begin_layout Plain Layout
34650
34651
34652 \backslash
34653 fi 
34654 \end_layout
34655
34656 \end_inset
34657
34658
34659 \end_layout
34660
34661 \begin_layout Standard
34662 The effect of 
34663 \series bold
34664
34665 \backslash
34666 Braket
34667 \series default
34668  can also be achieved using the command 
34669 \series bold
34670
34671 \backslash
34672 middle
34673 \series default
34674 , that is described in 
34675 \begin_inset CommandInset ref
34676 LatexCommand ref
34677 reference "sub:Automatic-Bracket-Size"
34678
34679 \end_inset
34680
34681 .
34682 \end_layout
34683
34684 \begin_layout Subsection
34685 Self-defined Fractions
34686 \begin_inset CommandInset label
34687 LatexCommand label
34688 name "sub:Self-defined-Fractions"
34689
34690 \end_inset
34691
34692
34693 \begin_inset Index
34694 status collapsed
34695
34696 \begin_layout Plain Layout
34697 Fractions ! self-defined
34698 \end_layout
34699
34700 \end_inset
34701
34702
34703 \end_layout
34704
34705 \begin_layout Standard
34706 To define custom commands for fractions, the command 
34707 \series bold
34708
34709 \backslash
34710 genfrac
34711 \series default
34712
34713 \begin_inset Index
34714 status collapsed
34715
34716 \begin_layout Plain Layout
34717 Commands ! G ! 
34718 \backslash
34719 genfrac
34720 \end_layout
34721
34722 \end_inset
34723
34724  is used in the following scheme:
34725 \end_layout
34726
34727 \begin_layout Standard
34728
34729 \series bold
34730
34731 \backslash
34732 genfrac{left
34733 \series default
34734  
34735 \series bold
34736 bracket}{right
34737 \series default
34738  
34739 \series bold
34740 bracket}{fraction bar thickness}{style}
34741 \begin_inset Newline newline
34742 \end_inset
34743
34744
34745 \begin_inset ERT
34746 status collapsed
34747
34748 \begin_layout Plain Layout
34749
34750
34751 \backslash
34752 phantom{
34753 \end_layout
34754
34755 \end_inset
34756
34757
34758 \backslash
34759 genfrac
34760 \begin_inset ERT
34761 status collapsed
34762
34763 \begin_layout Plain Layout
34764
34765 }
34766 \end_layout
34767
34768 \end_inset
34769
34770 {numerator}{denominator}
34771 \end_layout
34772
34773 \begin_layout Standard
34774 The style is a number in the range of 0
34775 \begin_inset space \thinspace{}
34776 \end_inset
34777
34778 -
34779 \begin_inset space \thinspace{}
34780 \end_inset
34781
34782 3.
34783 \end_layout
34784
34785 \begin_layout Standard
34786 \align center
34787 \begin_inset Tabular
34788 <lyxtabular version="3" rows="5" columns="2">
34789 <features>
34790 <column alignment="center" valignment="top" width="0">
34791 <column alignment="center" valignment="top" width="0">
34792 <row>
34793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34794 \begin_inset Text
34795
34796 \begin_layout Plain Layout
34797 Number
34798 \end_layout
34799
34800 \end_inset
34801 </cell>
34802 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34803 \begin_inset Text
34804
34805 \begin_layout Plain Layout
34806 Style (Size)
34807 \end_layout
34808
34809 \end_inset
34810 </cell>
34811 </row>
34812 <row>
34813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34814 \begin_inset Text
34815
34816 \begin_layout Plain Layout
34817 0
34818 \end_layout
34819
34820 \end_inset
34821 </cell>
34822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34823 \begin_inset Text
34824
34825 \begin_layout Plain Layout
34826 display style formula
34827 \end_layout
34828
34829 \end_inset
34830 </cell>
34831 </row>
34832 <row>
34833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34834 \begin_inset Text
34835
34836 \begin_layout Plain Layout
34837 1
34838 \end_layout
34839
34840 \end_inset
34841 </cell>
34842 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34843 \begin_inset Text
34844
34845 \begin_layout Plain Layout
34846 inline formula
34847 \end_layout
34848
34849 \end_inset
34850 </cell>
34851 </row>
34852 <row>
34853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34854 \begin_inset Text
34855
34856 \begin_layout Plain Layout
34857 2
34858 \end_layout
34859
34860 \end_inset
34861 </cell>
34862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34863 \begin_inset Text
34864
34865 \begin_layout Plain Layout
34866 small
34867 \end_layout
34868
34869 \end_inset
34870 </cell>
34871 </row>
34872 <row>
34873 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34874 \begin_inset Text
34875
34876 \begin_layout Plain Layout
34877 3
34878 \end_layout
34879
34880 \end_inset
34881 </cell>
34882 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34883 \begin_inset Text
34884
34885 \begin_layout Plain Layout
34886 tiny
34887 \end_layout
34888
34889 \end_inset
34890 </cell>
34891 </row>
34892 </lyxtabular>
34893
34894 \end_inset
34895
34896
34897 \end_layout
34898
34899 \begin_layout Standard
34900 When no style is given, the size is adjusted to the surrounding environment
34901  like for the command 
34902 \series bold
34903
34904 \backslash
34905 frac
34906 \series default
34907 .
34908 \end_layout
34909
34910 \begin_layout Standard
34911 When no fraction bar thickness is given, the predefined value of 0.4
34912 \begin_inset space \thinspace{}
34913 \end_inset
34914
34915 pt will be used.
34916 \end_layout
34917
34918 \begin_layout Standard
34919 \begin_inset VSpace medskip
34920 \end_inset
34921
34922 For example, the commands 
34923 \series bold
34924
34925 \backslash
34926 dfrac
34927 \series default
34928  and 
34929 \series bold
34930
34931 \backslash
34932 tbinom
34933 \series default
34934  from 
34935 \begin_inset CommandInset ref
34936 LatexCommand ref
34937 reference "sub:Fractions"
34938
34939 \end_inset
34940
34941  are defined with the commands
34942 \end_layout
34943
34944 \begin_layout Standard
34945
34946 \series bold
34947
34948 \backslash
34949 newcommand{
34950 \backslash
34951 dfrac}[2]{
34952 \backslash
34953 genfrac{}{}{}{0}{#1}{#2}}
34954 \end_layout
34955
34956 \begin_layout Standard
34957 and
34958 \end_layout
34959
34960 \begin_layout Standard
34961
34962 \series bold
34963
34964 \backslash
34965 newcommand{
34966 \backslash
34967 tbinom}[2]{
34968 \backslash
34969 genfrac{(}{)}{0pt}{1}{#1}{#2}}
34970 \end_layout
34971
34972 \begin_layout Standard
34973 \begin_inset VSpace medskip
34974 \end_inset
34975
34976 To define a fraction where the fraction bar thickness can be given as optional
34977  argument, the following line is inserted to the LaTeX-preamble:
34978 \end_layout
34979
34980 \begin_layout Standard
34981
34982 \series bold
34983
34984 \backslash
34985 newcommand{
34986 \backslash
34987 fracS}[3][]{
34988 \backslash
34989 genfrac{}{}{#1}{}{#2}{#3}}
34990 \end_layout
34991
34992 \begin_layout Standard
34993 A test:
34994 \begin_inset Formula \begin{align*}
34995 \text{Command} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
34996 \text{Result} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}\end{align*}
34997
34998 \end_inset
34999
35000 As one can see, the distance of the numerator and the denominator to the
35001  fraction bar is round about three times the bar thickness.
35002 \end_layout
35003
35004 \begin_layout Subsection
35005 Canceled Formulas
35006 \begin_inset Index
35007 status collapsed
35008
35009 \begin_layout Plain Layout
35010 Formula ! canceled
35011 \end_layout
35012
35013 \end_inset
35014
35015
35016 \end_layout
35017
35018 \begin_layout Standard
35019 To cancel formulas or formula parts, the LaTeX-package 
35020 \series bold
35021 cancel
35022 \series default
35023
35024 \begin_inset Index
35025 status collapsed
35026
35027 \begin_layout Plain Layout
35028 Packages ! cancel
35029 \end_layout
35030
35031 \end_inset
35032
35033  has to be loaded with the LaTeX-preamble line
35034 \end_layout
35035
35036 \begin_layout Standard
35037
35038 \series bold
35039
35040 \backslash
35041 usepackage[samesize]{cancel}
35042 \end_layout
35043
35044 \begin_layout Standard
35045 \begin_inset ERT
35046 status collapsed
35047
35048 \begin_layout Plain Layout
35049
35050
35051 \backslash
35052 ifcancel 
35053 \end_layout
35054
35055 \end_inset
35056
35057
35058 \begin_inset Note Note
35059 status open
35060
35061 \begin_layout Plain Layout
35062 The following table will only be displayed when the LaTeX-package 
35063 \series bold
35064 cancel
35065 \series default
35066  is installed.
35067 \end_layout
35068
35069 \end_inset
35070
35071
35072 \end_layout
35073
35074 \begin_layout Standard
35075 There are four ways to cancel formulas:
35076 \end_layout
35077
35078 \begin_layout Standard
35079 \align center
35080 \begin_inset Tabular
35081 <lyxtabular version="3" rows="5" columns="2">
35082 <features>
35083 <column alignment="center" valignment="top" width="0">
35084 <column alignment="center" valignment="top" width="0">
35085 <row>
35086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35087 \begin_inset Text
35088
35089 \begin_layout Plain Layout
35090 Command
35091 \end_layout
35092
35093 \end_inset
35094 </cell>
35095 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35096 \begin_inset Text
35097
35098 \begin_layout Plain Layout
35099 Result
35100 \begin_inset Note Note
35101 status collapsed
35102
35103 \begin_layout Plain Layout
35104 The space and
35105 \series bold
35106  
35107 \backslash
35108 raisebox
35109 \series default
35110  are used here as spacer.
35111 \end_layout
35112
35113 \end_inset
35114
35115
35116 \end_layout
35117
35118 \end_inset
35119 </cell>
35120 </row>
35121 <row>
35122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35123 \begin_inset Text
35124
35125 \begin_layout Plain Layout
35126
35127 \backslash
35128 cancel{
35129 \backslash
35130 int
35131 \begin_inset ERT
35132 status collapsed
35133
35134 \begin_layout Plain Layout
35135
35136
35137 \backslash
35138 spce 
35139 \end_layout
35140
35141 \end_inset
35142
35143 A=B
35144 \end_layout
35145
35146 \end_inset
35147 </cell>
35148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35149 \begin_inset Text
35150
35151 \begin_layout Plain Layout
35152 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35153 \end_inset
35154
35155
35156 \end_layout
35157
35158 \end_inset
35159 </cell>
35160 </row>
35161 <row>
35162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35163 \begin_inset Text
35164
35165 \begin_layout Plain Layout
35166
35167 \backslash
35168 bcancel{
35169 \backslash
35170 int
35171 \begin_inset ERT
35172 status collapsed
35173
35174 \begin_layout Plain Layout
35175
35176
35177 \backslash
35178 spce 
35179 \end_layout
35180
35181 \end_inset
35182
35183 A=B
35184 \end_layout
35185
35186 \end_inset
35187 </cell>
35188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35189 \begin_inset Text
35190
35191 \begin_layout Plain Layout
35192 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35193 \end_inset
35194
35195
35196 \end_layout
35197
35198 \end_inset
35199 </cell>
35200 </row>
35201 <row>
35202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35203 \begin_inset Text
35204
35205 \begin_layout Plain Layout
35206
35207 \backslash
35208 xcancel{
35209 \backslash
35210 int
35211 \begin_inset ERT
35212 status collapsed
35213
35214 \begin_layout Plain Layout
35215
35216
35217 \backslash
35218 spce 
35219 \end_layout
35220
35221 \end_inset
35222
35223 A=B
35224 \end_layout
35225
35226 \end_inset
35227 </cell>
35228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35229 \begin_inset Text
35230
35231 \begin_layout Plain Layout
35232 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35233 \end_inset
35234
35235
35236 \end_layout
35237
35238 \end_inset
35239 </cell>
35240 </row>
35241 <row>
35242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35243 \begin_inset Text
35244
35245 \begin_layout Plain Layout
35246
35247 \backslash
35248 cancelto{1
35249 \begin_inset Formula $\to$
35250 \end_inset
35251
35252
35253 \backslash
35254 {
35255 \backslash
35256 int
35257 \begin_inset ERT
35258 status collapsed
35259
35260 \begin_layout Plain Layout
35261
35262
35263 \backslash
35264 spce 
35265 \end_layout
35266
35267 \end_inset
35268
35269 A=B
35270 \end_layout
35271
35272 \end_inset
35273 </cell>
35274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35275 \begin_inset Text
35276
35277 \begin_layout Plain Layout
35278 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35279 \end_inset
35280
35281
35282 \end_layout
35283
35284 \end_inset
35285 </cell>
35286 </row>
35287 </lyxtabular>
35288
35289 \end_inset
35290
35291
35292 \end_layout
35293
35294 \begin_layout Standard
35295
35296 \series bold
35297
35298 \backslash
35299 cancelto
35300 \series default
35301  is especially suitable to visualize the reduction of fractions within formulas:
35302 \begin_inset Formula \[
35303 \frac{\left(x_{0}+bB\right)^{2}}{\left(1+b^{2}\right)^{\cancelto{2}{3}}}=\frac{x_{0}^{2}+B^{2}-r_{g}^{2}}{\cancel{1+b^{2}}}\]
35304
35305 \end_inset
35306
35307
35308 \end_layout
35309
35310 \begin_layout Standard
35311 \begin_inset ERT
35312 status collapsed
35313
35314 \begin_layout Plain Layout
35315
35316
35317 \backslash
35318 else 
35319 \end_layout
35320
35321 \end_inset
35322
35323
35324 \begin_inset Note Note
35325 status open
35326
35327 \begin_layout Plain Layout
35328 The following will be displayed when the LaTeX-package 
35329 \series bold
35330 cancel
35331 \series default
35332  is not installed:
35333 \end_layout
35334
35335 \end_inset
35336
35337
35338 \end_layout
35339
35340 \begin_layout Standard
35341 You need to install the LaTeX-package 
35342 \series bold
35343 cancel
35344 \series default
35345  to see the rest of this subsection in the output.
35346 \end_layout
35347
35348 \begin_layout Standard
35349 \begin_inset ERT
35350 status collapsed
35351
35352 \begin_layout Plain Layout
35353
35354
35355 \backslash
35356 fi 
35357 \end_layout
35358
35359 \end_inset
35360
35361
35362 \end_layout
35363
35364 \begin_layout Subsection
35365 Formulas in Section Headings
35366 \begin_inset CommandInset label
35367 LatexCommand label
35368 name "sub:Formulas-in-Section"
35369
35370 \end_inset
35371
35372
35373 \begin_inset Index
35374 status collapsed
35375
35376 \begin_layout Plain Layout
35377 Formula ! in section headings
35378 \end_layout
35379
35380 \end_inset
35381
35382
35383 \end_layout
35384
35385 \begin_layout Standard
35386 When formulas are used in section headings, the following has to be taken
35387  into account:
35388 \end_layout
35389
35390 \begin_layout Standard
35391 \begin_inset Note Greyedout
35392 status open
35393
35394 \begin_layout Plain Layout
35395 When 
35396 \series bold
35397 hyperref
35398 \series default
35399
35400 \begin_inset Index
35401 status collapsed
35402
35403 \begin_layout Plain Layout
35404 Packages ! hyperref
35405 \end_layout
35406
35407 \end_inset
35408
35409  support is enabled in the document settings dialog under 
35410 \family sans
35411 PDF
35412 \begin_inset space ~
35413 \end_inset
35414
35415 Properties
35416 \family default
35417 , PDF-bookmarks are created for every section heading in the table of contents.
35418  If a section heading contains formulas, they are incorrectly displayed
35419  in the bookmark text, because formulas in bookmarks infringe the PDF convention
35420 s.
35421 \end_layout
35422
35423 \end_inset
35424
35425
35426 \end_layout
35427
35428 \begin_layout Standard
35429 Both problems can be solved by inserting at the end of the section heading
35430  a short title with the menu 
35431 \family sans
35432 Insert\SpecialChar \menuseparator
35433 Short
35434 \begin_inset space ~
35435 \end_inset
35436
35437 Title
35438 \family default
35439 .
35440  Short titles are used as alternative for multiline section headings to
35441  keep the table of contents clearly arranged.
35442  Only the short title appears in the table of contents and therefore also
35443  in the PDF-bookmark.
35444 \end_layout
35445
35446 \begin_layout Standard
35447 When formulas should be used in the table of contents but 
35448 \series bold
35449 hyperref
35450 \series default
35451  is used, one can use the following command in TeX-mode:
35452 \end_layout
35453
35454 \begin_layout Standard
35455
35456 \series bold
35457
35458 \backslash
35459 texorpdfstring{part}{alternative}
35460 \begin_inset Index
35461 status collapsed
35462
35463 \begin_layout Plain Layout
35464 Commands ! T ! 
35465 \backslash
35466 texorpdfstring
35467 \end_layout
35468
35469 \end_inset
35470
35471
35472 \end_layout
35473
35474 \begin_layout Standard
35475 Part is the part of the heading that shouldn't appear in the PDF-bookmark.
35476  This can be characters, formulas, footnotes, but also cross-references.
35477  The alternative is used instead of the part for the bookmark.
35478 \end_layout
35479
35480 \begin_layout Standard
35481 Here are two example headings:
35482 \begin_inset VSpace -3mm
35483 \end_inset
35484
35485
35486 \begin_inset ERT
35487 status collapsed
35488
35489 \begin_layout Plain Layout
35490
35491
35492 \backslash
35493 boldmath 
35494 \end_layout
35495
35496 \end_inset
35497
35498
35499 \end_layout
35500
35501 \begin_layout Subsubsection
35502 Heading without formula in table of contents 
35503 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35504 \end_inset
35505
35506
35507 \begin_inset OptArg
35508 status collapsed
35509
35510 \begin_layout Plain Layout
35511 Heading without formula in table of contents
35512 \end_layout
35513
35514 \end_inset
35515
35516
35517 \end_layout
35518
35519 \begin_layout Subsubsection
35520 Heading with formula in table of contents
35521 \begin_inset ERT
35522 status collapsed
35523
35524 \begin_layout Plain Layout
35525
35526
35527 \backslash
35528 texorpdfstring{
35529 \end_layout
35530
35531 \end_inset
35532
35533  
35534 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35535 \end_inset
35536
35537
35538 \begin_inset ERT
35539 status collapsed
35540
35541 \begin_layout Plain Layout
35542
35543 }{}
35544 \end_layout
35545
35546 \end_inset
35547
35548
35549 \end_layout
35550
35551 \begin_layout Standard
35552 \begin_inset ERT
35553 status collapsed
35554
35555 \begin_layout Plain Layout
35556
35557
35558 \backslash
35559 unboldmath 
35560 \end_layout
35561
35562 \end_inset
35563
35564 In the first heading a short title was used, in the second one 
35565 \series bold
35566
35567 \backslash
35568 texorpdfstring
35569 \series default
35570 .
35571 \end_layout
35572
35573 \begin_layout Standard
35574 To get the same formatting as for the other headings, the complete heading
35575  was set into a 
35576 \series bold
35577 boldmath
35578 \series default
35579  environment
35580 \begin_inset Foot
35581 status collapsed
35582
35583 \begin_layout Plain Layout
35584 see 
35585 \begin_inset CommandInset ref
35586 LatexCommand ref
35587 reference "sub:Bold-Formulas"
35588
35589 \end_inset
35590
35591
35592 \end_layout
35593
35594 \end_inset
35595
35596 .
35597 \end_layout
35598
35599 \begin_layout Subsection
35600 Formulas in multi-column Text
35601 \begin_inset Index
35602 status collapsed
35603
35604 \begin_layout Plain Layout
35605 Formula ! in multi-column text
35606 \end_layout
35607
35608 \end_inset
35609
35610
35611 \end_layout
35612
35613 \begin_layout Standard
35614 Formulas in multi-column text are often too wide to fit into a column and
35615  thus need to be set over the whole page width.
35616  This is done by using the LaTeX-package 
35617 \series bold
35618 multicol
35619 \series default
35620
35621 \begin_inset Foot
35622 status collapsed
35623
35624 \begin_layout Plain Layout
35625
35626 \series bold
35627 multicol
35628 \series default
35629  is part of every LaTeX standard installation.
35630 \end_layout
35631
35632 \end_inset
35633
35634
35635 \begin_inset Index
35636 status collapsed
35637
35638 \begin_layout Plain Layout
35639 Packages ! multicol
35640 \end_layout
35641
35642 \end_inset
35643
35644 , that is loaded with the LaTeX-preamble line
35645 \end_layout
35646
35647 \begin_layout Standard
35648
35649 \series bold
35650
35651 \backslash
35652 usepackage{multicol}
35653 \end_layout
35654
35655 \begin_layout Standard
35656 \begin_inset Note Greyedout
35657 status open
35658
35659 \begin_layout Plain Layout
35660 Note herby that the setting 
35661 \family sans
35662 Two-column
35663 \begin_inset space ~
35664 \end_inset
35665
35666 document
35667 \family default
35668  in the menu 
35669 \family sans
35670 Document\SpecialChar \menuseparator
35671 Settings
35672 \family default
35673  under 
35674 \family sans
35675 Text
35676 \begin_inset space ~
35677 \end_inset
35678
35679 Layout
35680 \family default
35681 \emph on
35682  
35683 \emph default
35684 must 
35685 \emph on
35686 not
35687 \emph default
35688  be selected.
35689 \end_layout
35690
35691 \end_inset
35692
35693
35694 \end_layout
35695
35696 \begin_layout Standard
35697 Before the multi-column text the command
35698 \end_layout
35699
35700 \begin_layout Standard
35701
35702 \series bold
35703
35704 \backslash
35705 begin{multicols}{column number}
35706 \end_layout
35707
35708 \begin_layout Standard
35709 is written in TeX-mode.
35710  The column number is a number in the range of 2
35711 \begin_inset space \thinspace{}
35712 \end_inset
35713
35714 -
35715 \begin_inset space \thinspace{}
35716 \end_inset
35717
35718 10.
35719  Before the formula the multi-column text is ended by inserting the command
35720 \end_layout
35721
35722 \begin_layout Standard
35723
35724 \series bold
35725
35726 \backslash
35727 end{multicols}
35728 \end_layout
35729
35730 \begin_layout Standard
35731 in TeX-mode.
35732 \end_layout
35733
35734 \begin_layout Standard
35735 Due to the command some space is automatically added before the formula.
35736  To revert this, -6
35737 \begin_inset space \thinspace{}
35738 \end_inset
35739
35740 mm vertical space is inserted before the formula.
35741  When the formula style 
35742 \series bold
35743 Indented
35744 \begin_inset Foot
35745 status collapsed
35746
35747 \begin_layout Plain Layout
35748 formula styles see 
35749 \begin_inset CommandInset ref
35750 LatexCommand ref
35751 reference "sec:Formula-Styles"
35752
35753 \end_inset
35754
35755
35756 \end_layout
35757
35758 \end_inset
35759
35760
35761 \series default
35762  is used, -9
35763 \begin_inset space \thinspace{}
35764 \end_inset
35765
35766 mm space is inserted instead.
35767 \end_layout
35768
35769 \begin_layout Standard
35770 As example a multi-column text with a displayed formula:
35771 \end_layout
35772
35773 \begin_layout Standard
35774
35775 \lang german
35776 \begin_inset ERT
35777 status collapsed
35778
35779 \begin_layout Plain Layout
35780
35781
35782 \backslash
35783 begin{multicols}{2}
35784 \end_layout
35785
35786 \end_inset
35787
35788 Das Spektrum wird fouriertransformiert.
35789  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
35790 , Lösungsmittel) zu trennen.
35791  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
35792  nun das Aussehen des Ausgangssignals.
35793  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
35794  über alle Phasen integrieren muss.
35795  Sei nun 
35796 \begin_inset Formula $S$
35797 \end_inset
35798
35799  unser normiertes Ausgangssignal und 
35800 \begin_inset Formula $P$
35801 \end_inset
35802
35803  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
35804 \begin_inset ERT
35805 status collapsed
35806
35807 \begin_layout Plain Layout
35808
35809
35810 \backslash
35811 end{multicols}
35812 \end_layout
35813
35814 \end_inset
35815
35816
35817 \begin_inset VSpace -6mm
35818 \end_inset
35819
35820
35821 \begin_inset Formula \begin{equation}
35822 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\end{equation}
35823
35824 \end_inset
35825
35826
35827 \begin_inset ERT
35828 status collapsed
35829
35830 \begin_layout Plain Layout
35831
35832
35833 \backslash
35834 begin{multicols}{2}
35835 \end_layout
35836
35837 \end_inset
35838
35839 wobei 
35840 \begin_inset Formula $S_{0}$
35841 \end_inset
35842
35843  das Signal ohne Gradient ist und die Normierungsbedingung 
35844 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
35845 \end_inset
35846
35847  gilt.
35848  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
35849  Direkt nach dem 
35850 \begin_inset Formula $\nicefrac{\pi}{2}$
35851 \end_inset
35852
35853
35854 \begin_inset space \thinspace{}
35855 \end_inset
35856
35857 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
35858  das Signal zusätzlich abschwächt.
35859  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
35860  
35861 \begin_inset Formula $T_{2}$
35862 \end_inset
35863
35864 -Zeit.
35865 \end_layout
35866
35867 \begin_layout Standard
35868
35869 \lang german
35870 \begin_inset ERT
35871 status collapsed
35872
35873 \begin_layout Plain Layout
35874
35875
35876 \backslash
35877 end{multicols}
35878 \end_layout
35879
35880 \end_inset
35881
35882
35883 \end_layout
35884
35885 \begin_layout Subsection
35886 Formulas with Description of Variables
35887 \begin_inset Index
35888 status collapsed
35889
35890 \begin_layout Plain Layout
35891 Formula ! with description of variables
35892 \end_layout
35893
35894 \end_inset
35895
35896
35897 \end_layout
35898
35899 \begin_layout Standard
35900 To describe variables within a formula, like in formula 
35901 \begin_inset CommandInset ref
35902 LatexCommand eqref
35903 reference "eq:within"
35904
35905 \end_inset
35906
35907 , a 2
35908 \series bold
35909 ×
35910 \series default
35911
35912 \begin_inset Formula $n$
35913 \end_inset
35914
35915
35916 \begin_inset space ~
35917 \end_inset
35918
35919 matrix is used with left aligned columns for the 
35920 \begin_inset Formula $n$
35921 \end_inset
35922
35923  used variables.
35924 \begin_inset Foot
35925 status collapsed
35926
35927 \begin_layout Plain Layout
35928 matrices see 
35929 \begin_inset CommandInset ref
35930 LatexCommand ref
35931 reference "sec:Matrices"
35932
35933 \end_inset
35934
35935
35936 \end_layout
35937
35938 \end_inset
35939
35940  To set the description in a smaller size, before the matrix e.
35941 \begin_inset space \thinspace{}
35942 \end_inset
35943
35944 g.
35945 \begin_inset space \space{}
35946 \end_inset
35947
35948 the command 
35949 \series bold
35950
35951 \backslash
35952 footnotesize
35953 \series default
35954  is inserted.
35955 \begin_inset Foot
35956 status collapsed
35957
35958 \begin_layout Plain Layout
35959 font sizes see 
35960 \begin_inset CommandInset ref
35961 LatexCommand ref
35962 reference "sub:Font-Sizes"
35963
35964 \end_inset
35965
35966
35967 \end_layout
35968
35969 \end_inset
35970
35971
35972 \end_layout
35973
35974 \begin_layout Standard
35975 When the formula style 
35976 \series bold
35977 Indented
35978 \begin_inset Foot
35979 status collapsed
35980
35981 \begin_layout Plain Layout
35982 formula styles see 
35983 \begin_inset CommandInset ref
35984 LatexCommand ref
35985 reference "sec:Formula-Styles"
35986
35987 \end_inset
35988
35989
35990 \end_layout
35991
35992 \end_inset
35993
35994
35995 \series default
35996  is used, a 
35997 \series bold
35998
35999 \backslash
36000 hfill
36001 \series default
36002
36003 \begin_inset Foot
36004 status collapsed
36005
36006 \begin_layout Plain Layout
36007
36008 \series bold
36009
36010 \backslash
36011 hfill
36012 \series default
36013  only works in formulas with the style 
36014 \series bold
36015 Indented
36016 \series default
36017 , see 
36018 \begin_inset CommandInset ref
36019 LatexCommand ref
36020 reference "sub:Variable-Space"
36021
36022 \end_inset
36023
36024 .
36025 \end_layout
36026
36027 \end_inset
36028
36029  is inserted before and after the matrix to have the same separation of
36030  the matrix from the equation and the side margin.
36031 \end_layout
36032
36033 \begin_layout Standard
36034 When the formula style 
36035 \series bold
36036 Centered
36037 \series default
36038  is used, the method described in 
36039 \begin_inset CommandInset ref
36040 LatexCommand ref
36041 reference "sub:Flalign-Environment"
36042
36043 \end_inset
36044
36045  is used to indent formulas.
36046  Formula 
36047 \begin_inset CommandInset ref
36048 LatexCommand eqref
36049 reference "eq:within"
36050
36051 \end_inset
36052
36053  consists of five columns whereas in the first two columns contain the equation,
36054  the third the matrix and the last one an empty TeX-brace.
36055 \begin_inset Formula \begin{flalign}
36056 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36057 \rho & \textrm{density}\\
36058 V & \textrm{volume}\\
36059 g & \textrm{gravitational acceleration}\end{array} &  & {}\label{eq:within}\end{flalign}
36060
36061 \end_inset
36062
36063
36064 \end_layout
36065
36066 \begin_layout Subsection
36067 Upright small Greek Letters
36068 \begin_inset CommandInset label
36069 LatexCommand label
36070 name "sub:Upright-small-Greek"
36071
36072 \end_inset
36073
36074
36075 \begin_inset Index
36076 status collapsed
36077
36078 \begin_layout Plain Layout
36079 Greek letters ! upright
36080 \end_layout
36081
36082 \end_inset
36083
36084
36085 \end_layout
36086
36087 \begin_layout Standard
36088 Most of the math fonts only provide italic small Greek letters.
36089  But for symbols of elementary particles like pions and neutrinos, upright
36090  Greek letters are needed.
36091  The file 
36092 \series bold
36093 upgreek.sty
36094 \series default
36095
36096 \begin_inset Foot
36097 status collapsed
36098
36099 \begin_layout Plain Layout
36100
36101 \series bold
36102 upgreek
36103 \series default
36104  is part of the LaTeX-package 
36105 \series bold
36106 was
36107 \series default
36108
36109 \begin_inset Index
36110 status collapsed
36111
36112 \begin_layout Plain Layout
36113 Packages ! was
36114 \begin_inset ERT
36115 status collapsed
36116
36117 \begin_layout Plain Layout
36118
36119
36120 \backslash
36121 vspace{4mm}
36122 \end_layout
36123
36124 \end_inset
36125
36126
36127 \end_layout
36128
36129 \end_inset
36130
36131 .
36132 \end_layout
36133
36134 \end_inset
36135
36136
36137 \begin_inset Index
36138 status collapsed
36139
36140 \begin_layout Plain Layout
36141 Packages ! upgreek
36142 \end_layout
36143
36144 \end_inset
36145
36146  that is loaded with the LaTeX-preamble line
36147 \end_layout
36148
36149 \begin_layout Standard
36150
36151 \series bold
36152
36153 \backslash
36154 usepackage{upgreek}
36155 \end_layout
36156
36157 \begin_layout Standard
36158 provides them.
36159  
36160 \begin_inset ERT
36161 status collapsed
36162
36163 \begin_layout Plain Layout
36164
36165
36166 \backslash
36167 ifupgreek 
36168 \end_layout
36169
36170 \end_inset
36171
36172
36173 \begin_inset Note Note
36174 status open
36175
36176 \begin_layout Plain Layout
36177 The following table will only be displayed when the LaTeX-package 
36178 \series bold
36179 upgreek
36180 \series default
36181  is installed:
36182 \end_layout
36183
36184 \end_inset
36185
36186  They are created when the command for a small Greek letters is started
36187  with 
36188 \series bold
36189 up
36190 \series default
36191 .
36192  For example the command 
36193 \series bold
36194
36195 \backslash
36196 uptau
36197 \series default
36198  creates this: 
36199 \begin_inset Formula $\uptau$
36200 \end_inset
36201
36202
36203 \end_layout
36204
36205 \begin_layout Standard
36206 With these commands reactions of elementary particles can be typeset:
36207 \begin_inset Formula \[
36208 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}\]
36209
36210 \end_inset
36211
36212
36213 \end_layout
36214
36215 \begin_layout Standard
36216 The upright letters are more bold and wider than the italic ones.
36217  They should therefore not be used for units like 
36218 \begin_inset Quotes eld
36219 \end_inset
36220
36221 µm
36222 \begin_inset Quotes erd
36223 \end_inset
36224
36225 .
36226 \end_layout
36227
36228 \begin_layout Standard
36229 \begin_inset ERT
36230 status collapsed
36231
36232 \begin_layout Plain Layout
36233
36234
36235 \backslash
36236 else 
36237 \end_layout
36238
36239 \end_inset
36240
36241
36242 \begin_inset Note Note
36243 status open
36244
36245 \begin_layout Plain Layout
36246 The following will be displayed when the LaTeX-package 
36247 \series bold
36248 upgreek
36249 \series default
36250  is not installed:
36251 \end_layout
36252
36253 \end_inset
36254
36255
36256 \end_layout
36257
36258 \begin_layout Standard
36259 You need to install the LaTeX-package 
36260 \series bold
36261 upgreek
36262 \series default
36263  to see the rest of this subsection in the output.
36264 \end_layout
36265
36266 \begin_layout Standard
36267 \begin_inset ERT
36268 status collapsed
36269
36270 \begin_layout Plain Layout
36271
36272
36273 \backslash
36274 fi 
36275 \end_layout
36276
36277 \end_inset
36278
36279
36280 \end_layout
36281
36282 \begin_layout Subsection
36283 Text Characters in Formulas
36284 \begin_inset CommandInset label
36285 LatexCommand label
36286 name "sub:Text-Characters-in"
36287
36288 \end_inset
36289
36290
36291 \begin_inset Index
36292 status collapsed
36293
36294 \begin_layout Plain Layout
36295 Text ! in formulas
36296 \end_layout
36297
36298 \end_inset
36299
36300
36301 \end_layout
36302
36303 \begin_layout Standard
36304 In some cases you might want to insert text characters directly into formulas.
36305  When for example the centered dot · is often used in formulas like 
36306 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
36307 \end_inset
36308
36309 , one would have to insert the command 
36310 \series bold
36311
36312 \backslash
36313 cdot
36314 \series default
36315
36316 \begin_inset Foot
36317 status collapsed
36318
36319 \begin_layout Plain Layout
36320 see 
36321 \begin_inset CommandInset ref
36322 LatexCommand ref
36323 reference "sub:Binary-Operators"
36324
36325 \end_inset
36326
36327
36328 \end_layout
36329
36330 \end_inset
36331
36332  all the time, because this character is defined in all encodings as text
36333  character.
36334  But the encoding can be changed by this LaTeX-preamble line:
36335 \end_layout
36336
36337 \begin_layout Standard
36338
36339 \series bold
36340
36341 \backslash
36342 Declare Inputtext{183}{
36343 \backslash
36344 ifmmode
36345 \backslash
36346 cdot
36347 \backslash
36348 else
36349 \backslash
36350 textperiodcentered
36351 \backslash
36352 f\SpecialChar \textcompwordmark{}
36353 i}
36354 \end_layout
36355
36356 \begin_layout Standard
36357 The character encoding (menu 
36358 \family sans
36359 Document\SpecialChar \menuseparator
36360 Settings\SpecialChar \menuseparator
36361 Language
36362 \family default
36363 ) specifies what character appears when a keyboard key is pressed.
36364  When the key for the character '·' is pressed, internally the command 
36365 \series bold
36366
36367 \backslash
36368 textperiodcentered
36369 \series default
36370  is used.
36371  But this command is not available in a formula so that you would get LaTeX-erro
36372 rs.
36373  With the changed encoding the right command is chosen automatically, depending
36374  on if the character was inserted into a formula or not.
36375 \end_layout
36376
36377 \begin_layout Standard
36378 The encoding of several characters is saved in definition files.
36379  Fore example the encoding 
36380 \series bold
36381 latin9
36382 \series default
36383  is defined in the file 
36384 \series bold
36385 latin9.def
36386 \series default
36387  that is in the installation folder of LaTeX.
36388  Encodings should only be changed via the LaTeX-preamble and not in the
36389  definition files.
36390  Otherwise own documents could not be edited by other LyX users working
36391  on other computers.
36392 \end_layout
36393
36394 \begin_layout Standard
36395 \begin_inset VSpace medskip
36396 \end_inset
36397
36398 Besides the centered dot, in this document the degree sign ° is defined
36399  with the following LaTeX-preamble line so that it can directly be inserted
36400  to a formula:
36401 \end_layout
36402
36403 \begin_layout Standard
36404
36405 \series bold
36406
36407 \backslash
36408 DeclareInputtext{176}{
36409 \backslash
36410 ifmmode^
36411 \backslash
36412 circ
36413 \backslash
36414 else
36415 \backslash
36416 textdegree
36417 \backslash
36418 f\SpecialChar \textcompwordmark{}
36419 i}
36420 \end_layout
36421
36422 \begin_layout Standard
36423 \begin_inset Newpage newpage
36424 \end_inset
36425
36426
36427 \end_layout
36428
36429 \begin_layout Section
36430 \start_of_appendix
36431 Typographic Advice
36432 \begin_inset Index
36433 status collapsed
36434
36435 \begin_layout Plain Layout
36436 Typographic advice
36437 \end_layout
36438
36439 \end_inset
36440
36441
36442 \end_layout
36443
36444 \begin_layout Standard
36445 This section is a summary of the most important typographic rules, listed
36446  in ISO norms.
36447 \begin_inset Foot
36448 status collapsed
36449
36450 \begin_layout Plain Layout
36451 This collection was partly taken from the German semi-official dictionary
36452  called 
36453 \begin_inset Quotes eld
36454 \end_inset
36455
36456 Duden
36457 \begin_inset Quotes erd
36458 \end_inset
36459
36460  
36461 \begin_inset CommandInset citation
36462 LatexCommand cite
36463 key "Duden"
36464
36465 \end_inset
36466
36467  that lists some of the ISO rules.
36468  More rules are listed in 
36469 \begin_inset CommandInset citation
36470 LatexCommand cite
36471 key "Checklist"
36472
36473 \end_inset
36474
36475 .
36476 \end_layout
36477
36478 \end_inset
36479
36480
36481 \end_layout
36482
36483 \begin_layout Itemize
36484 Physical units are 
36485 \emph on
36486 always
36487 \emph default
36488  set upright
36489 \begin_inset Foot
36490 status collapsed
36491
36492 \begin_layout Plain Layout
36493 done with font styles, see 
36494 \begin_inset CommandInset ref
36495 LatexCommand ref
36496 reference "sub:Font-Styles"
36497
36498 \end_inset
36499
36500
36501 \end_layout
36502
36503 \end_inset
36504
36505 , no matter if they appear in italic text: 30
36506 \begin_inset space \thinspace{}
36507 \end_inset
36508
36509 km/h
36510 \begin_inset Newline newline
36511 \end_inset
36512
36513 Between the value and the unit is the smallest space, see 
36514 \begin_inset CommandInset ref
36515 LatexCommand ref
36516 reference "sub:Predefined-Space"
36517
36518 \end_inset
36519
36520 .
36521 \begin_inset Newline newline
36522 \end_inset
36523
36524 This convention is automatically fulfilled when the command 
36525 \series bold
36526
36527 \backslash
36528 unittwo
36529 \series default
36530  is used.
36531  When it is entered to a formula, two boxes appear.
36532  In the first one the value is inserted, in the second one the unit, and
36533  one gets as above: 
36534 \begin_inset Formula $\unit[30]{km/h}$
36535 \end_inset
36536
36537
36538 \begin_inset space \thinspace{}
36539 \end_inset
36540
36541 .
36542  Note that 
36543 \series bold
36544
36545 \backslash
36546 unittwo
36547 \series default
36548  is not a real LaTeX command but the command 
36549 \series bold
36550
36551 \backslash
36552 unit[value]{unit}
36553 \series default
36554 , therefore you cannot use it in TeX code.
36555 \end_layout
36556
36557 \begin_layout Itemize
36558 Percent and perthousand signs are set like physical units:
36559 \begin_inset Newline newline
36560 \end_inset
36561
36562 1,2
36563 \begin_inset space \thinspace{}
36564 \end_inset
36565
36566 ‰ alcohol in blood
36567 \end_layout
36568
36569 \begin_layout Itemize
36570 The degree sign follows directly on the value: 15°, but not when it is used
36571  in units: 15
36572 \begin_inset space \thinspace{}
36573 \end_inset
36574
36575 °C
36576 \end_layout
36577
36578 \begin_layout Itemize
36579 In numbers with more than four digits the smallest space is inserted before
36580  every third digit to group them: 
36581 \family roman
36582 \series medium
36583 \shape up
36584 \size normal
36585 \emph off
36586 \bar no
36587 \noun off
36588 \color none
36589 18
36590 \begin_inset space \thinspace{}
36591 \end_inset
36592
36593 473
36594 \begin_inset space \thinspace{}
36595 \end_inset
36596
36597 588
36598 \end_layout
36599
36600 \begin_layout Itemize
36601 For dimensions like 120×90×40
36602 \begin_inset space \thinspace{}
36603 \end_inset
36604
36605 cm the multiplication sign 
36606 \begin_inset Quotes eld
36607 \end_inset
36608
36609 ×
36610 \begin_inset Quotes erd
36611 \end_inset
36612
36613  is used.
36614  It is available either via the command 
36615 \series bold
36616
36617 \backslash
36618 times
36619 \series default
36620  or via the menu 
36621 \family sans
36622 Insert\SpecialChar \menuseparator
36623 Special Character\SpecialChar \menuseparator
36624 Symbols
36625 \family default
36626 .
36627 \end_layout
36628
36629 \begin_layout Itemize
36630 Functions with names consisting of several letters are set upright to avoid
36631  confusions, see 
36632 \begin_inset CommandInset ref
36633 LatexCommand ref
36634 reference "sub:Predefined-Functions"
36635
36636 \end_inset
36637
36638 .
36639 \end_layout
36640
36641 \begin_layout Itemize
36642 Indices consisting of several letters, are set upright: 
36643 \begin_inset Formula $E_{\mathrm{kin}}$
36644 \end_inset
36645
36646
36647 \begin_inset Newline newline
36648 \end_inset
36649
36650 Components of matrices are set italic: 
36651 \begin_inset Formula $\hat{H}_{kl}$
36652 \end_inset
36653
36654
36655 \end_layout
36656
36657 \begin_layout Itemize
36658 The differentiation/integration operator 'd', the Euler's number 'e' and
36659  the imaginary unit 'i' should be set upright, to avoid mixing them up with
36660  other variables.
36661 \end_layout
36662
36663 \begin_layout Itemize
36664 The character that denotes a 
36665 \noun on
36666 Fourier
36667 \noun default
36668  transformation is inserted either by the command 
36669 \series bold
36670
36671 \backslash
36672 mathscr
36673 \begin_inset ERT
36674 status collapsed
36675
36676 \begin_layout Plain Layout
36677
36678
36679 \backslash
36680 spce 
36681 \end_layout
36682
36683 \end_inset
36684
36685
36686 \backslash
36687 {F
36688 \series default
36689
36690 \begin_inset Index
36691 status collapsed
36692
36693 \begin_layout Plain Layout
36694 Commands ! M ! 
36695 \backslash
36696 mathscr
36697 \end_layout
36698
36699 \end_inset
36700
36701  or via the menu 
36702 \family sans
36703 Insert\SpecialChar \menuseparator
36704 Special Character\SpecialChar \menuseparator
36705 Symbols\SpecialChar \menuseparator
36706 Letterlike
36707 \begin_inset space ~
36708 \end_inset
36709
36710 Symbols
36711 \family default
36712
36713 \begin_inset Formula $\mathscr{F}$
36714 \end_inset
36715
36716
36717 \begin_inset Newline newline
36718 \end_inset
36719
36720 To be able to use the command 
36721 \series bold
36722
36723 \backslash
36724 mathscr
36725 \series default
36726 , the LaTeX package 
36727 \series bold
36728 mathrsfs
36729 \series default
36730
36731 \begin_inset Index
36732 status collapsed
36733
36734 \begin_layout Plain Layout
36735 Packages ! mathrsfs
36736 \end_layout
36737
36738 \end_inset
36739
36740  needs to be loaded with the LaTeX-preamble line 
36741 \series bold
36742
36743 \backslash
36744 usepackage{mathrsfs}
36745 \series default
36746 .
36747 \end_layout
36748
36749 \begin_layout Standard
36750 \begin_inset Newpage newpage
36751 \end_inset
36752
36753
36754 \end_layout
36755
36756 \begin_layout Section
36757 Synonyms
36758 \begin_inset Index
36759 status collapsed
36760
36761 \begin_layout Plain Layout
36762 Synonyms
36763 \end_layout
36764
36765 \end_inset
36766
36767
36768 \end_layout
36769
36770 \begin_layout Standard
36771 Some characters and symbols can be created with several commands.
36772  Here is a list of the synonym commands:
36773 \end_layout
36774
36775 \begin_layout Standard
36776 \begin_inset VSpace bigskip
36777 \end_inset
36778
36779
36780 \begin_inset space \hfill{}
36781 \end_inset
36782
36783
36784 \begin_inset Tabular
36785 <lyxtabular version="3" rows="12" columns="2">
36786 <features>
36787 <column alignment="center" valignment="top" width="0pt">
36788 <column alignment="center" valignment="top" width="0pt">
36789 <row>
36790 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36791 \begin_inset Text
36792
36793 \begin_layout Plain Layout
36794 Command
36795 \end_layout
36796
36797 \end_inset
36798 </cell>
36799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36800 \begin_inset Text
36801
36802 \begin_layout Plain Layout
36803 equivalent to
36804 \begin_inset Note Note
36805 status collapsed
36806
36807 \begin_layout Plain Layout
36808
36809 \series bold
36810
36811 \backslash
36812 raisebox
36813 \series default
36814  is only used as spacer.
36815 \end_layout
36816
36817 \end_inset
36818
36819
36820 \end_layout
36821
36822 \end_inset
36823 </cell>
36824 </row>
36825 <row>
36826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36827 \begin_inset Text
36828
36829 \begin_layout Plain Layout
36830
36831 \backslash
36832 ast
36833 \end_layout
36834
36835 \end_inset
36836 </cell>
36837 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36838 \begin_inset Text
36839
36840 \begin_layout Plain Layout
36841 \begin_inset ERT
36842 status collapsed
36843
36844 \begin_layout Plain Layout
36845
36846
36847 \backslash
36848 raisebox{-1.2mm}{
36849 \end_layout
36850
36851 \end_inset
36852
36853 *
36854 \begin_inset ERT
36855 status collapsed
36856
36857 \begin_layout Plain Layout
36858
36859 }
36860 \end_layout
36861
36862 \end_inset
36863
36864
36865 \end_layout
36866
36867 \end_inset
36868 </cell>
36869 </row>
36870 <row>
36871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36872 \begin_inset Text
36873
36874 \begin_layout Plain Layout
36875
36876 \backslash
36877 choose
36878 \end_layout
36879
36880 \end_inset
36881 </cell>
36882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36883 \begin_inset Text
36884
36885 \begin_layout Plain Layout
36886
36887 \backslash
36888 binom
36889 \end_layout
36890
36891 \end_inset
36892 </cell>
36893 </row>
36894 <row>
36895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36896 \begin_inset Text
36897
36898 \begin_layout Plain Layout
36899
36900 \backslash
36901 geq
36902 \end_layout
36903
36904 \end_inset
36905 </cell>
36906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36907 \begin_inset Text
36908
36909 \begin_layout Plain Layout
36910
36911 \backslash
36912 ge
36913 \end_layout
36914
36915 \end_inset
36916 </cell>
36917 </row>
36918 <row>
36919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36920 \begin_inset Text
36921
36922 \begin_layout Plain Layout
36923
36924 \backslash
36925 lbrace
36926 \end_layout
36927
36928 \end_inset
36929 </cell>
36930 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36931 \begin_inset Text
36932
36933 \begin_layout Plain Layout
36934 {
36935 \end_layout
36936
36937 \end_inset
36938 </cell>
36939 </row>
36940 <row>
36941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36942 \begin_inset Text
36943
36944 \begin_layout Plain Layout
36945
36946 \backslash
36947 lbracket
36948 \end_layout
36949
36950 \end_inset
36951 </cell>
36952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36953 \begin_inset Text
36954
36955 \begin_layout Plain Layout
36956 [
36957 \end_layout
36958
36959 \end_inset
36960 </cell>
36961 </row>
36962 <row>
36963 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36964 \begin_inset Text
36965
36966 \begin_layout Plain Layout
36967
36968 \backslash
36969 leftarrow
36970 \end_layout
36971
36972 \end_inset
36973 </cell>
36974 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36975 \begin_inset Text
36976
36977 \begin_layout Plain Layout
36978
36979 \backslash
36980 gets
36981 \end_layout
36982
36983 \end_inset
36984 </cell>
36985 </row>
36986 <row>
36987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36988 \begin_inset Text
36989
36990 \begin_layout Plain Layout
36991
36992 \backslash
36993 leq
36994 \end_layout
36995
36996 \end_inset
36997 </cell>
36998 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36999 \begin_inset Text
37000
37001 \begin_layout Plain Layout
37002
37003 \backslash
37004 le
37005 \end_layout
37006
37007 \end_inset
37008 </cell>
37009 </row>
37010 <row>
37011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37012 \begin_inset Text
37013
37014 \begin_layout Plain Layout
37015
37016 \backslash
37017 lor
37018 \end_layout
37019
37020 \end_inset
37021 </cell>
37022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37023 \begin_inset Text
37024
37025 \begin_layout Plain Layout
37026
37027 \backslash
37028 vee
37029 \end_layout
37030
37031 \end_inset
37032 </cell>
37033 </row>
37034 <row>
37035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37036 \begin_inset Text
37037
37038 \begin_layout Plain Layout
37039
37040 \backslash
37041 neq
37042 \end_layout
37043
37044 \end_inset
37045 </cell>
37046 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37047 \begin_inset Text
37048
37049 \begin_layout Plain Layout
37050
37051 \backslash
37052 not=
37053 \end_layout
37054
37055 \end_inset
37056 </cell>
37057 </row>
37058 <row>
37059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37060 \begin_inset Text
37061
37062 \begin_layout Plain Layout
37063
37064 \backslash
37065 slash
37066 \end_layout
37067
37068 \end_inset
37069 </cell>
37070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37071 \begin_inset Text
37072
37073 \begin_layout Plain Layout
37074 /
37075 \end_layout
37076
37077 \end_inset
37078 </cell>
37079 </row>
37080 <row>
37081 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37082 \begin_inset Text
37083
37084 \begin_layout Plain Layout
37085
37086 \backslash
37087 vert
37088 \end_layout
37089
37090 \end_inset
37091 </cell>
37092 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37093 \begin_inset Text
37094
37095 \begin_layout Plain Layout
37096 |
37097 \end_layout
37098
37099 \end_inset
37100 </cell>
37101 </row>
37102 </lyxtabular>
37103
37104 \end_inset
37105
37106
37107 \begin_inset space \hfill{}
37108 \end_inset
37109
37110
37111 \begin_inset Tabular
37112 <lyxtabular version="3" rows="12" columns="2">
37113 <features>
37114 <column alignment="center" valignment="top" width="0pt">
37115 <column alignment="center" valignment="top" width="0pt">
37116 <row>
37117 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37118 \begin_inset Text
37119
37120 \begin_layout Plain Layout
37121 Command
37122 \end_layout
37123
37124 \end_inset
37125 </cell>
37126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37127 \begin_inset Text
37128
37129 \begin_layout Plain Layout
37130 equivalent to
37131 \end_layout
37132
37133 \end_inset
37134 </cell>
37135 </row>
37136 <row>
37137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37138 \begin_inset Text
37139
37140 \begin_layout Plain Layout
37141
37142 \backslash
37143 backslash
37144 \end_layout
37145
37146 \end_inset
37147 </cell>
37148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37149 \begin_inset Text
37150
37151 \begin_layout Plain Layout
37152
37153 \backslash
37154
37155 \backslash
37156
37157 \end_layout
37158
37159 \end_inset
37160 </cell>
37161 </row>
37162 <row>
37163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37164 \begin_inset Text
37165
37166 \begin_layout Plain Layout
37167
37168 \backslash
37169 dasharrow
37170 \end_layout
37171
37172 \end_inset
37173 </cell>
37174 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37175 \begin_inset Text
37176
37177 \begin_layout Plain Layout
37178
37179 \backslash
37180 dashrightarrow
37181 \end_layout
37182
37183 \end_inset
37184 </cell>
37185 </row>
37186 <row>
37187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37188 \begin_inset Text
37189
37190 \begin_layout Plain Layout
37191
37192 \backslash
37193 land
37194 \end_layout
37195
37196 \end_inset
37197 </cell>
37198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37199 \begin_inset Text
37200
37201 \begin_layout Plain Layout
37202
37203 \backslash
37204 wedge
37205 \end_layout
37206
37207 \end_inset
37208 </cell>
37209 </row>
37210 <row>
37211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37212 \begin_inset Text
37213
37214 \begin_layout Plain Layout
37215
37216 \backslash
37217 rbrace
37218 \end_layout
37219
37220 \end_inset
37221 </cell>
37222 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37223 \begin_inset Text
37224
37225 \begin_layout Plain Layout
37226 }
37227 \end_layout
37228
37229 \end_inset
37230 </cell>
37231 </row>
37232 <row>
37233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37234 \begin_inset Text
37235
37236 \begin_layout Plain Layout
37237
37238 \backslash
37239 rbracket
37240 \end_layout
37241
37242 \end_inset
37243 </cell>
37244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37245 \begin_inset Text
37246
37247 \begin_layout Plain Layout
37248 ]
37249 \end_layout
37250
37251 \end_inset
37252 </cell>
37253 </row>
37254 <row>
37255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37256 \begin_inset Text
37257
37258 \begin_layout Plain Layout
37259
37260 \backslash
37261 rightarrow
37262 \end_layout
37263
37264 \end_inset
37265 </cell>
37266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37267 \begin_inset Text
37268
37269 \begin_layout Plain Layout
37270
37271 \backslash
37272 to
37273 \end_layout
37274
37275 \end_inset
37276 </cell>
37277 </row>
37278 <row>
37279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37280 \begin_inset Text
37281
37282 \begin_layout Plain Layout
37283
37284 \backslash
37285 lnot
37286 \end_layout
37287
37288 \end_inset
37289 </cell>
37290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37291 \begin_inset Text
37292
37293 \begin_layout Plain Layout
37294
37295 \backslash
37296 neg
37297 \end_layout
37298
37299 \end_inset
37300 </cell>
37301 </row>
37302 <row>
37303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37304 \begin_inset Text
37305
37306 \begin_layout Plain Layout
37307
37308 \backslash
37309 ne
37310 \end_layout
37311
37312 \end_inset
37313 </cell>
37314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37315 \begin_inset Text
37316
37317 \begin_layout Plain Layout
37318
37319 \backslash
37320 not=
37321 \end_layout
37322
37323 \end_inset
37324 </cell>
37325 </row>
37326 <row>
37327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37328 \begin_inset Text
37329
37330 \begin_layout Plain Layout
37331
37332 \backslash
37333 owns
37334 \end_layout
37335
37336 \end_inset
37337 </cell>
37338 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37339 \begin_inset Text
37340
37341 \begin_layout Plain Layout
37342
37343 \backslash
37344 ni
37345 \end_layout
37346
37347 \end_inset
37348 </cell>
37349 </row>
37350 <row>
37351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37352 \begin_inset Text
37353
37354 \begin_layout Plain Layout
37355
37356 \backslash
37357 square
37358 \end_layout
37359
37360 \end_inset
37361 </cell>
37362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37363 \begin_inset Text
37364
37365 \begin_layout Plain Layout
37366
37367 \backslash
37368 Box
37369 \end_layout
37370
37371 \end_inset
37372 </cell>
37373 </row>
37374 <row>
37375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37376 \begin_inset Text
37377
37378 \begin_layout Plain Layout
37379
37380 \backslash
37381 Vert
37382 \end_layout
37383
37384 \end_inset
37385 </cell>
37386 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37387 \begin_inset Text
37388
37389 \begin_layout Plain Layout
37390
37391 \backslash
37392 |
37393 \end_layout
37394
37395 \end_inset
37396 </cell>
37397 </row>
37398 </lyxtabular>
37399
37400 \end_inset
37401
37402
37403 \begin_inset space \hfill{}
37404 \end_inset
37405
37406
37407 \end_layout
37408
37409 \begin_layout Standard
37410 \begin_inset Newpage newpage
37411 \end_inset
37412
37413
37414 \end_layout
37415
37416 \begin_layout Bibliography
37417 \begin_inset CommandInset bibitem
37418 LatexCommand bibitem
37419 key "TLC2"
37420
37421 \end_inset
37422
37423
37424 \shape smallcaps
37425 Mittelbach, F.
37426  ; Goossens, M.
37427 \shape default
37428
37429 \shape italic
37430 The LaTeX Companion
37431 \shape default
37432 .
37433  Addison Wesley, 2004
37434 \end_layout
37435
37436 \begin_layout Bibliography
37437 \begin_inset CommandInset bibitem
37438 LatexCommand bibitem
37439 key "Mathmode"
37440
37441 \end_inset
37442
37443
37444 \begin_inset CommandInset href
37445 LatexCommand href
37446 name "Description"
37447 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
37448
37449 \end_inset
37450
37451  of LaTeX's math abilities
37452 \end_layout
37453
37454 \begin_layout Bibliography
37455 \begin_inset CommandInset bibitem
37456 LatexCommand bibitem
37457 key "AMS"
37458
37459 \end_inset
37460
37461
37462 \begin_inset CommandInset href
37463 LatexCommand href
37464 name "Description"
37465 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
37466
37467 \end_inset
37468
37469  of 
37470 \begin_inset ERT
37471 status collapsed
37472
37473 \begin_layout Plain Layout
37474
37475
37476 \backslash
37477 AmS
37478 \end_layout
37479
37480 \end_inset
37481
37482 -LaTeX
37483 \end_layout
37484
37485 \begin_layout Bibliography
37486 \begin_inset CommandInset bibitem
37487 LatexCommand bibitem
37488 key "Symbols"
37489
37490 \end_inset
37491
37492
37493 \begin_inset CommandInset href
37494 LatexCommand href
37495 name "List"
37496 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
37497
37498 \end_inset
37499
37500  of all symbols available with LaTeX-packages
37501 \end_layout
37502
37503 \begin_layout Bibliography
37504 \begin_inset CommandInset bibitem
37505 LatexCommand bibitem
37506 key "hyperref"
37507
37508 \end_inset
37509
37510
37511 \begin_inset CommandInset href
37512 LatexCommand href
37513 name "Documentation"
37514 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
37515
37516 \end_inset
37517
37518  of the LaTeX-package 
37519 \series bold
37520 hyperref
37521 \series default
37522
37523 \begin_inset Index
37524 status collapsed
37525
37526 \begin_layout Plain Layout
37527 Packages ! hyperref
37528 \end_layout
37529
37530 \end_inset
37531
37532
37533 \end_layout
37534
37535 \begin_layout Bibliography
37536 \begin_inset CommandInset bibitem
37537 LatexCommand bibitem
37538 key "mhchem"
37539
37540 \end_inset
37541
37542
37543 \begin_inset CommandInset href
37544 LatexCommand href
37545 name "Documentation"
37546 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
37547
37548 \end_inset
37549
37550  of the LaTeX-package 
37551 \series bold
37552 mhchem
37553 \series default
37554
37555 \begin_inset Index
37556 status collapsed
37557
37558 \begin_layout Plain Layout
37559 Packages ! mhchem
37560 \end_layout
37561
37562 \end_inset
37563
37564
37565 \end_layout
37566
37567 \begin_layout Bibliography
37568 \begin_inset CommandInset bibitem
37569 LatexCommand bibitem
37570 key "Mathclap"
37571
37572 \end_inset
37573
37574
37575 \begin_inset CommandInset href
37576 LatexCommand href
37577 name "Description"
37578 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
37579
37580 \end_inset
37581
37582  of the command 
37583 \series bold
37584
37585 \backslash
37586 mathclap
37587 \series default
37588 , described in 
37589 \begin_inset CommandInset ref
37590 LatexCommand ref
37591 reference "sub:Operator-Limits"
37592
37593 \end_inset
37594
37595
37596 \begin_inset Index
37597 status collapsed
37598
37599 \begin_layout Plain Layout
37600 Commands ! M ! 
37601 \backslash
37602 mathclap
37603 \end_layout
37604
37605 \end_inset
37606
37607
37608 \end_layout
37609
37610 \begin_layout Bibliography
37611 \begin_inset CommandInset bibitem
37612 LatexCommand bibitem
37613 key "Duden"
37614
37615 \end_inset
37616
37617
37618 \emph on
37619 Duden Band 1
37620 \emph default
37621 .
37622  22.
37623  Auflage, Duden 2001
37624 \end_layout
37625
37626 \begin_layout Bibliography
37627 \begin_inset CommandInset bibitem
37628 LatexCommand bibitem
37629 key "Checklist"
37630
37631 \end_inset
37632
37633
37634 \begin_inset CommandInset href
37635 LatexCommand href
37636 name "Check list"
37637 target "http://physics.nist.gov/Document/checklist.pdf"
37638
37639 \end_inset
37640
37641  for reviewing manuscripts
37642 \end_layout
37643
37644 \begin_layout Standard
37645 \begin_inset CommandInset index_print
37646 LatexCommand printindex
37647
37648 \end_inset
37649
37650
37651 \end_layout
37652
37653 \end_body
37654 \end_document