]> git.lyx.org Git - lyx.git/blob - lib/doc/Math.lyx
remove unused include of FuncRequest
[lyx.git] / lib / doc / Math.lyx
1 #LyX 1.6.6svn 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{A
9601 \end_layout
9602
9603 \end_inset
9604 </cell>
9605 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9606 \begin_inset Text
9607
9608 \begin_layout Plain Layout
9609 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9610 \end_inset
9611
9612
9613 \end_layout
9614
9615 \end_inset
9616 </cell>
9617 </row>
9618 <row>
9619 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9620 \begin_inset Text
9621
9622 \begin_layout Plain Layout
9623
9624 \backslash
9625 vec
9626 \begin_inset ERT
9627 status collapsed
9628
9629 \begin_layout Plain Layout
9630
9631
9632 \backslash
9633 spce 
9634 \end_layout
9635
9636 \end_inset
9637
9638 A
9639 \begin_inset Index
9640 status collapsed
9641
9642 \begin_layout Plain Layout
9643 Vectors
9644 \end_layout
9645
9646 \end_inset
9647
9648
9649 \end_layout
9650
9651 \end_inset
9652 </cell>
9653 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9654 \begin_inset Text
9655
9656 \begin_layout Plain Layout
9657 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9658 \end_inset
9659
9660
9661 \end_layout
9662
9663 \end_inset
9664 </cell>
9665 </row>
9666 <row>
9667 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9668 \begin_inset Text
9669
9670 \begin_layout Plain Layout
9671
9672 \backslash
9673 bar
9674 \begin_inset ERT
9675 status collapsed
9676
9677 \begin_layout Plain Layout
9678
9679
9680 \backslash
9681 spce 
9682 \end_layout
9683
9684 \end_inset
9685
9686 A
9687 \end_layout
9688
9689 \end_inset
9690 </cell>
9691 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9692 \begin_inset Text
9693
9694 \begin_layout Plain Layout
9695 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9696 \end_inset
9697
9698
9699 \end_layout
9700
9701 \end_inset
9702 </cell>
9703 </row>
9704 <row>
9705 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9706 \begin_inset Text
9707
9708 \begin_layout Plain Layout
9709
9710 \backslash
9711 mathring
9712 \begin_inset ERT
9713 status collapsed
9714
9715 \begin_layout Plain Layout
9716
9717
9718 \backslash
9719 spce 
9720 \end_layout
9721
9722 \end_inset
9723
9724 A
9725 \end_layout
9726
9727 \end_inset
9728 </cell>
9729 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9730 \begin_inset Text
9731
9732 \begin_layout Plain Layout
9733 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9734 \end_inset
9735
9736
9737 \end_layout
9738
9739 \end_inset
9740 </cell>
9741 </row>
9742 </lyxtabular>
9743
9744 \end_inset
9745
9746
9747 \begin_inset space \hfill{}
9748 \end_inset
9749
9750
9751 \begin_inset Tabular
9752 <lyxtabular version="3" rows="7" columns="2">
9753 <features>
9754 <column alignment="center" valignment="top" width="0pt">
9755 <column alignment="center" valignment="top" width="0pt">
9756 <row>
9757 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9758 \begin_inset Text
9759
9760 \begin_layout Plain Layout
9761 Command
9762 \end_layout
9763
9764 \end_inset
9765 </cell>
9766 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9767 \begin_inset Text
9768
9769 \begin_layout Plain Layout
9770 Result
9771 \end_layout
9772
9773 \end_inset
9774 </cell>
9775 </row>
9776 <row>
9777 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9778 \begin_inset Text
9779
9780 \begin_layout Plain Layout
9781
9782 \backslash
9783 tilde
9784 \begin_inset ERT
9785 status collapsed
9786
9787 \begin_layout Plain Layout
9788
9789
9790 \backslash
9791 spce 
9792 \end_layout
9793
9794 \end_inset
9795
9796 A
9797 \end_layout
9798
9799 \end_inset
9800 </cell>
9801 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9802 \begin_inset Text
9803
9804 \begin_layout Plain Layout
9805 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9806 \end_inset
9807
9808
9809 \end_layout
9810
9811 \end_inset
9812 </cell>
9813 </row>
9814 <row>
9815 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9816 \begin_inset Text
9817
9818 \begin_layout Plain Layout
9819
9820 \backslash
9821 hat
9822 \begin_inset ERT
9823 status collapsed
9824
9825 \begin_layout Plain Layout
9826
9827
9828 \backslash
9829 spce 
9830 \end_layout
9831
9832 \end_inset
9833
9834 A
9835 \end_layout
9836
9837 \end_inset
9838 </cell>
9839 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9840 \begin_inset Text
9841
9842 \begin_layout Plain Layout
9843 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
9844 \end_inset
9845
9846
9847 \end_layout
9848
9849 \end_inset
9850 </cell>
9851 </row>
9852 <row>
9853 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9854 \begin_inset Text
9855
9856 \begin_layout Plain Layout
9857
9858 \backslash
9859 check
9860 \begin_inset ERT
9861 status collapsed
9862
9863 \begin_layout Plain Layout
9864
9865
9866 \backslash
9867 spce 
9868 \end_layout
9869
9870 \end_inset
9871
9872 A
9873 \end_layout
9874
9875 \end_inset
9876 </cell>
9877 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9878 \begin_inset Text
9879
9880 \begin_layout Plain Layout
9881 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
9882 \end_inset
9883
9884
9885 \end_layout
9886
9887 \end_inset
9888 </cell>
9889 </row>
9890 <row>
9891 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9892 \begin_inset Text
9893
9894 \begin_layout Plain Layout
9895
9896 \backslash
9897 acute
9898 \begin_inset ERT
9899 status collapsed
9900
9901 \begin_layout Plain Layout
9902
9903
9904 \backslash
9905 spce 
9906 \end_layout
9907
9908 \end_inset
9909
9910 A
9911 \end_layout
9912
9913 \end_inset
9914 </cell>
9915 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9916 \begin_inset Text
9917
9918 \begin_layout Plain Layout
9919 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
9920 \end_inset
9921
9922
9923 \end_layout
9924
9925 \end_inset
9926 </cell>
9927 </row>
9928 <row>
9929 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9930 \begin_inset Text
9931
9932 \begin_layout Plain Layout
9933
9934 \backslash
9935 grave
9936 \begin_inset ERT
9937 status collapsed
9938
9939 \begin_layout Plain Layout
9940
9941
9942 \backslash
9943 spce 
9944 \end_layout
9945
9946 \end_inset
9947
9948 A
9949 \end_layout
9950
9951 \end_inset
9952 </cell>
9953 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9954 \begin_inset Text
9955
9956 \begin_layout Plain Layout
9957 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
9958 \end_inset
9959
9960
9961 \end_layout
9962
9963 \end_inset
9964 </cell>
9965 </row>
9966 <row>
9967 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9968 \begin_inset Text
9969
9970 \begin_layout Plain Layout
9971
9972 \backslash
9973 breve
9974 \begin_inset ERT
9975 status collapsed
9976
9977 \begin_layout Plain Layout
9978
9979
9980 \backslash
9981 spce 
9982 \end_layout
9983
9984 \end_inset
9985
9986 A
9987 \end_layout
9988
9989 \end_inset
9990 </cell>
9991 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9992 \begin_inset Text
9993
9994 \begin_layout Plain Layout
9995 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
9996 \end_inset
9997
9998
9999 \end_layout
10000
10001 \end_inset
10002 </cell>
10003 </row>
10004 </lyxtabular>
10005
10006 \end_inset
10007
10008
10009 \begin_inset space \hfill{}
10010 \end_inset
10011
10012
10013 \end_layout
10014
10015 \begin_layout Standard
10016 \begin_inset VSpace bigskip
10017 \end_inset
10018
10019
10020 \end_layout
10021
10022 \begin_layout Standard
10023 You can directly insert accents like é to formulas.
10024  LyX will transform them to the corresponding accent command.
10025  For umlauts
10026 \begin_inset Index
10027 status collapsed
10028
10029 \begin_layout Plain Layout
10030 Umlauts
10031 \end_layout
10032
10033 \end_inset
10034
10035  it is better to insert a quotation mark before the vowel.
10036  These two characters are then treated by LaTeX as 
10037 \emph on
10038 one
10039 \emph default
10040  character when the formula part with the umlaut is marked as German.
10041  In contrary to 
10042 \series bold
10043
10044 \backslash
10045 ddot
10046 \series default
10047 , with this method 
10048 \begin_inset Quotes eld
10049 \end_inset
10050
10051 real
10052 \begin_inset Quotes erd
10053 \end_inset
10054
10055  umlauts are created as demonstrated in the following example:
10056 \end_layout
10057
10058 \begin_layout Standard
10059 \begin_inset VSpace -2mm
10060 \end_inset
10061
10062
10063 \end_layout
10064
10065 \begin_layout Standard
10066 \align center
10067 \begin_inset Tabular
10068 <lyxtabular version="3" rows="3" columns="2">
10069 <features>
10070 <column alignment="center" valignment="top" width="0">
10071 <column alignment="center" valignment="top" width="0">
10072 <row>
10073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10074 \begin_inset Text
10075
10076 \begin_layout Plain Layout
10077 Command
10078 \end_layout
10079
10080 \end_inset
10081 </cell>
10082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10083 \begin_inset Text
10084
10085 \begin_layout Plain Layout
10086 Result
10087 \begin_inset Note Note
10088 status collapsed
10089
10090 \begin_layout Plain Layout
10091
10092 \series bold
10093
10094 \backslash
10095 raisebox
10096 \series default
10097  and the 0
10098 \begin_inset space \thinspace{}
10099 \end_inset
10100
10101 pt space are only used as spacer.
10102 \end_layout
10103
10104 \end_inset
10105
10106
10107 \end_layout
10108
10109 \end_inset
10110 </cell>
10111 </row>
10112 <row>
10113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10114 \begin_inset Text
10115
10116 \begin_layout Plain Layout
10117
10118 \lang ngerman
10119 \begin_inset Quotes grd
10120 \end_inset
10121
10122 i
10123 \end_layout
10124
10125 \end_inset
10126 </cell>
10127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10128 \begin_inset Text
10129
10130 \begin_layout Plain Layout
10131 \begin_inset space \hspace{}
10132 \length 0pt
10133 \end_inset
10134
10135
10136 \lang ngerman
10137
10138 \begin_inset Formula $"i$
10139 \end_inset
10140
10141
10142 \end_layout
10143
10144 \end_inset
10145 </cell>
10146 </row>
10147 <row>
10148 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10149 \begin_inset Text
10150
10151 \begin_layout Plain Layout
10152
10153 \backslash
10154 ddot
10155 \begin_inset ERT
10156 status collapsed
10157
10158 \begin_layout Plain Layout
10159
10160
10161 \backslash
10162 spce 
10163 \end_layout
10164
10165 \end_inset
10166
10167 i
10168 \end_layout
10169
10170 \end_inset
10171 </cell>
10172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10173 \begin_inset Text
10174
10175 \begin_layout Plain Layout
10176 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10177 \end_inset
10178
10179
10180 \end_layout
10181
10182 \end_inset
10183 </cell>
10184 </row>
10185 </lyxtabular>
10186
10187 \end_inset
10188
10189
10190 \end_layout
10191
10192 \begin_layout Standard
10193 Another advantage to 
10194 \series bold
10195
10196 \backslash
10197 ddot
10198 \series default
10199  is that umlauts can directly be converted to mathematical text because
10200  the accent commands above are 
10201 \emph on
10202 not allowed
10203 \emph default
10204  
10205 \emph on
10206 in mathematical text
10207 \emph default
10208 .
10209  To convert an accented character to mathematical text, only the character
10210  under the accent may be converted.
10211  This applies also for all other conversions, e.
10212 \begin_inset space \thinspace{}
10213 \end_inset
10214
10215 g.
10216 \begin_inset space \space{}
10217 \end_inset
10218
10219 to italic or bold.
10220 \end_layout
10221
10222 \begin_layout Standard
10223 In mathematical text, umlauts and other accented characters can directly
10224  be inserted.
10225 \end_layout
10226
10227 \begin_layout Subsection
10228 Accents for Operators
10229 \begin_inset Index
10230 status collapsed
10231
10232 \begin_layout Plain Layout
10233 Accents ! for operators
10234 \end_layout
10235
10236 \end_inset
10237
10238
10239 \end_layout
10240
10241 \begin_layout Standard
10242 With the commands 
10243 \series bold
10244
10245 \backslash
10246 overset
10247 \series default
10248
10249 \begin_inset Index
10250 status collapsed
10251
10252 \begin_layout Plain Layout
10253 Commands ! O ! 
10254 \backslash
10255 overset
10256 \end_layout
10257
10258 \end_inset
10259
10260  and 
10261 \series bold
10262
10263 \backslash
10264 underset
10265 \series default
10266
10267 \begin_inset Index
10268 status collapsed
10269
10270 \begin_layout Plain Layout
10271 Commands ! U ! 
10272 \backslash
10273 underset
10274 \end_layout
10275
10276 \end_inset
10277
10278  characters can be placed above or below an operator, respectively, to accent
10279  it.
10280  With the command 
10281 \series bold
10282
10283 \backslash
10284 sideset
10285 \series default
10286
10287 \begin_inset Index
10288 status collapsed
10289
10290 \begin_layout Plain Layout
10291 Commands ! S ! 
10292 \backslash
10293 sideset
10294 \end_layout
10295
10296 \end_inset
10297
10298  characters can be set before and behind an operator.
10299  The command scheme is:
10300 \end_layout
10301
10302 \begin_layout Standard
10303
10304 \series bold
10305
10306 \backslash
10307 sideset{character
10308 \series default
10309  
10310 \series bold
10311 before}{character
10312 \series default
10313  
10314 \series bold
10315 behind}
10316 \end_layout
10317
10318 \begin_layout Standard
10319
10320 \series bold
10321
10322 \backslash
10323 sideset
10324 \series default
10325  must always be before the operator that should be accented.
10326  You can accent with several characters and even with other operators and
10327  symbols.
10328  To place with 
10329 \series bold
10330
10331 \backslash
10332 sideset
10333 \series default
10334  for example only characters behind an operator, write nothing between the
10335  first braces but don't omit the braces.
10336 \end_layout
10337
10338 \begin_layout Standard
10339 For example the command 
10340 \series bold
10341
10342 \backslash
10343 sideset{
10344 \begin_inset Formula $\to$
10345 \end_inset
10346
10347
10348 \backslash
10349 {
10350 \series default
10351 '
10352 \series bold
10353
10354 \begin_inset Formula $\to$
10355 \end_inset
10356
10357
10358 \backslash
10359 sum_k=1
10360 \begin_inset ERT
10361 status collapsed
10362
10363 \begin_layout Plain Layout
10364
10365
10366 \backslash
10367 spce 
10368 \end_layout
10369
10370 \end_inset
10371
10372
10373 \series default
10374 ^
10375 \series bold
10376 n
10377 \series default
10378  produces:
10379 \begin_inset Formula \[
10380 \sideset{}{'}\sum_{k=1}^{n}\]
10381
10382 \end_inset
10383
10384
10385 \end_layout
10386
10387 \begin_layout Standard
10388 The command 
10389 \series bold
10390
10391 \backslash
10392 overset
10393 \begin_inset ERT
10394 status collapsed
10395
10396 \begin_layout Plain Layout
10397
10398
10399 \backslash
10400 spce 
10401 \end_layout
10402
10403 \end_inset
10404
10405
10406 \backslash
10407 maltese
10408 \begin_inset ERT
10409 status collapsed
10410
10411 \begin_layout Plain Layout
10412
10413
10414 \backslash
10415 spce 
10416 \end_layout
10417
10418 \end_inset
10419
10420
10421 \series default
10422
10423 \begin_inset Formula $\uparrow$
10424 \end_inset
10425
10426
10427 \series bold
10428 a
10429 \series default
10430  produces:
10431 \begin_inset Formula \[
10432 \overset{a}{\maltese}\]
10433
10434 \end_inset
10435
10436 As seen in the last example, with 
10437 \series bold
10438
10439 \backslash
10440 overset
10441 \series default
10442  and 
10443 \series bold
10444
10445 \backslash
10446 underset
10447 \series default
10448  also symbols and characters can be accented; with 
10449 \series bold
10450
10451 \backslash
10452 sideset
10453 \series default
10454  this is not possible.
10455 \end_layout
10456
10457 \begin_layout Subsection
10458 Accents for several Characters
10459 \begin_inset Index
10460 status collapsed
10461
10462 \begin_layout Plain Layout
10463 Accents ! for several characters
10464 \end_layout
10465
10466 \end_inset
10467
10468
10469 \end_layout
10470
10471 \begin_layout Standard
10472 \begin_inset space \hfill{}
10473 \end_inset
10474
10475
10476 \begin_inset Tabular
10477 <lyxtabular version="3" rows="5" columns="2">
10478 <features>
10479 <column alignment="center" valignment="top" width="0pt">
10480 <column alignment="center" valignment="top" width="0pt">
10481 <row>
10482 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10483 \begin_inset Text
10484
10485 \begin_layout Plain Layout
10486 Command
10487 \end_layout
10488
10489 \end_inset
10490 </cell>
10491 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10492 \begin_inset Text
10493
10494 \begin_layout Plain Layout
10495 Result
10496 \begin_inset Note Note
10497 status collapsed
10498
10499 \begin_layout Plain Layout
10500
10501 \series bold
10502
10503 \backslash
10504 raisebox
10505 \series default
10506  is only used as spacer.
10507 \end_layout
10508
10509 \end_inset
10510
10511
10512 \end_layout
10513
10514 \end_inset
10515 </cell>
10516 </row>
10517 <row>
10518 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10519 \begin_inset Text
10520
10521 \begin_layout Plain Layout
10522
10523 \backslash
10524 overleftarrow
10525 \begin_inset ERT
10526 status collapsed
10527
10528 \begin_layout Plain Layout
10529
10530
10531 \backslash
10532 spce 
10533 \end_layout
10534
10535 \end_inset
10536
10537 A=B
10538 \end_layout
10539
10540 \end_inset
10541 </cell>
10542 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10543 \begin_inset Text
10544
10545 \begin_layout Plain Layout
10546 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10547 \end_inset
10548
10549
10550 \end_layout
10551
10552 \end_inset
10553 </cell>
10554 </row>
10555 <row>
10556 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10557 \begin_inset Text
10558
10559 \begin_layout Plain Layout
10560
10561 \backslash
10562 underleftarrow
10563 \begin_inset ERT
10564 status collapsed
10565
10566 \begin_layout Plain Layout
10567
10568
10569 \backslash
10570 spce 
10571 \end_layout
10572
10573 \end_inset
10574
10575 A=B
10576 \end_layout
10577
10578 \end_inset
10579 </cell>
10580 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10581 \begin_inset Text
10582
10583 \begin_layout Plain Layout
10584 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10585 \end_inset
10586
10587
10588 \end_layout
10589
10590 \end_inset
10591 </cell>
10592 </row>
10593 <row>
10594 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10595 \begin_inset Text
10596
10597 \begin_layout Plain Layout
10598
10599 \backslash
10600 overleftrightarrow
10601 \begin_inset ERT
10602 status collapsed
10603
10604 \begin_layout Plain Layout
10605
10606
10607 \backslash
10608 spce 
10609 \end_layout
10610
10611 \end_inset
10612
10613 A=B
10614 \end_layout
10615
10616 \end_inset
10617 </cell>
10618 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10619 \begin_inset Text
10620
10621 \begin_layout Plain Layout
10622 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10623 \end_inset
10624
10625
10626 \end_layout
10627
10628 \end_inset
10629 </cell>
10630 </row>
10631 <row>
10632 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10633 \begin_inset Text
10634
10635 \begin_layout Plain Layout
10636
10637 \backslash
10638 underleftrightarrow
10639 \begin_inset ERT
10640 status collapsed
10641
10642 \begin_layout Plain Layout
10643
10644
10645 \backslash
10646 spce 
10647 \end_layout
10648
10649 \end_inset
10650
10651 A=B
10652 \end_layout
10653
10654 \end_inset
10655 </cell>
10656 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10657 \begin_inset Text
10658
10659 \begin_layout Plain Layout
10660 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10661 \end_inset
10662
10663
10664 \end_layout
10665
10666 \end_inset
10667 </cell>
10668 </row>
10669 </lyxtabular>
10670
10671 \end_inset
10672
10673
10674 \begin_inset space \hfill{}
10675 \end_inset
10676
10677
10678 \begin_inset Tabular
10679 <lyxtabular version="3" rows="5" columns="2">
10680 <features>
10681 <column alignment="center" valignment="top" width="0pt">
10682 <column alignment="center" valignment="top" width="0pt">
10683 <row>
10684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10685 \begin_inset Text
10686
10687 \begin_layout Plain Layout
10688 Command
10689 \end_layout
10690
10691 \end_inset
10692 </cell>
10693 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10694 \begin_inset Text
10695
10696 \begin_layout Plain Layout
10697 Result
10698 \end_layout
10699
10700 \end_inset
10701 </cell>
10702 </row>
10703 <row>
10704 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10705 \begin_inset Text
10706
10707 \begin_layout Plain Layout
10708
10709 \backslash
10710 overrightarrow
10711 \begin_inset ERT
10712 status collapsed
10713
10714 \begin_layout Plain Layout
10715
10716
10717 \backslash
10718 spce 
10719 \end_layout
10720
10721 \end_inset
10722
10723 A=B
10724 \end_layout
10725
10726 \end_inset
10727 </cell>
10728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10729 \begin_inset Text
10730
10731 \begin_layout Plain Layout
10732 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10733 \end_inset
10734
10735
10736 \end_layout
10737
10738 \end_inset
10739 </cell>
10740 </row>
10741 <row>
10742 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10743 \begin_inset Text
10744
10745 \begin_layout Plain Layout
10746
10747 \backslash
10748 underrightarrow
10749 \begin_inset ERT
10750 status collapsed
10751
10752 \begin_layout Plain Layout
10753
10754
10755 \backslash
10756 spce 
10757 \end_layout
10758
10759 \end_inset
10760
10761 A=B
10762 \end_layout
10763
10764 \end_inset
10765 </cell>
10766 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10767 \begin_inset Text
10768
10769 \begin_layout Plain Layout
10770 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10771 \end_inset
10772
10773
10774 \end_layout
10775
10776 \end_inset
10777 </cell>
10778 </row>
10779 <row>
10780 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10781 \begin_inset Text
10782
10783 \begin_layout Plain Layout
10784
10785 \backslash
10786 widetilde
10787 \begin_inset ERT
10788 status collapsed
10789
10790 \begin_layout Plain Layout
10791
10792
10793 \backslash
10794 spce 
10795 \end_layout
10796
10797 \end_inset
10798
10799 A=B
10800 \end_layout
10801
10802 \end_inset
10803 </cell>
10804 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10805 \begin_inset Text
10806
10807 \begin_layout Plain Layout
10808 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10809 \end_inset
10810
10811
10812 \end_layout
10813
10814 \end_inset
10815 </cell>
10816 </row>
10817 <row>
10818 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10819 \begin_inset Text
10820
10821 \begin_layout Plain Layout
10822
10823 \backslash
10824 widehat
10825 \begin_inset ERT
10826 status collapsed
10827
10828 \begin_layout Plain Layout
10829
10830
10831 \backslash
10832 spce 
10833 \end_layout
10834
10835 \end_inset
10836
10837 A=B
10838 \end_layout
10839
10840 \end_inset
10841 </cell>
10842 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10843 \begin_inset Text
10844
10845 \begin_layout Plain Layout
10846 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10847 \end_inset
10848
10849
10850 \end_layout
10851
10852 \end_inset
10853 </cell>
10854 </row>
10855 </lyxtabular>
10856
10857 \end_inset
10858
10859
10860 \begin_inset space \hfill{}
10861 \end_inset
10862
10863
10864 \end_layout
10865
10866 \begin_layout Standard
10867 \begin_inset VSpace medskip
10868 \end_inset
10869
10870 With these commands as many characters as you like can be accented.
10871  But the accents 
10872 \series bold
10873
10874 \backslash
10875 widetilde
10876 \series default
10877  and 
10878 \series bold
10879
10880 \backslash
10881 widehat
10882 \series default
10883  will only be set in the output with a length of three characters, as shown
10884  in the following example:
10885 \begin_inset Formula \[
10886 \widetilde{A+B=C-D}\]
10887
10888 \end_inset
10889
10890
10891 \end_layout
10892
10893 \begin_layout Standard
10894 With the commands 
10895 \series bold
10896
10897 \backslash
10898 overset
10899 \series default
10900
10901 \begin_inset Index
10902 status collapsed
10903
10904 \begin_layout Plain Layout
10905 Commands ! O ! 
10906 \backslash
10907 overset
10908 \end_layout
10909
10910 \end_inset
10911
10912  and 
10913 \series bold
10914
10915 \backslash
10916 underset
10917 \series default
10918
10919 \begin_inset Index
10920 status collapsed
10921
10922 \begin_layout Plain Layout
10923 Commands ! U ! 
10924 \backslash
10925 underset
10926 \end_layout
10927
10928 \end_inset
10929
10930  described in the previous subsection it is also possible to accent several
10931  characters.
10932  The command 
10933 \series bold
10934
10935 \backslash
10936 underset
10937 \begin_inset ERT
10938 status collapsed
10939
10940 \begin_layout Plain Layout
10941
10942
10943 \backslash
10944 spce 
10945 \end_layout
10946
10947 \end_inset
10948
10949 A=B
10950 \begin_inset Formula $\downarrow$
10951 \end_inset
10952
10953 ***
10954 \series default
10955  creates:
10956 \begin_inset Formula \[
10957 \underset{***}{A=B}\]
10958
10959 \end_inset
10960
10961
10962 \end_layout
10963
10964 \begin_layout Section
10965 Space
10966 \begin_inset CommandInset label
10967 LatexCommand label
10968 name "sub:Space"
10969
10970 \end_inset
10971
10972
10973 \begin_inset Index
10974 status collapsed
10975
10976 \begin_layout Plain Layout
10977 Space ! horizontal
10978 \end_layout
10979
10980 \end_inset
10981
10982
10983 \end_layout
10984
10985 \begin_layout Subsection
10986 Predefined Space
10987 \begin_inset CommandInset label
10988 LatexCommand label
10989 name "sub:Predefined-Space"
10990
10991 \end_inset
10992
10993
10994 \begin_inset Index
10995 status collapsed
10996
10997 \begin_layout Plain Layout
10998 Space ! horizontal ! predefined
10999 \end_layout
11000
11001 \end_inset
11002
11003
11004 \end_layout
11005
11006 \begin_layout Standard
11007 Sometimes it is necessary to insert horizontal space to a formula.
11008  This is done by inserting a protected space (shortcut 
11009 \begin_inset Info
11010 type  "shortcut"
11011 arg   "space-insert protected"
11012 \end_inset
11013
11014 ).
11015  A 
11016 \begin_inset Quotes eld
11017 \end_inset
11018
11019
11020 \color blue
11021
11022 \begin_inset ERT
11023 status collapsed
11024
11025 \begin_layout Plain Layout
11026
11027
11028 \backslash
11029 spce 
11030 \end_layout
11031
11032 \end_inset
11033
11034
11035 \color inherit
11036
11037 \begin_inset Quotes erd
11038 \end_inset
11039
11040  appears and by pressing 
11041 \family sans
11042 Space
11043 \family default
11044  several times one can select one of eight different space sizes.
11045  The spaces can also be inserted using the math toolbar button 
11046 \begin_inset Graphics
11047         filename ../images/math/space.png
11048         scale 85
11049
11050 \end_inset
11051
11052  or special commands.
11053  Independent from the inserted command, one can select the size again by
11054  pressing 
11055 \family sans
11056 Space
11057 \family default
11058  afterwards.
11059 \end_layout
11060
11061 \begin_layout Standard
11062 \noindent
11063 \align center
11064 \begin_inset VSpace -5mm
11065 \end_inset
11066
11067
11068 \begin_inset Tabular
11069 <lyxtabular version="3" rows="3" columns="7">
11070 <features>
11071 <column alignment="center" valignment="middle" width="6.8cm">
11072 <column alignment="center" valignment="top" width="0">
11073 <column alignment="center" valignment="top" width="0">
11074 <column alignment="center" valignment="top" width="0">
11075 <column alignment="center" valignment="top" width="0">
11076 <column alignment="center" valignment="top" width="0">
11077 <column alignment="center" valignment="top" width="0">
11078 <row>
11079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11080 \begin_inset Text
11081
11082 \begin_layout Plain Layout
11083 Command
11084 \end_layout
11085
11086 \end_inset
11087 </cell>
11088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11089 \begin_inset Text
11090
11091 \begin_layout Plain Layout
11092
11093 \backslash
11094 ,
11095 \end_layout
11096
11097 \end_inset
11098 </cell>
11099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11100 \begin_inset Text
11101
11102 \begin_layout Plain Layout
11103
11104 \backslash
11105 :
11106 \end_layout
11107
11108 \end_inset
11109 </cell>
11110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11111 \begin_inset Text
11112
11113 \begin_layout Plain Layout
11114
11115 \backslash
11116 ;
11117 \end_layout
11118
11119 \end_inset
11120 </cell>
11121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11122 \begin_inset Text
11123
11124 \begin_layout Plain Layout
11125
11126 \backslash
11127 quad
11128 \end_layout
11129
11130 \end_inset
11131 </cell>
11132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11133 \begin_inset Text
11134
11135 \begin_layout Plain Layout
11136
11137 \backslash
11138 qquad
11139 \end_layout
11140
11141 \end_inset
11142 </cell>
11143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11144 \begin_inset Text
11145
11146 \begin_layout Plain Layout
11147
11148 \backslash
11149 !
11150 \end_layout
11151
11152 \end_inset
11153 </cell>
11154 </row>
11155 <row>
11156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11157 \begin_inset Text
11158
11159 \begin_layout Plain Layout
11160 Number of 
11161 \family sans
11162 Space
11163 \family default
11164  keystrokes after inserting the protected space
11165 \end_layout
11166
11167 \end_inset
11168 </cell>
11169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11170 \begin_inset Text
11171
11172 \begin_layout Plain Layout
11173 0
11174 \end_layout
11175
11176 \end_inset
11177 </cell>
11178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11179 \begin_inset Text
11180
11181 \begin_layout Plain Layout
11182 1
11183 \end_layout
11184
11185 \end_inset
11186 </cell>
11187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11188 \begin_inset Text
11189
11190 \begin_layout Plain Layout
11191 2
11192 \end_layout
11193
11194 \end_inset
11195 </cell>
11196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11197 \begin_inset Text
11198
11199 \begin_layout Plain Layout
11200 3
11201 \end_layout
11202
11203 \end_inset
11204 </cell>
11205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11206 \begin_inset Text
11207
11208 \begin_layout Plain Layout
11209 4
11210 \end_layout
11211
11212 \end_inset
11213 </cell>
11214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11215 \begin_inset Text
11216
11217 \begin_layout Plain Layout
11218 5
11219 \end_layout
11220
11221 \end_inset
11222 </cell>
11223 </row>
11224 <row>
11225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11226 \begin_inset Text
11227
11228 \begin_layout Plain Layout
11229 Result
11230 \end_layout
11231
11232 \end_inset
11233 </cell>
11234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11235 \begin_inset Text
11236
11237 \begin_layout Plain Layout
11238 \begin_inset Formula $A\, B$
11239 \end_inset
11240
11241
11242 \end_layout
11243
11244 \end_inset
11245 </cell>
11246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11247 \begin_inset Text
11248
11249 \begin_layout Plain Layout
11250 \begin_inset Formula $A\: B$
11251 \end_inset
11252
11253
11254 \end_layout
11255
11256 \end_inset
11257 </cell>
11258 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11259 \begin_inset Text
11260
11261 \begin_layout Plain Layout
11262 \begin_inset Formula $A\; B$
11263 \end_inset
11264
11265
11266 \end_layout
11267
11268 \end_inset
11269 </cell>
11270 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11271 \begin_inset Text
11272
11273 \begin_layout Plain Layout
11274 \begin_inset Formula $A\quad B$
11275 \end_inset
11276
11277
11278 \end_layout
11279
11280 \end_inset
11281 </cell>
11282 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11283 \begin_inset Text
11284
11285 \begin_layout Plain Layout
11286 \begin_inset Formula $A\qquad B$
11287 \end_inset
11288
11289
11290 \end_layout
11291
11292 \end_inset
11293 </cell>
11294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11295 \begin_inset Text
11296
11297 \begin_layout Plain Layout
11298 \begin_inset Formula $A\! B$
11299 \end_inset
11300
11301
11302 \end_layout
11303
11304 \end_inset
11305 </cell>
11306 </row>
11307 </lyxtabular>
11308
11309 \end_inset
11310
11311
11312 \end_layout
11313
11314 \begin_layout Standard
11315 The last size seem to produce no space.
11316  It is displayed red in LyX contrary to the other sizes, because it is a
11317  negative space.
11318  There are two more negative spaces:
11319 \end_layout
11320
11321 \begin_layout Standard
11322 \align center
11323 \begin_inset Tabular
11324 <lyxtabular version="3" rows="3" columns="3">
11325 <features>
11326 <column alignment="center" valignment="middle" width="6.8cm">
11327 <column alignment="center" valignment="top" width="0pt">
11328 <column alignment="center" valignment="top" width="0pt">
11329 <row>
11330 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11331 \begin_inset Text
11332
11333 \begin_layout Plain Layout
11334 Command
11335 \end_layout
11336
11337 \end_inset
11338 </cell>
11339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11340 \begin_inset Text
11341
11342 \begin_layout Plain Layout
11343
11344 \backslash
11345 negmedspace
11346 \end_layout
11347
11348 \end_inset
11349 </cell>
11350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11351 \begin_inset Text
11352
11353 \begin_layout Plain Layout
11354
11355 \backslash
11356 negthickspace
11357 \end_layout
11358
11359 \end_inset
11360 </cell>
11361 </row>
11362 <row>
11363 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11364 \begin_inset Text
11365
11366 \begin_layout Plain Layout
11367 Number of 
11368 \family sans
11369 Space
11370 \family default
11371  keystrokes after inserting the protected space
11372 \end_layout
11373
11374 \end_inset
11375 </cell>
11376 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11377 \begin_inset Text
11378
11379 \begin_layout Plain Layout
11380 6
11381 \end_layout
11382
11383 \end_inset
11384 </cell>
11385 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11386 \begin_inset Text
11387
11388 \begin_layout Plain Layout
11389 7
11390 \end_layout
11391
11392 \end_inset
11393 </cell>
11394 </row>
11395 <row>
11396 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11397 \begin_inset Text
11398
11399 \begin_layout Plain Layout
11400 Result
11401 \end_layout
11402
11403 \end_inset
11404 </cell>
11405 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11406 \begin_inset Text
11407
11408 \begin_layout Plain Layout
11409 \begin_inset Formula $A\negmedspace B$
11410 \end_inset
11411
11412
11413 \end_layout
11414
11415 \end_inset
11416 </cell>
11417 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11418 \begin_inset Text
11419
11420 \begin_layout Plain Layout
11421 \begin_inset Formula $A\negthickspace B$
11422 \end_inset
11423
11424
11425 \end_layout
11426
11427 \end_inset
11428 </cell>
11429 </row>
11430 </lyxtabular>
11431
11432 \end_inset
11433
11434
11435 \end_layout
11436
11437 \begin_layout Standard
11438 Negative spaces can lead to characters overlapping each other.
11439  Thus they can be used to enforce ligatures, what is e.
11440 \begin_inset space \thinspace{}
11441 \end_inset
11442
11443 g.
11444 \begin_inset space \space{}
11445 \end_inset
11446
11447 useful for summation operators: 
11448 \end_layout
11449
11450 \begin_layout Standard
11451 \align center
11452 \begin_inset Tabular
11453 <lyxtabular version="3" rows="3" columns="2">
11454 <features>
11455 <column alignment="center" valignment="top" width="0">
11456 <column alignment="center" valignment="top" width="0">
11457 <row>
11458 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11459 \begin_inset Text
11460
11461 \begin_layout Plain Layout
11462 Command
11463 \end_layout
11464
11465 \end_inset
11466 </cell>
11467 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11468 \begin_inset Text
11469
11470 \begin_layout Plain Layout
11471 Result
11472 \begin_inset Note Note
11473 status collapsed
11474
11475 \begin_layout Plain Layout
11476
11477 \series bold
11478
11479 \backslash
11480 raisebox
11481 \series default
11482  is only used as spacer.
11483 \end_layout
11484
11485 \end_inset
11486
11487
11488 \end_layout
11489
11490 \end_inset
11491 </cell>
11492 </row>
11493 <row>
11494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11495 \begin_inset Text
11496
11497 \begin_layout Plain Layout
11498
11499 \backslash
11500 sum
11501 \backslash
11502 sum
11503 \begin_inset ERT
11504 status collapsed
11505
11506 \begin_layout Plain Layout
11507
11508
11509 \backslash
11510 spce 
11511 \end_layout
11512
11513 \end_inset
11514
11515 f_kl
11516 \end_layout
11517
11518 \end_inset
11519 </cell>
11520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11521 \begin_inset Text
11522
11523 \begin_layout Plain Layout
11524 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11525 \end_inset
11526
11527
11528 \end_layout
11529
11530 \end_inset
11531 </cell>
11532 </row>
11533 <row>
11534 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11535 \begin_inset Text
11536
11537 \begin_layout Plain Layout
11538
11539 \backslash
11540 sum
11541 \backslash
11542 negmedspace
11543 \backslash
11544 sum
11545 \begin_inset ERT
11546 status collapsed
11547
11548 \begin_layout Plain Layout
11549
11550
11551 \backslash
11552 spce 
11553 \end_layout
11554
11555 \end_inset
11556
11557 f_kl
11558 \end_layout
11559
11560 \end_inset
11561 </cell>
11562 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11563 \begin_inset Text
11564
11565 \begin_layout Plain Layout
11566 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11567 \end_inset
11568
11569
11570 \end_layout
11571
11572 \end_inset
11573 </cell>
11574 </row>
11575 </lyxtabular>
11576
11577 \end_inset
11578
11579
11580 \end_layout
11581
11582 \begin_layout Standard
11583 Relations like for example equal signs, are always surrounded by space.
11584  To suppress this, the equal sign is placed into a TeX-brace.
11585  The following example demonstrates this:
11586 \end_layout
11587
11588 \begin_layout Standard
11589 \align center
11590 \begin_inset Tabular
11591 <lyxtabular version="3" rows="2" columns="2">
11592 <features>
11593 <column alignment="center" valignment="top" width="0pt">
11594 <column alignment="center" valignment="top" width="0pt">
11595 <row>
11596 <cell alignment="center" valignment="top" usebox="none">
11597 \begin_inset Text
11598
11599 \begin_layout Plain Layout
11600 normal equation
11601 \end_layout
11602
11603 \end_inset
11604 </cell>
11605 <cell alignment="center" valignment="top" usebox="none">
11606 \begin_inset Text
11607
11608 \begin_layout Plain Layout
11609 \begin_inset Formula $A=B$
11610 \end_inset
11611
11612
11613 \end_layout
11614
11615 \end_inset
11616 </cell>
11617 </row>
11618 <row>
11619 <cell alignment="center" valignment="top" usebox="none">
11620 \begin_inset Text
11621
11622 \begin_layout Plain Layout
11623 \begin_inset Note Note
11624 status collapsed
11625
11626 \begin_layout Plain Layout
11627
11628 \series bold
11629
11630 \backslash
11631 raisebox
11632 \series default
11633  is only used as spacer.
11634 \end_layout
11635
11636 \end_inset
11637
11638
11639 \begin_inset Formula $\raisebox{5mm}{}$
11640 \end_inset
11641
11642 equation without space
11643 \end_layout
11644
11645 \end_inset
11646 </cell>
11647 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11648 \begin_inset Text
11649
11650 \begin_layout Plain Layout
11651 \begin_inset Formula $A{=}B$
11652 \end_inset
11653
11654
11655 \end_layout
11656
11657 \end_inset
11658 </cell>
11659 </row>
11660 </lyxtabular>
11661
11662 \end_inset
11663
11664
11665 \end_layout
11666
11667 \begin_layout Standard
11668 \noindent
11669 The command for the last formula is: 
11670 \series bold
11671 A
11672 \backslash
11673 {=
11674 \begin_inset Formula $\to$
11675 \end_inset
11676
11677 B
11678 \end_layout
11679
11680 \begin_layout Standard
11681 \begin_inset VSpace bigskip
11682 \end_inset
11683
11684 Spaces are needed for physical units, because the space between the value
11685  and the unit is the smallest one and not a normal space.
11686  For units in text, the smallest space is inserted via the menu 
11687 \family sans
11688 Insert\SpecialChar \menuseparator
11689 Formatting\SpecialChar \menuseparator
11690 Thin
11691 \begin_inset space ~
11692 \end_inset
11693
11694 Space
11695 \family default
11696  (shortcut 
11697 \begin_inset Info
11698 type  "shortcut"
11699 arg   "space-insert thin"
11700 \end_inset
11701
11702 ).
11703 \end_layout
11704
11705 \begin_layout Standard
11706 An example to visualize the difference:
11707 \end_layout
11708
11709 \begin_layout Standard
11710 \begin_inset Tabular
11711 <lyxtabular version="3" rows="2" columns="2">
11712 <features>
11713 <column alignment="left" valignment="top" width="0">
11714 <column alignment="left" valignment="top" width="0">
11715 <row>
11716 <cell alignment="center" valignment="top" usebox="none">
11717 \begin_inset Text
11718
11719 \begin_layout Plain Layout
11720 24 kW
11721 \begin_inset Formula $\cdot$
11722 \end_inset
11723
11724 h
11725 \end_layout
11726
11727 \end_inset
11728 </cell>
11729 <cell alignment="center" valignment="top" usebox="none">
11730 \begin_inset Text
11731
11732 \begin_layout Plain Layout
11733 space between value and unit
11734 \end_layout
11735
11736 \end_inset
11737 </cell>
11738 </row>
11739 <row>
11740 <cell alignment="center" valignment="top" usebox="none">
11741 \begin_inset Text
11742
11743 \begin_layout Plain Layout
11744 24
11745 \begin_inset space \thinspace{}
11746 \end_inset
11747
11748 kW
11749 \begin_inset Formula $\cdot$
11750 \end_inset
11751
11752 h
11753 \end_layout
11754
11755 \end_inset
11756 </cell>
11757 <cell alignment="center" valignment="top" usebox="none">
11758 \begin_inset Text
11759
11760 \begin_layout Plain Layout
11761 smallest space between value and unit
11762 \end_layout
11763
11764 \end_inset
11765 </cell>
11766 </row>
11767 </lyxtabular>
11768
11769 \end_inset
11770
11771
11772 \end_layout
11773
11774 \begin_layout Subsection
11775 Variable Space
11776 \begin_inset ERT
11777 status collapsed
11778
11779 \begin_layout Plain Layout
11780
11781
11782 \backslash
11783 texorpdfstring{
11784 \end_layout
11785
11786 \end_inset
11787
11788
11789 \begin_inset Foot
11790 status collapsed
11791
11792 \begin_layout Plain Layout
11793 for vertical space in formulas see 
11794 \begin_inset CommandInset ref
11795 LatexCommand ref
11796 reference "sub:Line-Separation"
11797
11798 \end_inset
11799
11800
11801 \end_layout
11802
11803 \end_inset
11804
11805
11806 \begin_inset ERT
11807 status collapsed
11808
11809 \begin_layout Plain Layout
11810
11811 }{}
11812 \end_layout
11813
11814 \end_inset
11815
11816
11817 \begin_inset Note Note
11818 status collapsed
11819
11820 \begin_layout Plain Layout
11821
11822 \backslash
11823 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
11824 \end_layout
11825
11826 \begin_layout Plain Layout
11827 More about 
11828 \backslash
11829 texorpdfstring is in section 
11830 \begin_inset CommandInset ref
11831 LatexCommand ref
11832 reference "sub:Formulas-in-Section"
11833
11834 \end_inset
11835
11836 .
11837 \end_layout
11838
11839 \end_inset
11840
11841
11842 \begin_inset CommandInset label
11843 LatexCommand label
11844 name "sub:Variable-Space"
11845
11846 \end_inset
11847
11848
11849 \begin_inset Index
11850 status collapsed
11851
11852 \begin_layout Plain Layout
11853 Space ! horizontal ! variable
11854 \end_layout
11855
11856 \end_inset
11857
11858
11859 \end_layout
11860
11861 \begin_layout Standard
11862 Space with a defined length can be inserted with the command 
11863 \series bold
11864
11865 \backslash
11866 hspace
11867 \series default
11868
11869 \begin_inset Index
11870 status collapsed
11871
11872 \begin_layout Plain Layout
11873 Commands ! H ! 
11874 \backslash
11875 hspace
11876 \end_layout
11877
11878 \end_inset
11879
11880 .
11881  Then a long 
11882 \begin_inset Quotes eld
11883 \end_inset
11884
11885
11886 \color blue
11887
11888 \begin_inset ERT
11889 status collapsed
11890
11891 \begin_layout Plain Layout
11892
11893
11894 \backslash
11895 spce 
11896 \end_layout
11897
11898 \end_inset
11899
11900
11901 \color inherit
11902
11903 \begin_inset Quotes erd
11904 \end_inset
11905
11906  appears.
11907  The length can be specified by left-clicking on the 
11908 \begin_inset Quotes eld
11909 \end_inset
11910
11911
11912 \color blue
11913
11914 \begin_inset ERT
11915 status collapsed
11916
11917 \begin_layout Plain Layout
11918
11919
11920 \backslash
11921 spce 
11922 \end_layout
11923
11924 \end_inset
11925
11926
11927 \color inherit
11928
11929 \begin_inset Quotes erd
11930 \end_inset
11931
11932 .
11933  The length may also be negative.
11934  To insert so many space that the formula uses all available space, the
11935  command 
11936 \series bold
11937
11938 \backslash
11939 hfill
11940 \series default
11941
11942 \begin_inset Index
11943 status collapsed
11944
11945 \begin_layout Plain Layout
11946 Commands ! H ! 
11947 \backslash
11948 hfill
11949 \end_layout
11950
11951 \end_inset
11952
11953  is used.
11954 \end_layout
11955
11956 \begin_layout Standard
11957 \begin_inset VSpace -1mm
11958 \end_inset
11959
11960
11961 \end_layout
11962
11963 \begin_layout Standard
11964 \align center
11965 \begin_inset Tabular
11966 <lyxtabular version="3" rows="4" columns="2">
11967 <features>
11968 <column alignment="center" valignment="top" width="0">
11969 <column alignment="center" valignment="top" width="0">
11970 <row>
11971 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11972 \begin_inset Text
11973
11974 \begin_layout Plain Layout
11975 Command (
11976 \backslash
11977 hspace length)
11978 \end_layout
11979
11980 \end_inset
11981 </cell>
11982 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11983 \begin_inset Text
11984
11985 \begin_layout Plain Layout
11986 Result
11987 \end_layout
11988
11989 \end_inset
11990 </cell>
11991 </row>
11992 <row>
11993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11994 \begin_inset Text
11995
11996 \begin_layout Plain Layout
11997 A=B
11998 \backslash
11999 hspace
12000 \begin_inset ERT
12001 status collapsed
12002
12003 \begin_layout Plain Layout
12004
12005
12006 \backslash
12007 spce 
12008 \end_layout
12009
12010 \end_inset
12011
12012
12013 \begin_inset Formula $\to$
12014 \end_inset
12015
12016 A
12017 \backslash
12018 not=C (3
12019 \begin_inset space \thinspace{}
12020 \end_inset
12021
12022 cm)
12023 \end_layout
12024
12025 \end_inset
12026 </cell>
12027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12028 \begin_inset Text
12029
12030 \begin_layout Plain Layout
12031 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12032 \end_inset
12033
12034
12035 \end_layout
12036
12037 \end_inset
12038 </cell>
12039 </row>
12040 <row>
12041 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12042 \begin_inset Text
12043
12044 \begin_layout Plain Layout
12045 A
12046 \backslash
12047 hspace
12048 \begin_inset ERT
12049 status collapsed
12050
12051 \begin_layout Plain Layout
12052
12053
12054 \backslash
12055 spce 
12056 \end_layout
12057
12058 \end_inset
12059
12060
12061 \begin_inset Formula $\to$
12062 \end_inset
12063
12064 A
12065 \backslash
12066 not=A (-1
12067 \begin_inset space \thinspace{}
12068 \end_inset
12069
12070 mm)
12071 \end_layout
12072
12073 \end_inset
12074 </cell>
12075 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12076 \begin_inset Text
12077
12078 \begin_layout Plain Layout
12079 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12080 \end_inset
12081
12082
12083 \end_layout
12084
12085 \end_inset
12086 </cell>
12087 </row>
12088 <row>
12089 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12090 \begin_inset Text
12091
12092 \begin_layout Plain Layout
12093 A=A
12094 \backslash
12095 hfill
12096 \begin_inset ERT
12097 status collapsed
12098
12099 \begin_layout Plain Layout
12100
12101
12102 \backslash
12103 spce 
12104 \end_layout
12105
12106 \end_inset
12107
12108 B=B
12109 \end_layout
12110
12111 \end_inset
12112 </cell>
12113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12114 \begin_inset Text
12115
12116 \begin_layout Plain Layout
12117 \begin_inset Formula $A=A\hfill B=B$
12118 \end_inset
12119
12120
12121 \end_layout
12122
12123 \end_inset
12124 </cell>
12125 </row>
12126 </lyxtabular>
12127
12128 \end_inset
12129
12130
12131 \end_layout
12132
12133 \begin_layout Standard
12134 In the last example the available space is given by the longest column entry
12135  of the table.
12136  In an inline formula the space depends on the length of the line in which
12137  
12138 \series bold
12139
12140 \backslash
12141 hfill
12142 \series default
12143  is inserted.
12144  Thus, when the line uses the full width, no space will be created.
12145  
12146 \series bold
12147
12148 \backslash
12149 hfill
12150 \series default
12151  only has an effect on displayed formulas when the formula style 
12152 \series bold
12153 Indented
12154 \series default
12155  is used.
12156  (Formula styles are explained in 
12157 \begin_inset CommandInset ref
12158 LatexCommand ref
12159 reference "sec:Formula-Styles"
12160
12161 \end_inset
12162
12163 .)
12164 \end_layout
12165
12166 \begin_layout Standard
12167 Besides 
12168 \series bold
12169
12170 \backslash
12171 hfill
12172 \series default
12173 , there are the commands 
12174 \series bold
12175
12176 \backslash
12177 dotfill
12178 \series default
12179  and 
12180 \series bold
12181
12182 \backslash
12183 hrulefill
12184 \series default
12185  that fill the space with a pattern, see 
12186 \begin_inset CommandInset ref
12187 LatexCommand ref
12188 reference "sub:Ellipses"
12189
12190 \end_inset
12191
12192  for an example.
12193 \end_layout
12194
12195 \begin_layout Standard
12196 For text, variable space can be inserted via the menu 
12197 \family sans
12198 Insert\SpecialChar \menuseparator
12199 Formatting\SpecialChar \menuseparator
12200 Horizontal
12201 \begin_inset space ~
12202 \end_inset
12203
12204 Space
12205 \family default
12206 :
12207 \end_layout
12208
12209 \begin_layout Standard
12210 This is a line with
12211 \begin_inset space \hspace{}
12212 \length 2cm
12213 \end_inset
12214
12215 2
12216 \begin_inset space \thinspace{}
12217 \end_inset
12218
12219 cm space.
12220 \end_layout
12221
12222 \begin_layout Standard
12223 This is a line with
12224 \begin_inset space \hfill{}
12225 \end_inset
12226
12227 maximum space.
12228 \end_layout
12229
12230 \begin_layout Subsection
12231 Space besides inline Formulas
12232 \begin_inset Index
12233 status collapsed
12234
12235 \begin_layout Plain Layout
12236 Space ! besides inline formulas
12237 \end_layout
12238
12239 \end_inset
12240
12241
12242 \end_layout
12243
12244 \begin_layout Standard
12245 The space that surrounds inline formulas can be adjusted with the length
12246  
12247 \series bold
12248
12249 \backslash
12250 mathsurround
12251 \begin_inset Index
12252 status collapsed
12253
12254 \begin_layout Plain Layout
12255 Commands ! M ! 
12256 \backslash
12257 mathsurround
12258 \end_layout
12259
12260 \end_inset
12261
12262
12263 \series default
12264 .
12265  The value of a length is set with the command 
12266 \series bold
12267
12268 \backslash
12269 setlength
12270 \begin_inset Index
12271 status collapsed
12272
12273 \begin_layout Plain Layout
12274 Commands ! S ! 
12275 \backslash
12276 setlength
12277 \end_layout
12278
12279 \end_inset
12280
12281
12282 \series default
12283  that has the following scheme:
12284 \end_layout
12285
12286 \begin_layout Standard
12287
12288 \series bold
12289
12290 \backslash
12291 setlength{length name}{value}
12292 \end_layout
12293
12294 \begin_layout Standard
12295 To set 
12296 \series bold
12297
12298 \backslash
12299 mathsurround
12300 \series default
12301  to the value 5
12302 \begin_inset space \thinspace{}
12303 \end_inset
12304
12305 mm, the command
12306 \end_layout
12307
12308 \begin_layout Standard
12309
12310 \series bold
12311
12312 \backslash
12313 setlength{
12314 \backslash
12315 mathsurround}{5mm}
12316 \end_layout
12317
12318 \begin_layout Standard
12319 is inserted in TeX-mode.
12320  5
12321 \begin_inset space \thinspace{}
12322 \end_inset
12323
12324 mm space will now be set around all inline formulas:
12325 \begin_inset ERT
12326 status collapsed
12327
12328 \begin_layout Plain Layout
12329
12330
12331 \backslash
12332 setlength{
12333 \backslash
12334 mathsurround}{5mm}
12335 \end_layout
12336
12337 \end_inset
12338
12339
12340 \end_layout
12341
12342 \begin_layout Standard
12343 This is a line with an inline formula 
12344 \begin_inset Formula $A=B$
12345 \end_inset
12346
12347  with 5
12348 \begin_inset space \thinspace{}
12349 \end_inset
12350
12351 mm surrounding space.
12352 \begin_inset ERT
12353 status collapsed
12354
12355 \begin_layout Plain Layout
12356
12357
12358 \backslash
12359 setlength{
12360 \backslash
12361 mathsurround}{0pt}
12362 \end_layout
12363
12364 \end_inset
12365
12366
12367 \end_layout
12368
12369 \begin_layout Standard
12370 To return to the predefined value, 
12371 \series bold
12372
12373 \backslash
12374 mathsurround
12375 \series default
12376  is set to the value 0
12377 \begin_inset space \thinspace{}
12378 \end_inset
12379
12380 pt.
12381 \end_layout
12382
12383 \begin_layout Section
12384 Boxes and Frames
12385 \begin_inset Index
12386 status collapsed
12387
12388 \begin_layout Plain Layout
12389 Boxes
12390 \end_layout
12391
12392 \end_inset
12393
12394
12395 \begin_inset Index
12396 status collapsed
12397
12398 \begin_layout Plain Layout
12399 Frames | see
12400 \begin_inset ERT
12401 status collapsed
12402
12403 \begin_layout Plain Layout
12404
12405 {
12406 \end_layout
12407
12408 \end_inset
12409
12410 Boxes
12411 \begin_inset ERT
12412 status collapsed
12413
12414 \begin_layout Plain Layout
12415
12416 }
12417 \end_layout
12418
12419 \end_inset
12420
12421
12422 \end_layout
12423
12424 \end_inset
12425
12426
12427 \end_layout
12428
12429 \begin_layout Standard
12430 Boxes for text are described in chapter 
12431 \family typewriter
12432 Boxes
12433 \family default
12434  in the 
12435 \family typewriter
12436 Embedded
12437 \begin_inset space ~
12438 \end_inset
12439
12440 Objects
12441 \family default
12442  manual.
12443 \end_layout
12444
12445 \begin_layout Subsection
12446 Boxes with Frame
12447 \begin_inset CommandInset label
12448 LatexCommand label
12449 name "sub:Boxes-with-Frame"
12450
12451 \end_inset
12452
12453
12454 \begin_inset Index
12455 status collapsed
12456
12457 \begin_layout Plain Layout
12458 Boxes ! with frame
12459 \end_layout
12460
12461 \end_inset
12462
12463
12464 \end_layout
12465
12466 \begin_layout Standard
12467 It is possible to frame formulas or parts of it with the commands 
12468 \series bold
12469
12470 \backslash
12471 fbox
12472 \series default
12473
12474 \begin_inset Index
12475 status collapsed
12476
12477 \begin_layout Plain Layout
12478 Commands ! F ! 
12479 \backslash
12480 fbox
12481 \end_layout
12482
12483 \end_inset
12484
12485  and 
12486 \series bold
12487
12488 \backslash
12489 boxed
12490 \series default
12491
12492 \begin_inset Index
12493 status collapsed
12494
12495 \begin_layout Plain Layout
12496 Commands ! B ! 
12497 \backslash
12498 boxed
12499 \end_layout
12500
12501 \end_inset
12502
12503 .
12504 \end_layout
12505
12506 \begin_layout Standard
12507 When one of these commands is inserted to a formula, a blue box appears
12508  within a frame to enter formula parts.
12509  For 
12510 \series bold
12511
12512 \backslash
12513 fbox
12514 \series default
12515  an additional formula has to be created by 
12516 \family sans
12517 Ctrl+M
12518 \family default
12519  within this box, because the box content will otherwise be treated as mathemati
12520 cal text.
12521  When 
12522 \series bold
12523
12524 \backslash
12525 boxed
12526 \series default
12527  is used, a new formula is automatically created inside the frame.
12528 \end_layout
12529
12530 \begin_layout Standard
12531 The command 
12532 \series bold
12533
12534 \backslash
12535 fbox
12536 \series default
12537  is not suitable to frame displayed formulas because the formula will always
12538  be set in the size of the text.
12539  
12540 \series bold
12541
12542 \backslash
12543 boxed
12544 \series default
12545  is in contrary not suitable to frame inline formulas, because the formula
12546  will always be set in the size of a displayed formula.
12547 \end_layout
12548
12549 \begin_layout Standard
12550 As extension to 
12551 \series bold
12552
12553 \backslash
12554 fbox
12555 \series default
12556  there is the command 
12557 \series bold
12558
12559 \backslash
12560 framebox
12561 \series default
12562
12563 \begin_inset Index
12564 status collapsed
12565
12566 \begin_layout Plain Layout
12567 Commands ! F ! 
12568 \backslash
12569 framebox
12570 \end_layout
12571
12572 \end_inset
12573
12574  where additionally the frame width and the alignment can be specified.
12575  
12576 \series bold
12577
12578 \backslash
12579 framebox
12580 \series default
12581  is used in the following scheme:
12582 \end_layout
12583
12584 \begin_layout Standard
12585
12586 \series bold
12587
12588 \backslash
12589 framebox[frame width][position]{box content}
12590 \end_layout
12591
12592 \begin_layout Standard
12593 The position can either be 
12594 \emph on
12595 l
12596 \emph default
12597  or 
12598 \emph on
12599 r
12600 \emph default
12601 .
12602  
12603 \emph on
12604 l
12605 \emph default
12606  left aligns, 
12607 \emph on
12608 r
12609 \emph default
12610  right aligns the formula in the box.
12611  When no position is given, the formula will be centered.
12612 \begin_inset Newline newline
12613 \end_inset
12614
12615 Is no width given, also no position can be given.
12616  In this case the frame width is adjusted to the box content like for 
12617 \series bold
12618
12619 \backslash
12620 fbox
12621 \series default
12622 .
12623 \end_layout
12624
12625 \begin_layout Standard
12626 When the command 
12627 \series bold
12628
12629 \backslash
12630 framebox
12631 \series default
12632  is inserted, a box appears containing three blue boxes.
12633  The first two boxes are surrounded by brackets and denote the two optional
12634  arguments.
12635  The third box is for formula parts like for 
12636 \series bold
12637
12638 \backslash
12639 fbox
12640 \series default
12641 .
12642 \end_layout
12643
12644 \begin_layout Standard
12645 \align center
12646 \begin_inset Tabular
12647 <lyxtabular version="3" rows="5" columns="2">
12648 <features>
12649 <column alignment="center" valignment="top" width="0">
12650 <column alignment="center" valignment="top" width="0">
12651 <row>
12652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12653 \begin_inset Text
12654
12655 \begin_layout Plain Layout
12656 Command
12657 \end_layout
12658
12659 \end_inset
12660 </cell>
12661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12662 \begin_inset Text
12663
12664 \begin_layout Plain Layout
12665 Result
12666 \begin_inset Note Note
12667 status collapsed
12668
12669 \begin_layout Plain Layout
12670
12671 \series bold
12672
12673 \backslash
12674 raisebox
12675 \series default
12676  is only used as spacer.
12677 \end_layout
12678
12679 \end_inset
12680
12681
12682 \end_layout
12683
12684 \end_inset
12685 </cell>
12686 </row>
12687 <row>
12688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12689 \begin_inset Text
12690
12691 \begin_layout Plain Layout
12692
12693 \backslash
12694 fbox
12695 \begin_inset ERT
12696 status collapsed
12697
12698 \begin_layout Plain Layout
12699
12700
12701 \backslash
12702 spce 
12703 \end_layout
12704
12705 \end_inset
12706
12707
12708 \family sans
12709 Ctrl+M
12710 \family default
12711  
12712 \backslash
12713 int
12714 \begin_inset ERT
12715 status collapsed
12716
12717 \begin_layout Plain Layout
12718
12719
12720 \backslash
12721 spce 
12722 \end_layout
12723
12724 \end_inset
12725
12726 A=B
12727 \end_layout
12728
12729 \end_inset
12730 </cell>
12731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12732 \begin_inset Text
12733
12734 \begin_layout Plain Layout
12735 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12736 \end_inset
12737
12738
12739 \end_layout
12740
12741 \end_inset
12742 </cell>
12743 </row>
12744 <row>
12745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12746 \begin_inset Text
12747
12748 \begin_layout Plain Layout
12749
12750 \backslash
12751 boxed
12752 \begin_inset ERT
12753 status collapsed
12754
12755 \begin_layout Plain Layout
12756
12757
12758 \backslash
12759 spce 
12760 \end_layout
12761
12762 \end_inset
12763
12764
12765 \backslash
12766 int
12767 \begin_inset ERT
12768 status collapsed
12769
12770 \begin_layout Plain Layout
12771
12772
12773 \backslash
12774 spce 
12775 \end_layout
12776
12777 \end_inset
12778
12779 A=B
12780 \end_layout
12781
12782 \end_inset
12783 </cell>
12784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12785 \begin_inset Text
12786
12787 \begin_layout Plain Layout
12788 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12789 \end_inset
12790
12791
12792 \end_layout
12793
12794 \end_inset
12795 </cell>
12796 </row>
12797 <row>
12798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12799 \begin_inset Text
12800
12801 \begin_layout Plain Layout
12802 A+
12803 \backslash
12804 fbox
12805 \begin_inset ERT
12806 status collapsed
12807
12808 \begin_layout Plain Layout
12809
12810
12811 \backslash
12812 spce 
12813 \end_layout
12814
12815 \end_inset
12816
12817 B
12818 \end_layout
12819
12820 \end_inset
12821 </cell>
12822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12823 \begin_inset Text
12824
12825 \begin_layout Plain Layout
12826 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12827 \end_inset
12828
12829
12830 \end_layout
12831
12832 \end_inset
12833 </cell>
12834 </row>
12835 <row>
12836 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12837 \begin_inset Text
12838
12839 \begin_layout Plain Layout
12840
12841 \backslash
12842 framebox
12843 \begin_inset ERT
12844 status collapsed
12845
12846 \begin_layout Plain Layout
12847
12848
12849 \backslash
12850 spce 
12851 \end_layout
12852
12853 \end_inset
12854
12855 20mm
12856 \begin_inset Formula $\to$
12857 \end_inset
12858
12859
12860 \begin_inset Formula $\to$
12861 \end_inset
12862
12863
12864 \family sans
12865 Ctrl+M
12866 \family default
12867  
12868 \backslash
12869 frac
12870 \begin_inset ERT
12871 status collapsed
12872
12873 \begin_layout Plain Layout
12874
12875
12876 \backslash
12877 spce 
12878 \end_layout
12879
12880 \end_inset
12881
12882 A
12883 \begin_inset Formula $\downarrow$
12884 \end_inset
12885
12886 B
12887 \end_layout
12888
12889 \end_inset
12890 </cell>
12891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12892 \begin_inset Text
12893
12894 \begin_layout Plain Layout
12895 \begin_inset Formula $\raisebox{6mm}{}$
12896 \end_inset
12897
12898
12899 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
12900 \end_inset
12901
12902
12903 \begin_inset Formula $\raisebox{-4mm}{}$
12904 \end_inset
12905
12906
12907 \end_layout
12908
12909 \end_inset
12910 </cell>
12911 </row>
12912 </lyxtabular>
12913
12914 \end_inset
12915
12916
12917 \end_layout
12918
12919 \begin_layout Standard
12920 The frame thickness can also be adjusted.
12921  To do this the following commands have to be inserted in TeX-mode before
12922  the formula
12923 \end_layout
12924
12925 \begin_layout Standard
12926
12927 \series bold
12928
12929 \backslash
12930 fboxrule
12931 \series default
12932  
12933 \series bold
12934
12935 \begin_inset Quotes eld
12936 \end_inset
12937
12938 thickness
12939 \begin_inset Quotes erd
12940 \end_inset
12941
12942
12943 \series default
12944  
12945 \series bold
12946
12947 \backslash
12948 fboxsep
12949 \series default
12950  
12951 \series bold
12952
12953 \begin_inset Quotes eld
12954 \end_inset
12955
12956 distance
12957 \begin_inset Quotes erd
12958 \end_inset
12959
12960
12961 \end_layout
12962
12963 \begin_layout Standard
12964 \begin_inset Quotes eld
12965 \end_inset
12966
12967 distance
12968 \begin_inset Quotes erd
12969 \end_inset
12970
12971  specifies the minimal distance between the frame and the first character
12972  in the box.
12973  An example for this is the following framed formula:
12974 \begin_inset ERT
12975 status collapsed
12976
12977 \begin_layout Plain Layout
12978
12979
12980 \backslash
12981 fboxrule 2mm 
12982 \backslash
12983 fboxsep 3mm
12984 \end_layout
12985
12986 \end_inset
12987
12988
12989 \begin_inset Formula \[
12990 \boxed{A+B=C}\]
12991
12992 \end_inset
12993
12994 Before this formula the commands
12995 \end_layout
12996
12997 \begin_layout Standard
12998
12999 \series bold
13000
13001 \backslash
13002 fboxrule
13003 \series default
13004  
13005 \series bold
13006 2mm
13007 \series default
13008  
13009 \series bold
13010
13011 \backslash
13012 fboxsep
13013 \series default
13014  
13015 \series bold
13016 3mm
13017 \end_layout
13018
13019 \begin_layout Standard
13020 were inserted in TeX-mode.
13021  The given values are used for all following boxes.
13022 \end_layout
13023
13024 \begin_layout Standard
13025 To return to the standard frame size, the command
13026 \end_layout
13027
13028 \begin_layout Standard
13029
13030 \series bold
13031
13032 \backslash
13033 fboxrule
13034 \series default
13035  
13036 \series bold
13037 0.4pt
13038 \series default
13039  
13040 \series bold
13041
13042 \backslash
13043 fboxsep
13044 \series default
13045  
13046 \series bold
13047 3pt
13048 \series default
13049
13050 \begin_inset ERT
13051 status collapsed
13052
13053 \begin_layout Plain Layout
13054
13055
13056 \backslash
13057 fboxrule 0.4pt 
13058 \backslash
13059 fboxsep 3pt
13060 \end_layout
13061
13062 \end_inset
13063
13064
13065 \end_layout
13066
13067 \begin_layout Standard
13068 is inserted in TeX-mode before the next formula.
13069 \end_layout
13070
13071 \begin_layout Subsection
13072 Boxes without Frame
13073 \begin_inset CommandInset label
13074 LatexCommand label
13075 name "sub:Boxes-without-Frame"
13076
13077 \end_inset
13078
13079
13080 \begin_inset Index
13081 status collapsed
13082
13083 \begin_layout Plain Layout
13084 Boxes ! without frame
13085 \end_layout
13086
13087 \end_inset
13088
13089
13090 \end_layout
13091
13092 \begin_layout Standard
13093 For boxes without a frame there are the following box commands: 
13094 \series bold
13095
13096 \backslash
13097 mbox
13098 \series default
13099
13100 \begin_inset Index
13101 status collapsed
13102
13103 \begin_layout Plain Layout
13104 Commands ! M ! 
13105 \backslash
13106 mbox
13107 \end_layout
13108
13109 \end_inset
13110
13111
13112 \series bold
13113
13114 \backslash
13115 makebox
13116 \series default
13117
13118 \begin_inset Index
13119 status collapsed
13120
13121 \begin_layout Plain Layout
13122 Commands ! M ! 
13123 \backslash
13124 makebox
13125 \end_layout
13126
13127 \end_inset
13128
13129  and 
13130 \series bold
13131
13132 \backslash
13133 raisebox
13134 \series default
13135
13136 \begin_inset Index
13137 status collapsed
13138
13139 \begin_layout Plain Layout
13140 Commands ! R ! 
13141 \backslash
13142 raisebox
13143 \end_layout
13144
13145 \end_inset
13146
13147
13148 \end_layout
13149
13150 \begin_layout Standard
13151 With 
13152 \series bold
13153
13154 \backslash
13155 raisebox
13156 \series default
13157  a box can be super- or subscripted.
13158  But in contrary to normal super- and subscripting, the characters in the
13159  box keep their font size.
13160  
13161 \series bold
13162
13163 \backslash
13164 raisebox
13165 \series default
13166  is used in the following scheme:
13167 \end_layout
13168
13169 \begin_layout Standard
13170
13171 \series bold
13172
13173 \backslash
13174 raisebox{height}{box content}
13175 \end_layout
13176
13177 \begin_layout Standard
13178 When the box should contain a formula, an extra formula is needed like for
13179  
13180 \series bold
13181
13182 \backslash
13183 fbox
13184 \series default
13185 .
13186  
13187 \series medium
13188
13189 \begin_inset Note Greyedout
13190 status open
13191
13192 \begin_layout Plain Layout
13193
13194 \series bold
13195 Note:
13196 \series default
13197  For 
13198 \series bold
13199
13200 \backslash
13201 raisebox
13202 \series default
13203  this extra formula is created by pressing 
13204 \family sans
13205 Ctrl+M
13206 \family default
13207  twice instead of once because LyX doesn't yet support 
13208 \series bold
13209
13210 \backslash
13211 raisebox
13212 \series default
13213  directly.
13214 \end_layout
13215
13216 \end_inset
13217
13218
13219 \end_layout
13220
13221 \begin_layout Standard
13222 \align center
13223 \begin_inset Tabular
13224 <lyxtabular version="3" rows="4" columns="2">
13225 <features>
13226 <column alignment="center" valignment="top" width="0">
13227 <column alignment="center" valignment="top" width="0">
13228 <row>
13229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13230 \begin_inset Text
13231
13232 \begin_layout Plain Layout
13233 Command
13234 \end_layout
13235
13236 \end_inset
13237 </cell>
13238 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13239 \begin_inset Text
13240
13241 \begin_layout Plain Layout
13242 Result
13243 \end_layout
13244
13245 \end_inset
13246 </cell>
13247 </row>
13248 <row>
13249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13250 \begin_inset Text
13251
13252 \begin_layout Plain Layout
13253 H
13254 \backslash
13255 raisebox{2mm
13256 \begin_inset Formula $\to$
13257 \end_inset
13258
13259
13260 \backslash
13261 {al
13262 \begin_inset Formula $\to$
13263 \end_inset
13264
13265  lo
13266 \end_layout
13267
13268 \end_inset
13269 </cell>
13270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13271 \begin_inset Text
13272
13273 \begin_layout Plain Layout
13274 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13275 \end_inset
13276
13277
13278 \end_layout
13279
13280 \end_inset
13281 </cell>
13282 </row>
13283 <row>
13284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13285 \begin_inset Text
13286
13287 \begin_layout Plain Layout
13288 H
13289 \backslash
13290 raisebox{-2mm
13291 \begin_inset Formula $\to$
13292 \end_inset
13293
13294
13295 \backslash
13296 {al
13297 \begin_inset Formula $\to$
13298 \end_inset
13299
13300 lo
13301 \end_layout
13302
13303 \end_inset
13304 </cell>
13305 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13306 \begin_inset Text
13307
13308 \begin_layout Plain Layout
13309 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13310 \end_inset
13311
13312
13313 \end_layout
13314
13315 \end_inset
13316 </cell>
13317 </row>
13318 <row>
13319 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13320 \begin_inset Text
13321
13322 \begin_layout Plain Layout
13323 A=
13324 \backslash
13325 raisebox{-2mm
13326 \begin_inset Formula $\to$
13327 \end_inset
13328
13329
13330 \backslash
13331 {
13332 \family sans
13333 Ctrl+M
13334 \family default
13335  
13336 \family sans
13337 Ctrl+M
13338 \family default
13339  
13340 \backslash
13341 sqrt
13342 \begin_inset ERT
13343 status collapsed
13344
13345 \begin_layout Plain Layout
13346
13347
13348 \backslash
13349 spce 
13350 \end_layout
13351
13352 \end_inset
13353
13354
13355 \end_layout
13356
13357 \end_inset
13358 </cell>
13359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13360 \begin_inset Text
13361
13362 \begin_layout Plain Layout
13363 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13364 \end_inset
13365
13366
13367 \end_layout
13368
13369 \end_inset
13370 </cell>
13371 </row>
13372 </lyxtabular>
13373
13374 \end_inset
13375
13376
13377 \end_layout
13378
13379 \begin_layout Standard
13380 The command 
13381 \series bold
13382
13383 \backslash
13384 mbox
13385 \series default
13386  is equivalent to 
13387 \series bold
13388
13389 \backslash
13390 fbox
13391 \series default
13392  and 
13393 \series bold
13394
13395 \backslash
13396 makebox
13397 \series default
13398  is equivalent to 
13399 \series bold
13400
13401 \backslash
13402 framebox
13403 \series default
13404 , with the difference that there is no frame.
13405 \end_layout
13406
13407 \begin_layout Subsection
13408 Colored Boxes
13409 \begin_inset CommandInset label
13410 LatexCommand label
13411 name "sub:Colored-Boxes"
13412
13413 \end_inset
13414
13415
13416 \begin_inset Index
13417 status collapsed
13418
13419 \begin_layout Plain Layout
13420 Boxes ! colored
13421 \end_layout
13422
13423 \end_inset
13424
13425
13426 \end_layout
13427
13428 \begin_layout Standard
13429 To be able to use all commands explained in this section, the LaTeX-package
13430  
13431 \series bold
13432 color
13433 \series default
13434
13435 \begin_inset Foot
13436 status collapsed
13437
13438 \begin_layout Plain Layout
13439 The LaTeX-package 
13440 \series bold
13441 color
13442 \series default
13443  is part of every LaTeX standard installation.
13444 \end_layout
13445
13446 \end_inset
13447
13448
13449 \begin_inset Index
13450 status collapsed
13451
13452 \begin_layout Plain Layout
13453 Packages ! color
13454 \end_layout
13455
13456 \end_inset
13457
13458  has to be loaded in the LaTeX-preamble with the line
13459 \begin_inset Foot
13460 status collapsed
13461
13462 \begin_layout Plain Layout
13463 When text is colored somewhere in the document with a predefined color,
13464  LyX loads the LaTeX-package 
13465 \series bold
13466 color
13467 \series default
13468  automatically.
13469  Thus it is possible that the package is loaded twice, but this doesn't
13470  arise problems.
13471 \end_layout
13472
13473 \end_inset
13474
13475
13476 \begin_inset Note Note
13477 status collapsed
13478
13479 \begin_layout Plain Layout
13480 To avoid that the package is loaded twice, a macro was inserted to the LaTeX-pre
13481 amble.
13482 \end_layout
13483
13484 \end_inset
13485
13486
13487 \end_layout
13488
13489 \begin_layout Standard
13490
13491 \series bold
13492
13493 \backslash
13494 usepackage{color}
13495 \end_layout
13496
13497 \begin_layout Standard
13498 \begin_inset VSpace medskip
13499 \end_inset
13500
13501 To color boxes, the command 
13502 \series bold
13503
13504 \backslash
13505 colorbox
13506 \series default
13507
13508 \begin_inset Index
13509 status collapsed
13510
13511 \begin_layout Plain Layout
13512 Commands ! C ! 
13513 \backslash
13514 colorbox
13515 \end_layout
13516
13517 \end_inset
13518
13519  is used in the following scheme:
13520 \end_layout
13521
13522 \begin_layout Standard
13523
13524 \series bold
13525
13526 \backslash
13527 colorbox{color}{box content}
13528 \end_layout
13529
13530 \begin_layout Standard
13531 The box content can also be a box and a 
13532 \series bold
13533
13534 \backslash
13535 colorbox
13536 \series default
13537  can also be part of another box (see the 2nd and 3rd example).
13538  When the box should contain a formula, an extra formula has to be created,
13539  the same way as for 
13540 \series bold
13541
13542 \backslash
13543 raisebox
13544 \series default
13545 .
13546 \begin_inset Foot
13547 status collapsed
13548
13549 \begin_layout Plain Layout
13550 This also applies for the command 
13551 \series bold
13552
13553 \backslash
13554 fcolorbox
13555 \series default
13556 .
13557 \end_layout
13558
13559 \end_inset
13560
13561
13562 \end_layout
13563
13564 \begin_layout Standard
13565 One of the following predefined colors can be chosen:
13566 \end_layout
13567
13568 \begin_layout Standard
13569
13570 \series bold
13571 black
13572 \series default
13573
13574 \series bold
13575 blue
13576 \series default
13577
13578 \series bold
13579 cyan
13580 \series default
13581
13582 \series bold
13583 green
13584 \series default
13585
13586 \series bold
13587 magenta
13588 \series default
13589
13590 \series bold
13591 red
13592 \series default
13593
13594 \series bold
13595 white
13596 \series default
13597  and 
13598 \series bold
13599 yellow
13600 \end_layout
13601
13602 \begin_layout Standard
13603 \align center
13604 \begin_inset Tabular
13605 <lyxtabular version="3" rows="4" columns="2">
13606 <features>
13607 <column alignment="center" valignment="top" width="0">
13608 <column alignment="center" valignment="top" width="0">
13609 <row>
13610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13611 \begin_inset Text
13612
13613 \begin_layout Plain Layout
13614 Command
13615 \end_layout
13616
13617 \end_inset
13618 </cell>
13619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13620 \begin_inset Text
13621
13622 \begin_layout Plain Layout
13623 Result
13624 \begin_inset Note Note
13625 status collapsed
13626
13627 \begin_layout Plain Layout
13628
13629 \series bold
13630
13631 \backslash
13632 raisebox
13633 \series default
13634  is only used as spacer.
13635 \end_layout
13636
13637 \end_inset
13638
13639
13640 \end_layout
13641
13642 \end_inset
13643 </cell>
13644 </row>
13645 <row>
13646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13647 \begin_inset Text
13648
13649 \begin_layout Plain Layout
13650
13651 \backslash
13652 colorbox{yellow
13653 \begin_inset Formula $\to$
13654 \end_inset
13655
13656
13657 \backslash
13658 {A=B
13659 \end_layout
13660
13661 \end_inset
13662 </cell>
13663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13664 \begin_inset Text
13665
13666 \begin_layout Plain Layout
13667 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13668 \end_inset
13669
13670
13671 \end_layout
13672
13673 \end_inset
13674 </cell>
13675 </row>
13676 <row>
13677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13678 \begin_inset Text
13679
13680 \begin_layout Plain Layout
13681
13682 \backslash
13683 colorbox{green
13684 \begin_inset Formula $\to$
13685 \end_inset
13686
13687
13688 \backslash
13689 {
13690 \backslash
13691 fbox
13692 \begin_inset ERT
13693 status collapsed
13694
13695 \begin_layout Plain Layout
13696
13697
13698 \backslash
13699 spce 
13700 \end_layout
13701
13702 \end_inset
13703
13704 A=B
13705 \end_layout
13706
13707 \end_inset
13708 </cell>
13709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13710 \begin_inset Text
13711
13712 \begin_layout Plain Layout
13713 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13714 \end_inset
13715
13716
13717 \end_layout
13718
13719 \end_inset
13720 </cell>
13721 </row>
13722 <row>
13723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13724 \begin_inset Text
13725
13726 \begin_layout Plain Layout
13727
13728 \backslash
13729 fbox
13730 \begin_inset ERT
13731 status collapsed
13732
13733 \begin_layout Plain Layout
13734
13735
13736 \backslash
13737 spce 
13738 \end_layout
13739
13740 \end_inset
13741
13742
13743 \backslash
13744 colorbox{green
13745 \begin_inset Formula $\to$
13746 \end_inset
13747
13748
13749 \backslash
13750 {
13751 \family sans
13752 Ctrl+M
13753 \family default
13754  
13755 \family sans
13756 Ctrl+M
13757 \family default
13758  
13759 \backslash
13760 int
13761 \begin_inset ERT
13762 status collapsed
13763
13764 \begin_layout Plain Layout
13765
13766
13767 \backslash
13768 spce 
13769 \end_layout
13770
13771 \end_inset
13772
13773 C=D
13774 \end_layout
13775
13776 \end_inset
13777 </cell>
13778 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13779 \begin_inset Text
13780
13781 \begin_layout Plain Layout
13782 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13783 \end_inset
13784
13785
13786 \end_layout
13787
13788 \end_inset
13789 </cell>
13790 </row>
13791 </lyxtabular>
13792
13793 \end_inset
13794
13795
13796 \end_layout
13797
13798 \begin_layout Standard
13799
13800 \series bold
13801
13802 \backslash
13803 colorbox
13804 \series default
13805  only colors the box but not the characters in the box.
13806  To color all characters, the whole formula is highlighted and the wanted
13807  color is chosen in the 
13808 \family sans
13809 Text
13810 \begin_inset space ~
13811 \end_inset
13812
13813 Style
13814 \family default
13815  dialog.
13816  The dialog can be called with the toolbar button 
13817 \begin_inset Graphics
13818         filename ../images/dialog-show_character.png
13819         scale 85
13820
13821 \end_inset
13822
13823  or the menu 
13824 \family sans
13825 Edit\SpecialChar \menuseparator
13826 Text
13827 \begin_inset space ~
13828 \end_inset
13829
13830 Style\SpecialChar \menuseparator
13831 Customized
13832 \family default
13833 .
13834  The formula number has then the same color as the formula.
13835  When the formula number should get another color than the formula characters,
13836  the color must be changed within the formula.
13837 \end_layout
13838
13839 \begin_layout Standard
13840 An example:
13841 \end_layout
13842
13843 \begin_layout Standard
13844
13845 \color red
13846 \begin_inset Formula \begin{equation}
13847 \int A=B\label{eq:red}\end{equation}
13848
13849 \end_inset
13850
13851
13852 \color green
13853
13854 \begin_inset Formula \begin{equation}
13855 \textcolor{red}{\int A=B}\label{eq:redgreen}\end{equation}
13856
13857 \end_inset
13858
13859
13860 \end_layout
13861
13862 \begin_layout Standard
13863 Formula 
13864 \begin_inset CommandInset ref
13865 LatexCommand eqref
13866 reference "eq:red"
13867
13868 \end_inset
13869
13870  is completely colored red.
13871 \begin_inset Newline newline
13872 \end_inset
13873
13874 Formula 
13875 \begin_inset CommandInset ref
13876 LatexCommand eqref
13877 reference "eq:redgreen"
13878
13879 \end_inset
13880
13881  was first completely colored green to set the color for the formula number.
13882  Subsequently the formula characters were colored red.
13883 \end_layout
13884
13885 \begin_layout Standard
13886 \begin_inset VSpace bigskip
13887 \end_inset
13888
13889 To color the frame different than the rest of the box, the command 
13890 \series bold
13891
13892 \backslash
13893 fcolorbox
13894 \series default
13895
13896 \begin_inset Index
13897 status collapsed
13898
13899 \begin_layout Plain Layout
13900 Commands ! F ! 
13901 \backslash
13902 fcolorbox
13903 \end_layout
13904
13905 \end_inset
13906
13907  is used in the following scheme:
13908 \end_layout
13909
13910 \begin_layout Standard
13911
13912 \series bold
13913
13914 \backslash
13915 fcolorbox{frame color}{color}{box content}
13916 \end_layout
13917
13918 \begin_layout Standard
13919 So 
13920 \series bold
13921
13922 \backslash
13923 fcolorbox
13924 \series default
13925  is an extension of the command 
13926 \series bold
13927
13928 \backslash
13929 colorbox
13930 \series default
13931 .
13932  The frame width is set, like for 
13933 \series bold
13934
13935 \backslash
13936 framebox
13937 \series default
13938 , with 
13939 \series bold
13940
13941 \backslash
13942 fboxrule
13943 \series default
13944  and 
13945 \series bold
13946
13947 \backslash
13948 fboxsep
13949 \series default
13950 .
13951  An example:
13952 \begin_inset ERT
13953 status collapsed
13954
13955 \begin_layout Plain Layout
13956
13957
13958 \backslash
13959 fboxrule 1mm 
13960 \backslash
13961 fboxsep 1mm
13962 \end_layout
13963
13964 \end_inset
13965
13966
13967 \begin_inset Formula \[
13968 \fcolorbox{cyan}{magenta}{A=B}\]
13969
13970 \end_inset
13971
13972
13973 \begin_inset ERT
13974 status collapsed
13975
13976 \begin_layout Plain Layout
13977
13978
13979 \backslash
13980 fboxrule 0.4pt 
13981 \backslash
13982 fboxsep 3pt
13983 \end_layout
13984
13985 \end_inset
13986
13987
13988 \end_layout
13989
13990 \begin_layout Standard
13991 This formula was created with the command
13992 \begin_inset Newline newline
13993 \end_inset
13994
13995
13996 \series bold
13997
13998 \backslash
13999 fcolorbox{cyan
14000 \begin_inset Formula $\to$
14001 \end_inset
14002
14003
14004 \backslash
14005 {magenta
14006 \begin_inset Formula $\to$
14007 \end_inset
14008
14009
14010 \backslash
14011 {A=B
14012 \series default
14013 .
14014 \end_layout
14015
14016 \begin_layout Standard
14017 \begin_inset VSpace bigskip
14018 \end_inset
14019
14020 To use other colors than the predefined ones, they have to be defined first.
14021 \end_layout
14022
14023 \begin_layout Standard
14024 One can for example define the color 
14025 \begin_inset Quotes eld
14026 \end_inset
14027
14028
14029 \series bold
14030 darkgreen
14031 \series default
14032
14033 \begin_inset Quotes erd
14034 \end_inset
14035
14036  with the LaTeX-preamble line:
14037 \end_layout
14038
14039 \begin_layout Standard
14040
14041 \series bold
14042
14043 \backslash
14044 definecolor{darkgreen}{cmyk}{0.5,
14045 \series default
14046  
14047 \series bold
14048 0,
14049 \series default
14050  
14051 \series bold
14052 1,
14053 \series default
14054  
14055 \series bold
14056 0.5}
14057 \series default
14058
14059 \begin_inset Index
14060 status collapsed
14061
14062 \begin_layout Plain Layout
14063 Commands ! D ! 
14064 \backslash
14065 definecolor
14066 \end_layout
14067
14068 \end_inset
14069
14070
14071 \end_layout
14072
14073 \begin_layout Standard
14074
14075 \series bold
14076 cmyk
14077 \series default
14078  is the color space that denotes the colors 
14079 \series bold
14080 cyan
14081 \series default
14082
14083 \series bold
14084 magenta
14085 \series default
14086
14087 \series bold
14088 yellow
14089 \series default
14090  and 
14091 \series bold
14092 black
14093 \series default
14094 .
14095  The four comma separated numbers are the portion factor for the corresponding
14096  colors of the color space.
14097  The factors can be in the range of 0
14098 \begin_inset space \thinspace{}
14099 \end_inset
14100
14101 -
14102 \begin_inset space \thinspace{}
14103 \end_inset
14104
14105 1.
14106  Instead of 
14107 \series bold
14108 cmyk
14109 \series default
14110  also the color space 
14111 \series bold
14112 rgb
14113 \series default
14114  can be used for definitions.
14115  
14116 \series bold
14117 rgb
14118 \series default
14119  denotes 
14120 \series bold
14121 red
14122 \series default
14123
14124 \series bold
14125 green
14126 \series default
14127  and 
14128 \series bold
14129 blue
14130 \series default
14131 , so that there are in this case three portion factors for the corresponding
14132  colors.
14133  Furthermore there is the color space 
14134 \series bold
14135 gray
14136 \series default
14137  with one portion factor for the gray value.
14138 \end_layout
14139
14140 \begin_layout Standard
14141 As example a framed box with the new defined color 
14142 \series bold
14143 darkgreen
14144 \series default
14145  where the characters have been colored 
14146 \series bold
14147 yellow
14148 \series default
14149 :
14150 \begin_inset Formula \begin{equation}
14151 \colorbox{darkgreen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
14152
14153 \end_inset
14154
14155
14156 \end_layout
14157
14158 \begin_layout Standard
14159 Self-defined colors can also be used for text with the help of the command
14160  
14161 \series bold
14162
14163 \backslash
14164 textcolor
14165 \series default
14166 :
14167 \begin_inset Index
14168 status collapsed
14169
14170 \begin_layout Plain Layout
14171 Text ! colored
14172 \end_layout
14173
14174 \end_inset
14175
14176
14177 \end_layout
14178
14179 \begin_layout Standard
14180 \begin_inset ERT
14181 status collapsed
14182
14183 \begin_layout Plain Layout
14184
14185
14186 \backslash
14187 textcolor{darkgreen}{
14188 \end_layout
14189
14190 \end_inset
14191
14192 This sentence is 
14193 \begin_inset Quotes eld
14194 \end_inset
14195
14196 darkgreen
14197 \begin_inset Quotes erd
14198 \end_inset
14199
14200 .
14201 \begin_inset ERT
14202 status collapsed
14203
14204 \begin_layout Plain Layout
14205
14206 }
14207 \end_layout
14208
14209 \end_inset
14210
14211
14212 \end_layout
14213
14214 \begin_layout Standard
14215
14216 \series bold
14217
14218 \backslash
14219 textcolor
14220 \series default
14221
14222 \begin_inset Index
14223 status collapsed
14224
14225 \begin_layout Plain Layout
14226 Commands ! T ! 
14227 \backslash
14228 textcolor
14229 \end_layout
14230
14231 \end_inset
14232
14233  is used in the scheme 
14234 \series bold
14235
14236 \backslash
14237 textcolor{color}{characters to color}
14238 \series default
14239 .
14240 \end_layout
14241
14242 \begin_layout Subsection
14243 Paragraph Boxes
14244 \begin_inset CommandInset label
14245 LatexCommand label
14246 name "sub:Paragraph-Boxes"
14247
14248 \end_inset
14249
14250
14251 \begin_inset Index
14252 status collapsed
14253
14254 \begin_layout Plain Layout
14255 Boxes ! as paragraph
14256 \end_layout
14257
14258 \end_inset
14259
14260
14261 \end_layout
14262
14263 \begin_layout Standard
14264 A box that can contain several lines and paragraphs, a so called paragraph
14265  box (parbox), can be created with the menu 
14266 \family sans
14267 Insert\SpecialChar \menuseparator
14268 Box
14269 \family default
14270  or the toolbar button 
14271 \begin_inset Graphics
14272         filename ../images/box-insert.png
14273         scale 85
14274
14275 \end_inset
14276
14277 .
14278 \end_layout
14279
14280 \begin_layout Standard
14281 The following example shows a framed parbox in a line:
14282 \end_layout
14283
14284 \begin_layout Standard
14285 \begin_inset VSpace medskip
14286 \end_inset
14287
14288 This is a line 
14289 \begin_inset Box Boxed
14290 position "c"
14291 hor_pos "c"
14292 has_inner_box 1
14293 inner_pos "t"
14294 use_parbox 1
14295 width "5cm"
14296 special "none"
14297 height "1in"
14298 height_special "totalheight"
14299 status open
14300
14301 \begin_layout Plain Layout
14302 This is a paragraph box.
14303  It is exactly 5
14304 \begin_inset space \thinspace{}
14305 \end_inset
14306
14307 cm long and can also contain formulas: 
14308 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14309 \end_inset
14310
14311
14312 \end_layout
14313
14314 \end_inset
14315
14316  with a parbox.
14317 \end_layout
14318
14319 \begin_layout Standard
14320 \begin_inset VSpace medskip
14321 \end_inset
14322
14323
14324 \end_layout
14325
14326 \begin_layout Standard
14327 Such a box is created by right-clicking on the gray box inset.
14328  A dialog pops up showing the box properties.
14329  In our case set: 
14330 \emph on
14331 Decoration
14332 \emph default
14333 : Recangular box, 
14334 \emph on
14335 Inner Box
14336 \emph default
14337 : Parbox, 
14338 \emph on
14339 Width
14340 \emph default
14341 : 5
14342 \begin_inset space \thinspace{}
14343 \end_inset
14344
14345 cm, 
14346 \emph on
14347 Vertical Box Alignment
14348 \emph default
14349 : Middle
14350 \end_layout
14351
14352 \begin_layout Standard
14353 \begin_inset VSpace medskip
14354 \end_inset
14355
14356 In LaTeX a parbox is created with the command 
14357 \series bold
14358
14359 \backslash
14360 parbox
14361 \series default
14362
14363 \begin_inset Index
14364 status collapsed
14365
14366 \begin_layout Plain Layout
14367 Commands ! P ! 
14368 \backslash
14369 parbox
14370 \end_layout
14371
14372 \end_inset
14373
14374  that has the following scheme:
14375 \end_layout
14376
14377 \begin_layout Standard
14378
14379 \series bold
14380
14381 \backslash
14382 parbox[position]{width}{box content}
14383 \end_layout
14384
14385 \begin_layout Standard
14386 The positions 
14387 \emph on
14388 b
14389 \emph default
14390  and 
14391 \emph on
14392 t
14393 \emph default
14394  are possible.
14395  
14396 \emph on
14397 b
14398 \emph default
14399  for bottom means that the box is aligned within the surrounding text with
14400  its last line.
14401  With 
14402 \emph on
14403 t
14404 \emph default
14405  for top this is done with the first line.
14406  When no position is given, the box will be vertically centered, see section
14407  
14408 \emph on
14409 Boxes
14410 \emph default
14411  of the 
14412 \emph on
14413 Embedded
14414 \begin_inset space ~
14415 \end_inset
14416
14417 Objects
14418 \emph default
14419  manual for examples.
14420 \end_layout
14421
14422 \begin_layout Standard
14423 \begin_inset VSpace bigskip
14424 \end_inset
14425
14426 To frame formulas completely, including the formula number, the formula
14427  must be set into a parbox.
14428  To do this, the command 
14429 \series bold
14430
14431 \backslash
14432 fbox{
14433 \backslash
14434 parbox{
14435 \backslash
14436 linewidth-2
14437 \backslash
14438 fboxsep-2
14439 \backslash
14440 fboxrule}{
14441 \series default
14442  is inserted in TeX-mode before the formula.
14443  
14444 \series bold
14445
14446 \backslash
14447 linewidth
14448 \begin_inset Index
14449 status collapsed
14450
14451 \begin_layout Plain Layout
14452 Commands ! L ! 
14453 \backslash
14454 linewidth
14455 \end_layout
14456
14457 \end_inset
14458
14459
14460 \series default
14461  is hereby the line width set for the document.
14462  Because the frame is outside the parbox, 2
14463 \begin_inset space \thinspace{}
14464 \end_inset
14465
14466 times the frame separation and the frame thickness must be subtracted from
14467  the line width.
14468  As this is not automatically done by LyX due to a bug
14469 \begin_inset Foot
14470 status collapsed
14471
14472 \begin_layout Plain Layout
14473 \begin_inset CommandInset href
14474 LatexCommand href
14475 name "LyX-bug #4483"
14476 target "http://www.lyx.org/trac/ticket/4483"
14477
14478 \end_inset
14479
14480
14481 \end_layout
14482
14483 \end_inset
14484
14485 , TeX-mode has to be used.
14486  To be able to multiply and subtract in arguments, the LaTeX-package 
14487 \series bold
14488 calc
14489 \series default
14490
14491 \begin_inset Foot
14492 status collapsed
14493
14494 \begin_layout Plain Layout
14495
14496 \series bold
14497 calc
14498 \series default
14499  is part of every LaTeX standard installation.
14500 \end_layout
14501
14502 \end_inset
14503
14504
14505 \begin_inset Index
14506 status collapsed
14507
14508 \begin_layout Plain Layout
14509 Packages ! calc
14510 \end_layout
14511
14512 \end_inset
14513
14514  must be loaded in the LaTeX-preamble with the line
14515 \end_layout
14516
14517 \begin_layout Standard
14518
14519 \series bold
14520
14521 \backslash
14522 usepackage{calc}
14523 \end_layout
14524
14525 \begin_layout Standard
14526 Behind the formula both boxes are closed by entering 
14527 \series bold
14528 }}
14529 \series default
14530  in TeX-mode.
14531  Here is an example:
14532 \begin_inset ERT
14533 status collapsed
14534
14535 \begin_layout Plain Layout
14536
14537
14538 \backslash
14539 fboxsep 5mm 
14540 \backslash
14541 fboxrule 5mm
14542 \end_layout
14543
14544 \end_inset
14545
14546
14547 \end_layout
14548
14549 \begin_layout Standard
14550 \begin_inset ERT
14551 status collapsed
14552
14553 \begin_layout Plain Layout
14554
14555
14556 \backslash
14557 fbox{
14558 \backslash
14559 parbox{
14560 \backslash
14561 linewidth-2
14562 \backslash
14563 fboxsep-2
14564 \backslash
14565 fboxrule}{
14566 \end_layout
14567
14568 \end_inset
14569
14570
14571 \begin_inset Formula \begin{equation}
14572 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14573
14574 \end_inset
14575
14576
14577 \begin_inset ERT
14578 status collapsed
14579
14580 \begin_layout Plain Layout
14581
14582 }}
14583 \end_layout
14584
14585 \end_inset
14586
14587
14588 \begin_inset ERT
14589 status collapsed
14590
14591 \begin_layout Plain Layout
14592
14593
14594 \backslash
14595 fboxrule 0.4pt 
14596 \backslash
14597 fboxsep 3pt
14598 \end_layout
14599
14600 \end_inset
14601
14602
14603 \end_layout
14604
14605 \begin_layout Standard
14606 \begin_inset VSpace medskip
14607 \end_inset
14608
14609 As a parbox is used as argument of 
14610 \series bold
14611
14612 \backslash
14613 fbox
14614 \series default
14615 , there is in this case no difference between 
14616 \series bold
14617
14618 \backslash
14619 fbox
14620 \series default
14621  and 
14622 \series bold
14623
14624 \backslash
14625 boxed
14626 \series default
14627 .
14628 \end_layout
14629
14630 \begin_layout Standard
14631 \begin_inset VSpace bigskip
14632 \end_inset
14633
14634 Paragraph boxes are very useful to comment formulas directly.
14635  To do this, 
14636 \series bold
14637
14638 \backslash
14639 parbox
14640 \series default
14641  is used in combination with the command 
14642 \series bold
14643
14644 \backslash
14645 tag
14646 \series default
14647 .
14648  (more about 
14649 \series bold
14650
14651 \backslash
14652 tag
14653 \series default
14654  see 
14655 \begin_inset CommandInset ref
14656 LatexCommand ref
14657 reference "sub:User-defined-Numbering"
14658
14659 \end_inset
14660
14661 )
14662 \end_layout
14663
14664 \begin_layout Standard
14665 An example of a formula commented with 
14666 \series bold
14667
14668 \backslash
14669 parbox
14670 \series default
14671 :
14672 \end_layout
14673
14674 \begin_layout Standard
14675 \begin_inset ERT
14676 status collapsed
14677
14678 \begin_layout Plain Layout
14679
14680
14681 \backslash
14682 [5x-7b=3b
14683 \backslash
14684 tag*{
14685 \backslash
14686 parbox{5cm}{
14687 \end_layout
14688
14689 \end_inset
14690
14691 This is a description.
14692  It is distinctly separated from the formula and multiline.
14693 \begin_inset ERT
14694 status collapsed
14695
14696 \begin_layout Plain Layout
14697
14698 }}
14699 \backslash
14700 ]
14701 \end_layout
14702
14703 \end_inset
14704
14705
14706 \end_layout
14707
14708 \begin_layout Standard
14709 Such a formula must be inserted completely in TeX-mode because LyX does
14710  not yet support the command 
14711 \series bold
14712
14713 \backslash
14714 parbox
14715 \series default
14716  in formulas.
14717  The formula is created with the following command sequence:
14718 \end_layout
14719
14720 \begin_layout Standard
14721 The command 
14722 \series bold
14723
14724 \backslash
14725 [5x-7b=3b
14726 \backslash
14727 tag*
14728 \backslash
14729 {
14730 \backslash
14731 parbox{5cm}{
14732 \series default
14733  is inserted in TeX-mode.
14734 \begin_inset Foot
14735 status collapsed
14736
14737 \begin_layout Plain Layout
14738 When the formula style 
14739 \series bold
14740 Indented
14741 \series default
14742  is used, 
14743 \series bold
14744
14745 \backslash
14746 tag*
14747 \backslash
14748 {
14749 \series default
14750  can also be replaced by 
14751 \series bold
14752
14753 \backslash
14754 hfill
14755 \series default
14756 .
14757  (formula styles see 
14758 \begin_inset CommandInset ref
14759 LatexCommand ref
14760 reference "sec:Formula-Styles"
14761
14762 \end_inset
14763
14764 )
14765 \end_layout
14766
14767 \end_inset
14768
14769  Then the description follows as normal text and finally 
14770 \series bold
14771 }}
14772 \backslash
14773 ]
14774 \series default
14775  is inserted in TeX-mode.
14776  The commands 
14777 \series bold
14778
14779 \backslash
14780 [
14781 \series default
14782  and 
14783 \series bold
14784
14785 \backslash
14786 ]
14787 \series default
14788  hereby create a displayed formula.
14789 \end_layout
14790
14791 \begin_layout Standard
14792 The advantages of 
14793 \series bold
14794
14795 \backslash
14796 parbox
14797 \series default
14798  can be seen in this example that was 
14799 \begin_inset Quotes eld
14800 \end_inset
14801
14802 commented
14803 \begin_inset Quotes erd
14804 \end_inset
14805
14806  using the mathematical textmode:
14807 \begin_inset Formula \[
14808 5x-7b=3b\textrm{This is a description. It is not separated from the formula ...}\]
14809
14810 \end_inset
14811
14812
14813 \end_layout
14814
14815 \begin_layout Section
14816 Operators
14817 \begin_inset Index
14818 status collapsed
14819
14820 \begin_layout Plain Layout
14821 Operators
14822 \end_layout
14823
14824 \end_inset
14825
14826
14827 \end_layout
14828
14829 \begin_layout Subsection
14830 Big Operators
14831 \begin_inset CommandInset label
14832 LatexCommand label
14833 name "sub:Big-Operators"
14834
14835 \end_inset
14836
14837
14838 \begin_inset Index
14839 status collapsed
14840
14841 \begin_layout Plain Layout
14842 Operators ! big
14843 \end_layout
14844
14845 \end_inset
14846
14847
14848 \begin_inset Index
14849 status collapsed
14850
14851 \begin_layout Plain Layout
14852 Sums
14853 \end_layout
14854
14855 \end_inset
14856
14857
14858 \begin_inset Index
14859 status collapsed
14860
14861 \begin_layout Plain Layout
14862 Integrals
14863 \end_layout
14864
14865 \end_inset
14866
14867
14868 \end_layout
14869
14870 \begin_layout Standard
14871 To be able to use all integral operators listed here, the option 
14872 \family sans
14873 Use esint package automatically
14874 \family default
14875  must be set in the document settings under 
14876 \family sans
14877 Math
14878 \begin_inset space ~
14879 \end_inset
14880
14881 Options
14882 \family default
14883 .
14884 \end_layout
14885
14886 \begin_layout Standard
14887 \begin_inset space \hfill{}
14888 \end_inset
14889
14890
14891 \begin_inset Tabular
14892 <lyxtabular version="3" rows="11" columns="2">
14893 <features>
14894 <column alignment="center" valignment="top" width="0pt">
14895 <column alignment="center" valignment="top" width="0pt">
14896 <row>
14897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14898 \begin_inset Text
14899
14900 \begin_layout Plain Layout
14901 Command
14902 \end_layout
14903
14904 \end_inset
14905 </cell>
14906 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14907 \begin_inset Text
14908
14909 \begin_layout Plain Layout
14910 Result
14911 \end_layout
14912
14913 \end_inset
14914 </cell>
14915 </row>
14916 <row>
14917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14918 \begin_inset Text
14919
14920 \begin_layout Plain Layout
14921
14922 \backslash
14923 int
14924 \begin_inset Index
14925 status collapsed
14926
14927 \begin_layout Plain Layout
14928 Commands ! I ! 
14929 \backslash
14930 int
14931 \end_layout
14932
14933 \end_inset
14934
14935
14936 \end_layout
14937
14938 \end_inset
14939 </cell>
14940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14941 \begin_inset Text
14942
14943 \begin_layout Plain Layout
14944 \begin_inset Formula $\int$
14945 \end_inset
14946
14947
14948 \end_layout
14949
14950 \end_inset
14951 </cell>
14952 </row>
14953 <row>
14954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14955 \begin_inset Text
14956
14957 \begin_layout Plain Layout
14958
14959 \backslash
14960 oint
14961 \end_layout
14962
14963 \end_inset
14964 </cell>
14965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14966 \begin_inset Text
14967
14968 \begin_layout Plain Layout
14969 \begin_inset Formula $\oint$
14970 \end_inset
14971
14972
14973 \end_layout
14974
14975 \end_inset
14976 </cell>
14977 </row>
14978 <row>
14979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14980 \begin_inset Text
14981
14982 \begin_layout Plain Layout
14983
14984 \backslash
14985 ointctrclockwise
14986 \end_layout
14987
14988 \end_inset
14989 </cell>
14990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14991 \begin_inset Text
14992
14993 \begin_layout Plain Layout
14994 \begin_inset Formula $\ointctrclockwise$
14995 \end_inset
14996
14997
14998 \end_layout
14999
15000 \end_inset
15001 </cell>
15002 </row>
15003 <row>
15004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15005 \begin_inset Text
15006
15007 \begin_layout Plain Layout
15008
15009 \backslash
15010 ointclockwise
15011 \end_layout
15012
15013 \end_inset
15014 </cell>
15015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15016 \begin_inset Text
15017
15018 \begin_layout Plain Layout
15019 \begin_inset Formula $\ointclockwise$
15020 \end_inset
15021
15022
15023 \end_layout
15024
15025 \end_inset
15026 </cell>
15027 </row>
15028 <row>
15029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15030 \begin_inset Text
15031
15032 \begin_layout Plain Layout
15033
15034 \backslash
15035 sqint
15036 \end_layout
15037
15038 \end_inset
15039 </cell>
15040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15041 \begin_inset Text
15042
15043 \begin_layout Plain Layout
15044 \begin_inset Formula $\sqint$
15045 \end_inset
15046
15047
15048 \end_layout
15049
15050 \end_inset
15051 </cell>
15052 </row>
15053 <row>
15054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15055 \begin_inset Text
15056
15057 \begin_layout Plain Layout
15058
15059 \backslash
15060 fint
15061 \end_layout
15062
15063 \end_inset
15064 </cell>
15065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15066 \begin_inset Text
15067
15068 \begin_layout Plain Layout
15069  
15070 \begin_inset Formula $\fint$
15071 \end_inset
15072
15073
15074 \end_layout
15075
15076 \end_inset
15077 </cell>
15078 </row>
15079 <row>
15080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15081 \begin_inset Text
15082
15083 \begin_layout Plain Layout
15084
15085 \backslash
15086 landupint
15087 \end_layout
15088
15089 \end_inset
15090 </cell>
15091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15092 \begin_inset Text
15093
15094 \begin_layout Plain Layout
15095  
15096 \begin_inset Formula $\landupint$
15097 \end_inset
15098
15099
15100 \end_layout
15101
15102 \end_inset
15103 </cell>
15104 </row>
15105 <row>
15106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15107 \begin_inset Text
15108
15109 \begin_layout Plain Layout
15110
15111 \backslash
15112 landdownint
15113 \end_layout
15114
15115 \end_inset
15116 </cell>
15117 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15118 \begin_inset Text
15119
15120 \begin_layout Plain Layout
15121  
15122 \begin_inset Formula $\landdownint$
15123 \end_inset
15124
15125
15126 \end_layout
15127
15128 \end_inset
15129 </cell>
15130 </row>
15131 <row>
15132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15133 \begin_inset Text
15134
15135 \begin_layout Plain Layout
15136
15137 \backslash
15138 bigcap
15139 \end_layout
15140
15141 \end_inset
15142 </cell>
15143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15144 \begin_inset Text
15145
15146 \begin_layout Plain Layout
15147 \begin_inset Formula $\bigcap$
15148 \end_inset
15149
15150
15151 \end_layout
15152
15153 \end_inset
15154 </cell>
15155 </row>
15156 <row>
15157 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15158 \begin_inset Text
15159
15160 \begin_layout Plain Layout
15161
15162 \backslash
15163 bigcup
15164 \end_layout
15165
15166 \end_inset
15167 </cell>
15168 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15169 \begin_inset Text
15170
15171 \begin_layout Plain Layout
15172 \begin_inset Formula $\bigcup$
15173 \end_inset
15174
15175
15176 \end_layout
15177
15178 \end_inset
15179 </cell>
15180 </row>
15181 </lyxtabular>
15182
15183 \end_inset
15184
15185
15186 \begin_inset space \hfill{}
15187 \end_inset
15188
15189
15190 \begin_inset Tabular
15191 <lyxtabular version="3" rows="11" columns="2">
15192 <features>
15193 <column alignment="center" valignment="top" width="0pt">
15194 <column alignment="center" valignment="top" width="0pt">
15195 <row>
15196 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15197 \begin_inset Text
15198
15199 \begin_layout Plain Layout
15200 Command
15201 \end_layout
15202
15203 \end_inset
15204 </cell>
15205 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15206 \begin_inset Text
15207
15208 \begin_layout Plain Layout
15209 Result
15210 \end_layout
15211
15212 \end_inset
15213 </cell>
15214 </row>
15215 <row>
15216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15217 \begin_inset Text
15218
15219 \begin_layout Plain Layout
15220
15221 \backslash
15222 sum
15223 \begin_inset Index
15224 status collapsed
15225
15226 \begin_layout Plain Layout
15227 Commands ! S ! 
15228 \backslash
15229 sum
15230 \end_layout
15231
15232 \end_inset
15233
15234
15235 \end_layout
15236
15237 \end_inset
15238 </cell>
15239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15240 \begin_inset Text
15241
15242 \begin_layout Plain Layout
15243 \begin_inset Formula $\sum$
15244 \end_inset
15245
15246
15247 \end_layout
15248
15249 \end_inset
15250 </cell>
15251 </row>
15252 <row>
15253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15254 \begin_inset Text
15255
15256 \begin_layout Plain Layout
15257
15258 \backslash
15259 prod
15260 \begin_inset Index
15261 status collapsed
15262
15263 \begin_layout Plain Layout
15264 Commands ! P ! 
15265 \backslash
15266 prod
15267 \end_layout
15268
15269 \end_inset
15270
15271
15272 \end_layout
15273
15274 \end_inset
15275 </cell>
15276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15277 \begin_inset Text
15278
15279 \begin_layout Plain Layout
15280 \begin_inset Formula $\prod$
15281 \end_inset
15282
15283
15284 \end_layout
15285
15286 \end_inset
15287 </cell>
15288 </row>
15289 <row>
15290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15291 \begin_inset Text
15292
15293 \begin_layout Plain Layout
15294
15295 \backslash
15296 coprod
15297 \end_layout
15298
15299 \end_inset
15300 </cell>
15301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15302 \begin_inset Text
15303
15304 \begin_layout Plain Layout
15305 \begin_inset Formula $\coprod$
15306 \end_inset
15307
15308
15309 \end_layout
15310
15311 \end_inset
15312 </cell>
15313 </row>
15314 <row>
15315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15316 \begin_inset Text
15317
15318 \begin_layout Plain Layout
15319
15320 \backslash
15321 bigodot
15322 \end_layout
15323
15324 \end_inset
15325 </cell>
15326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15327 \begin_inset Text
15328
15329 \begin_layout Plain Layout
15330 \begin_inset Formula $\bigodot$
15331 \end_inset
15332
15333
15334 \end_layout
15335
15336 \end_inset
15337 </cell>
15338 </row>
15339 <row>
15340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15341 \begin_inset Text
15342
15343 \begin_layout Plain Layout
15344
15345 \backslash
15346 bigotimes
15347 \end_layout
15348
15349 \end_inset
15350 </cell>
15351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15352 \begin_inset Text
15353
15354 \begin_layout Plain Layout
15355 \begin_inset Formula $\bigotimes$
15356 \end_inset
15357
15358
15359 \end_layout
15360
15361 \end_inset
15362 </cell>
15363 </row>
15364 <row>
15365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15366 \begin_inset Text
15367
15368 \begin_layout Plain Layout
15369
15370 \backslash
15371 bigoplus
15372 \end_layout
15373
15374 \end_inset
15375 </cell>
15376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15377 \begin_inset Text
15378
15379 \begin_layout Plain Layout
15380 \begin_inset Formula $\bigoplus$
15381 \end_inset
15382
15383
15384 \end_layout
15385
15386 \end_inset
15387 </cell>
15388 </row>
15389 <row>
15390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15391 \begin_inset Text
15392
15393 \begin_layout Plain Layout
15394
15395 \backslash
15396 bigwedge
15397 \end_layout
15398
15399 \end_inset
15400 </cell>
15401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15402 \begin_inset Text
15403
15404 \begin_layout Plain Layout
15405 \begin_inset Formula $\bigwedge$
15406 \end_inset
15407
15408
15409 \end_layout
15410
15411 \end_inset
15412 </cell>
15413 </row>
15414 <row>
15415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15416 \begin_inset Text
15417
15418 \begin_layout Plain Layout
15419
15420 \backslash
15421 bigvee
15422 \end_layout
15423
15424 \end_inset
15425 </cell>
15426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15427 \begin_inset Text
15428
15429 \begin_layout Plain Layout
15430 \begin_inset Formula $\bigvee$
15431 \end_inset
15432
15433
15434 \end_layout
15435
15436 \end_inset
15437 </cell>
15438 </row>
15439 <row>
15440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15441 \begin_inset Text
15442
15443 \begin_layout Plain Layout
15444
15445 \backslash
15446 bigsqcup
15447 \end_layout
15448
15449 \end_inset
15450 </cell>
15451 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15452 \begin_inset Text
15453
15454 \begin_layout Plain Layout
15455 \begin_inset Formula $\bigsqcup$
15456 \end_inset
15457
15458
15459 \end_layout
15460
15461 \end_inset
15462 </cell>
15463 </row>
15464 <row>
15465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15466 \begin_inset Text
15467
15468 \begin_layout Plain Layout
15469
15470 \backslash
15471 biguplus
15472 \end_layout
15473
15474 \end_inset
15475 </cell>
15476 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15477 \begin_inset Text
15478
15479 \begin_layout Plain Layout
15480 \begin_inset Formula $\biguplus$
15481 \end_inset
15482
15483
15484 \end_layout
15485
15486 \end_inset
15487 </cell>
15488 </row>
15489 </lyxtabular>
15490
15491 \end_inset
15492
15493
15494 \begin_inset space \hfill{}
15495 \end_inset
15496
15497
15498 \end_layout
15499
15500 \begin_layout Standard
15501 All big operators can also be inserted via the math toolbar button 
15502 \begin_inset Graphics
15503         filename ../images/math/intop.png
15504         scale 85
15505
15506 \end_inset
15507
15508 .
15509 \end_layout
15510
15511 \begin_layout Standard
15512 The operators are called big because they are bigger than the sometimes
15513  equal looking binary operators.
15514  All big operators can have limits as described in the next subsection.
15515 \end_layout
15516
15517 \begin_layout Standard
15518 For all integral operators there is a second version available, ending on
15519  
15520 \series bold
15521 op
15522 \series default
15523
15524 \series bold
15525
15526 \backslash
15527 intop
15528 \series default
15529
15530 \series bold
15531
15532 \backslash
15533 ointop
15534 \series default
15535  etc..
15536  These operators are different from 
15537 \series bold
15538
15539 \backslash
15540 int
15541 \series default
15542  etc.
15543 \begin_inset space \space{}
15544 \end_inset
15545
15546 in the style the operator limits are displayed, see 
15547 \begin_inset CommandInset ref
15548 LatexCommand ref
15549 reference "sub:Operator-Limits"
15550
15551 \end_inset
15552
15553 .
15554  
15555 \end_layout
15556
15557 \begin_layout Subsubsection*
15558 Advice for Integrals
15559 \end_layout
15560
15561 \begin_layout Standard
15562 The letter 
15563 \emph on
15564 d
15565 \emph default
15566  in an integral is an operator, that therefore has to be set upright.
15567  This is done by highlighting the 
15568 \emph on
15569 d
15570 \emph default
15571  and using the keyboard shortcut 
15572 \begin_inset Info
15573 type  "shortcut"
15574 arg   "font-roman"
15575 \end_inset
15576
15577
15578 \begin_inset Foot
15579 status collapsed
15580
15581 \begin_layout Plain Layout
15582 Font styles
15583 \series bold
15584  
15585 \series default
15586 see 
15587 \begin_inset CommandInset ref
15588 LatexCommand ref
15589 reference "sub:Font-Styles"
15590
15591 \end_inset
15592
15593
15594 \end_layout
15595
15596 \end_inset
15597
15598 .
15599  Finally the smallest space is inserted before the 
15600 \emph on
15601 d
15602 \emph default
15603 , as this is usual for operators.
15604  An example:
15605 \end_layout
15606
15607 \begin_layout Standard
15608 incorrect: 
15609 \begin_inset Formula $\int A(x)dx$
15610 \end_inset
15611
15612
15613 \begin_inset Newline newline
15614 \end_inset
15615
15616
15617 \begin_inset ERT
15618 status collapsed
15619
15620 \begin_layout Plain Layout
15621
15622
15623 \backslash
15624 hphantom{in}
15625 \end_layout
15626
15627 \end_inset
15628
15629 correct: 
15630 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15631 \end_inset
15632
15633
15634 \end_layout
15635
15636 \begin_layout Standard
15637 For multiple integrals there are the following commands:
15638 \begin_inset VSpace medskip
15639 \end_inset
15640
15641
15642 \end_layout
15643
15644 \begin_layout Standard
15645 \begin_inset space \hfill{}
15646 \end_inset
15647
15648
15649 \begin_inset Tabular
15650 <lyxtabular version="3" rows="4" columns="2">
15651 <features>
15652 <column alignment="center" valignment="top" width="0">
15653 <column alignment="center" valignment="top" width="0">
15654 <row>
15655 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15656 \begin_inset Text
15657
15658 \begin_layout Plain Layout
15659 Command
15660 \end_layout
15661
15662 \end_inset
15663 </cell>
15664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15665 \begin_inset Text
15666
15667 \begin_layout Plain Layout
15668 Result
15669 \begin_inset Note Note
15670 status collapsed
15671
15672 \begin_layout Plain Layout
15673
15674 \series bold
15675
15676 \backslash
15677 raisebox
15678 \series default
15679  is only used as spacer.
15680 \end_layout
15681
15682 \end_inset
15683
15684
15685 \end_layout
15686
15687 \end_inset
15688 </cell>
15689 </row>
15690 <row>
15691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15692 \begin_inset Text
15693
15694 \begin_layout Plain Layout
15695
15696 \backslash
15697 iint
15698 \end_layout
15699
15700 \end_inset
15701 </cell>
15702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15703 \begin_inset Text
15704
15705 \begin_layout Plain Layout
15706 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15707 \end_inset
15708
15709
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 </row>
15715 <row>
15716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15717 \begin_inset Text
15718
15719 \begin_layout Plain Layout
15720
15721 \backslash
15722 oiint
15723 \end_layout
15724
15725 \end_inset
15726 </cell>
15727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15728 \begin_inset Text
15729
15730 \begin_layout Plain Layout
15731 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15732 \end_inset
15733
15734
15735 \end_layout
15736
15737 \end_inset
15738 </cell>
15739 </row>
15740 <row>
15741 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15742 \begin_inset Text
15743
15744 \begin_layout Plain Layout
15745
15746 \backslash
15747 sqiint
15748 \end_layout
15749
15750 \end_inset
15751 </cell>
15752 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15753 \begin_inset Text
15754
15755 \begin_layout Plain Layout
15756 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15757 \end_inset
15758
15759
15760 \end_layout
15761
15762 \end_inset
15763 </cell>
15764 </row>
15765 </lyxtabular>
15766
15767 \end_inset
15768
15769
15770 \begin_inset space \hfill{}
15771 \end_inset
15772
15773
15774 \begin_inset Tabular
15775 <lyxtabular version="3" rows="4" columns="2">
15776 <features>
15777 <column alignment="center" valignment="top" width="0">
15778 <column alignment="center" valignment="top" width="0">
15779 <row>
15780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15781 \begin_inset Text
15782
15783 \begin_layout Plain Layout
15784 Command
15785 \end_layout
15786
15787 \end_inset
15788 </cell>
15789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15790 \begin_inset Text
15791
15792 \begin_layout Plain Layout
15793 Result
15794 \end_layout
15795
15796 \end_inset
15797 </cell>
15798 </row>
15799 <row>
15800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15801 \begin_inset Text
15802
15803 \begin_layout Plain Layout
15804
15805 \backslash
15806 iiint
15807 \end_layout
15808
15809 \end_inset
15810 </cell>
15811 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15812 \begin_inset Text
15813
15814 \begin_layout Plain Layout
15815 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15816 \end_inset
15817
15818
15819 \end_layout
15820
15821 \end_inset
15822 </cell>
15823 </row>
15824 <row>
15825 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15826 \begin_inset Text
15827
15828 \begin_layout Plain Layout
15829
15830 \backslash
15831 iiiint
15832 \end_layout
15833
15834 \end_inset
15835 </cell>
15836 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15837 \begin_inset Text
15838
15839 \begin_layout Plain Layout
15840 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15841 \end_inset
15842
15843
15844 \end_layout
15845
15846 \end_inset
15847 </cell>
15848 </row>
15849 <row>
15850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15851 \begin_inset Text
15852
15853 \begin_layout Plain Layout
15854
15855 \backslash
15856 dotsint
15857 \end_layout
15858
15859 \end_inset
15860 </cell>
15861 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15862 \begin_inset Text
15863
15864 \begin_layout Plain Layout
15865 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15866 \end_inset
15867
15868
15869 \end_layout
15870
15871 \end_inset
15872 </cell>
15873 </row>
15874 </lyxtabular>
15875
15876 \end_inset
15877
15878
15879 \begin_inset space \hfill{}
15880 \end_inset
15881
15882
15883 \end_layout
15884
15885 \begin_layout Subsection
15886 Operator Limits
15887 \begin_inset CommandInset label
15888 LatexCommand label
15889 name "sub:Operator-Limits"
15890
15891 \end_inset
15892
15893
15894 \begin_inset Index
15895 status collapsed
15896
15897 \begin_layout Plain Layout
15898 Operators ! Limits
15899 \end_layout
15900
15901 \end_inset
15902
15903
15904 \end_layout
15905
15906 \begin_layout Standard
15907 Limits are created by super- and subscripts:
15908 \end_layout
15909
15910 \begin_layout Standard
15911 \align center
15912 \begin_inset Tabular
15913 <lyxtabular version="3" rows="2" columns="2">
15914 <features>
15915 <column alignment="center" valignment="top" width="0pt">
15916 <column alignment="center" valignment="top" width="0pt">
15917 <row>
15918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15919 \begin_inset Text
15920
15921 \begin_layout Plain Layout
15922 Command
15923 \end_layout
15924
15925 \end_inset
15926 </cell>
15927 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15928 \begin_inset Text
15929
15930 \begin_layout Plain Layout
15931 Result
15932 \begin_inset Note Note
15933 status collapsed
15934
15935 \begin_layout Plain Layout
15936
15937 \series bold
15938
15939 \backslash
15940 raisebox
15941 \series default
15942  is only used as spacer.
15943 \end_layout
15944
15945 \end_inset
15946
15947
15948 \end_layout
15949
15950 \end_inset
15951 </cell>
15952 </row>
15953 <row>
15954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15955 \begin_inset Text
15956
15957 \begin_layout Plain Layout
15958
15959 \backslash
15960 prod^
15961 \backslash
15962 infty
15963 \begin_inset ERT
15964 status collapsed
15965
15966 \begin_layout Plain Layout
15967
15968
15969 \backslash
15970 spce 
15971 \end_layout
15972
15973 \end_inset
15974
15975
15976 \begin_inset Formula $\to$
15977 \end_inset
15978
15979 _0
15980 \begin_inset Formula $\to$
15981 \end_inset
15982
15983 A(x)
15984 \end_layout
15985
15986 \end_inset
15987 </cell>
15988 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15989 \begin_inset Text
15990
15991 \begin_layout Plain Layout
15992 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15993 \end_inset
15994
15995
15996 \end_layout
15997
15998 \end_inset
15999 </cell>
16000 </row>
16001 </lyxtabular>
16002
16003 \end_inset
16004
16005
16006 \end_layout
16007
16008 \begin_layout Standard
16009 Limits of inline formulas are set right beside the operator.
16010  Limits in displayed formulas are set above or below the operator, except
16011  for integral limits.
16012 \end_layout
16013
16014 \begin_layout Standard
16015 To force that the limits are set beside the operator, the cursor is set
16016  directly behind the operator and the limits type is changed with the menu
16017  
16018 \family sans
16019 Edit\SpecialChar \menuseparator
16020 Math\SpecialChar \menuseparator
16021 Change Limits Type
16022 \family default
16023  to 
16024 \family sans
16025 \series bold
16026 Inline
16027 \family default
16028 \series default
16029  (shortcut 
16030 \begin_inset Info
16031 type  "shortcut"
16032 arg   "math-limits"
16033 \end_inset
16034
16035 ).
16036  An example:
16037 \end_layout
16038
16039 \begin_layout Standard
16040 The default limits type is this:
16041 \begin_inset Formula \[
16042 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
16043
16044 \end_inset
16045
16046 This is how it looks when the limits type was changed to 
16047 \family sans
16048 \series bold
16049 Inline
16050 \family default
16051 \series default
16052 :
16053 \begin_inset Formula \[
16054 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
16055
16056 \end_inset
16057
16058 For integrals, except those ending with 
16059 \series bold
16060 op
16061 \series default
16062  like 
16063 \series bold
16064
16065 \backslash
16066 intop
16067 \series default
16068
16069 \series bold
16070
16071 \backslash
16072 ointop
16073 \series default
16074  etc., the limits are by default set beside the operator.
16075  But for multiple integrals the limits are often set below the operator.
16076  In the following example the limits type was therefore set to 
16077 \series bold
16078 Display
16079 \series default
16080  and so set below the integrals:
16081 \begin_inset Formula \begin{equation}
16082 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}\end{equation}
16083
16084 \end_inset
16085
16086
16087 \end_layout
16088
16089 \begin_layout Standard
16090 \begin_inset VSpace medskip
16091 \end_inset
16092
16093 To specify conditions for limits, the commands 
16094 \series bold
16095
16096 \backslash
16097 subarray
16098 \series default
16099
16100 \begin_inset Index
16101 status collapsed
16102
16103 \begin_layout Plain Layout
16104 Commands ! S ! 
16105 \backslash
16106 subarray
16107 \end_layout
16108
16109 \end_inset
16110
16111  and 
16112 \series bold
16113
16114 \backslash
16115 substack
16116 \series default
16117
16118 \begin_inset Index
16119 status collapsed
16120
16121 \begin_layout Plain Layout
16122 Commands ! S ! 
16123 \backslash
16124 substack
16125 \end_layout
16126
16127 \end_inset
16128
16129  are used.
16130  To create for example this expression 
16131 \begin_inset Formula \begin{equation}
16132 \sum_{\begin{subarray}{c}
16133 0<k<1000\\
16134 \\k\,\in\,\mathbb{N}\end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
16135
16136 \end_inset
16137
16138
16139 \end_layout
16140
16141 \begin_layout Standard
16142 the following has to be done:
16143 \begin_inset Newline newline
16144 \end_inset
16145
16146 First the command 
16147 \series bold
16148
16149 \backslash
16150 sum
16151 \series default
16152 ^
16153 \series bold
16154 n
16155 \begin_inset ERT
16156 status collapsed
16157
16158 \begin_layout Plain Layout
16159
16160
16161 \backslash
16162 spce 
16163 \end_layout
16164
16165 \end_inset
16166
16167 _
16168 \series default
16169  is typed in.
16170  One is now in a blue box under the summation operator and insert there
16171  the command 
16172 \series bold
16173
16174 \backslash
16175 subarray
16176 \begin_inset ERT
16177 status collapsed
16178
16179 \begin_layout Plain Layout
16180
16181
16182 \backslash
16183 spce 
16184 \end_layout
16185
16186 \end_inset
16187
16188
16189 \series default
16190 .
16191  The blue box is now within a purple box and now several lines can be written
16192  among each other.
16193  A new line is created by inserting a line break (
16194 \begin_inset Info
16195 type  "shortcut"
16196 arg   "newline-insert newline"
16197 \end_inset
16198
16199 ).
16200  When now
16201 \begin_inset Newline newline
16202 \end_inset
16203
16204
16205 \series bold
16206 0<k<1000 Ctrl+Return
16207 \begin_inset Newline newline
16208 \end_inset
16209
16210
16211 \series default
16212 is typed in, a new box appears below for the new line.
16213 \end_layout
16214
16215 \begin_layout Standard
16216 The alignment of the lines can be changed to left aligned with the 
16217 \family sans
16218 table
16219 \family default
16220  
16221 \family sans
16222 toolbar
16223 \family default
16224  or the menu 
16225 \family sans
16226 Edit\SpecialChar \menuseparator
16227 Rows &Columns
16228 \family default
16229 .
16230  To get right alignment, 
16231 \series bold
16232
16233 \backslash
16234 hfill
16235 \begin_inset ERT
16236 status collapsed
16237
16238 \begin_layout Plain Layout
16239
16240
16241 \backslash
16242 spce 
16243 \end_layout
16244
16245 \end_inset
16246
16247
16248 \series default
16249  is inserted at the beginning of the line.
16250 \end_layout
16251
16252 \begin_layout Standard
16253 The command 
16254 \series bold
16255
16256 \backslash
16257 substack
16258 \series default
16259  is equivalent to 
16260 \series bold
16261
16262 \backslash
16263 subarray
16264 \series default
16265  with the difference that the lines are always centered.
16266 \end_layout
16267
16268 \begin_layout Standard
16269 \begin_inset VSpace bigskip
16270 \end_inset
16271
16272 Like in formula 
16273 \begin_inset CommandInset ref
16274 LatexCommand eqref
16275 reference "eq:substack"
16276
16277 \end_inset
16278
16279  there can be too much space beside an operator, because the characters
16280  following the operator are set beside the limits.
16281 \end_layout
16282
16283 \begin_layout Standard
16284 To avoid this, the following macro can be used in the LaTeX-preamble:
16285 \end_layout
16286
16287 \begin_layout Standard
16288
16289 \series bold
16290
16291 \backslash
16292 def
16293 \backslash
16294 clap#1{
16295 \backslash
16296 hbox to 0pt{
16297 \backslash
16298 hss #1
16299 \backslash
16300 hss}}
16301 \begin_inset Newline newline
16302 \end_inset
16303
16304
16305 \backslash
16306 def
16307 \backslash
16308 mathclap {
16309 \backslash
16310 mathpalette 
16311 \backslash
16312 mathclapinternal}
16313 \begin_inset Newline newline
16314 \end_inset
16315
16316
16317 \backslash
16318 def
16319 \backslash
16320 mathclapinternal #1#2{
16321 \backslash
16322 clap{$
16323 \backslash
16324 mathsurround =0pt #1{#2}$}}
16325 \end_layout
16326
16327 \begin_layout Standard
16328 This defines the command 
16329 \series bold
16330
16331 \backslash
16332 mathclap
16333 \series default
16334
16335 \begin_inset Index
16336 status collapsed
16337
16338 \begin_layout Plain Layout
16339 Commands ! M ! 
16340 \backslash
16341 mathclap
16342 \end_layout
16343
16344 \end_inset
16345
16346  that sets the width of the limit to 0
16347 \begin_inset space \thinspace{}
16348 \end_inset
16349
16350 pt.
16351  The command scheme is
16352 \end_layout
16353
16354 \begin_layout Standard
16355
16356 \series bold
16357
16358 \backslash
16359 mathclap{limit}
16360 \end_layout
16361
16362 \begin_layout Standard
16363 where the limit can consist of several conditions.
16364 \end_layout
16365
16366 \begin_layout Standard
16367 Applied on formula 
16368 \begin_inset CommandInset ref
16369 LatexCommand eqref
16370 reference "eq:substack"
16371
16372 \end_inset
16373
16374 , one uses the command
16375 \end_layout
16376
16377 \begin_layout Standard
16378
16379 \series bold
16380
16381 \backslash
16382 sum_
16383 \backslash
16384 mathclap{
16385 \backslash
16386 substack
16387 \begin_inset ERT
16388 status collapsed
16389
16390 \begin_layout Plain Layout
16391
16392
16393 \backslash
16394 spce 
16395 \end_layout
16396
16397 \end_inset
16398
16399 0<k<1000 Ctrl+Return
16400 \end_layout
16401
16402 \begin_layout Standard
16403 to create the lower limit.
16404  The summand is now directly behind the summation operator:
16405 \begin_inset Formula \[
16406 \sum_{\mathclap{\substack{0<k<1000\\
16407 \\k\,\in\,\mathbb{N}}
16408 }}^{n}k^{-2}\]
16409
16410 \end_inset
16411
16412
16413 \end_layout
16414
16415 \begin_layout Standard
16416 \begin_inset VSpace bigskip
16417 \end_inset
16418
16419 How to use one limit for several operators is described in 
16420 \begin_inset CommandInset ref
16421 LatexCommand ref
16422 reference "sub:Self-defined-Operators"
16423
16424 \end_inset
16425
16426 .
16427 \end_layout
16428
16429 \begin_layout Subsection
16430 Binary Operators
16431 \begin_inset CommandInset label
16432 LatexCommand label
16433 name "sub:Binary-Operators"
16434
16435 \end_inset
16436
16437
16438 \begin_inset Index
16439 status collapsed
16440
16441 \begin_layout Plain Layout
16442 Operators ! binary
16443 \end_layout
16444
16445 \end_inset
16446
16447
16448 \end_layout
16449
16450 \begin_layout Standard
16451 Binary operators are surrounded by space when there is a character before
16452  and behind them.
16453 \begin_inset VSpace medskip
16454 \end_inset
16455
16456
16457 \end_layout
16458
16459 \begin_layout Standard
16460 \begin_inset space \hfill{}
16461 \end_inset
16462
16463
16464 \begin_inset Tabular
16465 <lyxtabular version="3" rows="13" columns="2">
16466 <features>
16467 <column alignment="center" valignment="top" width="0pt">
16468 <column alignment="center" valignment="top" width="0pt">
16469 <row>
16470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16471 \begin_inset Text
16472
16473 \begin_layout Plain Layout
16474 Command
16475 \begin_inset Note Note
16476 status collapsed
16477
16478 \begin_layout Plain Layout
16479
16480 \series bold
16481
16482 \backslash
16483 raisebox
16484 \series default
16485  is only used as spacer.
16486 \end_layout
16487
16488 \end_inset
16489
16490
16491 \end_layout
16492
16493 \end_inset
16494 </cell>
16495 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16496 \begin_inset Text
16497
16498 \begin_layout Plain Layout
16499 Result
16500 \end_layout
16501
16502 \end_inset
16503 </cell>
16504 </row>
16505 <row>
16506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16507 \begin_inset Text
16508
16509 \begin_layout Plain Layout
16510 +
16511 \end_layout
16512
16513 \end_inset
16514 </cell>
16515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16516 \begin_inset Text
16517
16518 \begin_layout Plain Layout
16519 \begin_inset Formula $+$
16520 \end_inset
16521
16522
16523 \end_layout
16524
16525 \end_inset
16526 </cell>
16527 </row>
16528 <row>
16529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16530 \begin_inset Text
16531
16532 \begin_layout Plain Layout
16533 -
16534 \end_layout
16535
16536 \end_inset
16537 </cell>
16538 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16539 \begin_inset Text
16540
16541 \begin_layout Plain Layout
16542 \begin_inset Formula $-$
16543 \end_inset
16544
16545
16546 \end_layout
16547
16548 \end_inset
16549 </cell>
16550 </row>
16551 <row>
16552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16553 \begin_inset Text
16554
16555 \begin_layout Plain Layout
16556
16557 \backslash
16558 pm
16559 \end_layout
16560
16561 \end_inset
16562 </cell>
16563 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16564 \begin_inset Text
16565
16566 \begin_layout Plain Layout
16567 \begin_inset Formula $\pm$
16568 \end_inset
16569
16570
16571 \end_layout
16572
16573 \end_inset
16574 </cell>
16575 </row>
16576 <row>
16577 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16578 \begin_inset Text
16579
16580 \begin_layout Plain Layout
16581
16582 \backslash
16583 mp
16584 \end_layout
16585
16586 \end_inset
16587 </cell>
16588 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16589 \begin_inset Text
16590
16591 \begin_layout Plain Layout
16592 \begin_inset Formula $\mp$
16593 \end_inset
16594
16595
16596 \end_layout
16597
16598 \end_inset
16599 </cell>
16600 </row>
16601 <row>
16602 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16603 \begin_inset Text
16604
16605 \begin_layout Plain Layout
16606
16607 \backslash
16608 cdot
16609 \end_layout
16610
16611 \end_inset
16612 </cell>
16613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16614 \begin_inset Text
16615
16616 \begin_layout Plain Layout
16617 \begin_inset Formula $\cdot$
16618 \end_inset
16619
16620
16621 \end_layout
16622
16623 \end_inset
16624 </cell>
16625 </row>
16626 <row>
16627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16628 \begin_inset Text
16629
16630 \begin_layout Plain Layout
16631
16632 \backslash
16633 times
16634 \end_layout
16635
16636 \end_inset
16637 </cell>
16638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16639 \begin_inset Text
16640
16641 \begin_layout Plain Layout
16642 \begin_inset Formula $\times$
16643 \end_inset
16644
16645
16646 \end_layout
16647
16648 \end_inset
16649 </cell>
16650 </row>
16651 <row>
16652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16653 \begin_inset Text
16654
16655 \begin_layout Plain Layout
16656
16657 \backslash
16658 div
16659 \end_layout
16660
16661 \end_inset
16662 </cell>
16663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16664 \begin_inset Text
16665
16666 \begin_layout Plain Layout
16667 \begin_inset Formula $\div$
16668 \end_inset
16669
16670
16671 \end_layout
16672
16673 \end_inset
16674 </cell>
16675 </row>
16676 <row>
16677 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16678 \begin_inset Text
16679
16680 \begin_layout Plain Layout
16681 \begin_inset ERT
16682 status collapsed
16683
16684 \begin_layout Plain Layout
16685
16686
16687 \backslash
16688 raisebox{-1.2mm}{
16689 \end_layout
16690
16691 \end_inset
16692
16693 *
16694 \begin_inset ERT
16695 status collapsed
16696
16697 \begin_layout Plain Layout
16698
16699 }
16700 \end_layout
16701
16702 \end_inset
16703
16704
16705 \end_layout
16706
16707 \end_inset
16708 </cell>
16709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16710 \begin_inset Text
16711
16712 \begin_layout Plain Layout
16713 \begin_inset Formula $*$
16714 \end_inset
16715
16716
16717 \end_layout
16718
16719 \end_inset
16720 </cell>
16721 </row>
16722 <row>
16723 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16724 \begin_inset Text
16725
16726 \begin_layout Plain Layout
16727
16728 \backslash
16729 star
16730 \end_layout
16731
16732 \end_inset
16733 </cell>
16734 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16735 \begin_inset Text
16736
16737 \begin_layout Plain Layout
16738 \begin_inset Formula $\star$
16739 \end_inset
16740
16741
16742 \end_layout
16743
16744 \end_inset
16745 </cell>
16746 </row>
16747 <row>
16748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16749 \begin_inset Text
16750
16751 \begin_layout Plain Layout
16752
16753 \backslash
16754 circ
16755 \end_layout
16756
16757 \end_inset
16758 </cell>
16759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16760 \begin_inset Text
16761
16762 \begin_layout Plain Layout
16763 \begin_inset Formula $\circ$
16764 \end_inset
16765
16766
16767 \end_layout
16768
16769 \end_inset
16770 </cell>
16771 </row>
16772 <row>
16773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16774 \begin_inset Text
16775
16776 \begin_layout Plain Layout
16777
16778 \backslash
16779 diamond
16780 \end_layout
16781
16782 \end_inset
16783 </cell>
16784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16785 \begin_inset Text
16786
16787 \begin_layout Plain Layout
16788 \begin_inset Formula $\diamond$
16789 \end_inset
16790
16791
16792 \end_layout
16793
16794 \end_inset
16795 </cell>
16796 </row>
16797 <row>
16798 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16799 \begin_inset Text
16800
16801 \begin_layout Plain Layout
16802
16803 \backslash
16804 bullet
16805 \end_layout
16806
16807 \end_inset
16808 </cell>
16809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16810 \begin_inset Text
16811
16812 \begin_layout Plain Layout
16813 \begin_inset Formula $\bullet$
16814 \end_inset
16815
16816
16817 \end_layout
16818
16819 \end_inset
16820 </cell>
16821 </row>
16822 </lyxtabular>
16823
16824 \end_inset
16825
16826
16827 \begin_inset space \hfill{}
16828 \end_inset
16829
16830
16831 \begin_inset Tabular
16832 <lyxtabular version="3" rows="13" columns="2">
16833 <features>
16834 <column alignment="center" valignment="top" width="0pt">
16835 <column alignment="center" valignment="top" width="0pt">
16836 <row>
16837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16838 \begin_inset Text
16839
16840 \begin_layout Plain Layout
16841 Command
16842 \end_layout
16843
16844 \end_inset
16845 </cell>
16846 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16847 \begin_inset Text
16848
16849 \begin_layout Plain Layout
16850 Result
16851 \end_layout
16852
16853 \end_inset
16854 </cell>
16855 </row>
16856 <row>
16857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16858 \begin_inset Text
16859
16860 \begin_layout Plain Layout
16861
16862 \backslash
16863 nabla
16864 \end_layout
16865
16866 \end_inset
16867 </cell>
16868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16869 \begin_inset Text
16870
16871 \begin_layout Plain Layout
16872 \begin_inset Formula $\nabla$
16873 \end_inset
16874
16875
16876 \end_layout
16877
16878 \end_inset
16879 </cell>
16880 </row>
16881 <row>
16882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16883 \begin_inset Text
16884
16885 \begin_layout Plain Layout
16886
16887 \backslash
16888 bigtriangledown
16889 \end_layout
16890
16891 \end_inset
16892 </cell>
16893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16894 \begin_inset Text
16895
16896 \begin_layout Plain Layout
16897 \begin_inset Formula $\bigtriangledown$
16898 \end_inset
16899
16900
16901 \end_layout
16902
16903 \end_inset
16904 </cell>
16905 </row>
16906 <row>
16907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16908 \begin_inset Text
16909
16910 \begin_layout Plain Layout
16911
16912 \backslash
16913 bigtriangleup
16914 \end_layout
16915
16916 \end_inset
16917 </cell>
16918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16919 \begin_inset Text
16920
16921 \begin_layout Plain Layout
16922 \begin_inset Formula $\bigtriangleup$
16923 \end_inset
16924
16925
16926 \end_layout
16927
16928 \end_inset
16929 </cell>
16930 </row>
16931 <row>
16932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16933 \begin_inset Text
16934
16935 \begin_layout Plain Layout
16936
16937 \backslash
16938 Box
16939 \end_layout
16940
16941 \end_inset
16942 </cell>
16943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16944 \begin_inset Text
16945
16946 \begin_layout Plain Layout
16947 \begin_inset Formula $\Box$
16948 \end_inset
16949
16950
16951 \end_layout
16952
16953 \end_inset
16954 </cell>
16955 </row>
16956 <row>
16957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16958 \begin_inset Text
16959
16960 \begin_layout Plain Layout
16961
16962 \backslash
16963 cap 
16964 \end_layout
16965
16966 \end_inset
16967 </cell>
16968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16969 \begin_inset Text
16970
16971 \begin_layout Plain Layout
16972 \begin_inset Formula $\cap$
16973 \end_inset
16974
16975
16976 \end_layout
16977
16978 \end_inset
16979 </cell>
16980 </row>
16981 <row>
16982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16983 \begin_inset Text
16984
16985 \begin_layout Plain Layout
16986
16987 \backslash
16988 cup
16989 \end_layout
16990
16991 \end_inset
16992 </cell>
16993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16994 \begin_inset Text
16995
16996 \begin_layout Plain Layout
16997 \begin_inset Formula $\cup$
16998 \end_inset
16999
17000
17001 \end_layout
17002
17003 \end_inset
17004 </cell>
17005 </row>
17006 <row>
17007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17008 \begin_inset Text
17009
17010 \begin_layout Plain Layout
17011
17012 \backslash
17013 dagger
17014 \end_layout
17015
17016 \end_inset
17017 </cell>
17018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17019 \begin_inset Text
17020
17021 \begin_layout Plain Layout
17022 \begin_inset Formula $\dagger$
17023 \end_inset
17024
17025
17026 \end_layout
17027
17028 \end_inset
17029 </cell>
17030 </row>
17031 <row>
17032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17033 \begin_inset Text
17034
17035 \begin_layout Plain Layout
17036
17037 \backslash
17038 ddagger
17039 \end_layout
17040
17041 \end_inset
17042 </cell>
17043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17044 \begin_inset Text
17045
17046 \begin_layout Plain Layout
17047 \begin_inset Formula $\ddagger$
17048 \end_inset
17049
17050
17051 \end_layout
17052
17053 \end_inset
17054 </cell>
17055 </row>
17056 <row>
17057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17058 \begin_inset Text
17059
17060 \begin_layout Plain Layout
17061
17062 \backslash
17063 wr
17064 \end_layout
17065
17066 \end_inset
17067 </cell>
17068 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17069 \begin_inset Text
17070
17071 \begin_layout Plain Layout
17072 \begin_inset Formula $\wr$
17073 \end_inset
17074
17075
17076 \end_layout
17077
17078 \end_inset
17079 </cell>
17080 </row>
17081 <row>
17082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17083 \begin_inset Text
17084
17085 \begin_layout Plain Layout
17086
17087 \backslash
17088 bigcirc
17089 \end_layout
17090
17091 \end_inset
17092 </cell>
17093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17094 \begin_inset Text
17095
17096 \begin_layout Plain Layout
17097 \begin_inset Formula $\bigcirc$
17098 \end_inset
17099
17100
17101 \end_layout
17102
17103 \end_inset
17104 </cell>
17105 </row>
17106 <row>
17107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17108 \begin_inset Text
17109
17110 \begin_layout Plain Layout
17111
17112 \backslash
17113 wedge
17114 \end_layout
17115
17116 \end_inset
17117 </cell>
17118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17119 \begin_inset Text
17120
17121 \begin_layout Plain Layout
17122 \begin_inset Formula $\wedge$
17123 \end_inset
17124
17125
17126 \end_layout
17127
17128 \end_inset
17129 </cell>
17130 </row>
17131 <row>
17132 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17133 \begin_inset Text
17134
17135 \begin_layout Plain Layout
17136
17137 \backslash
17138 vee
17139 \end_layout
17140
17141 \end_inset
17142 </cell>
17143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17144 \begin_inset Text
17145
17146 \begin_layout Plain Layout
17147 \begin_inset Formula $\vee$
17148 \end_inset
17149
17150
17151 \end_layout
17152
17153 \end_inset
17154 </cell>
17155 </row>
17156 </lyxtabular>
17157
17158 \end_inset
17159
17160
17161 \begin_inset space \hfill{}
17162 \end_inset
17163
17164
17165 \begin_inset Tabular
17166 <lyxtabular version="3" rows="13" columns="2">
17167 <features>
17168 <column alignment="center" valignment="top" width="0pt">
17169 <column alignment="center" valignment="top" width="0pt">
17170 <row>
17171 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17172 \begin_inset Text
17173
17174 \begin_layout Plain Layout
17175 Command
17176 \end_layout
17177
17178 \end_inset
17179 </cell>
17180 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17181 \begin_inset Text
17182
17183 \begin_layout Plain Layout
17184 Result
17185 \end_layout
17186
17187 \end_inset
17188 </cell>
17189 </row>
17190 <row>
17191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17192 \begin_inset Text
17193
17194 \begin_layout Plain Layout
17195
17196 \backslash
17197 oplus
17198 \end_layout
17199
17200 \end_inset
17201 </cell>
17202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17203 \begin_inset Text
17204
17205 \begin_layout Plain Layout
17206 \begin_inset Formula $\oplus$
17207 \end_inset
17208
17209
17210 \end_layout
17211
17212 \end_inset
17213 </cell>
17214 </row>
17215 <row>
17216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17217 \begin_inset Text
17218
17219 \begin_layout Plain Layout
17220
17221 \backslash
17222 ominus
17223 \end_layout
17224
17225 \end_inset
17226 </cell>
17227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17228 \begin_inset Text
17229
17230 \begin_layout Plain Layout
17231 \begin_inset Formula $\ominus$
17232 \end_inset
17233
17234
17235 \end_layout
17236
17237 \end_inset
17238 </cell>
17239 </row>
17240 <row>
17241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17242 \begin_inset Text
17243
17244 \begin_layout Plain Layout
17245
17246 \backslash
17247 otimes
17248 \end_layout
17249
17250 \end_inset
17251 </cell>
17252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17253 \begin_inset Text
17254
17255 \begin_layout Plain Layout
17256 \begin_inset Formula $\otimes$
17257 \end_inset
17258
17259
17260 \end_layout
17261
17262 \end_inset
17263 </cell>
17264 </row>
17265 <row>
17266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17267 \begin_inset Text
17268
17269 \begin_layout Plain Layout
17270
17271 \backslash
17272 oslash
17273 \end_layout
17274
17275 \end_inset
17276 </cell>
17277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17278 \begin_inset Text
17279
17280 \begin_layout Plain Layout
17281 \begin_inset Formula $\oslash$
17282 \end_inset
17283
17284
17285 \end_layout
17286
17287 \end_inset
17288 </cell>
17289 </row>
17290 <row>
17291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17292 \begin_inset Text
17293
17294 \begin_layout Plain Layout
17295
17296 \backslash
17297 odot
17298 \end_layout
17299
17300 \end_inset
17301 </cell>
17302 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17303 \begin_inset Text
17304
17305 \begin_layout Plain Layout
17306 \begin_inset Formula $\odot$
17307 \end_inset
17308
17309
17310 \end_layout
17311
17312 \end_inset
17313 </cell>
17314 </row>
17315 <row>
17316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17317 \begin_inset Text
17318
17319 \begin_layout Plain Layout
17320
17321 \backslash
17322 amalg
17323 \end_layout
17324
17325 \end_inset
17326 </cell>
17327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17328 \begin_inset Text
17329
17330 \begin_layout Plain Layout
17331 \begin_inset Formula $\amalg$
17332 \end_inset
17333
17334
17335 \end_layout
17336
17337 \end_inset
17338 </cell>
17339 </row>
17340 <row>
17341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17342 \begin_inset Text
17343
17344 \begin_layout Plain Layout
17345
17346 \backslash
17347 uplus
17348 \end_layout
17349
17350 \end_inset
17351 </cell>
17352 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17353 \begin_inset Text
17354
17355 \begin_layout Plain Layout
17356 \begin_inset Formula $\uplus$
17357 \end_inset
17358
17359
17360 \end_layout
17361
17362 \end_inset
17363 </cell>
17364 </row>
17365 <row>
17366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17367 \begin_inset Text
17368
17369 \begin_layout Plain Layout
17370
17371 \backslash
17372 setminus
17373 \end_layout
17374
17375 \end_inset
17376 </cell>
17377 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17378 \begin_inset Text
17379
17380 \begin_layout Plain Layout
17381 \begin_inset Formula $\setminus$
17382 \end_inset
17383
17384
17385 \end_layout
17386
17387 \end_inset
17388 </cell>
17389 </row>
17390 <row>
17391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17392 \begin_inset Text
17393
17394 \begin_layout Plain Layout
17395
17396 \backslash
17397 sqcap
17398 \end_layout
17399
17400 \end_inset
17401 </cell>
17402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17403 \begin_inset Text
17404
17405 \begin_layout Plain Layout
17406 \begin_inset Formula $\sqcap$
17407 \end_inset
17408
17409
17410 \end_layout
17411
17412 \end_inset
17413 </cell>
17414 </row>
17415 <row>
17416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17417 \begin_inset Text
17418
17419 \begin_layout Plain Layout
17420
17421 \backslash
17422 sqcup
17423 \end_layout
17424
17425 \end_inset
17426 </cell>
17427 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17428 \begin_inset Text
17429
17430 \begin_layout Plain Layout
17431 \begin_inset Formula $\sqcup$
17432 \end_inset
17433
17434
17435 \end_layout
17436
17437 \end_inset
17438 </cell>
17439 </row>
17440 <row>
17441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17442 \begin_inset Text
17443
17444 \begin_layout Plain Layout
17445
17446 \backslash
17447 triangleleft
17448 \end_layout
17449
17450 \end_inset
17451 </cell>
17452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17453 \begin_inset Text
17454
17455 \begin_layout Plain Layout
17456 \begin_inset Formula $\triangleleft$
17457 \end_inset
17458
17459
17460 \end_layout
17461
17462 \end_inset
17463 </cell>
17464 </row>
17465 <row>
17466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17467 \begin_inset Text
17468
17469 \begin_layout Plain Layout
17470
17471 \backslash
17472 triangleright
17473 \end_layout
17474
17475 \end_inset
17476 </cell>
17477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17478 \begin_inset Text
17479
17480 \begin_layout Plain Layout
17481 \begin_inset Formula $\triangleright$
17482 \end_inset
17483
17484
17485 \end_layout
17486
17487 \end_inset
17488 </cell>
17489 </row>
17490 </lyxtabular>
17491
17492 \end_inset
17493
17494
17495 \begin_inset space \hfill{}
17496 \end_inset
17497
17498
17499 \end_layout
17500
17501 \begin_layout Standard
17502 All binary operators can also be inserted via the math toolbar button 
17503 \begin_inset Graphics
17504         filename ../images/math/pm.png
17505         scale 85
17506
17507 \end_inset
17508
17509 .
17510 \end_layout
17511
17512 \begin_layout Standard
17513 To typeset the Laplace operator also 
17514 \series bold
17515
17516 \backslash
17517 Delta
17518 \series default
17519  or 
17520 \series bold
17521
17522 \backslash
17523 nabla
17524 \series default
17525 ^
17526 \series bold
17527 2
17528 \series default
17529  (
17530 \begin_inset Formula $\nabla^{2}$
17531 \end_inset
17532
17533 ) can be used instead of 
17534 \series bold
17535
17536 \backslash
17537 bigtriangleup
17538 \series default
17539  .
17540 \end_layout
17541
17542 \begin_layout Standard
17543 The character 
17544 \family sans
17545 Menu Separator
17546 \family default
17547  from the menu 
17548 \family sans
17549 Insert\SpecialChar \menuseparator
17550 Special Character
17551 \family default
17552  is the operator 
17553 \series bold
17554
17555 \backslash
17556 triangleright
17557 \series default
17558 .
17559 \end_layout
17560
17561 \begin_layout Subsection
17562 Self-defined Operators
17563 \begin_inset CommandInset label
17564 LatexCommand label
17565 name "sub:Self-defined-Operators"
17566
17567 \end_inset
17568
17569
17570 \begin_inset Index
17571 status collapsed
17572
17573 \begin_layout Plain Layout
17574 Operators ! self-defined
17575 \end_layout
17576
17577 \end_inset
17578
17579
17580 \end_layout
17581
17582 \begin_layout Standard
17583 With the help of the command 
17584 \series bold
17585
17586 \backslash
17587 DeclareMathOperator
17588 \series default
17589
17590 \begin_inset Index
17591 status collapsed
17592
17593 \begin_layout Plain Layout
17594 Commands ! D ! 
17595 \backslash
17596 dbinom@
17597 \backslash
17598 DeclareMathOperator
17599 \end_layout
17600
17601 \end_inset
17602
17603  custom operators can be defined in the LaTeX-preamble.
17604  Its command scheme is:
17605 \end_layout
17606
17607 \begin_layout Standard
17608
17609 \series bold
17610
17611 \backslash
17612 DeclareMathOperator{new command}{display}
17613 \end_layout
17614
17615 \begin_layout Standard
17616 Display can be characters or symbols that define how the operator looks
17617  in the output.
17618  To define a big operator a * is set behind the command.
17619  All self-defined big operators can have limits as described in 
17620 \begin_inset CommandInset ref
17621 LatexCommand ref
17622 reference "sub:Operator-Limits"
17623
17624 \end_inset
17625
17626 .
17627 \end_layout
17628
17629 \begin_layout Standard
17630 For example the LaTeX-preamble line
17631 \end_layout
17632
17633 \begin_layout Standard
17634
17635 \series bold
17636
17637 \backslash
17638 DeclareMathOperator*{
17639 \backslash
17640 Lozenge}{
17641 \backslash
17642 blacklozenge}
17643 \end_layout
17644
17645 \begin_layout Standard
17646 defines the command 
17647 \series bold
17648
17649 \backslash
17650 Lozenge
17651 \series default
17652 , that inserts a big operator consisting of the lozenge symbol from 
17653 \begin_inset CommandInset ref
17654 LatexCommand ref
17655 reference "sub:Miscellaneous-Symbols"
17656
17657 \end_inset
17658
17659 :
17660 \begin_inset Formula \[
17661 \Lozenge_{n=1}^{\infty}\]
17662
17663 \end_inset
17664
17665 The command for this formula is: 
17666 \series bold
17667
17668 \backslash
17669 Lozenge
17670 \series default
17671 ^
17672 \series bold
17673
17674 \backslash
17675 infty
17676 \begin_inset Formula $\to$
17677 \end_inset
17678
17679 _n=1
17680 \end_layout
17681
17682 \begin_layout Standard
17683 \begin_inset VSpace bigskip
17684 \end_inset
17685
17686 When self-defined operators are not used several times in the document,
17687  they can also be defined with the commands 
17688 \series bold
17689
17690 \backslash
17691 mathop
17692 \series default
17693
17694 \begin_inset Index
17695 status collapsed
17696
17697 \begin_layout Plain Layout
17698 Commands ! M ! 
17699 \backslash
17700 mathop
17701 \end_layout
17702
17703 \end_inset
17704
17705  and 
17706 \series bold
17707
17708 \backslash
17709 mathbin
17710 \series default
17711
17712 \begin_inset Index
17713 status collapsed
17714
17715 \begin_layout Plain Layout
17716 Commands ! M ! 
17717 \backslash
17718 mathbin
17719 \end_layout
17720
17721 \end_inset
17722
17723 , which have the following scheme:
17724 \end_layout
17725
17726 \begin_layout Standard
17727
17728 \series bold
17729
17730 \backslash
17731 mathop{display}
17732 \series default
17733  and 
17734 \series bold
17735
17736 \backslash
17737 mathbin{display}
17738 \end_layout
17739
17740 \begin_layout Standard
17741
17742 \series bold
17743
17744 \backslash
17745 mathop
17746 \series default
17747  defines big operators, 
17748 \series bold
17749
17750 \backslash
17751 mathbin
17752 \series default
17753  binary operators.
17754 \end_layout
17755
17756 \begin_layout Standard
17757
17758 \series bold
17759
17760 \backslash
17761 mathop
17762 \series default
17763  can e.
17764 \begin_inset space \thinspace{}
17765 \end_inset
17766
17767 g.
17768 \begin_inset space \space{}
17769 \end_inset
17770
17771 be used to use one limit for several operators:
17772 \end_layout
17773
17774 \begin_layout Standard
17775 \begin_inset Formula \[
17776 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17777
17778 \end_inset
17779
17780
17781 \end_layout
17782
17783 \begin_layout Standard
17784 The command for the formula above is:
17785 \begin_inset Newline newline
17786 \end_inset
17787
17788
17789 \series bold
17790
17791 \backslash
17792 mathop{
17793 \backslash
17794 sum
17795 \backslash
17796 negmedspace
17797 \backslash
17798 sum
17799 \series default
17800
17801 \begin_inset ERT
17802 status collapsed
17803
17804 \begin_layout Plain Layout
17805
17806
17807 \backslash
17808 spce 
17809 \end_layout
17810
17811 \end_inset
17812
17813
17814 \series bold
17815
17816 \begin_inset Formula $\to$
17817 \end_inset
17818
17819 ^N
17820 \series default
17821
17822 \begin_inset ERT
17823 status collapsed
17824
17825 \begin_layout Plain Layout
17826
17827
17828 \backslash
17829 spce 
17830 \end_layout
17831
17832 \end_inset
17833
17834
17835 \series bold
17836 _i,j=1
17837 \end_layout
17838
17839 \begin_layout Section
17840 Fonts
17841 \begin_inset Index
17842 status collapsed
17843
17844 \begin_layout Plain Layout
17845 Fonts
17846 \end_layout
17847
17848 \end_inset
17849
17850
17851 \end_layout
17852
17853 \begin_layout Subsection
17854 Font Styles
17855 \begin_inset CommandInset label
17856 LatexCommand label
17857 name "sub:Font-Styles"
17858
17859 \end_inset
17860
17861
17862 \begin_inset Index
17863 status collapsed
17864
17865 \begin_layout Plain Layout
17866 Font ! style
17867 \end_layout
17868
17869 \end_inset
17870
17871
17872 \end_layout
17873
17874 \begin_layout Standard
17875 Latin letters in formulas can be set in one of the following font styles:
17876 \begin_inset VSpace -2mm
17877 \end_inset
17878
17879
17880 \end_layout
17881
17882 \begin_layout Standard
17883 \align center
17884 \begin_inset Tabular
17885 <lyxtabular version="3" rows="6" columns="3">
17886 <features>
17887 <column alignment="center" valignment="top" width="0">
17888 <column alignment="center" valignment="top" width="0">
17889 <column alignment="center" valignment="top" width="0">
17890 <row>
17891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17892 \begin_inset Text
17893
17894 \begin_layout Plain Layout
17895 Command
17896 \end_layout
17897
17898 \end_inset
17899 </cell>
17900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17901 \begin_inset Text
17902
17903 \begin_layout Plain Layout
17904 Result
17905 \end_layout
17906
17907 \end_inset
17908 </cell>
17909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17910 \begin_inset Text
17911
17912 \begin_layout Plain Layout
17913 shortcut
17914 \end_layout
17915
17916 \end_inset
17917 </cell>
17918 </row>
17919 <row>
17920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17921 \begin_inset Text
17922
17923 \begin_layout Plain Layout
17924
17925 \backslash
17926 mathbb
17927 \series bold
17928
17929 \begin_inset ERT
17930 status collapsed
17931
17932 \begin_layout Plain Layout
17933
17934
17935 \backslash
17936 spce 
17937 \end_layout
17938
17939 \end_inset
17940
17941
17942 \series default
17943 ABC
17944 \end_layout
17945
17946 \end_inset
17947 </cell>
17948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17949 \begin_inset Text
17950
17951 \begin_layout Plain Layout
17952 \begin_inset Formula $\mathbb{ABC}$
17953 \end_inset
17954
17955
17956 \end_layout
17957
17958 \end_inset
17959 </cell>
17960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17961 \begin_inset Text
17962
17963 \begin_layout Plain Layout
17964 \begin_inset Info
17965 type  "shortcut"
17966 arg   "font-noun"
17967 \end_inset
17968
17969
17970 \end_layout
17971
17972 \end_inset
17973 </cell>
17974 </row>
17975 <row>
17976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17977 \begin_inset Text
17978
17979 \begin_layout Plain Layout
17980
17981 \backslash
17982 mathbf
17983 \series bold
17984
17985 \begin_inset ERT
17986 status collapsed
17987
17988 \begin_layout Plain Layout
17989
17990
17991 \backslash
17992 spce 
17993 \end_layout
17994
17995 \end_inset
17996
17997
17998 \series default
17999 AbC
18000 \end_layout
18001
18002 \end_inset
18003 </cell>
18004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18005 \begin_inset Text
18006
18007 \begin_layout Plain Layout
18008 \begin_inset Formula $\mathbf{AbC}$
18009 \end_inset
18010
18011
18012 \end_layout
18013
18014 \end_inset
18015 </cell>
18016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18017 \begin_inset Text
18018
18019 \begin_layout Plain Layout
18020 \begin_inset Info
18021 type  "shortcut"
18022 arg   "font-bold"
18023 \end_inset
18024
18025
18026 \end_layout
18027
18028 \end_inset
18029 </cell>
18030 </row>
18031 <row>
18032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18033 \begin_inset Text
18034
18035 \begin_layout Plain Layout
18036
18037 \backslash
18038 boldsymbol
18039 \series bold
18040
18041 \begin_inset ERT
18042 status collapsed
18043
18044 \begin_layout Plain Layout
18045
18046
18047 \backslash
18048 spce 
18049 \end_layout
18050
18051 \end_inset
18052
18053
18054 \series default
18055 AbC
18056 \end_layout
18057
18058 \end_inset
18059 </cell>
18060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18061 \begin_inset Text
18062
18063 \begin_layout Plain Layout
18064 \begin_inset Formula $\boldsymbol{AbC}$
18065 \end_inset
18066
18067
18068 \end_layout
18069
18070 \end_inset
18071 </cell>
18072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18073 \begin_inset Text
18074
18075 \begin_layout Plain Layout
18076 \begin_inset Info
18077 type  "shortcuts"
18078 arg   "font-boldsymbol"
18079 \end_inset
18080
18081
18082 \end_layout
18083
18084 \end_inset
18085 </cell>
18086 </row>
18087 <row>
18088 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18089 \begin_inset Text
18090
18091 \begin_layout Plain Layout
18092
18093 \backslash
18094 mathcal
18095 \series bold
18096
18097 \begin_inset ERT
18098 status collapsed
18099
18100 \begin_layout Plain Layout
18101
18102
18103 \backslash
18104 spce 
18105 \end_layout
18106
18107 \end_inset
18108
18109
18110 \series default
18111 ABC
18112 \end_layout
18113
18114 \end_inset
18115 </cell>
18116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18117 \begin_inset Text
18118
18119 \begin_layout Plain Layout
18120 \begin_inset Formula $\mathcal{ABC}$
18121 \end_inset
18122
18123
18124 \end_layout
18125
18126 \end_inset
18127 </cell>
18128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18129 \begin_inset Text
18130
18131 \begin_layout Plain Layout
18132 \begin_inset Info
18133 type  "shortcut"
18134 arg   "font-emph"
18135 \end_inset
18136
18137
18138 \end_layout
18139
18140 \end_inset
18141 </cell>
18142 </row>
18143 <row>
18144 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18145 \begin_inset Text
18146
18147 \begin_layout Plain Layout
18148
18149 \backslash
18150 mathfrak
18151 \series bold
18152
18153 \begin_inset ERT
18154 status collapsed
18155
18156 \begin_layout Plain Layout
18157
18158
18159 \backslash
18160 spce 
18161 \end_layout
18162
18163 \end_inset
18164
18165
18166 \series default
18167 AbC
18168 \end_layout
18169
18170 \end_inset
18171 </cell>
18172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18173 \begin_inset Text
18174
18175 \begin_layout Plain Layout
18176 \begin_inset Formula $\mathfrak{AbC}$
18177 \end_inset
18178
18179
18180 \end_layout
18181
18182 \end_inset
18183 </cell>
18184 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18185 \begin_inset Text
18186
18187 \begin_layout Plain Layout
18188 -
18189 \end_layout
18190
18191 \end_inset
18192 </cell>
18193 </row>
18194 </lyxtabular>
18195
18196 \end_inset
18197
18198
18199 \end_layout
18200
18201 \begin_layout Standard
18202 \align center
18203 \begin_inset Tabular
18204 <lyxtabular version="3" rows="5" columns="3">
18205 <features>
18206 <column alignment="center" valignment="top" width="0">
18207 <column alignment="center" valignment="top" width="0">
18208 <column alignment="center" valignment="top" width="0">
18209 <row>
18210 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18211 \begin_inset Text
18212
18213 \begin_layout Plain Layout
18214 Command
18215 \end_layout
18216
18217 \end_inset
18218 </cell>
18219 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18220 \begin_inset Text
18221
18222 \begin_layout Plain Layout
18223 Result
18224 \end_layout
18225
18226 \end_inset
18227 </cell>
18228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18229 \begin_inset Text
18230
18231 \begin_layout Plain Layout
18232 shortcut
18233 \end_layout
18234
18235 \end_inset
18236 </cell>
18237 </row>
18238 <row>
18239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18240 \begin_inset Text
18241
18242 \begin_layout Plain Layout
18243
18244 \backslash
18245 mathit
18246 \series bold
18247
18248 \begin_inset ERT
18249 status collapsed
18250
18251 \begin_layout Plain Layout
18252
18253
18254 \backslash
18255 spce 
18256 \end_layout
18257
18258 \end_inset
18259
18260
18261 \series default
18262 AbC
18263 \end_layout
18264
18265 \end_inset
18266 </cell>
18267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18268 \begin_inset Text
18269
18270 \begin_layout Plain Layout
18271 \begin_inset Formula $\mathit{AbC}$
18272 \end_inset
18273
18274
18275 \end_layout
18276
18277 \end_inset
18278 </cell>
18279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18280 \begin_inset Text
18281
18282 \begin_layout Plain Layout
18283 -
18284 \end_layout
18285
18286 \end_inset
18287 </cell>
18288 </row>
18289 <row>
18290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18291 \begin_inset Text
18292
18293 \begin_layout Plain Layout
18294
18295 \backslash
18296 mathrm
18297 \series bold
18298
18299 \begin_inset ERT
18300 status collapsed
18301
18302 \begin_layout Plain Layout
18303
18304
18305 \backslash
18306 spce 
18307 \end_layout
18308
18309 \end_inset
18310
18311
18312 \series default
18313 AbC
18314 \end_layout
18315
18316 \end_inset
18317 </cell>
18318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18319 \begin_inset Text
18320
18321 \begin_layout Plain Layout
18322 \begin_inset Formula $\mathrm{AbC}$
18323 \end_inset
18324
18325
18326 \end_layout
18327
18328 \end_inset
18329 </cell>
18330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18331 \begin_inset Text
18332
18333 \begin_layout Plain Layout
18334 \begin_inset Info
18335 type  "shortcut"
18336 arg   "font-roman"
18337 \end_inset
18338
18339
18340 \end_layout
18341
18342 \end_inset
18343 </cell>
18344 </row>
18345 <row>
18346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18347 \begin_inset Text
18348
18349 \begin_layout Plain Layout
18350
18351 \backslash
18352 mathsf
18353 \series bold
18354
18355 \begin_inset ERT
18356 status collapsed
18357
18358 \begin_layout Plain Layout
18359
18360
18361 \backslash
18362 spce 
18363 \end_layout
18364
18365 \end_inset
18366
18367
18368 \series default
18369 AbC
18370 \end_layout
18371
18372 \end_inset
18373 </cell>
18374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18375 \begin_inset Text
18376
18377 \begin_layout Plain Layout
18378 \begin_inset Formula $\mathsf{AbC}$
18379 \end_inset
18380
18381
18382 \end_layout
18383
18384 \end_inset
18385 </cell>
18386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18387 \begin_inset Text
18388
18389 \begin_layout Plain Layout
18390 \begin_inset Info
18391 type  "shortcut"
18392 arg   "font-sans"
18393 \end_inset
18394
18395
18396 \end_layout
18397
18398 \end_inset
18399 </cell>
18400 </row>
18401 <row>
18402 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18403 \begin_inset Text
18404
18405 \begin_layout Plain Layout
18406
18407 \backslash
18408 mathtt
18409 \series bold
18410
18411 \begin_inset ERT
18412 status collapsed
18413
18414 \begin_layout Plain Layout
18415
18416
18417 \backslash
18418 spce 
18419 \end_layout
18420
18421 \end_inset
18422
18423
18424 \series default
18425 AbC
18426 \end_layout
18427
18428 \end_inset
18429 </cell>
18430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18431 \begin_inset Text
18432
18433 \begin_layout Plain Layout
18434 \begin_inset Formula $\mathtt{AbC}$
18435 \end_inset
18436
18437
18438 \end_layout
18439
18440 \end_inset
18441 </cell>
18442 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18443 \begin_inset Text
18444
18445 \begin_layout Plain Layout
18446 \begin_inset Info
18447 type  "shortcut"
18448 arg   "font-typewriter"
18449 \end_inset
18450
18451
18452 \end_layout
18453
18454 \end_inset
18455 </cell>
18456 </row>
18457 </lyxtabular>
18458
18459 \end_inset
18460
18461
18462 \end_layout
18463
18464 \begin_layout Standard
18465 \begin_inset Note Greyedout
18466 status open
18467
18468 \begin_layout Plain Layout
18469
18470 \series bold
18471 Note:
18472 \series default
18473  The styles 
18474 \series bold
18475
18476 \backslash
18477 mathbb
18478 \series default
18479  and 
18480 \series bold
18481
18482 \backslash
18483 mathcal
18484 \series default
18485  can only be used for big letters.
18486 \end_layout
18487
18488 \end_inset
18489
18490
18491 \end_layout
18492
18493 \begin_layout Standard
18494 Predefined is the style 
18495 \series bold
18496
18497 \backslash
18498 mathnormal
18499 \series default
18500 .
18501 \end_layout
18502
18503 \begin_layout Standard
18504 The style commands work also for letters in mathematical constructs:
18505 \begin_inset Formula \[
18506 \mathfrak{A=\frac{b}{C}}\]
18507
18508 \end_inset
18509
18510
18511 \end_layout
18512
18513 \begin_layout Standard
18514 Characters in mathematical text don't appear in a math font style but in
18515  the text font style 
18516 \series bold
18517
18518 \backslash
18519 textrm
18520 \series default
18521 .
18522  That their style can't be set correctly via the text style dialog is a
18523  bug in LyX.
18524 \begin_inset Foot
18525 status collapsed
18526
18527 \begin_layout Plain Layout
18528 \begin_inset CommandInset href
18529 LatexCommand href
18530 name "LyX-bug #4629"
18531 target "http://www.lyx.org/trac/ticket/4629"
18532
18533 \end_inset
18534
18535
18536 \end_layout
18537
18538 \end_inset
18539
18540
18541 \end_layout
18542
18543 \begin_layout Standard
18544 Instead of the style commands the dialog 
18545 \family sans
18546 Edit\SpecialChar \menuseparator
18547 Math\SpecialChar \menuseparator
18548 Text Style
18549 \family default
18550  or the toolbar button 
18551 \begin_inset Graphics
18552         filename ../images/math/font.png
18553         scale 85
18554
18555 \end_inset
18556
18557  can be used.
18558 \end_layout
18559
18560 \begin_layout Subsection
18561 Bold Formulas
18562 \begin_inset CommandInset label
18563 LatexCommand label
18564 name "sub:Bold-Formulas"
18565
18566 \end_inset
18567
18568
18569 \begin_inset Index
18570 status collapsed
18571
18572 \begin_layout Plain Layout
18573 Formula ! bold
18574 \end_layout
18575
18576 \end_inset
18577
18578
18579 \end_layout
18580
18581 \begin_layout Standard
18582 To make a complete formula bold, the command 
18583 \series bold
18584
18585 \backslash
18586 mathbf
18587 \series default
18588  from the previous subsection cannot be used, because it doesn't work for
18589  small Greek letters.
18590  Furthermore it prints Latin letters always upright, like in the following
18591  equation:
18592 \end_layout
18593
18594 \begin_layout Standard
18595 \begin_inset Formula \[
18596 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{equation with \textbackslash mathbf}\]
18597
18598 \end_inset
18599
18600
18601 \end_layout
18602
18603 \begin_layout Standard
18604 To display the formula correctly, the command 
18605 \series bold
18606
18607 \backslash
18608 boldsymbol
18609 \series default
18610  is used:
18611 \begin_inset Formula \[
18612 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{equation with \textbackslash boldsymbol}}\]
18613
18614 \end_inset
18615
18616 It is also possible to set the formula in a 
18617 \series bold
18618 boldmath environment
18619 \series default
18620 .
18621  This environment is created by inserting the command 
18622 \series bold
18623
18624 \backslash
18625 boldmath
18626 \begin_inset Index
18627 status collapsed
18628
18629 \begin_layout Plain Layout
18630 Commands ! B ! 
18631 \backslash
18632 boldmath
18633 \end_layout
18634
18635 \end_inset
18636
18637
18638 \series default
18639  in TeX-mode.
18640  To end the environment, the command 
18641 \series bold
18642
18643 \backslash
18644 unboldmath
18645 \begin_inset Index
18646 status collapsed
18647
18648 \begin_layout Plain Layout
18649 Commands ! U ! 
18650 \backslash
18651 unboldmath
18652 \end_layout
18653
18654 \end_inset
18655
18656
18657 \series default
18658  is inserted in TeX-mode.
18659 \begin_inset ERT
18660 status collapsed
18661
18662 \begin_layout Plain Layout
18663
18664
18665 \backslash
18666 boldmath 
18667 \end_layout
18668
18669 \end_inset
18670
18671
18672 \begin_inset Formula \[
18673 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{equation in a boldmath environment}\]
18674
18675 \end_inset
18676
18677
18678 \begin_inset ERT
18679 status collapsed
18680
18681 \begin_layout Plain Layout
18682
18683
18684 \backslash
18685 unboldmath 
18686 \end_layout
18687
18688 \end_inset
18689
18690
18691 \end_layout
18692
18693 \begin_layout Subsection
18694 Colored Formulas
18695 \begin_inset Index
18696 status collapsed
18697
18698 \begin_layout Plain Layout
18699 Formula ! colored
18700 \end_layout
18701
18702 \end_inset
18703
18704
18705 \end_layout
18706
18707 \begin_layout Standard
18708 Formulas can be colored like normal text: Highlight a formula or a formula
18709  part and use the 
18710 \family sans
18711 Text Style
18712 \family default
18713  dialog.
18714  Here is a formula in magenta:
18715 \begin_inset Formula \[
18716 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}\]
18717
18718 \end_inset
18719
18720
18721 \end_layout
18722
18723 \begin_layout Standard
18724 You can also define your own colors as described in 
18725 \begin_inset CommandInset ref
18726 LatexCommand ref
18727 reference "sub:Colored-Boxes"
18728
18729 \end_inset
18730
18731 .
18732  They can be used with the TeX code command 
18733 \series bold
18734
18735 \backslash
18736 textcolor
18737 \series default
18738
18739 \begin_inset Index
18740 status collapsed
18741
18742 \begin_layout Plain Layout
18743 Commands ! T ! 
18744 \backslash
18745 textcolor
18746 \end_layout
18747
18748 \end_inset
18749
18750  in the scheme
18751 \end_layout
18752
18753 \begin_layout Standard
18754
18755 \series bold
18756
18757 \backslash
18758 textcolor{color}{characters or formula}
18759 \end_layout
18760
18761 \begin_layout Standard
18762 The following example was colored completely dark green and partly red:
18763 \end_layout
18764
18765 \begin_layout Standard
18766 \begin_inset ERT
18767 status collapsed
18768
18769 \begin_layout Plain Layout
18770
18771
18772 \backslash
18773 textcolor{darkgreen}{
18774 \end_layout
18775
18776 \end_inset
18777
18778
18779 \begin_inset Formula \[
18780 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}\]
18781
18782 \end_inset
18783
18784
18785 \begin_inset ERT
18786 status collapsed
18787
18788 \begin_layout Plain Layout
18789
18790 }
18791 \end_layout
18792
18793 \end_inset
18794
18795
18796 \end_layout
18797
18798 \begin_layout Standard
18799 Due to a bug in LyX only complete formulas can be colored with self-defined
18800  colors.
18801 \begin_inset Foot
18802 status collapsed
18803
18804 \begin_layout Plain Layout
18805 \begin_inset CommandInset href
18806 LatexCommand href
18807 name "LyX-bug #5269"
18808 target "http://www.lyx.org/trac/ticket/5269"
18809
18810 \end_inset
18811
18812
18813 \end_layout
18814
18815 \end_inset
18816
18817
18818 \end_layout
18819
18820 \begin_layout Subsection
18821 Font Sizes
18822 \begin_inset CommandInset label
18823 LatexCommand label
18824 name "sub:Font-Sizes"
18825
18826 \end_inset
18827
18828
18829 \begin_inset Index
18830 status collapsed
18831
18832 \begin_layout Plain Layout
18833 Font ! size
18834 \end_layout
18835
18836 \end_inset
18837
18838
18839 \end_layout
18840
18841 \begin_layout Standard
18842 For characters in formulas there are, analog to characters in text, the
18843  following size commands:
18844 \end_layout
18845
18846 \begin_layout Standard
18847
18848 \series bold
18849
18850 \backslash
18851 Huge
18852 \series default
18853
18854 \series bold
18855
18856 \backslash
18857 huge
18858 \series default
18859
18860 \series bold
18861
18862 \backslash
18863 LARGE
18864 \series default
18865
18866 \series bold
18867
18868 \backslash
18869 Large
18870 \series default
18871
18872 \series bold
18873
18874 \backslash
18875 large
18876 \series default
18877
18878 \series bold
18879
18880 \backslash
18881 normalsize
18882 \series default
18883
18884 \series bold
18885
18886 \backslash
18887 small
18888 \series default
18889 ,
18890 \begin_inset Newline newline
18891 \end_inset
18892
18893
18894 \series bold
18895
18896 \backslash
18897 footnotesize
18898 \series default
18899
18900 \series bold
18901
18902 \backslash
18903 scriptsize
18904 \series default
18905  and 
18906 \series bold
18907
18908 \backslash
18909 tiny
18910 \end_layout
18911
18912 \begin_layout Standard
18913 The size produced by the commands depends on the document font size, that
18914  corresponds with the command 
18915 \series bold
18916
18917 \backslash
18918 normalsize
18919 \series default
18920 .
18921  The other commands produce smaller or larger sizes than 
18922 \series bold
18923
18924 \backslash
18925 normalsize
18926 \series default
18927 .
18928  The font size can however not exceed a certain value.
18929  Is for example the document font size 12
18930 \begin_inset space \thinspace{}
18931 \end_inset
18932
18933 pt, the command 
18934 \series bold
18935
18936 \backslash
18937 Huge
18938 \series default
18939  switches to the same size as 
18940 \series bold
18941
18942 \backslash
18943 huge
18944 \series default
18945 .
18946  
18947 \end_layout
18948
18949 \begin_layout Standard
18950 A size command is inserted in TeX-mode before the formula and sets the size
18951  for all following formula and text characters.
18952  To switch back to the initial size, the command 
18953 \series bold
18954
18955 \backslash
18956 normalsize
18957 \series default
18958  is inserted behind the formula in TeX-mode.
18959 \end_layout
18960
18961 \begin_layout Standard
18962 \begin_inset Newpage newpage
18963 \end_inset
18964
18965
18966 \end_layout
18967
18968 \begin_layout Standard
18969 Within a formula the size can be changed using the following size commands:
18970 \end_layout
18971
18972 \begin_layout Standard
18973 \noindent
18974 \align center
18975 \begin_inset Tabular
18976 <lyxtabular version="3" rows="5" columns="2">
18977 <features>
18978 <column alignment="center" valignment="top" width="0">
18979 <column alignment="center" valignment="top" width="0">
18980 <row>
18981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18982 \begin_inset Text
18983
18984 \begin_layout Plain Layout
18985 Command
18986 \end_layout
18987
18988 \end_inset
18989 </cell>
18990 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18991 \begin_inset Text
18992
18993 \begin_layout Plain Layout
18994 Result
18995 \begin_inset Note Note
18996 status collapsed
18997
18998 \begin_layout Plain Layout
18999
19000 \series bold
19001
19002 \backslash
19003 raisebox
19004 \series default
19005  is only used as spacer.
19006 \end_layout
19007
19008 \end_inset
19009
19010
19011 \end_layout
19012
19013 \end_inset
19014 </cell>
19015 </row>
19016 <row>
19017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19018 \begin_inset Text
19019
19020 \begin_layout Plain Layout
19021
19022 \backslash
19023 displaystyle
19024 \begin_inset Index
19025 status collapsed
19026
19027 \begin_layout Plain Layout
19028 Commands ! D ! 
19029 \backslash
19030 displaystyle
19031 \end_layout
19032
19033 \end_inset
19034
19035
19036 \end_layout
19037
19038 \end_inset
19039 </cell>
19040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19041 \begin_inset Text
19042
19043 \begin_layout Plain Layout
19044 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19045 \end_inset
19046
19047
19048 \end_layout
19049
19050 \end_inset
19051 </cell>
19052 </row>
19053 <row>
19054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19055 \begin_inset Text
19056
19057 \begin_layout Plain Layout
19058
19059 \backslash
19060 textstyle
19061 \end_layout
19062
19063 \end_inset
19064 </cell>
19065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19066 \begin_inset Text
19067
19068 \begin_layout Plain Layout
19069 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19070 \end_inset
19071
19072
19073 \end_layout
19074
19075 \end_inset
19076 </cell>
19077 </row>
19078 <row>
19079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19080 \begin_inset Text
19081
19082 \begin_layout Plain Layout
19083
19084 \backslash
19085 scriptstyle
19086 \end_layout
19087
19088 \end_inset
19089 </cell>
19090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19091 \begin_inset Text
19092
19093 \begin_layout Plain Layout
19094 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19095 \end_inset
19096
19097
19098 \end_layout
19099
19100 \end_inset
19101 </cell>
19102 </row>
19103 <row>
19104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19105 \begin_inset Text
19106
19107 \begin_layout Plain Layout
19108
19109 \backslash
19110 scriptscriptstyle
19111 \end_layout
19112
19113 \end_inset
19114 </cell>
19115 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19116 \begin_inset Text
19117
19118 \begin_layout Plain Layout
19119 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19120 \end_inset
19121
19122
19123 \end_layout
19124
19125 \end_inset
19126 </cell>
19127 </row>
19128 </lyxtabular>
19129
19130 \end_inset
19131
19132
19133 \end_layout
19134
19135 \begin_layout Standard
19136 After entering these commands, a blue box appears in which the formula parts
19137  are inserted.
19138 \end_layout
19139
19140 \begin_layout Standard
19141 There is a further method to change the font size, that though only works
19142  for symbols or letters in mathematical text.
19143  To use it, one of the above text size commands is inserted in mathematical
19144  text.
19145  All following characters until the end of the mathematical text or until
19146  another size command will have the selected size.
19147  Two examples:
19148 \begin_inset VSpace -2mm
19149 \end_inset
19150
19151
19152 \end_layout
19153
19154 \begin_layout Standard
19155 \begin_inset ERT
19156 status collapsed
19157
19158 \begin_layout Plain Layout
19159
19160
19161 \backslash
19162 huge 
19163 \end_layout
19164
19165 \end_inset
19166
19167
19168 \begin_inset Formula \[
19169 A=\frac{B}{c}\cdot\maltese\]
19170
19171 \end_inset
19172
19173
19174 \begin_inset Formula \[
19175 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
19176
19177 \end_inset
19178
19179
19180 \begin_inset ERT
19181 status collapsed
19182
19183 \begin_layout Plain Layout
19184
19185
19186 \backslash
19187 normalsize 
19188 \end_layout
19189
19190 \end_inset
19191
19192
19193 \end_layout
19194
19195 \begin_layout Standard
19196 \begin_inset VSpace medskip
19197 \end_inset
19198
19199 Before both formulas the command 
19200 \series bold
19201
19202 \backslash
19203 huge
19204 \series default
19205  was inserted.
19206  The command for the second formula is:
19207 \begin_inset Newline newline
19208 \end_inset
19209
19210
19211 \series bold
19212
19213 \backslash
19214 maltese
19215 \begin_inset ERT
19216 status collapsed
19217
19218 \begin_layout Plain Layout
19219
19220
19221 \backslash
19222 spce 
19223 \end_layout
19224
19225 \end_inset
19226
19227 A Alt+M M 
19228 \backslash
19229 Large
19230 \begin_inset ERT
19231 status collapsed
19232
19233 \begin_layout Plain Layout
19234
19235
19236 \backslash
19237 spce 
19238 \end_layout
19239
19240 \end_inset
19241
19242
19243 \backslash
19244 maltese
19245 \begin_inset ERT
19246 status collapsed
19247
19248 \begin_layout Plain Layout
19249
19250
19251 \backslash
19252 spce 
19253 \end_layout
19254
19255 \end_inset
19256
19257
19258 \backslash
19259 textit
19260 \begin_inset ERT
19261 status collapsed
19262
19263 \begin_layout Plain Layout
19264
19265
19266 \backslash
19267 spce 
19268 \end_layout
19269
19270 \end_inset
19271
19272 A
19273 \begin_inset Formula $\to$
19274 \end_inset
19275
19276
19277 \begin_inset Formula $\to$
19278 \end_inset
19279
19280
19281 \begin_inset Newline newline
19282 \end_inset
19283
19284
19285 \begin_inset space \hspace*{}
19286 \length 1cm
19287 \end_inset
19288
19289 Alt+M
19290 \series default
19291  
19292 \series bold
19293
19294 \backslash
19295 tiny
19296 \begin_inset ERT
19297 status collapsed
19298
19299 \begin_layout Plain Layout
19300
19301
19302 \backslash
19303 spce 
19304 \end_layout
19305
19306 \end_inset
19307
19308
19309 \backslash
19310 maltese
19311 \begin_inset ERT
19312 status collapsed
19313
19314 \begin_layout Plain Layout
19315
19316
19317 \backslash
19318 spce 
19319 \end_layout
19320
19321 \end_inset
19322
19323
19324 \backslash
19325 textit
19326 \begin_inset ERT
19327 status collapsed
19328
19329 \begin_layout Plain Layout
19330
19331
19332 \backslash
19333 spce 
19334 \end_layout
19335
19336 \end_inset
19337
19338 A
19339 \end_layout
19340
19341 \begin_layout Standard
19342 If a symbol cannot be displayed in different sizes, it will always be displayed
19343  in the default size.
19344 \end_layout
19345
19346 \begin_layout Standard
19347 \begin_inset Newpage newpage
19348 \end_inset
19349
19350
19351 \end_layout
19352
19353 \begin_layout Section
19354 Greek Letters
19355 \begin_inset Index
19356 status collapsed
19357
19358 \begin_layout Plain Layout
19359 Greek letters
19360 \end_layout
19361
19362 \end_inset
19363
19364
19365 \end_layout
19366
19367 \begin_layout Standard
19368 All Greek letters can also be inserted via the toolbar button 
19369 \begin_inset Graphics
19370         filename ../images/math/alpha.png
19371         scale 85
19372
19373 \end_inset
19374
19375 .
19376 \end_layout
19377
19378 \begin_layout Subsection
19379 Small Letters
19380 \begin_inset Index
19381 status collapsed
19382
19383 \begin_layout Plain Layout
19384 Greek letters ! small
19385 \end_layout
19386
19387 \end_inset
19388
19389
19390 \end_layout
19391
19392 \begin_layout Standard
19393 \begin_inset space \hfill{}
19394 \end_inset
19395
19396
19397 \begin_inset Tabular
19398 <lyxtabular version="3" rows="11" columns="2">
19399 <features>
19400 <column alignment="center" valignment="top" width="0pt">
19401 <column alignment="center" valignment="top" width="0pt">
19402 <row>
19403 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19404 \begin_inset Text
19405
19406 \begin_layout Plain Layout
19407 Command
19408 \end_layout
19409
19410 \end_inset
19411 </cell>
19412 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19413 \begin_inset Text
19414
19415 \begin_layout Plain Layout
19416 Result
19417 \end_layout
19418
19419 \end_inset
19420 </cell>
19421 </row>
19422 <row>
19423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19424 \begin_inset Text
19425
19426 \begin_layout Plain Layout
19427
19428 \backslash
19429 alpha
19430 \end_layout
19431
19432 \end_inset
19433 </cell>
19434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19435 \begin_inset Text
19436
19437 \begin_layout Plain Layout
19438 \begin_inset Formula $\alpha$
19439 \end_inset
19440
19441
19442 \end_layout
19443
19444 \end_inset
19445 </cell>
19446 </row>
19447 <row>
19448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19449 \begin_inset Text
19450
19451 \begin_layout Plain Layout
19452
19453 \backslash
19454 beta
19455 \end_layout
19456
19457 \end_inset
19458 </cell>
19459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19460 \begin_inset Text
19461
19462 \begin_layout Plain Layout
19463 \begin_inset Formula $\beta$
19464 \end_inset
19465
19466
19467 \end_layout
19468
19469 \end_inset
19470 </cell>
19471 </row>
19472 <row>
19473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19474 \begin_inset Text
19475
19476 \begin_layout Plain Layout
19477
19478 \backslash
19479 gamma
19480 \end_layout
19481
19482 \end_inset
19483 </cell>
19484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19485 \begin_inset Text
19486
19487 \begin_layout Plain Layout
19488 \begin_inset Formula $\gamma$
19489 \end_inset
19490
19491
19492 \end_layout
19493
19494 \end_inset
19495 </cell>
19496 </row>
19497 <row>
19498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19499 \begin_inset Text
19500
19501 \begin_layout Plain Layout
19502
19503 \backslash
19504 delta
19505 \end_layout
19506
19507 \end_inset
19508 </cell>
19509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19510 \begin_inset Text
19511
19512 \begin_layout Plain Layout
19513 \begin_inset Formula $\delta$
19514 \end_inset
19515
19516
19517 \end_layout
19518
19519 \end_inset
19520 </cell>
19521 </row>
19522 <row>
19523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19524 \begin_inset Text
19525
19526 \begin_layout Plain Layout
19527
19528 \backslash
19529 epsilon
19530 \end_layout
19531
19532 \end_inset
19533 </cell>
19534 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19535 \begin_inset Text
19536
19537 \begin_layout Plain Layout
19538 \begin_inset Formula $\epsilon$
19539 \end_inset
19540
19541
19542 \end_layout
19543
19544 \end_inset
19545 </cell>
19546 </row>
19547 <row>
19548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19549 \begin_inset Text
19550
19551 \begin_layout Plain Layout
19552
19553 \backslash
19554 varepsilon
19555 \end_layout
19556
19557 \end_inset
19558 </cell>
19559 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19560 \begin_inset Text
19561
19562 \begin_layout Plain Layout
19563 \begin_inset Formula $\varepsilon$
19564 \end_inset
19565
19566
19567 \end_layout
19568
19569 \end_inset
19570 </cell>
19571 </row>
19572 <row>
19573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19574 \begin_inset Text
19575
19576 \begin_layout Plain Layout
19577
19578 \backslash
19579 zeta
19580 \end_layout
19581
19582 \end_inset
19583 </cell>
19584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19585 \begin_inset Text
19586
19587 \begin_layout Plain Layout
19588 \begin_inset Formula $\zeta$
19589 \end_inset
19590
19591
19592 \end_layout
19593
19594 \end_inset
19595 </cell>
19596 </row>
19597 <row>
19598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19599 \begin_inset Text
19600
19601 \begin_layout Plain Layout
19602
19603 \backslash
19604 eta
19605 \end_layout
19606
19607 \end_inset
19608 </cell>
19609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19610 \begin_inset Text
19611
19612 \begin_layout Plain Layout
19613 \begin_inset Formula $\eta$
19614 \end_inset
19615
19616
19617 \end_layout
19618
19619 \end_inset
19620 </cell>
19621 </row>
19622 <row>
19623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19624 \begin_inset Text
19625
19626 \begin_layout Plain Layout
19627
19628 \backslash
19629 theta
19630 \end_layout
19631
19632 \end_inset
19633 </cell>
19634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19635 \begin_inset Text
19636
19637 \begin_layout Plain Layout
19638 \begin_inset Formula $\theta$
19639 \end_inset
19640
19641
19642 \end_layout
19643
19644 \end_inset
19645 </cell>
19646 </row>
19647 <row>
19648 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19649 \begin_inset Text
19650
19651 \begin_layout Plain Layout
19652
19653 \backslash
19654 vartheta
19655 \end_layout
19656
19657 \end_inset
19658 </cell>
19659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19660 \begin_inset Text
19661
19662 \begin_layout Plain Layout
19663 \begin_inset Formula $\vartheta$
19664 \end_inset
19665
19666
19667 \end_layout
19668
19669 \end_inset
19670 </cell>
19671 </row>
19672 </lyxtabular>
19673
19674 \end_inset
19675
19676
19677 \begin_inset space \hfill{}
19678 \end_inset
19679
19680
19681 \begin_inset Tabular
19682 <lyxtabular version="3" rows="12" columns="2">
19683 <features>
19684 <column alignment="center" valignment="top" width="0pt">
19685 <column alignment="center" valignment="top" width="0pt">
19686 <row>
19687 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19688 \begin_inset Text
19689
19690 \begin_layout Plain Layout
19691 Command
19692 \end_layout
19693
19694 \end_inset
19695 </cell>
19696 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19697 \begin_inset Text
19698
19699 \begin_layout Plain Layout
19700 Result
19701 \end_layout
19702
19703 \end_inset
19704 </cell>
19705 </row>
19706 <row>
19707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19708 \begin_inset Text
19709
19710 \begin_layout Plain Layout
19711
19712 \backslash
19713 iota
19714 \end_layout
19715
19716 \end_inset
19717 </cell>
19718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19719 \begin_inset Text
19720
19721 \begin_layout Plain Layout
19722 \begin_inset Formula $\iota$
19723 \end_inset
19724
19725
19726 \end_layout
19727
19728 \end_inset
19729 </cell>
19730 </row>
19731 <row>
19732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19733 \begin_inset Text
19734
19735 \begin_layout Plain Layout
19736
19737 \backslash
19738 kappa
19739 \end_layout
19740
19741 \end_inset
19742 </cell>
19743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19744 \begin_inset Text
19745
19746 \begin_layout Plain Layout
19747 \begin_inset Formula $\kappa$
19748 \end_inset
19749
19750
19751 \end_layout
19752
19753 \end_inset
19754 </cell>
19755 </row>
19756 <row>
19757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19758 \begin_inset Text
19759
19760 \begin_layout Plain Layout
19761
19762 \backslash
19763 varkappa
19764 \end_layout
19765
19766 \end_inset
19767 </cell>
19768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19769 \begin_inset Text
19770
19771 \begin_layout Plain Layout
19772 \begin_inset Formula $\varkappa$
19773 \end_inset
19774
19775
19776 \end_layout
19777
19778 \end_inset
19779 </cell>
19780 </row>
19781 <row>
19782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19783 \begin_inset Text
19784
19785 \begin_layout Plain Layout
19786
19787 \backslash
19788 lambda
19789 \end_layout
19790
19791 \end_inset
19792 </cell>
19793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19794 \begin_inset Text
19795
19796 \begin_layout Plain Layout
19797 \begin_inset Formula $\lambda$
19798 \end_inset
19799
19800
19801 \end_layout
19802
19803 \end_inset
19804 </cell>
19805 </row>
19806 <row>
19807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19808 \begin_inset Text
19809
19810 \begin_layout Plain Layout
19811
19812 \backslash
19813 mu
19814 \end_layout
19815
19816 \end_inset
19817 </cell>
19818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19819 \begin_inset Text
19820
19821 \begin_layout Plain Layout
19822 \begin_inset Formula $\mu$
19823 \end_inset
19824
19825
19826 \end_layout
19827
19828 \end_inset
19829 </cell>
19830 </row>
19831 <row>
19832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19833 \begin_inset Text
19834
19835 \begin_layout Plain Layout
19836
19837 \backslash
19838 nu
19839 \end_layout
19840
19841 \end_inset
19842 </cell>
19843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19844 \begin_inset Text
19845
19846 \begin_layout Plain Layout
19847 \begin_inset Formula $\nu$
19848 \end_inset
19849
19850
19851 \end_layout
19852
19853 \end_inset
19854 </cell>
19855 </row>
19856 <row>
19857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19858 \begin_inset Text
19859
19860 \begin_layout Plain Layout
19861
19862 \backslash
19863 xi
19864 \end_layout
19865
19866 \end_inset
19867 </cell>
19868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19869 \begin_inset Text
19870
19871 \begin_layout Plain Layout
19872 \begin_inset Formula $\xi$
19873 \end_inset
19874
19875
19876 \end_layout
19877
19878 \end_inset
19879 </cell>
19880 </row>
19881 <row>
19882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19883 \begin_inset Text
19884
19885 \begin_layout Plain Layout
19886 o
19887 \end_layout
19888
19889 \end_inset
19890 </cell>
19891 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19892 \begin_inset Text
19893
19894 \begin_layout Plain Layout
19895 \begin_inset Formula $o$
19896 \end_inset
19897
19898
19899 \end_layout
19900
19901 \end_inset
19902 </cell>
19903 </row>
19904 <row>
19905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19906 \begin_inset Text
19907
19908 \begin_layout Plain Layout
19909
19910 \backslash
19911 pi
19912 \end_layout
19913
19914 \end_inset
19915 </cell>
19916 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19917 \begin_inset Text
19918
19919 \begin_layout Plain Layout
19920 \begin_inset Formula $\pi$
19921 \end_inset
19922
19923
19924 \end_layout
19925
19926 \end_inset
19927 </cell>
19928 </row>
19929 <row>
19930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19931 \begin_inset Text
19932
19933 \begin_layout Plain Layout
19934
19935 \backslash
19936 varpi
19937 \end_layout
19938
19939 \end_inset
19940 </cell>
19941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19942 \begin_inset Text
19943
19944 \begin_layout Plain Layout
19945 \begin_inset Formula $\varpi$
19946 \end_inset
19947
19948
19949 \end_layout
19950
19951 \end_inset
19952 </cell>
19953 </row>
19954 <row>
19955 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19956 \begin_inset Text
19957
19958 \begin_layout Plain Layout
19959
19960 \backslash
19961 rho
19962 \end_layout
19963
19964 \end_inset
19965 </cell>
19966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19967 \begin_inset Text
19968
19969 \begin_layout Plain Layout
19970 \begin_inset Formula $\rho$
19971 \end_inset
19972
19973
19974 \end_layout
19975
19976 \end_inset
19977 </cell>
19978 </row>
19979 </lyxtabular>
19980
19981 \end_inset
19982
19983
19984 \begin_inset space \hfill{}
19985 \end_inset
19986
19987
19988 \begin_inset Tabular
19989 <lyxtabular version="3" rows="11" columns="2">
19990 <features>
19991 <column alignment="center" valignment="top" width="0pt">
19992 <column alignment="center" valignment="top" width="0pt">
19993 <row>
19994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19995 \begin_inset Text
19996
19997 \begin_layout Plain Layout
19998 Command
19999 \end_layout
20000
20001 \end_inset
20002 </cell>
20003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20004 \begin_inset Text
20005
20006 \begin_layout Plain Layout
20007 Result
20008 \end_layout
20009
20010 \end_inset
20011 </cell>
20012 </row>
20013 <row>
20014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20015 \begin_inset Text
20016
20017 \begin_layout Plain Layout
20018
20019 \backslash
20020 varrho
20021 \end_layout
20022
20023 \end_inset
20024 </cell>
20025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20026 \begin_inset Text
20027
20028 \begin_layout Plain Layout
20029 \begin_inset Formula $\varrho$
20030 \end_inset
20031
20032
20033 \end_layout
20034
20035 \end_inset
20036 </cell>
20037 </row>
20038 <row>
20039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20040 \begin_inset Text
20041
20042 \begin_layout Plain Layout
20043
20044 \backslash
20045 sigma
20046 \end_layout
20047
20048 \end_inset
20049 </cell>
20050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20051 \begin_inset Text
20052
20053 \begin_layout Plain Layout
20054 \begin_inset Formula $\sigma$
20055 \end_inset
20056
20057
20058 \end_layout
20059
20060 \end_inset
20061 </cell>
20062 </row>
20063 <row>
20064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20065 \begin_inset Text
20066
20067 \begin_layout Plain Layout
20068
20069 \backslash
20070 varsigma
20071 \end_layout
20072
20073 \end_inset
20074 </cell>
20075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20076 \begin_inset Text
20077
20078 \begin_layout Plain Layout
20079 \begin_inset Formula $\varsigma$
20080 \end_inset
20081
20082
20083 \end_layout
20084
20085 \end_inset
20086 </cell>
20087 </row>
20088 <row>
20089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20090 \begin_inset Text
20091
20092 \begin_layout Plain Layout
20093
20094 \backslash
20095 tau
20096 \end_layout
20097
20098 \end_inset
20099 </cell>
20100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20101 \begin_inset Text
20102
20103 \begin_layout Plain Layout
20104 \begin_inset Formula $\tau$
20105 \end_inset
20106
20107
20108 \end_layout
20109
20110 \end_inset
20111 </cell>
20112 </row>
20113 <row>
20114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20115 \begin_inset Text
20116
20117 \begin_layout Plain Layout
20118
20119 \backslash
20120 upsilon
20121 \end_layout
20122
20123 \end_inset
20124 </cell>
20125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20126 \begin_inset Text
20127
20128 \begin_layout Plain Layout
20129 \begin_inset Formula $\upsilon$
20130 \end_inset
20131
20132
20133 \end_layout
20134
20135 \end_inset
20136 </cell>
20137 </row>
20138 <row>
20139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20140 \begin_inset Text
20141
20142 \begin_layout Plain Layout
20143
20144 \backslash
20145 phi
20146 \end_layout
20147
20148 \end_inset
20149 </cell>
20150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20151 \begin_inset Text
20152
20153 \begin_layout Plain Layout
20154 \begin_inset Formula $\phi$
20155 \end_inset
20156
20157
20158 \end_layout
20159
20160 \end_inset
20161 </cell>
20162 </row>
20163 <row>
20164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20165 \begin_inset Text
20166
20167 \begin_layout Plain Layout
20168
20169 \backslash
20170 varphi
20171 \end_layout
20172
20173 \end_inset
20174 </cell>
20175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20176 \begin_inset Text
20177
20178 \begin_layout Plain Layout
20179 \begin_inset Formula $\varphi$
20180 \end_inset
20181
20182
20183 \end_layout
20184
20185 \end_inset
20186 </cell>
20187 </row>
20188 <row>
20189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20190 \begin_inset Text
20191
20192 \begin_layout Plain Layout
20193
20194 \backslash
20195 chi
20196 \end_layout
20197
20198 \end_inset
20199 </cell>
20200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20201 \begin_inset Text
20202
20203 \begin_layout Plain Layout
20204 \begin_inset Formula $\chi$
20205 \end_inset
20206
20207
20208 \end_layout
20209
20210 \end_inset
20211 </cell>
20212 </row>
20213 <row>
20214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20215 \begin_inset Text
20216
20217 \begin_layout Plain Layout
20218
20219 \backslash
20220 psi
20221 \end_layout
20222
20223 \end_inset
20224 </cell>
20225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20226 \begin_inset Text
20227
20228 \begin_layout Plain Layout
20229 \begin_inset Formula $\psi$
20230 \end_inset
20231
20232
20233 \end_layout
20234
20235 \end_inset
20236 </cell>
20237 </row>
20238 <row>
20239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20240 \begin_inset Text
20241
20242 \begin_layout Plain Layout
20243
20244 \backslash
20245 omega
20246 \end_layout
20247
20248 \end_inset
20249 </cell>
20250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20251 \begin_inset Text
20252
20253 \begin_layout Plain Layout
20254 \begin_inset Formula $\omega$
20255 \end_inset
20256
20257
20258 \end_layout
20259
20260 \end_inset
20261 </cell>
20262 </row>
20263 </lyxtabular>
20264
20265 \end_inset
20266
20267
20268 \begin_inset space \hfill{}
20269 \end_inset
20270
20271
20272 \end_layout
20273
20274 \begin_layout Standard
20275 \begin_inset VSpace medskip
20276 \end_inset
20277
20278
20279 \end_layout
20280
20281 \begin_layout Standard
20282 How to create upright Greek letters is explained in 
20283 \begin_inset CommandInset ref
20284 LatexCommand ref
20285 reference "sub:Upright-small-Greek"
20286
20287 \end_inset
20288
20289 .
20290 \end_layout
20291
20292 \begin_layout Subsection
20293 Big Letters
20294 \begin_inset Index
20295 status collapsed
20296
20297 \begin_layout Plain Layout
20298 Greek letters ! big
20299 \end_layout
20300
20301 \end_inset
20302
20303
20304 \end_layout
20305
20306 \begin_layout Standard
20307 \begin_inset space \hfill{}
20308 \end_inset
20309
20310
20311 \begin_inset Tabular
20312 <lyxtabular version="3" rows="7" columns="2">
20313 <features>
20314 <column alignment="center" valignment="top" width="0pt">
20315 <column alignment="center" valignment="top" width="0pt">
20316 <row>
20317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20318 \begin_inset Text
20319
20320 \begin_layout Plain Layout
20321 Command
20322 \end_layout
20323
20324 \end_inset
20325 </cell>
20326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20327 \begin_inset Text
20328
20329 \begin_layout Plain Layout
20330 Result
20331 \end_layout
20332
20333 \end_inset
20334 </cell>
20335 </row>
20336 <row>
20337 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20338 \begin_inset Text
20339
20340 \begin_layout Plain Layout
20341
20342 \backslash
20343 Gamma
20344 \end_layout
20345
20346 \end_inset
20347 </cell>
20348 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20349 \begin_inset Text
20350
20351 \begin_layout Plain Layout
20352 \begin_inset Formula $\Gamma$
20353 \end_inset
20354
20355
20356 \end_layout
20357
20358 \end_inset
20359 </cell>
20360 </row>
20361 <row>
20362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20363 \begin_inset Text
20364
20365 \begin_layout Plain Layout
20366
20367 \backslash
20368 Delta
20369 \end_layout
20370
20371 \end_inset
20372 </cell>
20373 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20374 \begin_inset Text
20375
20376 \begin_layout Plain Layout
20377 \begin_inset Formula $\Delta$
20378 \end_inset
20379
20380
20381 \end_layout
20382
20383 \end_inset
20384 </cell>
20385 </row>
20386 <row>
20387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20388 \begin_inset Text
20389
20390 \begin_layout Plain Layout
20391
20392 \backslash
20393 Theta
20394 \end_layout
20395
20396 \end_inset
20397 </cell>
20398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20399 \begin_inset Text
20400
20401 \begin_layout Plain Layout
20402 \begin_inset Formula $\Theta$
20403 \end_inset
20404
20405
20406 \end_layout
20407
20408 \end_inset
20409 </cell>
20410 </row>
20411 <row>
20412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20413 \begin_inset Text
20414
20415 \begin_layout Plain Layout
20416
20417 \backslash
20418 Lambda
20419 \end_layout
20420
20421 \end_inset
20422 </cell>
20423 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20424 \begin_inset Text
20425
20426 \begin_layout Plain Layout
20427 \begin_inset Formula $\Lambda$
20428 \end_inset
20429
20430
20431 \end_layout
20432
20433 \end_inset
20434 </cell>
20435 </row>
20436 <row>
20437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20438 \begin_inset Text
20439
20440 \begin_layout Plain Layout
20441
20442 \backslash
20443 Xi
20444 \end_layout
20445
20446 \end_inset
20447 </cell>
20448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20449 \begin_inset Text
20450
20451 \begin_layout Plain Layout
20452 \begin_inset Formula $\Xi$
20453 \end_inset
20454
20455
20456 \end_layout
20457
20458 \end_inset
20459 </cell>
20460 </row>
20461 <row>
20462 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20463 \begin_inset Text
20464
20465 \begin_layout Plain Layout
20466
20467 \backslash
20468 Pi
20469 \end_layout
20470
20471 \end_inset
20472 </cell>
20473 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20474 \begin_inset Text
20475
20476 \begin_layout Plain Layout
20477 \begin_inset Formula $\Pi$
20478 \end_inset
20479
20480
20481 \end_layout
20482
20483 \end_inset
20484 </cell>
20485 </row>
20486 </lyxtabular>
20487
20488 \end_inset
20489
20490
20491 \begin_inset space \hfill{}
20492 \end_inset
20493
20494
20495 \begin_inset Tabular
20496 <lyxtabular version="3" rows="6" columns="2">
20497 <features>
20498 <column alignment="center" valignment="top" width="0pt">
20499 <column alignment="center" valignment="top" width="0pt">
20500 <row>
20501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20502 \begin_inset Text
20503
20504 \begin_layout Plain Layout
20505 Command
20506 \end_layout
20507
20508 \end_inset
20509 </cell>
20510 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20511 \begin_inset Text
20512
20513 \begin_layout Plain Layout
20514 Result
20515 \end_layout
20516
20517 \end_inset
20518 </cell>
20519 </row>
20520 <row>
20521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20522 \begin_inset Text
20523
20524 \begin_layout Plain Layout
20525
20526 \backslash
20527 Sigma
20528 \end_layout
20529
20530 \end_inset
20531 </cell>
20532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20533 \begin_inset Text
20534
20535 \begin_layout Plain Layout
20536 \begin_inset Formula $\Sigma$
20537 \end_inset
20538
20539
20540 \end_layout
20541
20542 \end_inset
20543 </cell>
20544 </row>
20545 <row>
20546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20547 \begin_inset Text
20548
20549 \begin_layout Plain Layout
20550
20551 \backslash
20552 Upsilon
20553 \end_layout
20554
20555 \end_inset
20556 </cell>
20557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20558 \begin_inset Text
20559
20560 \begin_layout Plain Layout
20561 \begin_inset Formula $\Upsilon$
20562 \end_inset
20563
20564
20565 \end_layout
20566
20567 \end_inset
20568 </cell>
20569 </row>
20570 <row>
20571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20572 \begin_inset Text
20573
20574 \begin_layout Plain Layout
20575
20576 \backslash
20577 Phi
20578 \end_layout
20579
20580 \end_inset
20581 </cell>
20582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20583 \begin_inset Text
20584
20585 \begin_layout Plain Layout
20586 \begin_inset Formula $\Phi$
20587 \end_inset
20588
20589
20590 \end_layout
20591
20592 \end_inset
20593 </cell>
20594 </row>
20595 <row>
20596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20597 \begin_inset Text
20598
20599 \begin_layout Plain Layout
20600
20601 \backslash
20602 Psi
20603 \end_layout
20604
20605 \end_inset
20606 </cell>
20607 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20608 \begin_inset Text
20609
20610 \begin_layout Plain Layout
20611 \begin_inset Formula $\Psi$
20612 \end_inset
20613
20614
20615 \end_layout
20616
20617 \end_inset
20618 </cell>
20619 </row>
20620 <row>
20621 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20622 \begin_inset Text
20623
20624 \begin_layout Plain Layout
20625
20626 \backslash
20627 Omega
20628 \end_layout
20629
20630 \end_inset
20631 </cell>
20632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20633 \begin_inset Text
20634
20635 \begin_layout Plain Layout
20636 \begin_inset Formula $\Omega$
20637 \end_inset
20638
20639
20640 \end_layout
20641
20642 \end_inset
20643 </cell>
20644 </row>
20645 </lyxtabular>
20646
20647 \end_inset
20648
20649
20650 \begin_inset space \hfill{}
20651 \end_inset
20652
20653
20654 \end_layout
20655
20656 \begin_layout Standard
20657 \begin_inset VSpace medskip
20658 \end_inset
20659
20660 That the big Greek letters appear upright is caused by a design bug when
20661  TeX was developed.
20662  To get correct italic big letters, begin every command with 
20663 \series bold
20664 var
20665 \series default
20666 .
20667  For example the command 
20668 \series bold
20669
20670 \backslash
20671 varGamma
20672 \series default
20673  produces: 
20674 \begin_inset Formula $\varGamma$
20675 \end_inset
20676
20677
20678 \end_layout
20679
20680 \begin_layout Subsection
20681 Bold Letters
20682 \begin_inset Index
20683 status collapsed
20684
20685 \begin_layout Plain Layout
20686 Greek letters ! bold
20687 \end_layout
20688
20689 \end_inset
20690
20691
20692 \end_layout
20693
20694 \begin_layout Standard
20695 Greek letters cannot be set with different font styles like Latin letters.
20696  They can only be made bold with the command 
20697 \series bold
20698
20699 \backslash
20700 boldsymbol
20701 \series default
20702
20703 \begin_inset Index
20704 status collapsed
20705
20706 \begin_layout Plain Layout
20707 Commands ! B ! 
20708 \backslash
20709 boldsymbol
20710 \end_layout
20711
20712 \end_inset
20713
20714 .
20715 \end_layout
20716
20717 \begin_layout Standard
20718 \align center
20719 \begin_inset Tabular
20720 <lyxtabular version="3" rows="3" columns="2">
20721 <features>
20722 <column alignment="center" valignment="top" width="0">
20723 <column alignment="center" valignment="top" width="0">
20724 <row>
20725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20726 \begin_inset Text
20727
20728 \begin_layout Plain Layout
20729 Command
20730 \end_layout
20731
20732 \end_inset
20733 </cell>
20734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20735 \begin_inset Text
20736
20737 \begin_layout Plain Layout
20738 Result
20739 \end_layout
20740
20741 \end_inset
20742 </cell>
20743 </row>
20744 <row>
20745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20746 \begin_inset Text
20747
20748 \begin_layout Plain Layout
20749
20750 \backslash
20751 Upsilon
20752 \backslash
20753 boldsymbol
20754 \backslash
20755 Upsilon
20756 \end_layout
20757
20758 \end_inset
20759 </cell>
20760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20761 \begin_inset Text
20762
20763 \begin_layout Plain Layout
20764 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20765 \end_inset
20766
20767
20768 \end_layout
20769
20770 \end_inset
20771 </cell>
20772 </row>
20773 <row>
20774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20775 \begin_inset Text
20776
20777 \begin_layout Plain Layout
20778
20779 \backslash
20780 theta
20781 \backslash
20782 boldsymbol
20783 \backslash
20784 theta
20785 \end_layout
20786
20787 \end_inset
20788 </cell>
20789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20790 \begin_inset Text
20791
20792 \begin_layout Plain Layout
20793 \begin_inset Formula $\theta\boldsymbol{\theta}$
20794 \end_inset
20795
20796
20797 \end_layout
20798
20799 \end_inset
20800 </cell>
20801 </row>
20802 </lyxtabular>
20803
20804 \end_inset
20805
20806
20807 \end_layout
20808
20809 \begin_layout Section
20810 Symbols
20811 \begin_inset ERT
20812 status collapsed
20813
20814 \begin_layout Plain Layout
20815
20816
20817 \backslash
20818 texorpdfstring{
20819 \end_layout
20820
20821 \end_inset
20822
20823
20824 \begin_inset Foot
20825 status collapsed
20826
20827 \begin_layout Plain Layout
20828 A list with all symbols of most of the LaTeX-packages can be found in 
20829 \begin_inset CommandInset citation
20830 LatexCommand cite
20831 key "Symbols"
20832
20833 \end_inset
20834
20835 .
20836 \end_layout
20837
20838 \end_inset
20839
20840
20841 \begin_inset ERT
20842 status collapsed
20843
20844 \begin_layout Plain Layout
20845
20846 }{}
20847 \end_layout
20848
20849 \end_inset
20850
20851
20852 \begin_inset Note Note
20853 status collapsed
20854
20855 \begin_layout Plain Layout
20856
20857 \backslash
20858 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
20859 \end_layout
20860
20861 \begin_layout Plain Layout
20862 More about 
20863 \backslash
20864 texorpdfstring is in section 
20865 \begin_inset CommandInset ref
20866 LatexCommand ref
20867 reference "sub:Formulas-in-Section"
20868
20869 \end_inset
20870
20871 .
20872 \end_layout
20873
20874 \end_inset
20875
20876
20877 \begin_inset Index
20878 status collapsed
20879
20880 \begin_layout Plain Layout
20881 Symbols
20882 \end_layout
20883
20884 \end_inset
20885
20886
20887 \end_layout
20888
20889 \begin_layout Standard
20890 Many of the symbols listed in this section can also be inserted via the
20891  toolbar buttons 
20892 \begin_inset Graphics
20893         filename ../images/math/nabla.png
20894         scale 85
20895
20896 \end_inset
20897
20898  and 
20899 \begin_inset Graphics
20900         filename ../images/math/digamma.png
20901         scale 85
20902
20903 \end_inset
20904
20905 .
20906 \end_layout
20907
20908 \begin_layout Subsection
20909 Mathematical Symbols
20910 \begin_inset CommandInset label
20911 LatexCommand label
20912 name "sub:Mathematical-Symbols"
20913
20914 \end_inset
20915
20916
20917 \begin_inset Index
20918 status collapsed
20919
20920 \begin_layout Plain Layout
20921 Symbols ! mathematical
20922 \end_layout
20923
20924 \end_inset
20925
20926
20927 \end_layout
20928
20929 \begin_layout Standard
20930 \begin_inset space \hfill{}
20931 \end_inset
20932
20933
20934 \begin_inset Tabular
20935 <lyxtabular version="3" rows="10" columns="2">
20936 <features>
20937 <column alignment="center" valignment="top" width="0pt">
20938 <column alignment="center" valignment="top" width="0pt">
20939 <row>
20940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20941 \begin_inset Text
20942
20943 \begin_layout Plain Layout
20944 Command
20945 \end_layout
20946
20947 \end_inset
20948 </cell>
20949 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20950 \begin_inset Text
20951
20952 \begin_layout Plain Layout
20953 Result
20954 \end_layout
20955
20956 \end_inset
20957 </cell>
20958 </row>
20959 <row>
20960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20961 \begin_inset Text
20962
20963 \begin_layout Plain Layout
20964
20965 \backslash
20966 neg
20967 \end_layout
20968
20969 \end_inset
20970 </cell>
20971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20972 \begin_inset Text
20973
20974 \begin_layout Plain Layout
20975 \begin_inset Formula $\neg$
20976 \end_inset
20977
20978
20979 \end_layout
20980
20981 \end_inset
20982 </cell>
20983 </row>
20984 <row>
20985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20986 \begin_inset Text
20987
20988 \begin_layout Plain Layout
20989
20990 \backslash
20991 Im
20992 \end_layout
20993
20994 \end_inset
20995 </cell>
20996 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20997 \begin_inset Text
20998
20999 \begin_layout Plain Layout
21000 \begin_inset Formula $\Im$
21001 \end_inset
21002
21003
21004 \end_layout
21005
21006 \end_inset
21007 </cell>
21008 </row>
21009 <row>
21010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21011 \begin_inset Text
21012
21013 \begin_layout Plain Layout
21014
21015 \backslash
21016 Re
21017 \end_layout
21018
21019 \end_inset
21020 </cell>
21021 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21022 \begin_inset Text
21023
21024 \begin_layout Plain Layout
21025 \begin_inset Formula $\Re$
21026 \end_inset
21027
21028
21029 \end_layout
21030
21031 \end_inset
21032 </cell>
21033 </row>
21034 <row>
21035 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21036 \begin_inset Text
21037
21038 \begin_layout Plain Layout
21039
21040 \backslash
21041 aleph
21042 \end_layout
21043
21044 \end_inset
21045 </cell>
21046 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21047 \begin_inset Text
21048
21049 \begin_layout Plain Layout
21050 \begin_inset Formula $\aleph$
21051 \end_inset
21052
21053
21054 \end_layout
21055
21056 \end_inset
21057 </cell>
21058 </row>
21059 <row>
21060 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21061 \begin_inset Text
21062
21063 \begin_layout Plain Layout
21064
21065 \backslash
21066 partial
21067 \end_layout
21068
21069 \end_inset
21070 </cell>
21071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21072 \begin_inset Text
21073
21074 \begin_layout Plain Layout
21075 \begin_inset Formula $\partial$
21076 \end_inset
21077
21078
21079 \end_layout
21080
21081 \end_inset
21082 </cell>
21083 </row>
21084 <row>
21085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21086 \begin_inset Text
21087
21088 \begin_layout Plain Layout
21089
21090 \backslash
21091 infty
21092 \end_layout
21093
21094 \end_inset
21095 </cell>
21096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21097 \begin_inset Text
21098
21099 \begin_layout Plain Layout
21100 \begin_inset Formula $\infty$
21101 \end_inset
21102
21103
21104 \end_layout
21105
21106 \end_inset
21107 </cell>
21108 </row>
21109 <row>
21110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21111 \begin_inset Text
21112
21113 \begin_layout Plain Layout
21114
21115 \backslash
21116 wp
21117 \end_layout
21118
21119 \end_inset
21120 </cell>
21121 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21122 \begin_inset Text
21123
21124 \begin_layout Plain Layout
21125 \begin_inset Formula $\wp$
21126 \end_inset
21127
21128
21129 \end_layout
21130
21131 \end_inset
21132 </cell>
21133 </row>
21134 <row>
21135 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21136 \begin_inset Text
21137
21138 \begin_layout Plain Layout
21139
21140 \backslash
21141 imath
21142 \end_layout
21143
21144 \end_inset
21145 </cell>
21146 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21147 \begin_inset Text
21148
21149 \begin_layout Plain Layout
21150 \begin_inset Formula $\imath$
21151 \end_inset
21152
21153
21154 \end_layout
21155
21156 \end_inset
21157 </cell>
21158 </row>
21159 <row>
21160 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21161 \begin_inset Text
21162
21163 \begin_layout Plain Layout
21164
21165 \backslash
21166 jmath
21167 \end_layout
21168
21169 \end_inset
21170 </cell>
21171 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21172 \begin_inset Text
21173
21174 \begin_layout Plain Layout
21175 \begin_inset Formula $\jmath$
21176 \end_inset
21177
21178
21179 \end_layout
21180
21181 \end_inset
21182 </cell>
21183 </row>
21184 </lyxtabular>
21185
21186 \end_inset
21187
21188
21189 \begin_inset space \hfill{}
21190 \end_inset
21191
21192
21193 \begin_inset Tabular
21194 <lyxtabular version="3" rows="10" columns="2">
21195 <features>
21196 <column alignment="center" valignment="top" width="0pt">
21197 <column alignment="center" valignment="top" width="0pt">
21198 <row>
21199 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21200 \begin_inset Text
21201
21202 \begin_layout Plain Layout
21203 Command
21204 \end_layout
21205
21206 \end_inset
21207 </cell>
21208 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21209 \begin_inset Text
21210
21211 \begin_layout Plain Layout
21212 Result
21213 \begin_inset Note Note
21214 status collapsed
21215
21216 \begin_layout Plain Layout
21217
21218 \series bold
21219
21220 \backslash
21221 raisebox
21222 \series default
21223  is only used as spacer.
21224 \end_layout
21225
21226 \end_inset
21227
21228
21229 \end_layout
21230
21231 \end_inset
21232 </cell>
21233 </row>
21234 <row>
21235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21236 \begin_inset Text
21237
21238 \begin_layout Plain Layout
21239
21240 \backslash
21241 forall
21242 \end_layout
21243
21244 \end_inset
21245 </cell>
21246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21247 \begin_inset Text
21248
21249 \begin_layout Plain Layout
21250 \begin_inset Formula $\forall$
21251 \end_inset
21252
21253
21254 \end_layout
21255
21256 \end_inset
21257 </cell>
21258 </row>
21259 <row>
21260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21261 \begin_inset Text
21262
21263 \begin_layout Plain Layout
21264
21265 \backslash
21266 exists
21267 \end_layout
21268
21269 \end_inset
21270 </cell>
21271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21272 \begin_inset Text
21273
21274 \begin_layout Plain Layout
21275 \begin_inset Formula $\exists$
21276 \end_inset
21277
21278
21279 \end_layout
21280
21281 \end_inset
21282 </cell>
21283 </row>
21284 <row>
21285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21286 \begin_inset Text
21287
21288 \begin_layout Plain Layout
21289
21290 \backslash
21291 nexists
21292 \end_layout
21293
21294 \end_inset
21295 </cell>
21296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21297 \begin_inset Text
21298
21299 \begin_layout Plain Layout
21300 \begin_inset Formula $\nexists$
21301 \end_inset
21302
21303
21304 \end_layout
21305
21306 \end_inset
21307 </cell>
21308 </row>
21309 <row>
21310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21311 \begin_inset Text
21312
21313 \begin_layout Plain Layout
21314
21315 \backslash
21316 emptyset
21317 \end_layout
21318
21319 \end_inset
21320 </cell>
21321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21322 \begin_inset Text
21323
21324 \begin_layout Plain Layout
21325 \begin_inset Formula $\emptyset$
21326 \end_inset
21327
21328
21329 \end_layout
21330
21331 \end_inset
21332 </cell>
21333 </row>
21334 <row>
21335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21336 \begin_inset Text
21337
21338 \begin_layout Plain Layout
21339
21340 \backslash
21341 varnothing
21342 \end_layout
21343
21344 \end_inset
21345 </cell>
21346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21347 \begin_inset Text
21348
21349 \begin_layout Plain Layout
21350 \begin_inset Formula $\varnothing$
21351 \end_inset
21352
21353
21354 \end_layout
21355
21356 \end_inset
21357 </cell>
21358 </row>
21359 <row>
21360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21361 \begin_inset Text
21362
21363 \begin_layout Plain Layout
21364
21365 \backslash
21366 dag
21367 \end_layout
21368
21369 \end_inset
21370 </cell>
21371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21372 \begin_inset Text
21373
21374 \begin_layout Plain Layout
21375 \begin_inset Formula $\dag$
21376 \end_inset
21377
21378
21379 \end_layout
21380
21381 \end_inset
21382 </cell>
21383 </row>
21384 <row>
21385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21386 \begin_inset Text
21387
21388 \begin_layout Plain Layout
21389
21390 \backslash
21391 ddag
21392 \end_layout
21393
21394 \end_inset
21395 </cell>
21396 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21397 \begin_inset Text
21398
21399 \begin_layout Plain Layout
21400 \begin_inset Formula $\ddag$
21401 \end_inset
21402
21403
21404 \end_layout
21405
21406 \end_inset
21407 </cell>
21408 </row>
21409 <row>
21410 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21411 \begin_inset Text
21412
21413 \begin_layout Plain Layout
21414
21415 \backslash
21416 complement
21417 \end_layout
21418
21419 \end_inset
21420 </cell>
21421 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21422 \begin_inset Text
21423
21424 \begin_layout Plain Layout
21425 \begin_inset ERT
21426 status collapsed
21427
21428 \begin_layout Plain Layout
21429
21430
21431 \backslash
21432 raisebox{-0.8mm}{
21433 \end_layout
21434
21435 \end_inset
21436
21437
21438 \begin_inset Formula $\complement$
21439 \end_inset
21440
21441
21442 \begin_inset ERT
21443 status collapsed
21444
21445 \begin_layout Plain Layout
21446
21447 }
21448 \end_layout
21449
21450 \end_inset
21451
21452
21453 \end_layout
21454
21455 \end_inset
21456 </cell>
21457 </row>
21458 <row>
21459 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21460 \begin_inset Text
21461
21462 \begin_layout Plain Layout
21463
21464 \backslash
21465 Bbbk
21466 \end_layout
21467
21468 \end_inset
21469 </cell>
21470 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21471 \begin_inset Text
21472
21473 \begin_layout Plain Layout
21474 \begin_inset Formula $\Bbbk$
21475 \end_inset
21476
21477
21478 \end_layout
21479
21480 \end_inset
21481 </cell>
21482 </row>
21483 </lyxtabular>
21484
21485 \end_inset
21486
21487
21488 \begin_inset space \hfill{}
21489 \end_inset
21490
21491
21492 \begin_inset Tabular
21493 <lyxtabular version="3" rows="10" columns="2">
21494 <features>
21495 <column alignment="center" valignment="top" width="0pt">
21496 <column alignment="center" valignment="top" width="0pt">
21497 <row>
21498 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21499 \begin_inset Text
21500
21501 \begin_layout Plain Layout
21502 Command
21503 \end_layout
21504
21505 \end_inset
21506 </cell>
21507 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21508 \begin_inset Text
21509
21510 \begin_layout Plain Layout
21511 Result
21512 \end_layout
21513
21514 \end_inset
21515 </cell>
21516 </row>
21517 <row>
21518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21519 \begin_inset Text
21520
21521 \begin_layout Plain Layout
21522
21523 \backslash
21524 prime
21525 \end_layout
21526
21527 \end_inset
21528 </cell>
21529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21530 \begin_inset Text
21531
21532 \begin_layout Plain Layout
21533 \begin_inset Formula $\prime$
21534 \end_inset
21535
21536
21537 \end_layout
21538
21539 \end_inset
21540 </cell>
21541 </row>
21542 <row>
21543 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21544 \begin_inset Text
21545
21546 \begin_layout Plain Layout
21547
21548 \backslash
21549 backprime
21550 \end_layout
21551
21552 \end_inset
21553 </cell>
21554 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21555 \begin_inset Text
21556
21557 \begin_layout Plain Layout
21558 \begin_inset Formula $\backprime$
21559 \end_inset
21560
21561
21562 \end_layout
21563
21564 \end_inset
21565 </cell>
21566 </row>
21567 <row>
21568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21569 \begin_inset Text
21570
21571 \begin_layout Plain Layout
21572
21573 \backslash
21574 mho
21575 \end_layout
21576
21577 \end_inset
21578 </cell>
21579 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21580 \begin_inset Text
21581
21582 \begin_layout Plain Layout
21583 \begin_inset Formula $\mho$
21584 \end_inset
21585
21586
21587 \end_layout
21588
21589 \end_inset
21590 </cell>
21591 </row>
21592 <row>
21593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21594 \begin_inset Text
21595
21596 \begin_layout Plain Layout
21597
21598 \backslash
21599 triangle
21600 \end_layout
21601
21602 \end_inset
21603 </cell>
21604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21605 \begin_inset Text
21606
21607 \begin_layout Plain Layout
21608 \begin_inset Formula $\triangle$
21609 \end_inset
21610
21611
21612 \end_layout
21613
21614 \end_inset
21615 </cell>
21616 </row>
21617 <row>
21618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21619 \begin_inset Text
21620
21621 \begin_layout Plain Layout
21622
21623 \backslash
21624 angle
21625 \end_layout
21626
21627 \end_inset
21628 </cell>
21629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21630 \begin_inset Text
21631
21632 \begin_layout Plain Layout
21633 \begin_inset Formula $\angle$
21634 \end_inset
21635
21636
21637 \end_layout
21638
21639 \end_inset
21640 </cell>
21641 </row>
21642 <row>
21643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21644 \begin_inset Text
21645
21646 \begin_layout Plain Layout
21647
21648 \backslash
21649 measuredangle
21650 \end_layout
21651
21652 \end_inset
21653 </cell>
21654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21655 \begin_inset Text
21656
21657 \begin_layout Plain Layout
21658 \begin_inset Formula $\measuredangle$
21659 \end_inset
21660
21661
21662 \end_layout
21663
21664 \end_inset
21665 </cell>
21666 </row>
21667 <row>
21668 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21669 \begin_inset Text
21670
21671 \begin_layout Plain Layout
21672
21673 \backslash
21674 sphericalangle
21675 \end_layout
21676
21677 \end_inset
21678 </cell>
21679 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21680 \begin_inset Text
21681
21682 \begin_layout Plain Layout
21683 \begin_inset Formula $\sphericalangle$
21684 \end_inset
21685
21686
21687 \end_layout
21688
21689 \end_inset
21690 </cell>
21691 </row>
21692 <row>
21693 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21694 \begin_inset Text
21695
21696 \begin_layout Plain Layout
21697
21698 \backslash
21699 top
21700 \end_layout
21701
21702 \end_inset
21703 </cell>
21704 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21705 \begin_inset Text
21706
21707 \begin_layout Plain Layout
21708 \begin_inset Formula $\top$
21709 \end_inset
21710
21711
21712 \end_layout
21713
21714 \end_inset
21715 </cell>
21716 </row>
21717 <row>
21718 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21719 \begin_inset Text
21720
21721 \begin_layout Plain Layout
21722
21723 \backslash
21724 bot
21725 \end_layout
21726
21727 \end_inset
21728 </cell>
21729 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21730 \begin_inset Text
21731
21732 \begin_layout Plain Layout
21733 \begin_inset Formula $\bot$
21734 \end_inset
21735
21736
21737 \end_layout
21738
21739 \end_inset
21740 </cell>
21741 </row>
21742 </lyxtabular>
21743
21744 \end_inset
21745
21746
21747 \begin_inset space \hfill{}
21748 \end_inset
21749
21750
21751 \end_layout
21752
21753 \begin_layout Subsection
21754 Miscellaneous Symbols
21755 \begin_inset CommandInset label
21756 LatexCommand label
21757 name "sub:Miscellaneous-Symbols"
21758
21759 \end_inset
21760
21761
21762 \begin_inset Index
21763 status collapsed
21764
21765 \begin_layout Plain Layout
21766 Symbols ! miscellaneous
21767 \end_layout
21768
21769 \end_inset
21770
21771
21772 \end_layout
21773
21774 \begin_layout Standard
21775 \noindent
21776 \align center
21777 \begin_inset Tabular
21778 <lyxtabular version="3" rows="10" columns="2">
21779 <features>
21780 <column alignment="center" valignment="top" width="0pt">
21781 <column alignment="center" valignment="top" width="0pt">
21782 <row>
21783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21784 \begin_inset Text
21785
21786 \begin_layout Plain Layout
21787 Command
21788 \end_layout
21789
21790 \end_inset
21791 </cell>
21792 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21793 \begin_inset Text
21794
21795 \begin_layout Plain Layout
21796 Result
21797 \end_layout
21798
21799 \end_inset
21800 </cell>
21801 </row>
21802 <row>
21803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21804 \begin_inset Text
21805
21806 \begin_layout Plain Layout
21807
21808 \backslash
21809 flat
21810 \end_layout
21811
21812 \end_inset
21813 </cell>
21814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21815 \begin_inset Text
21816
21817 \begin_layout Plain Layout
21818 \begin_inset Formula $\flat$
21819 \end_inset
21820
21821
21822 \end_layout
21823
21824 \end_inset
21825 </cell>
21826 </row>
21827 <row>
21828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21829 \begin_inset Text
21830
21831 \begin_layout Plain Layout
21832
21833 \backslash
21834 natural
21835 \end_layout
21836
21837 \end_inset
21838 </cell>
21839 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21840 \begin_inset Text
21841
21842 \begin_layout Plain Layout
21843 \begin_inset Formula $\natural$
21844 \end_inset
21845
21846
21847 \end_layout
21848
21849 \end_inset
21850 </cell>
21851 </row>
21852 <row>
21853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21854 \begin_inset Text
21855
21856 \begin_layout Plain Layout
21857
21858 \backslash
21859 sharp
21860 \end_layout
21861
21862 \end_inset
21863 </cell>
21864 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21865 \begin_inset Text
21866
21867 \begin_layout Plain Layout
21868 \begin_inset Formula $\sharp$
21869 \end_inset
21870
21871
21872 \end_layout
21873
21874 \end_inset
21875 </cell>
21876 </row>
21877 <row>
21878 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21879 \begin_inset Text
21880
21881 \begin_layout Plain Layout
21882
21883 \backslash
21884 surd
21885 \end_layout
21886
21887 \end_inset
21888 </cell>
21889 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21890 \begin_inset Text
21891
21892 \begin_layout Plain Layout
21893 \begin_inset Formula $\surd$
21894 \end_inset
21895
21896
21897 \end_layout
21898
21899 \end_inset
21900 </cell>
21901 </row>
21902 <row>
21903 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21904 \begin_inset Text
21905
21906 \begin_layout Plain Layout
21907
21908 \backslash
21909 checkmark
21910 \end_layout
21911
21912 \end_inset
21913 </cell>
21914 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21915 \begin_inset Text
21916
21917 \begin_layout Plain Layout
21918 \begin_inset Formula $\checkmark$
21919 \end_inset
21920
21921
21922 \end_layout
21923
21924 \end_inset
21925 </cell>
21926 </row>
21927 <row>
21928 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21929 \begin_inset Text
21930
21931 \begin_layout Plain Layout
21932
21933 \backslash
21934 yen
21935 \end_layout
21936
21937 \end_inset
21938 </cell>
21939 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21940 \begin_inset Text
21941
21942 \begin_layout Plain Layout
21943 \begin_inset Formula $\yen$
21944 \end_inset
21945
21946
21947 \end_layout
21948
21949 \end_inset
21950 </cell>
21951 </row>
21952 <row>
21953 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21954 \begin_inset Text
21955
21956 \begin_layout Plain Layout
21957
21958 \backslash
21959 pounds
21960 \end_layout
21961
21962 \end_inset
21963 </cell>
21964 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21965 \begin_inset Text
21966
21967 \begin_layout Plain Layout
21968 \begin_inset Formula $\pounds$
21969 \end_inset
21970
21971
21972 \end_layout
21973
21974 \end_inset
21975 </cell>
21976 </row>
21977 <row>
21978 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21979 \begin_inset Text
21980
21981 \begin_layout Plain Layout
21982 $
21983 \end_layout
21984
21985 \end_inset
21986 </cell>
21987 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21988 \begin_inset Text
21989
21990 \begin_layout Plain Layout
21991 \begin_inset Formula $\$$
21992 \end_inset
21993
21994
21995 \end_layout
21996
21997 \end_inset
21998 </cell>
21999 </row>
22000 <row>
22001 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22002 \begin_inset Text
22003
22004 \begin_layout Plain Layout
22005 §
22006 \end_layout
22007
22008 \end_inset
22009 </cell>
22010 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22011 \begin_inset Text
22012
22013 \begin_layout Plain Layout
22014 \begin_inset Formula $§$
22015 \end_inset
22016
22017
22018 \end_layout
22019
22020 \end_inset
22021 </cell>
22022 </row>
22023 </lyxtabular>
22024
22025 \end_inset
22026
22027
22028 \begin_inset Tabular
22029 <lyxtabular version="3" rows="10" columns="2">
22030 <features>
22031 <column alignment="center" valignment="top" width="0">
22032 <column alignment="center" valignment="top" width="0">
22033 <row>
22034 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22035 \begin_inset Text
22036
22037 \begin_layout Plain Layout
22038 Command
22039 \end_layout
22040
22041 \end_inset
22042 </cell>
22043 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22044 \begin_inset Text
22045
22046 \begin_layout Plain Layout
22047 Result
22048 \end_layout
22049
22050 \end_inset
22051 </cell>
22052 </row>
22053 <row>
22054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22055 \begin_inset Text
22056
22057 \begin_layout Plain Layout
22058
22059 \backslash
22060 hbar
22061 \end_layout
22062
22063 \end_inset
22064 </cell>
22065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22066 \begin_inset Text
22067
22068 \begin_layout Plain Layout
22069 \begin_inset Formula $\hbar$
22070 \end_inset
22071
22072
22073 \end_layout
22074
22075 \end_inset
22076 </cell>
22077 </row>
22078 <row>
22079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22080 \begin_inset Text
22081
22082 \begin_layout Plain Layout
22083
22084 \backslash
22085 hslash
22086 \end_layout
22087
22088 \end_inset
22089 </cell>
22090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22091 \begin_inset Text
22092
22093 \begin_layout Plain Layout
22094 \begin_inset Formula $\hslash$
22095 \end_inset
22096
22097
22098 \end_layout
22099
22100 \end_inset
22101 </cell>
22102 </row>
22103 <row>
22104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22105 \begin_inset Text
22106
22107 \begin_layout Plain Layout
22108
22109 \backslash
22110 clubsuit
22111 \end_layout
22112
22113 \end_inset
22114 </cell>
22115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22116 \begin_inset Text
22117
22118 \begin_layout Plain Layout
22119 \begin_inset Formula $\clubsuit$
22120 \end_inset
22121
22122
22123 \end_layout
22124
22125 \end_inset
22126 </cell>
22127 </row>
22128 <row>
22129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22130 \begin_inset Text
22131
22132 \begin_layout Plain Layout
22133
22134 \backslash
22135 spadesuit
22136 \end_layout
22137
22138 \end_inset
22139 </cell>
22140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22141 \begin_inset Text
22142
22143 \begin_layout Plain Layout
22144 \begin_inset Formula $\spadesuit$
22145 \end_inset
22146
22147
22148 \end_layout
22149
22150 \end_inset
22151 </cell>
22152 </row>
22153 <row>
22154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22155 \begin_inset Text
22156
22157 \begin_layout Plain Layout
22158
22159 \backslash
22160 bigstar
22161 \end_layout
22162
22163 \end_inset
22164 </cell>
22165 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22166 \begin_inset Text
22167
22168 \begin_layout Plain Layout
22169 \begin_inset Formula $\bigstar$
22170 \end_inset
22171
22172
22173 \end_layout
22174
22175 \end_inset
22176 </cell>
22177 </row>
22178 <row>
22179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22180 \begin_inset Text
22181
22182 \begin_layout Plain Layout
22183
22184 \backslash
22185 blacklozenge
22186 \end_layout
22187
22188 \end_inset
22189 </cell>
22190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22191 \begin_inset Text
22192
22193 \begin_layout Plain Layout
22194 \begin_inset Formula $\blacklozenge$
22195 \end_inset
22196
22197
22198 \end_layout
22199
22200 \end_inset
22201 </cell>
22202 </row>
22203 <row>
22204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22205 \begin_inset Text
22206
22207 \begin_layout Plain Layout
22208
22209 \backslash
22210 blacktriangle
22211 \end_layout
22212
22213 \end_inset
22214 </cell>
22215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22216 \begin_inset Text
22217
22218 \begin_layout Plain Layout
22219 \begin_inset Formula $\blacktriangle$
22220 \end_inset
22221
22222
22223 \end_layout
22224
22225 \end_inset
22226 </cell>
22227 </row>
22228 <row>
22229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22230 \begin_inset Text
22231
22232 \begin_layout Plain Layout
22233
22234 \backslash
22235 blacktiangledown
22236 \end_layout
22237
22238 \end_inset
22239 </cell>
22240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22241 \begin_inset Text
22242
22243 \begin_layout Plain Layout
22244 \begin_inset Formula $\blacktriangledown$
22245 \end_inset
22246
22247
22248 \end_layout
22249
22250 \end_inset
22251 </cell>
22252 </row>
22253 <row>
22254 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22255 \begin_inset Text
22256
22257 \begin_layout Plain Layout
22258
22259 \backslash
22260 bullet
22261 \end_layout
22262
22263 \end_inset
22264 </cell>
22265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22266 \begin_inset Text
22267
22268 \begin_layout Plain Layout
22269 \begin_inset Formula $\bullet$
22270 \end_inset
22271
22272
22273 \end_layout
22274
22275 \end_inset
22276 </cell>
22277 </row>
22278 </lyxtabular>
22279
22280 \end_inset
22281
22282
22283 \begin_inset Tabular
22284 <lyxtabular version="3" rows="10" columns="2">
22285 <features>
22286 <column alignment="center" valignment="top" width="0pt">
22287 <column alignment="center" valignment="top" width="0pt">
22288 <row>
22289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22290 \begin_inset Text
22291
22292 \begin_layout Plain Layout
22293 Command
22294 \end_layout
22295
22296 \end_inset
22297 </cell>
22298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22299 \begin_inset Text
22300
22301 \begin_layout Plain Layout
22302 Result
22303 \end_layout
22304
22305 \end_inset
22306 </cell>
22307 </row>
22308 <row>
22309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22310 \begin_inset Text
22311
22312 \begin_layout Plain Layout
22313
22314 \backslash
22315 diamondsuit
22316 \end_layout
22317
22318 \end_inset
22319 </cell>
22320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22321 \begin_inset Text
22322
22323 \begin_layout Plain Layout
22324 \begin_inset Formula $\diamondsuit$
22325 \end_inset
22326
22327
22328 \end_layout
22329
22330 \end_inset
22331 </cell>
22332 </row>
22333 <row>
22334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22335 \begin_inset Text
22336
22337 \begin_layout Plain Layout
22338
22339 \backslash
22340 Diamond
22341 \end_layout
22342
22343 \end_inset
22344 </cell>
22345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22346 \begin_inset Text
22347
22348 \begin_layout Plain Layout
22349 \begin_inset Formula $\Diamond$
22350 \end_inset
22351
22352
22353 \end_layout
22354
22355 \end_inset
22356 </cell>
22357 </row>
22358 <row>
22359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22360 \begin_inset Text
22361
22362 \begin_layout Plain Layout
22363
22364 \backslash
22365 heartsuit
22366 \end_layout
22367
22368 \end_inset
22369 </cell>
22370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22371 \begin_inset Text
22372
22373 \begin_layout Plain Layout
22374 \begin_inset Formula $\heartsuit$
22375 \end_inset
22376
22377
22378 \end_layout
22379
22380 \end_inset
22381 </cell>
22382 </row>
22383 <row>
22384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22385 \begin_inset Text
22386
22387 \begin_layout Plain Layout
22388
22389 \backslash
22390 P
22391 \end_layout
22392
22393 \end_inset
22394 </cell>
22395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22396 \begin_inset Text
22397
22398 \begin_layout Plain Layout
22399 \begin_inset Formula $\P$
22400 \end_inset
22401
22402
22403 \end_layout
22404
22405 \end_inset
22406 </cell>
22407 </row>
22408 <row>
22409 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22410 \begin_inset Text
22411
22412 \begin_layout Plain Layout
22413
22414 \backslash
22415 copyright
22416 \end_layout
22417
22418 \end_inset
22419 </cell>
22420 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22421 \begin_inset Text
22422
22423 \begin_layout Plain Layout
22424 \begin_inset Formula $\copyright$
22425 \end_inset
22426
22427
22428 \end_layout
22429
22430 \end_inset
22431 </cell>
22432 </row>
22433 <row>
22434 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22435 \begin_inset Text
22436
22437 \begin_layout Plain Layout
22438
22439 \backslash
22440 circledR
22441 \end_layout
22442
22443 \end_inset
22444 </cell>
22445 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22446 \begin_inset Text
22447
22448 \begin_layout Plain Layout
22449 \begin_inset Formula $\circledR$
22450 \end_inset
22451
22452
22453 \end_layout
22454
22455 \end_inset
22456 </cell>
22457 </row>
22458 <row>
22459 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22460 \begin_inset Text
22461
22462 \begin_layout Plain Layout
22463
22464 \backslash
22465 maltese
22466 \end_layout
22467
22468 \end_inset
22469 </cell>
22470 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22471 \begin_inset Text
22472
22473 \begin_layout Plain Layout
22474 \begin_inset Formula $\maltese$
22475 \end_inset
22476
22477
22478 \end_layout
22479
22480 \end_inset
22481 </cell>
22482 </row>
22483 <row>
22484 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22485 \begin_inset Text
22486
22487 \begin_layout Plain Layout
22488
22489 \backslash
22490 diagup
22491 \end_layout
22492
22493 \end_inset
22494 </cell>
22495 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22496 \begin_inset Text
22497
22498 \begin_layout Plain Layout
22499 \begin_inset Formula $\diagup$
22500 \end_inset
22501
22502
22503 \end_layout
22504
22505 \end_inset
22506 </cell>
22507 </row>
22508 <row>
22509 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22510 \begin_inset Text
22511
22512 \begin_layout Plain Layout
22513
22514 \backslash
22515 diagdown
22516 \end_layout
22517
22518 \end_inset
22519 </cell>
22520 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22521 \begin_inset Text
22522
22523 \begin_layout Plain Layout
22524 \begin_inset Formula $\diagdown$
22525 \end_inset
22526
22527
22528 \end_layout
22529
22530 \end_inset
22531 </cell>
22532 </row>
22533 </lyxtabular>
22534
22535 \end_inset
22536
22537
22538 \end_layout
22539
22540 \begin_layout Standard
22541 \begin_inset VSpace medskip
22542 \end_inset
22543
22544 More symbols are listed in 
22545 \begin_inset CommandInset ref
22546 LatexCommand ref
22547 reference "sub:Miscellaneous-special-Characters"
22548
22549 \end_inset
22550
22551 .
22552 \end_layout
22553
22554 \begin_layout Standard
22555 Some symbols can be displayed in different sizes, see 
22556 \begin_inset CommandInset ref
22557 LatexCommand ref
22558 reference "sub:Font-Sizes"
22559
22560 \end_inset
22561
22562 .
22563 \end_layout
22564
22565 \begin_layout Subsection
22566 The Euro-Symbol €
22567 \begin_inset Index
22568 status collapsed
22569
22570 \begin_layout Plain Layout
22571 Symbols ! Euro-symbol
22572 \end_layout
22573
22574 \end_inset
22575
22576
22577 \begin_inset Index
22578 status collapsed
22579
22580 \begin_layout Plain Layout
22581
22582 \backslash
22583 @
22584 \begin_inset ERT
22585 status collapsed
22586
22587 \begin_layout Plain Layout
22588
22589
22590 \backslash
22591 officialeuro
22592 \end_layout
22593
22594 \end_inset
22595
22596
22597 \end_layout
22598
22599 \end_inset
22600
22601
22602 \end_layout
22603
22604 \begin_layout Standard
22605 To use the Euro symbol in formulas, the LaTeX-package 
22606 \series bold
22607 eurosym
22608 \series default
22609
22610 \begin_inset Index
22611 status collapsed
22612
22613 \begin_layout Plain Layout
22614 Packages ! eurosym
22615 \end_layout
22616
22617 \end_inset
22618
22619  must be installed and loaded with the LaTeX-preamble line
22620 \end_layout
22621
22622 \begin_layout Standard
22623
22624 \series bold
22625
22626 \backslash
22627 usepackage[gennarrow]{eurosym}
22628 \end_layout
22629
22630 \begin_layout Standard
22631 The Euro symbol can now be inserted with the command 
22632 \series bold
22633
22634 \backslash
22635 euro
22636 \series default
22637
22638 \begin_inset Index
22639 status collapsed
22640
22641 \begin_layout Plain Layout
22642 Commands ! E ! 
22643 \backslash
22644 euro
22645 \end_layout
22646
22647 \end_inset
22648
22649 .
22650 \end_layout
22651
22652 \begin_layout Standard
22653 The Euro symbol can directly be inserted with the € key in mathematical
22654  text, without having 
22655 \series bold
22656 eurosym
22657 \series default
22658  installed.
22659  When 
22660 \series bold
22661 eurosym
22662 \series default
22663  is installed, 
22664 \series bold
22665
22666 \backslash
22667 euro
22668 \series default
22669  can also be inserted in TeX-mode.
22670  The official currency symbol can then be inserted with the command 
22671 \series bold
22672
22673 \backslash
22674 officialeuro
22675 \series default
22676
22677 \begin_inset Index
22678 status collapsed
22679
22680 \begin_layout Plain Layout
22681 Commands ! O ! 
22682 \backslash
22683 officialeuro
22684 \end_layout
22685
22686 \end_inset
22687
22688 , that is only available in TeX-mode.
22689 \end_layout
22690
22691 \begin_layout Standard
22692 \begin_inset ERT
22693 status collapsed
22694
22695 \begin_layout Plain Layout
22696
22697
22698 \backslash
22699 ifeurosym 
22700 \end_layout
22701
22702 \end_inset
22703
22704
22705 \begin_inset Note Note
22706 status open
22707
22708 \begin_layout Plain Layout
22709 The following table will only be displayed when the LaTeX-package 
22710 \series bold
22711 eurosym
22712 \series default
22713  is installed.
22714 \end_layout
22715
22716 \end_inset
22717
22718
22719 \end_layout
22720
22721 \begin_layout Standard
22722 An overview about the different Euro symbols:
22723 \end_layout
22724
22725 \begin_layout Standard
22726 \align center
22727 \begin_inset Tabular
22728 <lyxtabular version="3" rows="4" columns="3">
22729 <features>
22730 <column alignment="center" valignment="top" width="0pt">
22731 <column alignment="center" valignment="top" width="0pt">
22732 <column alignment="center" valignment="top" width="0pt">
22733 <row>
22734 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22735 \begin_inset Text
22736
22737 \begin_layout Plain Layout
22738
22739 \end_layout
22740
22741 \end_inset
22742 </cell>
22743 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22744 \begin_inset Text
22745
22746 \begin_layout Plain Layout
22747 Command 
22748 \end_layout
22749
22750 \end_inset
22751 </cell>
22752 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22753 \begin_inset Text
22754
22755 \begin_layout Plain Layout
22756 Result
22757 \end_layout
22758
22759 \end_inset
22760 </cell>
22761 </row>
22762 <row>
22763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22764 \begin_inset Text
22765
22766 \begin_layout Plain Layout
22767 formula
22768 \end_layout
22769
22770 \end_inset
22771 </cell>
22772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22773 \begin_inset Text
22774
22775 \begin_layout Plain Layout
22776
22777 \backslash
22778 euro
22779 \end_layout
22780
22781 \end_inset
22782 </cell>
22783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22784 \begin_inset Text
22785
22786 \begin_layout Plain Layout
22787 \begin_inset Formula $\euro$
22788 \end_inset
22789
22790
22791 \end_layout
22792
22793 \end_inset
22794 </cell>
22795 </row>
22796 <row>
22797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22798 \begin_inset Text
22799
22800 \begin_layout Plain Layout
22801 mathematical text
22802 \end_layout
22803
22804 \end_inset
22805 </cell>
22806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22807 \begin_inset Text
22808
22809 \begin_layout Plain Layout
22810
22811 \end_layout
22812
22813 \end_inset
22814 </cell>
22815 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22816 \begin_inset Text
22817
22818 \begin_layout Plain Layout
22819 \begin_inset Formula $\mbox{€}$
22820 \end_inset
22821
22822
22823 \end_layout
22824
22825 \end_inset
22826 </cell>
22827 </row>
22828 <row>
22829 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22830 \begin_inset Text
22831
22832 \begin_layout Plain Layout
22833 TeX-mode
22834 \end_layout
22835
22836 \end_inset
22837 </cell>
22838 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22839 \begin_inset Text
22840
22841 \begin_layout Plain Layout
22842
22843 \backslash
22844 officialeuro
22845 \end_layout
22846
22847 \end_inset
22848 </cell>
22849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22850 \begin_inset Text
22851
22852 \begin_layout Plain Layout
22853 \begin_inset ERT
22854 status collapsed
22855
22856 \begin_layout Plain Layout
22857
22858
22859 \backslash
22860 officialeuro
22861 \end_layout
22862
22863 \end_inset
22864
22865
22866 \end_layout
22867
22868 \end_inset
22869 </cell>
22870 </row>
22871 </lyxtabular>
22872
22873 \end_inset
22874
22875
22876 \end_layout
22877
22878 \begin_layout Standard
22879 \begin_inset ERT
22880 status collapsed
22881
22882 \begin_layout Plain Layout
22883
22884
22885 \backslash
22886 else 
22887 \end_layout
22888
22889 \end_inset
22890
22891
22892 \begin_inset Note Note
22893 status open
22894
22895 \begin_layout Plain Layout
22896 The following will be displayed when the LaTeX-package 
22897 \series bold
22898 eurosym
22899 \series default
22900  is not installed:
22901 \end_layout
22902
22903 \end_inset
22904
22905
22906 \end_layout
22907
22908 \begin_layout Standard
22909 You need to install the LaTeX-package 
22910 \series bold
22911 eurosym
22912 \series default
22913  to see the rest of this subsection in the output.
22914 \end_layout
22915
22916 \begin_layout Standard
22917 \begin_inset ERT
22918 status collapsed
22919
22920 \begin_layout Plain Layout
22921
22922
22923 \backslash
22924 fi 
22925 \end_layout
22926
22927 \end_inset
22928
22929
22930 \end_layout
22931
22932 \begin_layout Section
22933 Relations
22934 \begin_inset CommandInset label
22935 LatexCommand label
22936 name "sec:Relations"
22937
22938 \end_inset
22939
22940
22941 \begin_inset Index
22942 status collapsed
22943
22944 \begin_layout Plain Layout
22945 Relations
22946 \end_layout
22947
22948 \end_inset
22949
22950
22951 \begin_inset Index
22952 status collapsed
22953
22954 \begin_layout Plain Layout
22955 Comparisons|see
22956 \begin_inset ERT
22957 status collapsed
22958
22959 \begin_layout Plain Layout
22960
22961 {
22962 \end_layout
22963
22964 \end_inset
22965
22966 Relations
22967 \begin_inset ERT
22968 status collapsed
22969
22970 \begin_layout Plain Layout
22971
22972 }
22973 \end_layout
22974
22975 \end_inset
22976
22977
22978 \end_layout
22979
22980 \end_inset
22981
22982
22983 \end_layout
22984
22985 \begin_layout Standard
22986 All relations can also be inserted via the toolbar button 
22987 \begin_inset Graphics
22988         filename ../images/math/leq.png
22989         scale 85
22990
22991 \end_inset
22992
22993 .
22994 \end_layout
22995
22996 \begin_layout Standard
22997 \begin_inset space \hfill{}
22998 \end_inset
22999
23000
23001 \begin_inset Tabular
23002 <lyxtabular version="3" rows="17" columns="2">
23003 <features>
23004 <column alignment="center" valignment="top" width="0pt">
23005 <column alignment="center" valignment="top" width="0pt">
23006 <row>
23007 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23008 \begin_inset Text
23009
23010 \begin_layout Plain Layout
23011 Command
23012 \end_layout
23013
23014 \end_inset
23015 </cell>
23016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23017 \begin_inset Text
23018
23019 \begin_layout Plain Layout
23020 Result
23021 \end_layout
23022
23023 \end_inset
23024 </cell>
23025 </row>
23026 <row>
23027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23028 \begin_inset Text
23029
23030 \begin_layout Plain Layout
23031 <
23032 \end_layout
23033
23034 \end_inset
23035 </cell>
23036 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23037 \begin_inset Text
23038
23039 \begin_layout Plain Layout
23040 \begin_inset Formula $<$
23041 \end_inset
23042
23043
23044 \end_layout
23045
23046 \end_inset
23047 </cell>
23048 </row>
23049 <row>
23050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23051 \begin_inset Text
23052
23053 \begin_layout Plain Layout
23054
23055 \backslash
23056 le
23057 \end_layout
23058
23059 \end_inset
23060 </cell>
23061 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23062 \begin_inset Text
23063
23064 \begin_layout Plain Layout
23065 \begin_inset Formula $\le$
23066 \end_inset
23067
23068
23069 \end_layout
23070
23071 \end_inset
23072 </cell>
23073 </row>
23074 <row>
23075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23076 \begin_inset Text
23077
23078 \begin_layout Plain Layout
23079
23080 \backslash
23081 ll
23082 \end_layout
23083
23084 \end_inset
23085 </cell>
23086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23087 \begin_inset Text
23088
23089 \begin_layout Plain Layout
23090 \begin_inset Formula $\ll$
23091 \end_inset
23092
23093
23094 \end_layout
23095
23096 \end_inset
23097 </cell>
23098 </row>
23099 <row>
23100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23101 \begin_inset Text
23102
23103 \begin_layout Plain Layout
23104
23105 \backslash
23106 prec
23107 \end_layout
23108
23109 \end_inset
23110 </cell>
23111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23112 \begin_inset Text
23113
23114 \begin_layout Plain Layout
23115 \begin_inset Formula $\prec$
23116 \end_inset
23117
23118
23119 \end_layout
23120
23121 \end_inset
23122 </cell>
23123 </row>
23124 <row>
23125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23126 \begin_inset Text
23127
23128 \begin_layout Plain Layout
23129
23130 \backslash
23131 preceq
23132 \end_layout
23133
23134 \end_inset
23135 </cell>
23136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23137 \begin_inset Text
23138
23139 \begin_layout Plain Layout
23140 \begin_inset Formula $\preceq$
23141 \end_inset
23142
23143
23144 \end_layout
23145
23146 \end_inset
23147 </cell>
23148 </row>
23149 <row>
23150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23151 \begin_inset Text
23152
23153 \begin_layout Plain Layout
23154
23155 \backslash
23156 subset
23157 \end_layout
23158
23159 \end_inset
23160 </cell>
23161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23162 \begin_inset Text
23163
23164 \begin_layout Plain Layout
23165 \begin_inset Formula $\subset$
23166 \end_inset
23167
23168
23169 \end_layout
23170
23171 \end_inset
23172 </cell>
23173 </row>
23174 <row>
23175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23176 \begin_inset Text
23177
23178 \begin_layout Plain Layout
23179
23180 \backslash
23181 subseteq
23182 \end_layout
23183
23184 \end_inset
23185 </cell>
23186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23187 \begin_inset Text
23188
23189 \begin_layout Plain Layout
23190 \begin_inset Formula $\subseteq$
23191 \end_inset
23192
23193
23194 \end_layout
23195
23196 \end_inset
23197 </cell>
23198 </row>
23199 <row>
23200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23201 \begin_inset Text
23202
23203 \begin_layout Plain Layout
23204
23205 \backslash
23206 sqsubseteq
23207 \end_layout
23208
23209 \end_inset
23210 </cell>
23211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23212 \begin_inset Text
23213
23214 \begin_layout Plain Layout
23215 \begin_inset Formula $\sqsubseteq$
23216 \end_inset
23217
23218
23219 \end_layout
23220
23221 \end_inset
23222 </cell>
23223 </row>
23224 <row>
23225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23226 \begin_inset Text
23227
23228 \begin_layout Plain Layout
23229
23230 \backslash
23231 in
23232 \end_layout
23233
23234 \end_inset
23235 </cell>
23236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23237 \begin_inset Text
23238
23239 \begin_layout Plain Layout
23240 \begin_inset Formula $\in$
23241 \end_inset
23242
23243
23244 \end_layout
23245
23246 \end_inset
23247 </cell>
23248 </row>
23249 <row>
23250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23251 \begin_inset Text
23252
23253 \begin_layout Plain Layout
23254
23255 \backslash
23256 vdash
23257 \end_layout
23258
23259 \end_inset
23260 </cell>
23261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23262 \begin_inset Text
23263
23264 \begin_layout Plain Layout
23265 \begin_inset Formula $\vdash$
23266 \end_inset
23267
23268
23269 \end_layout
23270
23271 \end_inset
23272 </cell>
23273 </row>
23274 <row>
23275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23276 \begin_inset Text
23277
23278 \begin_layout Plain Layout
23279
23280 \backslash
23281 smile
23282 \end_layout
23283
23284 \end_inset
23285 </cell>
23286 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23287 \begin_inset Text
23288
23289 \begin_layout Plain Layout
23290 \begin_inset Formula $\smile$
23291 \end_inset
23292
23293
23294 \end_layout
23295
23296 \end_inset
23297 </cell>
23298 </row>
23299 <row>
23300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23301 \begin_inset Text
23302
23303 \begin_layout Plain Layout
23304
23305 \backslash
23306 lhd
23307 \end_layout
23308
23309 \end_inset
23310 </cell>
23311 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23312 \begin_inset Text
23313
23314 \begin_layout Plain Layout
23315 \begin_inset Formula $\lhd$
23316 \end_inset
23317
23318
23319 \end_layout
23320
23321 \end_inset
23322 </cell>
23323 </row>
23324 <row>
23325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23326 \begin_inset Text
23327
23328 \begin_layout Plain Layout
23329
23330 \backslash
23331 unlhd
23332 \end_layout
23333
23334 \end_inset
23335 </cell>
23336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23337 \begin_inset Text
23338
23339 \begin_layout Plain Layout
23340 \begin_inset Formula $\unlhd$
23341 \end_inset
23342
23343
23344 \end_layout
23345
23346 \end_inset
23347 </cell>
23348 </row>
23349 <row>
23350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23351 \begin_inset Text
23352
23353 \begin_layout Plain Layout
23354
23355 \backslash
23356 gtrless
23357 \end_layout
23358
23359 \end_inset
23360 </cell>
23361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23362 \begin_inset Text
23363
23364 \begin_layout Plain Layout
23365 \begin_inset Formula $\gtrless$
23366 \end_inset
23367
23368
23369 \end_layout
23370
23371 \end_inset
23372 </cell>
23373 </row>
23374 <row>
23375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23376 \begin_inset Text
23377
23378 \begin_layout Plain Layout
23379
23380 \backslash
23381 mid
23382 \end_layout
23383
23384 \end_inset
23385 </cell>
23386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23387 \begin_inset Text
23388
23389 \begin_layout Plain Layout
23390 \begin_inset Formula $\mid$
23391 \end_inset
23392
23393
23394 \end_layout
23395
23396 \end_inset
23397 </cell>
23398 </row>
23399 <row>
23400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23401 \begin_inset Text
23402
23403 \begin_layout Plain Layout
23404
23405 \backslash
23406 nmid
23407 \end_layout
23408
23409 \end_inset
23410 </cell>
23411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23412 \begin_inset Text
23413
23414 \begin_layout Plain Layout
23415 \begin_inset Formula $\nmid$
23416 \end_inset
23417
23418
23419 \end_layout
23420
23421 \end_inset
23422 </cell>
23423 </row>
23424 </lyxtabular>
23425
23426 \end_inset
23427
23428
23429 \begin_inset space \hfill{}
23430 \end_inset
23431
23432
23433 \begin_inset Tabular
23434 <lyxtabular version="3" rows="17" columns="2">
23435 <features>
23436 <column alignment="center" valignment="top" width="0pt">
23437 <column alignment="center" valignment="top" width="0pt">
23438 <row>
23439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23440 \begin_inset Text
23441
23442 \begin_layout Plain Layout
23443 Command
23444 \end_layout
23445
23446 \end_inset
23447 </cell>
23448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23449 \begin_inset Text
23450
23451 \begin_layout Plain Layout
23452 Result
23453 \end_layout
23454
23455 \end_inset
23456 </cell>
23457 </row>
23458 <row>
23459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23460 \begin_inset Text
23461
23462 \begin_layout Plain Layout
23463 =
23464 \end_layout
23465
23466 \end_inset
23467 </cell>
23468 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23469 \begin_inset Text
23470
23471 \begin_layout Plain Layout
23472 \begin_inset Formula $=$
23473 \end_inset
23474
23475
23476 \end_layout
23477
23478 \end_inset
23479 </cell>
23480 </row>
23481 <row>
23482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23483 \begin_inset Text
23484
23485 \begin_layout Plain Layout
23486
23487 \backslash
23488 not=
23489 \end_layout
23490
23491 \end_inset
23492 </cell>
23493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23494 \begin_inset Text
23495
23496 \begin_layout Plain Layout
23497 \begin_inset Formula $\not=$
23498 \end_inset
23499
23500
23501 \end_layout
23502
23503 \end_inset
23504 </cell>
23505 </row>
23506 <row>
23507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23508 \begin_inset Text
23509
23510 \begin_layout Plain Layout
23511
23512 \backslash
23513 equiv
23514 \end_layout
23515
23516 \end_inset
23517 </cell>
23518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23519 \begin_inset Text
23520
23521 \begin_layout Plain Layout
23522 \begin_inset Formula $\equiv$
23523 \end_inset
23524
23525
23526 \end_layout
23527
23528 \end_inset
23529 </cell>
23530 </row>
23531 <row>
23532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23533 \begin_inset Text
23534
23535 \begin_layout Plain Layout
23536
23537 \backslash
23538 sim
23539 \end_layout
23540
23541 \end_inset
23542 </cell>
23543 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23544 \begin_inset Text
23545
23546 \begin_layout Plain Layout
23547 \begin_inset Formula $\sim$
23548 \end_inset
23549
23550
23551 \end_layout
23552
23553 \end_inset
23554 </cell>
23555 </row>
23556 <row>
23557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23558 \begin_inset Text
23559
23560 \begin_layout Plain Layout
23561
23562 \backslash
23563 simeq
23564 \end_layout
23565
23566 \end_inset
23567 </cell>
23568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23569 \begin_inset Text
23570
23571 \begin_layout Plain Layout
23572 \begin_inset Formula $\simeq$
23573 \end_inset
23574
23575
23576 \end_layout
23577
23578 \end_inset
23579 </cell>
23580 </row>
23581 <row>
23582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23583 \begin_inset Text
23584
23585 \begin_layout Plain Layout
23586
23587 \backslash
23588 approx
23589 \end_layout
23590
23591 \end_inset
23592 </cell>
23593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23594 \begin_inset Text
23595
23596 \begin_layout Plain Layout
23597 \begin_inset Formula $\approx$
23598 \end_inset
23599
23600
23601 \end_layout
23602
23603 \end_inset
23604 </cell>
23605 </row>
23606 <row>
23607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23608 \begin_inset Text
23609
23610 \begin_layout Plain Layout
23611
23612 \backslash
23613 cong
23614 \end_layout
23615
23616 \end_inset
23617 </cell>
23618 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23619 \begin_inset Text
23620
23621 \begin_layout Plain Layout
23622 \begin_inset Formula $\cong$
23623 \end_inset
23624
23625
23626 \end_layout
23627
23628 \end_inset
23629 </cell>
23630 </row>
23631 <row>
23632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23633 \begin_inset Text
23634
23635 \begin_layout Plain Layout
23636
23637 \backslash
23638 bowtie
23639 \end_layout
23640
23641 \end_inset
23642 </cell>
23643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23644 \begin_inset Text
23645
23646 \begin_layout Plain Layout
23647 \begin_inset Formula $\bowtie$
23648 \end_inset
23649
23650
23651 \end_layout
23652
23653 \end_inset
23654 </cell>
23655 </row>
23656 <row>
23657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23658 \begin_inset Text
23659
23660 \begin_layout Plain Layout
23661
23662 \backslash
23663 notin
23664 \end_layout
23665
23666 \end_inset
23667 </cell>
23668 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23669 \begin_inset Text
23670
23671 \begin_layout Plain Layout
23672 \begin_inset Formula $\notin$
23673 \end_inset
23674
23675
23676 \end_layout
23677
23678 \end_inset
23679 </cell>
23680 </row>
23681 <row>
23682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23683 \begin_inset Text
23684
23685 \begin_layout Plain Layout
23686
23687 \backslash
23688 perp
23689 \end_layout
23690
23691 \end_inset
23692 </cell>
23693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23694 \begin_inset Text
23695
23696 \begin_layout Plain Layout
23697 \begin_inset Formula $\perp$
23698 \end_inset
23699
23700
23701 \end_layout
23702
23703 \end_inset
23704 </cell>
23705 </row>
23706 <row>
23707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23708 \begin_inset Text
23709
23710 \begin_layout Plain Layout
23711
23712 \backslash
23713 propto
23714 \end_layout
23715
23716 \end_inset
23717 </cell>
23718 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23719 \begin_inset Text
23720
23721 \begin_layout Plain Layout
23722 \begin_inset Formula $\propto$
23723 \end_inset
23724
23725
23726 \end_layout
23727
23728 \end_inset
23729 </cell>
23730 </row>
23731 <row>
23732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23733 \begin_inset Text
23734
23735 \begin_layout Plain Layout
23736
23737 \backslash
23738 asymp
23739 \end_layout
23740
23741 \end_inset
23742 </cell>
23743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23744 \begin_inset Text
23745
23746 \begin_layout Plain Layout
23747 \begin_inset Formula $\asymp$
23748 \end_inset
23749
23750
23751 \end_layout
23752
23753 \end_inset
23754 </cell>
23755 </row>
23756 <row>
23757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23758 \begin_inset Text
23759
23760 \begin_layout Plain Layout
23761
23762 \backslash
23763 doteq
23764 \end_layout
23765
23766 \end_inset
23767 </cell>
23768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23769 \begin_inset Text
23770
23771 \begin_layout Plain Layout
23772 \begin_inset Formula $\doteq$
23773 \end_inset
23774
23775
23776 \end_layout
23777
23778 \end_inset
23779 </cell>
23780 </row>
23781 <row>
23782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23783 \begin_inset Text
23784
23785 \begin_layout Plain Layout
23786
23787 \backslash
23788 circeq
23789 \end_layout
23790
23791 \end_inset
23792 </cell>
23793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23794 \begin_inset Text
23795
23796 \begin_layout Plain Layout
23797 \begin_inset Formula $\circeq$
23798 \end_inset
23799
23800
23801 \end_layout
23802
23803 \end_inset
23804 </cell>
23805 </row>
23806 <row>
23807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23808 \begin_inset Text
23809
23810 \begin_layout Plain Layout
23811
23812 \backslash
23813 models
23814 \end_layout
23815
23816 \end_inset
23817 </cell>
23818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23819 \begin_inset Text
23820
23821 \begin_layout Plain Layout
23822 \begin_inset Formula $\models$
23823 \end_inset
23824
23825
23826 \end_layout
23827
23828 \end_inset
23829 </cell>
23830 </row>
23831 <row>
23832 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23833 \begin_inset Text
23834
23835 \begin_layout Plain Layout
23836
23837 \backslash
23838 widehat=
23839 \end_layout
23840
23841 \end_inset
23842 </cell>
23843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23844 \begin_inset Text
23845
23846 \begin_layout Plain Layout
23847 \begin_inset Formula $\widehat{=}$
23848 \end_inset
23849
23850
23851 \end_layout
23852
23853 \end_inset
23854 </cell>
23855 </row>
23856 </lyxtabular>
23857
23858 \end_inset
23859
23860
23861 \begin_inset space \hfill{}
23862 \end_inset
23863
23864
23865 \begin_inset Tabular
23866 <lyxtabular version="3" rows="17" columns="2">
23867 <features>
23868 <column alignment="center" valignment="top" width="0pt">
23869 <column alignment="center" valignment="top" width="0pt">
23870 <row>
23871 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23872 \begin_inset Text
23873
23874 \begin_layout Plain Layout
23875 Command
23876 \end_layout
23877
23878 \end_inset
23879 </cell>
23880 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23881 \begin_inset Text
23882
23883 \begin_layout Plain Layout
23884 Result
23885 \end_layout
23886
23887 \end_inset
23888 </cell>
23889 </row>
23890 <row>
23891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23892 \begin_inset Text
23893
23894 \begin_layout Plain Layout
23895 >
23896 \end_layout
23897
23898 \end_inset
23899 </cell>
23900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23901 \begin_inset Text
23902
23903 \begin_layout Plain Layout
23904 \begin_inset Formula $>$
23905 \end_inset
23906
23907
23908 \end_layout
23909
23910 \end_inset
23911 </cell>
23912 </row>
23913 <row>
23914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23915 \begin_inset Text
23916
23917 \begin_layout Plain Layout
23918
23919 \backslash
23920 ge
23921 \end_layout
23922
23923 \end_inset
23924 </cell>
23925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23926 \begin_inset Text
23927
23928 \begin_layout Plain Layout
23929 \begin_inset Formula $\ge$
23930 \end_inset
23931
23932
23933 \end_layout
23934
23935 \end_inset
23936 </cell>
23937 </row>
23938 <row>
23939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23940 \begin_inset Text
23941
23942 \begin_layout Plain Layout
23943
23944 \backslash
23945 gg
23946 \end_layout
23947
23948 \end_inset
23949 </cell>
23950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23951 \begin_inset Text
23952
23953 \begin_layout Plain Layout
23954 \begin_inset Formula $\gg$
23955 \end_inset
23956
23957
23958 \end_layout
23959
23960 \end_inset
23961 </cell>
23962 </row>
23963 <row>
23964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23965 \begin_inset Text
23966
23967 \begin_layout Plain Layout
23968
23969 \backslash
23970 succ
23971 \end_layout
23972
23973 \end_inset
23974 </cell>
23975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23976 \begin_inset Text
23977
23978 \begin_layout Plain Layout
23979 \begin_inset Formula $\succ$
23980 \end_inset
23981
23982
23983 \end_layout
23984
23985 \end_inset
23986 </cell>
23987 </row>
23988 <row>
23989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23990 \begin_inset Text
23991
23992 \begin_layout Plain Layout
23993
23994 \backslash
23995 succeq
23996 \end_layout
23997
23998 \end_inset
23999 </cell>
24000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24001 \begin_inset Text
24002
24003 \begin_layout Plain Layout
24004 \begin_inset Formula $\succeq$
24005 \end_inset
24006
24007
24008 \end_layout
24009
24010 \end_inset
24011 </cell>
24012 </row>
24013 <row>
24014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24015 \begin_inset Text
24016
24017 \begin_layout Plain Layout
24018
24019 \backslash
24020 supset
24021 \end_layout
24022
24023 \end_inset
24024 </cell>
24025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24026 \begin_inset Text
24027
24028 \begin_layout Plain Layout
24029 \begin_inset Formula $\supset$
24030 \end_inset
24031
24032
24033 \end_layout
24034
24035 \end_inset
24036 </cell>
24037 </row>
24038 <row>
24039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24040 \begin_inset Text
24041
24042 \begin_layout Plain Layout
24043
24044 \backslash
24045 supseteq
24046 \end_layout
24047
24048 \end_inset
24049 </cell>
24050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24051 \begin_inset Text
24052
24053 \begin_layout Plain Layout
24054 \begin_inset Formula $\supseteq$
24055 \end_inset
24056
24057
24058 \end_layout
24059
24060 \end_inset
24061 </cell>
24062 </row>
24063 <row>
24064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24065 \begin_inset Text
24066
24067 \begin_layout Plain Layout
24068
24069 \backslash
24070 sqsupseteq
24071 \end_layout
24072
24073 \end_inset
24074 </cell>
24075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24076 \begin_inset Text
24077
24078 \begin_layout Plain Layout
24079 \begin_inset Formula $\sqsupseteq$
24080 \end_inset
24081
24082
24083 \end_layout
24084
24085 \end_inset
24086 </cell>
24087 </row>
24088 <row>
24089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24090 \begin_inset Text
24091
24092 \begin_layout Plain Layout
24093
24094 \backslash
24095 ni
24096 \end_layout
24097
24098 \end_inset
24099 </cell>
24100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24101 \begin_inset Text
24102
24103 \begin_layout Plain Layout
24104 \begin_inset Formula $\ni$
24105 \end_inset
24106
24107
24108 \end_layout
24109
24110 \end_inset
24111 </cell>
24112 </row>
24113 <row>
24114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24115 \begin_inset Text
24116
24117 \begin_layout Plain Layout
24118
24119 \backslash
24120 dashv
24121 \end_layout
24122
24123 \end_inset
24124 </cell>
24125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24126 \begin_inset Text
24127
24128 \begin_layout Plain Layout
24129 \begin_inset Formula $\dashv$
24130 \end_inset
24131
24132
24133 \end_layout
24134
24135 \end_inset
24136 </cell>
24137 </row>
24138 <row>
24139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24140 \begin_inset Text
24141
24142 \begin_layout Plain Layout
24143
24144 \backslash
24145 frown
24146 \end_layout
24147
24148 \end_inset
24149 </cell>
24150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24151 \begin_inset Text
24152
24153 \begin_layout Plain Layout
24154 \begin_inset Formula $\frown$
24155 \end_inset
24156
24157
24158 \end_layout
24159
24160 \end_inset
24161 </cell>
24162 </row>
24163 <row>
24164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24165 \begin_inset Text
24166
24167 \begin_layout Plain Layout
24168
24169 \backslash
24170 rhd
24171 \end_layout
24172
24173 \end_inset
24174 </cell>
24175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24176 \begin_inset Text
24177
24178 \begin_layout Plain Layout
24179 \begin_inset Formula $\rhd$
24180 \end_inset
24181
24182
24183 \end_layout
24184
24185 \end_inset
24186 </cell>
24187 </row>
24188 <row>
24189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24190 \begin_inset Text
24191
24192 \begin_layout Plain Layout
24193
24194 \backslash
24195 unrhd
24196 \end_layout
24197
24198 \end_inset
24199 </cell>
24200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24201 \begin_inset Text
24202
24203 \begin_layout Plain Layout
24204 \begin_inset Formula $\unrhd$
24205 \end_inset
24206
24207
24208 \end_layout
24209
24210 \end_inset
24211 </cell>
24212 </row>
24213 <row>
24214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24215 \begin_inset Text
24216
24217 \begin_layout Plain Layout
24218
24219 \backslash
24220 lessgtr
24221 \end_layout
24222
24223 \end_inset
24224 </cell>
24225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24226 \begin_inset Text
24227
24228 \begin_layout Plain Layout
24229 \begin_inset Formula $\lessgtr$
24230 \end_inset
24231
24232
24233 \end_layout
24234
24235 \end_inset
24236 </cell>
24237 </row>
24238 <row>
24239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24240 \begin_inset Text
24241
24242 \begin_layout Plain Layout
24243
24244 \backslash
24245 parallel
24246 \end_layout
24247
24248 \end_inset
24249 </cell>
24250 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24251 \begin_inset Text
24252
24253 \begin_layout Plain Layout
24254 \begin_inset Formula $\parallel$
24255 \end_inset
24256
24257
24258 \end_layout
24259
24260 \end_inset
24261 </cell>
24262 </row>
24263 <row>
24264 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24265 \begin_inset Text
24266
24267 \begin_layout Plain Layout
24268
24269 \backslash
24270 nparallel
24271 \end_layout
24272
24273 \end_inset
24274 </cell>
24275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24276 \begin_inset Text
24277
24278 \begin_layout Plain Layout
24279 \begin_inset Formula $\nparallel$
24280 \end_inset
24281
24282
24283 \end_layout
24284
24285 \end_inset
24286 </cell>
24287 </row>
24288 </lyxtabular>
24289
24290 \end_inset
24291
24292
24293 \begin_inset space \hfill{}
24294 \end_inset
24295
24296
24297 \end_layout
24298
24299 \begin_layout Standard
24300 \begin_inset VSpace medskip
24301 \end_inset
24302
24303 The characters 
24304 \series bold
24305
24306 \backslash
24307 lhd
24308 \series default
24309  and 
24310 \series bold
24311
24312 \backslash
24313 rhd
24314 \series default
24315  are bigger than the equal looking operators 
24316 \series bold
24317
24318 \backslash
24319 triangleleft
24320 \series default
24321  and 
24322 \series bold
24323
24324 \backslash
24325 triangleright
24326 \series default
24327 , respectively.
24328 \end_layout
24329
24330 \begin_layout Standard
24331 Relations are, in contrary to symbols, always surrounded by space.
24332 \end_layout
24333
24334 \begin_layout Standard
24335 Relations with labels can be created with the command 
24336 \series bold
24337
24338 \backslash
24339 stackrel
24340 \series default
24341
24342 \begin_inset Index
24343 status collapsed
24344
24345 \begin_layout Plain Layout
24346 Commands ! S ! 
24347 \backslash
24348 stackrel
24349 \end_layout
24350
24351 \end_inset
24352
24353 :
24354 \end_layout
24355
24356 \begin_layout Standard
24357 \align center
24358 \begin_inset Tabular
24359 <lyxtabular version="3" rows="2" columns="2">
24360 <features>
24361 <column alignment="center" valignment="top" width="0">
24362 <column alignment="center" valignment="top" width="0">
24363 <row>
24364 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24365 \begin_inset Text
24366
24367 \begin_layout Plain Layout
24368 Command
24369 \end_layout
24370
24371 \end_inset
24372 </cell>
24373 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24374 \begin_inset Text
24375
24376 \begin_layout Plain Layout
24377 Result
24378 \begin_inset Note Note
24379 status collapsed
24380
24381 \begin_layout Plain Layout
24382
24383 \series bold
24384
24385 \backslash
24386 raisebox
24387 \series default
24388  is only used as spacer.
24389 \end_layout
24390
24391 \end_inset
24392
24393
24394 \end_layout
24395
24396 \end_inset
24397 </cell>
24398 </row>
24399 <row>
24400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24401 \begin_inset Text
24402
24403 \begin_layout Plain Layout
24404 A(r)
24405 \backslash
24406 stackrel
24407 \begin_inset ERT
24408 status collapsed
24409
24410 \begin_layout Plain Layout
24411
24412
24413 \backslash
24414 spce 
24415 \end_layout
24416
24417 \end_inset
24418
24419 r
24420 \backslash
24421 to
24422 \backslash
24423 infty
24424 \begin_inset ERT
24425 status collapsed
24426
24427 \begin_layout Plain Layout
24428
24429
24430 \backslash
24431 spce 
24432 \end_layout
24433
24434 \end_inset
24435
24436
24437 \begin_inset Formula $\downarrow$
24438 \end_inset
24439
24440
24441 \backslash
24442 approx
24443 \begin_inset ERT
24444 status collapsed
24445
24446 \begin_layout Plain Layout
24447
24448
24449 \backslash
24450 spce 
24451 \end_layout
24452
24453 \end_inset
24454
24455
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 B
24469 \end_layout
24470
24471 \end_inset
24472 </cell>
24473 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24474 \begin_inset Text
24475
24476 \begin_layout Plain Layout
24477 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24478 \end_inset
24479
24480
24481 \end_layout
24482
24483 \end_inset
24484 </cell>
24485 </row>
24486 </lyxtabular>
24487
24488 \end_inset
24489
24490
24491 \end_layout
24492
24493 \begin_layout Section
24494 Functions
24495 \end_layout
24496
24497 \begin_layout Subsection
24498 Predefined Functions
24499 \begin_inset CommandInset label
24500 LatexCommand label
24501 name "sub:Predefined-Functions"
24502
24503 \end_inset
24504
24505
24506 \begin_inset Index
24507 status collapsed
24508
24509 \begin_layout Plain Layout
24510 Functions ! predefined
24511 \end_layout
24512
24513 \end_inset
24514
24515
24516 \end_layout
24517
24518 \begin_layout Standard
24519 In general, variables are set 
24520 \emph on
24521 italic
24522 \emph default
24523  in mathematical expressions, but not function names, because 
24524 \begin_inset Formula $sin$
24525 \end_inset
24526
24527  could be misunderstood as 
24528 \begin_inset Formula $s\cdot i\cdot n$
24529 \end_inset
24530
24531 .
24532  Therefore there are predefined functions, that are additionally a bit separated
24533  from prefactors.
24534  They are inserted as commands starting with a backslash before their name.
24535 \end_layout
24536
24537 \begin_layout Standard
24538 \align center
24539 \begin_inset Tabular
24540 <lyxtabular version="3" rows="2" columns="4">
24541 <features>
24542 <column alignment="center" valignment="top" width="0pt">
24543 <column alignment="center" valignment="top" width="0pt">
24544 <column alignment="center" valignment="top" width="0pt">
24545 <column alignment="center" valignment="top" width="0pt">
24546 <row>
24547 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24548 \begin_inset Text
24549
24550 \begin_layout Plain Layout
24551 Command
24552 \end_layout
24553
24554 \end_inset
24555 </cell>
24556 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24557 \begin_inset Text
24558
24559 \begin_layout Plain Layout
24560 Result
24561 \end_layout
24562
24563 \end_inset
24564 </cell>
24565 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24566 \begin_inset Text
24567
24568 \begin_layout Plain Layout
24569 Command
24570 \end_layout
24571
24572 \end_inset
24573 </cell>
24574 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24575 \begin_inset Text
24576
24577 \begin_layout Plain Layout
24578 Result
24579 \end_layout
24580
24581 \end_inset
24582 </cell>
24583 </row>
24584 <row>
24585 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24586 \begin_inset Text
24587
24588 \begin_layout Plain Layout
24589 Asin(x)+B
24590 \end_layout
24591
24592 \end_inset
24593 </cell>
24594 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24595 \begin_inset Text
24596
24597 \begin_layout Plain Layout
24598 \begin_inset Formula $Asin(x)+B$
24599 \end_inset
24600
24601
24602 \end_layout
24603
24604 \end_inset
24605 </cell>
24606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24607 \begin_inset Text
24608
24609 \begin_layout Plain Layout
24610 A
24611 \backslash
24612 sin(x)+B
24613 \end_layout
24614
24615 \end_inset
24616 </cell>
24617 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24618 \begin_inset Text
24619
24620 \begin_layout Plain Layout
24621 \begin_inset Formula $A\sin(x)+B$
24622 \end_inset
24623
24624
24625 \end_layout
24626
24627 \end_inset
24628 </cell>
24629 </row>
24630 </lyxtabular>
24631
24632 \end_inset
24633
24634
24635 \end_layout
24636
24637 \begin_layout Standard
24638 The following functions are predefined:
24639 \end_layout
24640
24641 \begin_layout Standard
24642 \begin_inset VSpace -2mm
24643 \end_inset
24644
24645
24646 \end_layout
24647
24648 \begin_layout Standard
24649 \align center
24650 \begin_inset Tabular
24651 <lyxtabular version="3" rows="9" columns="4">
24652 <features>
24653 <column alignment="center" valignment="top" width="0pt">
24654 <column alignment="center" valignment="top" width="0pt">
24655 <column alignment="center" valignment="top" width="0pt">
24656 <column alignment="center" valignment="top" width="0pt">
24657 <row>
24658 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24659 \begin_inset Text
24660
24661 \begin_layout Plain Layout
24662 Command
24663 \end_layout
24664
24665 \end_inset
24666 </cell>
24667 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24668 \begin_inset Text
24669
24670 \begin_layout Plain Layout
24671 Command
24672 \end_layout
24673
24674 \end_inset
24675 </cell>
24676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24677 \begin_inset Text
24678
24679 \begin_layout Plain Layout
24680 Command
24681 \end_layout
24682
24683 \end_inset
24684 </cell>
24685 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24686 \begin_inset Text
24687
24688 \begin_layout Plain Layout
24689 Command
24690 \end_layout
24691
24692 \end_inset
24693 </cell>
24694 </row>
24695 <row>
24696 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24697 \begin_inset Text
24698
24699 \begin_layout Plain Layout
24700
24701 \backslash
24702 sin
24703 \end_layout
24704
24705 \end_inset
24706 </cell>
24707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24708 \begin_inset Text
24709
24710 \begin_layout Plain Layout
24711
24712 \backslash
24713 sinh
24714 \end_layout
24715
24716 \end_inset
24717 </cell>
24718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24719 \begin_inset Text
24720
24721 \begin_layout Plain Layout
24722
24723 \backslash
24724 arcsin
24725 \end_layout
24726
24727 \end_inset
24728 </cell>
24729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24730 \begin_inset Text
24731
24732 \begin_layout Plain Layout
24733
24734 \backslash
24735 sup
24736 \end_layout
24737
24738 \end_inset
24739 </cell>
24740 </row>
24741 <row>
24742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24743 \begin_inset Text
24744
24745 \begin_layout Plain Layout
24746
24747 \backslash
24748 cos
24749 \end_layout
24750
24751 \end_inset
24752 </cell>
24753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24754 \begin_inset Text
24755
24756 \begin_layout Plain Layout
24757
24758 \backslash
24759 cosh
24760 \end_layout
24761
24762 \end_inset
24763 </cell>
24764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24765 \begin_inset Text
24766
24767 \begin_layout Plain Layout
24768
24769 \backslash
24770 arccos
24771 \end_layout
24772
24773 \end_inset
24774 </cell>
24775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24776 \begin_inset Text
24777
24778 \begin_layout Plain Layout
24779
24780 \backslash
24781 inf
24782 \end_layout
24783
24784 \end_inset
24785 </cell>
24786 </row>
24787 <row>
24788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24789 \begin_inset Text
24790
24791 \begin_layout Plain Layout
24792
24793 \backslash
24794 tan
24795 \end_layout
24796
24797 \end_inset
24798 </cell>
24799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24800 \begin_inset Text
24801
24802 \begin_layout Plain Layout
24803
24804 \backslash
24805 tanh
24806 \end_layout
24807
24808 \end_inset
24809 </cell>
24810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24811 \begin_inset Text
24812
24813 \begin_layout Plain Layout
24814
24815 \backslash
24816 arctan
24817 \end_layout
24818
24819 \end_inset
24820 </cell>
24821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24822 \begin_inset Text
24823
24824 \begin_layout Plain Layout
24825
24826 \backslash
24827 lim
24828 \end_layout
24829
24830 \end_inset
24831 </cell>
24832 </row>
24833 <row>
24834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24835 \begin_inset Text
24836
24837 \begin_layout Plain Layout
24838
24839 \backslash
24840 cot
24841 \end_layout
24842
24843 \end_inset
24844 </cell>
24845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24846 \begin_inset Text
24847
24848 \begin_layout Plain Layout
24849
24850 \backslash
24851 coth
24852 \end_layout
24853
24854 \end_inset
24855 </cell>
24856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24857 \begin_inset Text
24858
24859 \begin_layout Plain Layout
24860
24861 \backslash
24862 arg
24863 \end_layout
24864
24865 \end_inset
24866 </cell>
24867 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24868 \begin_inset Text
24869
24870 \begin_layout Plain Layout
24871
24872 \backslash
24873 liminf
24874 \end_layout
24875
24876 \end_inset
24877 </cell>
24878 </row>
24879 <row>
24880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24881 \begin_inset Text
24882
24883 \begin_layout Plain Layout
24884
24885 \backslash
24886 sec
24887 \end_layout
24888
24889 \end_inset
24890 </cell>
24891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24892 \begin_inset Text
24893
24894 \begin_layout Plain Layout
24895
24896 \backslash
24897 min
24898 \end_layout
24899
24900 \end_inset
24901 </cell>
24902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24903 \begin_inset Text
24904
24905 \begin_layout Plain Layout
24906
24907 \backslash
24908 deg
24909 \end_layout
24910
24911 \end_inset
24912 </cell>
24913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24914 \begin_inset Text
24915
24916 \begin_layout Plain Layout
24917
24918 \backslash
24919 limsup
24920 \end_layout
24921
24922 \end_inset
24923 </cell>
24924 </row>
24925 <row>
24926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24927 \begin_inset Text
24928
24929 \begin_layout Plain Layout
24930
24931 \backslash
24932 csc
24933 \end_layout
24934
24935 \end_inset
24936 </cell>
24937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24938 \begin_inset Text
24939
24940 \begin_layout Plain Layout
24941
24942 \backslash
24943 max
24944 \end_layout
24945
24946 \end_inset
24947 </cell>
24948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24949 \begin_inset Text
24950
24951 \begin_layout Plain Layout
24952
24953 \backslash
24954 det
24955 \end_layout
24956
24957 \end_inset
24958 </cell>
24959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24960 \begin_inset Text
24961
24962 \begin_layout Plain Layout
24963
24964 \backslash
24965 Pr
24966 \end_layout
24967
24968 \end_inset
24969 </cell>
24970 </row>
24971 <row>
24972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24973 \begin_inset Text
24974
24975 \begin_layout Plain Layout
24976
24977 \backslash
24978 ln
24979 \end_layout
24980
24981 \end_inset
24982 </cell>
24983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24984 \begin_inset Text
24985
24986 \begin_layout Plain Layout
24987
24988 \backslash
24989 exp
24990 \end_layout
24991
24992 \end_inset
24993 </cell>
24994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24995 \begin_inset Text
24996
24997 \begin_layout Plain Layout
24998
24999 \backslash
25000 dim
25001 \end_layout
25002
25003 \end_inset
25004 </cell>
25005 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25006 \begin_inset Text
25007
25008 \begin_layout Plain Layout
25009
25010 \backslash
25011 hom
25012 \end_layout
25013
25014 \end_inset
25015 </cell>
25016 </row>
25017 <row>
25018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25019 \begin_inset Text
25020
25021 \begin_layout Plain Layout
25022
25023 \backslash
25024 lg
25025 \end_layout
25026
25027 \end_inset
25028 </cell>
25029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25030 \begin_inset Text
25031
25032 \begin_layout Plain Layout
25033
25034 \backslash
25035 log
25036 \end_layout
25037
25038 \end_inset
25039 </cell>
25040 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25041 \begin_inset Text
25042
25043 \begin_layout Plain Layout
25044
25045 \backslash
25046 ker
25047 \end_layout
25048
25049 \end_inset
25050 </cell>
25051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25052 \begin_inset Text
25053
25054 \begin_layout Plain Layout
25055
25056 \backslash
25057 gcd
25058 \end_layout
25059
25060 \end_inset
25061 </cell>
25062 </row>
25063 </lyxtabular>
25064
25065 \end_inset
25066
25067
25068 \end_layout
25069
25070 \begin_layout Standard
25071 They can also be inserted with the math toolbar button 
25072 \begin_inset Graphics
25073         filename ../images/math/functions.png
25074         scale 85
25075
25076 \end_inset
25077
25078 .
25079 \end_layout
25080
25081 \begin_layout Subsection
25082 Self-defined Functions
25083 \begin_inset Index
25084 status collapsed
25085
25086 \begin_layout Plain Layout
25087 Functions ! self-defined
25088 \end_layout
25089
25090 \end_inset
25091
25092
25093 \end_layout
25094
25095 \begin_layout Standard
25096 To use a function that is not predefined, like for example the sign function
25097  sgn(x), there are two possibilities:
25098 \end_layout
25099
25100 \begin_layout Itemize
25101 Define the function by inserting the following line to the LaTeX-preamble
25102 \begin_inset Foot
25103 status collapsed
25104
25105 \begin_layout Plain Layout
25106 For more about 
25107 \series bold
25108
25109 \backslash
25110 DeclareMathOperator
25111 \series default
25112  see 
25113 \begin_inset CommandInset ref
25114 LatexCommand ref
25115 reference "sub:Self-defined-Operators"
25116
25117 \end_inset
25118
25119 .
25120 \end_layout
25121
25122 \end_inset
25123
25124
25125 \begin_inset Newline newline
25126 \end_inset
25127
25128
25129 \begin_inset VSpace -3mm
25130 \end_inset
25131
25132
25133 \begin_inset Newline newline
25134 \end_inset
25135
25136
25137 \series bold
25138
25139 \backslash
25140 DeclareMathOperator{
25141 \backslash
25142 sgn}{sgn}
25143 \series default
25144
25145 \begin_inset Index
25146 status collapsed
25147
25148 \begin_layout Plain Layout
25149 Commands ! D ! 
25150 \backslash
25151 dbinom@
25152 \backslash
25153 DeclareMathOperator
25154 \end_layout
25155
25156 \end_inset
25157
25158
25159 \begin_inset Newline newline
25160 \end_inset
25161
25162
25163 \begin_inset VSpace -2mm
25164 \end_inset
25165
25166
25167 \begin_inset Newline newline
25168 \end_inset
25169
25170 Now the new defined function can be called with the command 
25171 \series bold
25172
25173 \backslash
25174 sgn
25175 \series default
25176 .
25177 \end_layout
25178
25179 \begin_layout Itemize
25180 Write the formula as usual, mark the formula name, in our example the letters
25181  
25182 \emph on
25183 sgn
25184 \emph default
25185 , and change it to mathematical text.
25186  At last a space is inserted between prefactor and function.
25187 \end_layout
25188
25189 \begin_layout Standard
25190 The result is the same with both methods as with a predefined function
25191 \begin_inset Foot
25192 status collapsed
25193
25194 \begin_layout Plain Layout
25195 In LyX self-defined functions are displayed red, predefined ones black.
25196 \end_layout
25197
25198 \end_inset
25199
25200 :
25201 \end_layout
25202
25203 \begin_layout Standard
25204 \align center
25205 \begin_inset Tabular
25206 <lyxtabular version="3" rows="3" columns="2">
25207 <features>
25208 <column alignment="center" valignment="top" width="0pt">
25209 <column alignment="center" valignment="top" width="0pt">
25210 <row>
25211 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25212 \begin_inset Text
25213
25214 \begin_layout Plain Layout
25215 Command
25216 \end_layout
25217
25218 \end_inset
25219 </cell>
25220 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25221 \begin_inset Text
25222
25223 \begin_layout Plain Layout
25224 Result
25225 \end_layout
25226
25227 \end_inset
25228 </cell>
25229 </row>
25230 <row>
25231 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25232 \begin_inset Text
25233
25234 \begin_layout Plain Layout
25235 A
25236 \backslash
25237 sgn(x)+B
25238 \end_layout
25239
25240 \end_inset
25241 </cell>
25242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25243 \begin_inset Text
25244
25245 \begin_layout Plain Layout
25246 \begin_inset Formula $A\sgn(x)+B$
25247 \end_inset
25248
25249
25250 \end_layout
25251
25252 \end_inset
25253 </cell>
25254 </row>
25255 <row>
25256 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25257 \begin_inset Text
25258
25259 \begin_layout Plain Layout
25260 A
25261 \backslash
25262 ,
25263 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt+M}\,\textrm{M}}$
25264 \end_inset
25265
25266 (x)+B
25267 \end_layout
25268
25269 \end_inset
25270 </cell>
25271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25272 \begin_inset Text
25273
25274 \begin_layout Plain Layout
25275 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25276 \end_inset
25277
25278
25279 \end_layout
25280
25281 \end_inset
25282 </cell>
25283 </row>
25284 </lyxtabular>
25285
25286 \end_inset
25287
25288
25289 \end_layout
25290
25291 \begin_layout Standard
25292 The first method is more suitable when the self-defined function should
25293  be used several times.
25294 \end_layout
25295
25296 \begin_layout Subsection
25297 Limits
25298 \begin_inset Index
25299 status collapsed
25300
25301 \begin_layout Plain Layout
25302 Limits
25303 \end_layout
25304
25305 \end_inset
25306
25307
25308 \end_layout
25309
25310 \begin_layout Standard
25311 For limits there are defined besides 
25312 \series bold
25313
25314 \backslash
25315 lim
25316 \series default
25317
25318 \begin_inset Index
25319 status collapsed
25320
25321 \begin_layout Plain Layout
25322 Commands ! L ! 
25323 \backslash
25324 lim
25325 \end_layout
25326
25327 \end_inset
25328
25329
25330 \series bold
25331
25332 \backslash
25333 liminf
25334 \series default
25335  and 
25336 \series bold
25337
25338 \backslash
25339 limsup
25340 \series default
25341  furthermore the following functions:
25342 \end_layout
25343
25344 \begin_layout Standard
25345 \align center
25346 \begin_inset Tabular
25347 <lyxtabular version="3" rows="5" columns="2">
25348 <features>
25349 <column alignment="center" valignment="top" width="0">
25350 <column alignment="center" valignment="top" width="0">
25351 <row>
25352 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25353 \begin_inset Text
25354
25355 \begin_layout Plain Layout
25356 Command
25357 \end_layout
25358
25359 \end_inset
25360 </cell>
25361 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25362 \begin_inset Text
25363
25364 \begin_layout Plain Layout
25365 Result
25366 \begin_inset Note Note
25367 status collapsed
25368
25369 \begin_layout Plain Layout
25370
25371 \series bold
25372
25373 \backslash
25374 raisebox
25375 \series default
25376  is only used as spacer.
25377 \end_layout
25378
25379 \end_inset
25380
25381
25382 \end_layout
25383
25384 \end_inset
25385 </cell>
25386 </row>
25387 <row>
25388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25389 \begin_inset Text
25390
25391 \begin_layout Plain Layout
25392
25393 \backslash
25394 varliminf
25395 \end_layout
25396
25397 \end_inset
25398 </cell>
25399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25400 \begin_inset Text
25401
25402 \begin_layout Plain Layout
25403 \begin_inset Formula $\varliminf$
25404 \end_inset
25405
25406
25407 \end_layout
25408
25409 \end_inset
25410 </cell>
25411 </row>
25412 <row>
25413 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25414 \begin_inset Text
25415
25416 \begin_layout Plain Layout
25417
25418 \backslash
25419 varlimsup
25420 \end_layout
25421
25422 \end_inset
25423 </cell>
25424 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25425 \begin_inset Text
25426
25427 \begin_layout Plain Layout
25428 \begin_inset Formula $\varlimsup$
25429 \end_inset
25430
25431
25432 \end_layout
25433
25434 \end_inset
25435 </cell>
25436 </row>
25437 <row>
25438 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25439 \begin_inset Text
25440
25441 \begin_layout Plain Layout
25442
25443 \backslash
25444 varprojlim
25445 \end_layout
25446
25447 \end_inset
25448 </cell>
25449 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25450 \begin_inset Text
25451
25452 \begin_layout Plain Layout
25453 \begin_inset Formula $\varprojlim$
25454 \end_inset
25455
25456
25457 \end_layout
25458
25459 \end_inset
25460 </cell>
25461 </row>
25462 <row>
25463 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25464 \begin_inset Text
25465
25466 \begin_layout Plain Layout
25467
25468 \backslash
25469 varinjlim
25470 \end_layout
25471
25472 \end_inset
25473 </cell>
25474 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25475 \begin_inset Text
25476
25477 \begin_layout Plain Layout
25478 \begin_inset Formula $\varinjlim$
25479 \end_inset
25480
25481
25482 \begin_inset Formula $\raisebox{-2.5mm}{}$
25483 \end_inset
25484
25485
25486 \end_layout
25487
25488 \end_inset
25489 </cell>
25490 </row>
25491 </lyxtabular>
25492
25493 \end_inset
25494
25495
25496 \end_layout
25497
25498 \begin_layout Standard
25499 \begin_inset VSpace medskip
25500 \end_inset
25501
25502 The limit is created by inserting a subscript.
25503  It is set right beside the function in an inline formula:
25504 \end_layout
25505
25506 \begin_layout Standard
25507 \align center
25508 \begin_inset Tabular
25509 <lyxtabular version="3" rows="2" columns="2">
25510 <features>
25511 <column alignment="center" valignment="top" width="0pt">
25512 <column alignment="center" valignment="top" width="0pt">
25513 <row>
25514 <cell alignment="center" valignment="top" usebox="none">
25515 \begin_inset Text
25516
25517 \begin_layout Plain Layout
25518 Command
25519 \end_layout
25520
25521 \end_inset
25522 </cell>
25523 <cell alignment="center" valignment="top" usebox="none">
25524 \begin_inset Text
25525
25526 \begin_layout Plain Layout
25527 \begin_inset space \hspace{}
25528 \length 1cm
25529 \end_inset
25530
25531 Result
25532 \begin_inset Note Note
25533 status collapsed
25534
25535 \begin_layout Plain Layout
25536 The space and
25537 \series bold
25538  
25539 \backslash
25540 raisebox
25541 \series default
25542  are used here as spacer.
25543 \end_layout
25544
25545 \end_inset
25546
25547
25548 \end_layout
25549
25550 \end_inset
25551 </cell>
25552 </row>
25553 <row>
25554 <cell alignment="center" valignment="top" usebox="none">
25555 \begin_inset Text
25556
25557 \begin_layout Plain Layout
25558
25559 \backslash
25560 lim_x
25561 \backslash
25562 to
25563 \begin_inset ERT
25564 status collapsed
25565
25566 \begin_layout Plain Layout
25567
25568
25569 \backslash
25570 spce 
25571 \end_layout
25572
25573 \end_inset
25574
25575 A
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 x=B
25589 \end_layout
25590
25591 \end_inset
25592 </cell>
25593 <cell alignment="center" valignment="top" usebox="none">
25594 \begin_inset Text
25595
25596 \begin_layout Plain Layout
25597 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25598 \end_inset
25599
25600
25601 \end_layout
25602
25603 \end_inset
25604 </cell>
25605 </row>
25606 </lyxtabular>
25607
25608 \end_inset
25609
25610
25611 \end_layout
25612
25613 \begin_layout Standard
25614 In a displayed formula the limit is set below the formula, as usual:
25615 \begin_inset Formula \[
25616 \lim_{x\to A}x=B\]
25617
25618 \end_inset
25619
25620
25621 \end_layout
25622
25623 \begin_layout Subsection
25624 Modulo-Functions
25625 \begin_inset Index
25626 status collapsed
25627
25628 \begin_layout Plain Layout
25629 Functions ! modulo-
25630 \end_layout
25631
25632 \end_inset
25633
25634
25635 \end_layout
25636
25637 \begin_layout Standard
25638 The modulo-function is special, because it exists in four variants.
25639 \end_layout
25640
25641 \begin_layout Standard
25642 The variants in a displayed formula:
25643 \begin_inset Formula \begin{align*}
25644 \underline{\textrm{Command}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Result}}\\
25645 \mathrm{a\backslash mod\textrm{\spce}b} &  & a\mod b\\
25646 \mathrm{a\backslash pmod\textrm{\spce}b} &  & a\pmod b\\
25647 \mathrm{a\backslash bmod\textrm{\spce}b} &  & a\bmod b\\
25648 \mathrm{a\backslash pod\textrm{\spce}b} &  & a\pod b\end{align*}
25649
25650 \end_inset
25651
25652
25653 \end_layout
25654
25655 \begin_layout Standard
25656 In an inline formula less space is set before the function names for all
25657  variants.
25658 \end_layout
25659
25660 \begin_layout Section
25661 Special Characters
25662 \begin_inset Index
25663 status collapsed
25664
25665 \begin_layout Plain Layout
25666 Special characters
25667 \end_layout
25668
25669 \end_inset
25670
25671
25672 \end_layout
25673
25674 \begin_layout Subsection
25675 Special Characters in Mathematical Text
25676 \end_layout
25677
25678 \begin_layout Standard
25679 The following commands can only be used in mathematical text or in TeX-mode:
25680 \end_layout
25681
25682 \begin_layout Standard
25683 \begin_inset space \hfill{}
25684 \end_inset
25685
25686
25687 \begin_inset Tabular
25688 <lyxtabular version="3" rows="8" columns="2">
25689 <features>
25690 <column alignment="block" valignment="top" width="0">
25691 <column alignment="block" valignment="top" width="0">
25692 <row>
25693 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25694 \begin_inset Text
25695
25696 \begin_layout Plain Layout
25697 Command
25698 \end_layout
25699
25700 \end_inset
25701 </cell>
25702 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25703 \begin_inset Text
25704
25705 \begin_layout Plain Layout
25706 Result
25707 \end_layout
25708
25709 \end_inset
25710 </cell>
25711 </row>
25712 <row>
25713 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25714 \begin_inset Text
25715
25716 \begin_layout Plain Layout
25717
25718 \backslash
25719 oe
25720 \end_layout
25721
25722 \end_inset
25723 </cell>
25724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25725 \begin_inset Text
25726
25727 \begin_layout Plain Layout
25728 \begin_inset Formula $\textrm{œ}$
25729 \end_inset
25730
25731
25732 \end_layout
25733
25734 \end_inset
25735 </cell>
25736 </row>
25737 <row>
25738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25739 \begin_inset Text
25740
25741 \begin_layout Plain Layout
25742
25743 \backslash
25744 OE
25745 \end_layout
25746
25747 \end_inset
25748 </cell>
25749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25750 \begin_inset Text
25751
25752 \begin_layout Plain Layout
25753 \begin_inset Formula $\textrm{Œ}$
25754 \end_inset
25755
25756
25757 \end_layout
25758
25759 \end_inset
25760 </cell>
25761 </row>
25762 <row>
25763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25764 \begin_inset Text
25765
25766 \begin_layout Plain Layout
25767
25768 \backslash
25769 ae
25770 \end_layout
25771
25772 \end_inset
25773 </cell>
25774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25775 \begin_inset Text
25776
25777 \begin_layout Plain Layout
25778 \begin_inset Formula $\textrm{æ}$
25779 \end_inset
25780
25781
25782 \end_layout
25783
25784 \end_inset
25785 </cell>
25786 </row>
25787 <row>
25788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25789 \begin_inset Text
25790
25791 \begin_layout Plain Layout
25792
25793 \backslash
25794 AE
25795 \end_layout
25796
25797 \end_inset
25798 </cell>
25799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25800 \begin_inset Text
25801
25802 \begin_layout Plain Layout
25803 \begin_inset Formula $\textrm{Æ}$
25804 \end_inset
25805
25806
25807 \end_layout
25808
25809 \end_inset
25810 </cell>
25811 </row>
25812 <row>
25813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25814 \begin_inset Text
25815
25816 \begin_layout Plain Layout
25817
25818 \backslash
25819 aa
25820 \end_layout
25821
25822 \end_inset
25823 </cell>
25824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25825 \begin_inset Text
25826
25827 \begin_layout Plain Layout
25828 \begin_inset Formula $\textrm{\aa}$
25829 \end_inset
25830
25831
25832 \end_layout
25833
25834 \end_inset
25835 </cell>
25836 </row>
25837 <row>
25838 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25839 \begin_inset Text
25840
25841 \begin_layout Plain Layout
25842
25843 \backslash
25844 AA
25845 \begin_inset Index
25846 status collapsed
25847
25848 \begin_layout Plain Layout
25849
25850 \backslash
25851 @
25852 \begin_inset ERT
25853 status collapsed
25854
25855 \begin_layout Plain Layout
25856
25857
25858 \backslash
25859 textrm{
25860 \backslash
25861 AA}
25862 \end_layout
25863
25864 \end_inset
25865
25866
25867 \end_layout
25868
25869 \end_inset
25870
25871
25872 \end_layout
25873
25874 \end_inset
25875 </cell>
25876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25877 \begin_inset Text
25878
25879 \begin_layout Plain Layout
25880 \begin_inset Formula $\textrm{Å}$
25881 \end_inset
25882
25883
25884 \end_layout
25885
25886 \end_inset
25887 </cell>
25888 </row>
25889 <row>
25890 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25891 \begin_inset Text
25892
25893 \begin_layout Plain Layout
25894
25895 \backslash
25896 i
25897 \end_layout
25898
25899 \end_inset
25900 </cell>
25901 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25902 \begin_inset Text
25903
25904 \begin_layout Plain Layout
25905 \begin_inset Formula $\textrm{ı}$
25906 \end_inset
25907
25908
25909 \end_layout
25910
25911 \end_inset
25912 </cell>
25913 </row>
25914 </lyxtabular>
25915
25916 \end_inset
25917
25918
25919 \begin_inset space \hfill{}
25920 \end_inset
25921
25922
25923 \begin_inset Tabular
25924 <lyxtabular version="3" rows="8" columns="2">
25925 <features>
25926 <column alignment="block" valignment="top" width="0">
25927 <column alignment="center" valignment="top" width="0">
25928 <row>
25929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25930 \begin_inset Text
25931
25932 \begin_layout Plain Layout
25933 command
25934 \begin_inset Note Note
25935 status collapsed
25936
25937 \begin_layout Plain Layout
25938 The space of 0
25939 \begin_inset space \thinspace{}
25940 \end_inset
25941
25942 mm is used for separation, because otherwise the output will be ¡ and ¿
25943  respectively.
25944 \end_layout
25945
25946 \end_inset
25947
25948
25949 \end_layout
25950
25951 \end_inset
25952 </cell>
25953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25954 \begin_inset Text
25955
25956 \begin_layout Plain Layout
25957 Result
25958 \end_layout
25959
25960 \end_inset
25961 </cell>
25962 </row>
25963 <row>
25964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25965 \begin_inset Text
25966
25967 \begin_layout Plain Layout
25968
25969 \backslash
25970 o
25971 \end_layout
25972
25973 \end_inset
25974 </cell>
25975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25976 \begin_inset Text
25977
25978 \begin_layout Plain Layout
25979 \begin_inset Formula $\textrm{ø}$
25980 \end_inset
25981
25982
25983 \end_layout
25984
25985 \end_inset
25986 </cell>
25987 </row>
25988 <row>
25989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25990 \begin_inset Text
25991
25992 \begin_layout Plain Layout
25993
25994 \backslash
25995 O
25996 \end_layout
25997
25998 \end_inset
25999 </cell>
26000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26001 \begin_inset Text
26002
26003 \begin_layout Plain Layout
26004 \begin_inset Formula $\textrm{Ø}$
26005 \end_inset
26006
26007
26008 \end_layout
26009
26010 \end_inset
26011 </cell>
26012 </row>
26013 <row>
26014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26015 \begin_inset Text
26016
26017 \begin_layout Plain Layout
26018
26019 \backslash
26020 l
26021 \end_layout
26022
26023 \end_inset
26024 </cell>
26025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26026 \begin_inset Text
26027
26028 \begin_layout Plain Layout
26029 \begin_inset Formula $\textrm{ł}$
26030 \end_inset
26031
26032
26033 \end_layout
26034
26035 \end_inset
26036 </cell>
26037 </row>
26038 <row>
26039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26040 \begin_inset Text
26041
26042 \begin_layout Plain Layout
26043
26044 \backslash
26045 L
26046 \end_layout
26047
26048 \end_inset
26049 </cell>
26050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26051 \begin_inset Text
26052
26053 \begin_layout Plain Layout
26054 \begin_inset Formula $\textrm{Ł}$
26055 \end_inset
26056
26057
26058 \end_layout
26059
26060 \end_inset
26061 </cell>
26062 </row>
26063 <row>
26064 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26065 \begin_inset Text
26066
26067 \begin_layout Plain Layout
26068 !
26069 \begin_inset space \hspace{}
26070 \length 0mm
26071 \end_inset
26072
26073 `
26074 \begin_inset ERT
26075 status collapsed
26076
26077 \begin_layout Plain Layout
26078
26079
26080 \backslash
26081 spce 
26082 \end_layout
26083
26084 \end_inset
26085
26086
26087 \end_layout
26088
26089 \end_inset
26090 </cell>
26091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26092 \begin_inset Text
26093
26094 \begin_layout Plain Layout
26095 \begin_inset Formula $\textrm{!`}$
26096 \end_inset
26097
26098
26099 \end_layout
26100
26101 \end_inset
26102 </cell>
26103 </row>
26104 <row>
26105 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26106 \begin_inset Text
26107
26108 \begin_layout Plain Layout
26109 ?
26110 \begin_inset space \hspace{}
26111 \length 0mm
26112 \end_inset
26113
26114 `
26115 \begin_inset ERT
26116 status collapsed
26117
26118 \begin_layout Plain Layout
26119
26120
26121 \backslash
26122 spce 
26123 \end_layout
26124
26125 \end_inset
26126
26127
26128 \end_layout
26129
26130 \end_inset
26131 </cell>
26132 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26133 \begin_inset Text
26134
26135 \begin_layout Plain Layout
26136 \begin_inset Formula $\textrm{?`}$
26137 \end_inset
26138
26139
26140 \end_layout
26141
26142 \end_inset
26143 </cell>
26144 </row>
26145 <row>
26146 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26147 \begin_inset Text
26148
26149 \begin_layout Plain Layout
26150
26151 \backslash
26152 j
26153 \end_layout
26154
26155 \end_inset
26156 </cell>
26157 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26158 \begin_inset Text
26159
26160 \begin_layout Plain Layout
26161 \begin_inset Formula $\textrm{ȷ}$
26162 \end_inset
26163
26164
26165 \end_layout
26166
26167 \end_inset
26168 </cell>
26169 </row>
26170 </lyxtabular>
26171
26172 \end_inset
26173
26174
26175 \begin_inset space \hfill{}
26176 \end_inset
26177
26178
26179 \end_layout
26180
26181 \begin_layout Standard
26182 The characters 
26183 \begin_inset Formula $\textrm{\textrm{Å}}$
26184 \end_inset
26185
26186  and 
26187 \begin_inset Formula $\textrm{\textrm{Ø}}$
26188 \end_inset
26189
26190  can also be inserted via the math toolbar button 
26191 \begin_inset Graphics
26192         filename ../images/math/digamma.png
26193         scale 85
26194
26195 \end_inset
26196
26197 .
26198 \end_layout
26199
26200 \begin_layout Standard
26201 An exception are the commands 
26202 \series bold
26203 !
26204 \begin_inset space \hspace{}
26205 \length 0mm
26206 \end_inset
26207
26208 `
26209 \series default
26210  and 
26211 \series bold
26212 ?
26213 \begin_inset space \hspace{}
26214 \length 0mm
26215 \end_inset
26216
26217 `
26218 \series default
26219 , because they can be inserted in LyX directly to text.
26220 \end_layout
26221
26222 \begin_layout Subsection
26223 Accents in Text
26224 \begin_inset CommandInset label
26225 LatexCommand label
26226 name "sub:Accents-in-Text"
26227
26228 \end_inset
26229
26230
26231 \begin_inset Index
26232 status collapsed
26233
26234 \begin_layout Plain Layout
26235 Accents ! in text
26236 \end_layout
26237
26238 \end_inset
26239
26240
26241 \end_layout
26242
26243 \begin_layout Standard
26244 With the following commands all letters can be accented.
26245  The commands must be inserted in TeX-mode.
26246 \end_layout
26247
26248 \begin_layout Standard
26249 \begin_inset space \hfill{}
26250 \end_inset
26251
26252
26253 \begin_inset Tabular
26254 <lyxtabular version="3" rows="8" columns="2">
26255 <features>
26256 <column alignment="block" valignment="top" width="0">
26257 <column alignment="block" valignment="top" width="0">
26258 <row>
26259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26260 \begin_inset Text
26261
26262 \begin_layout Plain Layout
26263 Command
26264 \end_layout
26265
26266 \end_inset
26267 </cell>
26268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26269 \begin_inset Text
26270
26271 \begin_layout Plain Layout
26272 Result
26273 \end_layout
26274
26275 \end_inset
26276 </cell>
26277 </row>
26278 <row>
26279 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26280 \begin_inset Text
26281
26282 \begin_layout Plain Layout
26283
26284 \backslash
26285
26286 \begin_inset Quotes grd
26287 \end_inset
26288
26289 e
26290 \end_layout
26291
26292 \end_inset
26293 </cell>
26294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26295 \begin_inset Text
26296
26297 \begin_layout Plain Layout
26298 \begin_inset ERT
26299 status collapsed
26300
26301 \begin_layout Plain Layout
26302
26303
26304 \backslash
26305 "e
26306 \end_layout
26307
26308 \end_inset
26309
26310
26311 \end_layout
26312
26313 \end_inset
26314 </cell>
26315 </row>
26316 <row>
26317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26318 \begin_inset Text
26319
26320 \begin_layout Plain Layout
26321
26322 \backslash
26323 `e
26324 \end_layout
26325
26326 \end_inset
26327 </cell>
26328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26329 \begin_inset Text
26330
26331 \begin_layout Plain Layout
26332 \begin_inset ERT
26333 status collapsed
26334
26335 \begin_layout Plain Layout
26336
26337
26338 \backslash
26339 `e
26340 \end_layout
26341
26342 \end_inset
26343
26344
26345 \end_layout
26346
26347 \end_inset
26348 </cell>
26349 </row>
26350 <row>
26351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26352 \begin_inset Text
26353
26354 \begin_layout Plain Layout
26355
26356 \backslash
26357 ^
26358 \begin_inset ERT
26359 status collapsed
26360
26361 \begin_layout Plain Layout
26362
26363
26364 \backslash
26365 spce 
26366 \end_layout
26367
26368 \end_inset
26369
26370 e
26371 \end_layout
26372
26373 \end_inset
26374 </cell>
26375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26376 \begin_inset Text
26377
26378 \begin_layout Plain Layout
26379 \begin_inset ERT
26380 status collapsed
26381
26382 \begin_layout Plain Layout
26383
26384
26385 \backslash
26386 ^e
26387 \end_layout
26388
26389 \end_inset
26390
26391
26392 \end_layout
26393
26394 \end_inset
26395 </cell>
26396 </row>
26397 <row>
26398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26399 \begin_inset Text
26400
26401 \begin_layout Plain Layout
26402
26403 \backslash
26404 =e
26405 \end_layout
26406
26407 \end_inset
26408 </cell>
26409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26410 \begin_inset Text
26411
26412 \begin_layout Plain Layout
26413 \begin_inset ERT
26414 status collapsed
26415
26416 \begin_layout Plain Layout
26417
26418
26419 \backslash
26420 =e
26421 \end_layout
26422
26423 \end_inset
26424
26425
26426 \end_layout
26427
26428 \end_inset
26429 </cell>
26430 </row>
26431 <row>
26432 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26433 \begin_inset Text
26434
26435 \begin_layout Plain Layout
26436
26437 \backslash
26438 u
26439 \begin_inset ERT
26440 status collapsed
26441
26442 \begin_layout Plain Layout
26443
26444
26445 \backslash
26446 spce 
26447 \end_layout
26448
26449 \end_inset
26450
26451 e
26452 \end_layout
26453
26454 \end_inset
26455 </cell>
26456 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26457 \begin_inset Text
26458
26459 \begin_layout Plain Layout
26460 \begin_inset ERT
26461 status collapsed
26462
26463 \begin_layout Plain Layout
26464
26465
26466 \backslash
26467 u e
26468 \end_layout
26469
26470 \end_inset
26471
26472
26473 \end_layout
26474
26475 \end_inset
26476 </cell>
26477 </row>
26478 <row>
26479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26480 \begin_inset Text
26481
26482 \begin_layout Plain Layout
26483
26484 \backslash
26485 b
26486 \begin_inset ERT
26487 status collapsed
26488
26489 \begin_layout Plain Layout
26490
26491
26492 \backslash
26493 spce 
26494 \end_layout
26495
26496 \end_inset
26497
26498 e
26499 \end_layout
26500
26501 \end_inset
26502 </cell>
26503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26504 \begin_inset Text
26505
26506 \begin_layout Plain Layout
26507 \begin_inset ERT
26508 status collapsed
26509
26510 \begin_layout Plain Layout
26511
26512
26513 \backslash
26514 b e
26515 \end_layout
26516
26517 \end_inset
26518
26519
26520 \end_layout
26521
26522 \end_inset
26523 </cell>
26524 </row>
26525 <row>
26526 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26527 \begin_inset Text
26528
26529 \begin_layout Plain Layout
26530
26531 \backslash
26532 t
26533 \begin_inset ERT
26534 status collapsed
26535
26536 \begin_layout Plain Layout
26537
26538
26539 \backslash
26540 spce 
26541 \end_layout
26542
26543 \end_inset
26544
26545 ee
26546 \end_layout
26547
26548 \end_inset
26549 </cell>
26550 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26551 \begin_inset Text
26552
26553 \begin_layout Plain Layout
26554 \begin_inset ERT
26555 status collapsed
26556
26557 \begin_layout Plain Layout
26558
26559
26560 \backslash
26561 t ee
26562 \end_layout
26563
26564 \end_inset
26565
26566
26567 \end_layout
26568
26569 \end_inset
26570 </cell>
26571 </row>
26572 </lyxtabular>
26573
26574 \end_inset
26575
26576
26577 \begin_inset space \hfill{}
26578 \end_inset
26579
26580
26581 \begin_inset Tabular
26582 <lyxtabular version="3" rows="8" columns="2">
26583 <features>
26584 <column alignment="block" valignment="top" width="0">
26585 <column alignment="center" valignment="top" width="0">
26586 <row>
26587 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26588 \begin_inset Text
26589
26590 \begin_layout Plain Layout
26591 Command
26592 \end_layout
26593
26594 \end_inset
26595 </cell>
26596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26597 \begin_inset Text
26598
26599 \begin_layout Plain Layout
26600 Result
26601 \end_layout
26602
26603 \end_inset
26604 </cell>
26605 </row>
26606 <row>
26607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26608 \begin_inset Text
26609
26610 \begin_layout Plain Layout
26611
26612 \backslash
26613 H
26614 \begin_inset ERT
26615 status collapsed
26616
26617 \begin_layout Plain Layout
26618
26619
26620 \backslash
26621 spce 
26622 \end_layout
26623
26624 \end_inset
26625
26626 e
26627 \end_layout
26628
26629 \end_inset
26630 </cell>
26631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26632 \begin_inset Text
26633
26634 \begin_layout Plain Layout
26635 \begin_inset ERT
26636 status collapsed
26637
26638 \begin_layout Plain Layout
26639
26640
26641 \backslash
26642 H e
26643 \end_layout
26644
26645 \end_inset
26646
26647
26648 \end_layout
26649
26650 \end_inset
26651 </cell>
26652 </row>
26653 <row>
26654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26655 \begin_inset Text
26656
26657 \begin_layout Plain Layout
26658
26659 \backslash
26660 'e
26661 \end_layout
26662
26663 \end_inset
26664 </cell>
26665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26666 \begin_inset Text
26667
26668 \begin_layout Plain Layout
26669 \begin_inset ERT
26670 status collapsed
26671
26672 \begin_layout Plain Layout
26673
26674
26675 \backslash
26676 'e
26677 \end_layout
26678
26679 \end_inset
26680
26681
26682 \end_layout
26683
26684 \end_inset
26685 </cell>
26686 </row>
26687 <row>
26688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26689 \begin_inset Text
26690
26691 \begin_layout Plain Layout
26692
26693 \backslash
26694 ~e
26695 \begin_inset Index
26696 status collapsed
26697
26698 \begin_layout Plain Layout
26699 Tilde
26700 \end_layout
26701
26702 \end_inset
26703
26704
26705 \end_layout
26706
26707 \end_inset
26708 </cell>
26709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26710 \begin_inset Text
26711
26712 \begin_layout Plain Layout
26713 \begin_inset ERT
26714 status collapsed
26715
26716 \begin_layout Plain Layout
26717
26718
26719 \backslash
26720 ~e
26721 \end_layout
26722
26723 \end_inset
26724
26725
26726 \end_layout
26727
26728 \end_inset
26729 </cell>
26730 </row>
26731 <row>
26732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26733 \begin_inset Text
26734
26735 \begin_layout Plain Layout
26736
26737 \backslash
26738 .e
26739 \end_layout
26740
26741 \end_inset
26742 </cell>
26743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26744 \begin_inset Text
26745
26746 \begin_layout Plain Layout
26747 \begin_inset ERT
26748 status collapsed
26749
26750 \begin_layout Plain Layout
26751
26752
26753 \backslash
26754 .e
26755 \end_layout
26756
26757 \end_inset
26758
26759
26760 \end_layout
26761
26762 \end_inset
26763 </cell>
26764 </row>
26765 <row>
26766 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26767 \begin_inset Text
26768
26769 \begin_layout Plain Layout
26770
26771 \backslash
26772 v
26773 \begin_inset ERT
26774 status collapsed
26775
26776 \begin_layout Plain Layout
26777
26778
26779 \backslash
26780 spce 
26781 \end_layout
26782
26783 \end_inset
26784
26785 e
26786 \end_layout
26787
26788 \end_inset
26789 </cell>
26790 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26791 \begin_inset Text
26792
26793 \begin_layout Plain Layout
26794 \begin_inset ERT
26795 status collapsed
26796
26797 \begin_layout Plain Layout
26798
26799
26800 \backslash
26801 v e
26802 \end_layout
26803
26804 \end_inset
26805
26806
26807 \end_layout
26808
26809 \end_inset
26810 </cell>
26811 </row>
26812 <row>
26813 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26814 \begin_inset Text
26815
26816 \begin_layout Plain Layout
26817
26818 \backslash
26819 d
26820 \begin_inset ERT
26821 status collapsed
26822
26823 \begin_layout Plain Layout
26824
26825
26826 \backslash
26827 spce 
26828 \end_layout
26829
26830 \end_inset
26831
26832 e
26833 \end_layout
26834
26835 \end_inset
26836 </cell>
26837 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26838 \begin_inset Text
26839
26840 \begin_layout Plain Layout
26841 \begin_inset ERT
26842 status collapsed
26843
26844 \begin_layout Plain Layout
26845
26846
26847 \backslash
26848 d e
26849 \end_layout
26850
26851 \end_inset
26852
26853
26854 \end_layout
26855
26856 \end_inset
26857 </cell>
26858 </row>
26859 <row>
26860 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26861 \begin_inset Text
26862
26863 \begin_layout Plain Layout
26864
26865 \backslash
26866 c
26867 \begin_inset ERT
26868 status collapsed
26869
26870 \begin_layout Plain Layout
26871
26872
26873 \backslash
26874 spce 
26875 \end_layout
26876
26877 \end_inset
26878
26879 e
26880 \end_layout
26881
26882 \end_inset
26883 </cell>
26884 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26885 \begin_inset Text
26886
26887 \begin_layout Plain Layout
26888 \begin_inset ERT
26889 status collapsed
26890
26891 \begin_layout Plain Layout
26892
26893
26894 \backslash
26895 c e
26896 \end_layout
26897
26898 \end_inset
26899
26900
26901 \end_layout
26902
26903 \end_inset
26904 </cell>
26905 </row>
26906 </lyxtabular>
26907
26908 \end_inset
26909
26910
26911 \begin_inset space \hfill{}
26912 \end_inset
26913
26914
26915 \end_layout
26916
26917 \begin_layout Standard
26918 \begin_inset VSpace medskip
26919 \end_inset
26920
26921 With the command 
26922 \series bold
26923
26924 \backslash
26925 t
26926 \series default
26927  also two different characters can be accented.
26928  The command 
26929 \series bold
26930
26931 \backslash
26932 t
26933 \begin_inset ERT
26934 status collapsed
26935
26936 \begin_layout Plain Layout
26937
26938
26939 \backslash
26940 spce 
26941 \end_layout
26942
26943 \end_inset
26944
26945 sz
26946 \series default
26947  creates: 
26948 \begin_inset ERT
26949 status collapsed
26950
26951 \begin_layout Plain Layout
26952
26953
26954 \backslash
26955 t sz
26956 \end_layout
26957
26958 \end_inset
26959
26960
26961 \end_layout
26962
26963 \begin_layout Standard
26964 The accents 
26965 \series bold
26966 `
26967 \series default
26968  , 
26969 \series bold
26970 '
26971 \series default
26972  and 
26973 \series bold
26974 ^
26975 \series default
26976  can in combination with vowels directly be inserted with the keyboard without
26977  using TeX-mode.
26978  The same applies for the tilde
26979 \begin_inset Foot
26980 status collapsed
26981
26982 \begin_layout Plain Layout
26983 This only applies for keyboards where the tilde is defined as accent.
26984 \end_layout
26985
26986 \end_inset
26987
26988  
26989 \series bold
26990 ~
26991 \series default
26992  in combination with 
26993 \emph on
26994 a
26995 \emph default
26996  , 
26997 \emph on
26998 n
26999 \emph default
27000  , or 
27001 \emph on
27002 o
27003 \emph default
27004 .
27005 \end_layout
27006
27007 \begin_layout Standard
27008 The commands 
27009 \series bold
27010
27011 \backslash
27012 b
27013 \series default
27014  , 
27015 \series bold
27016
27017 \backslash
27018 c
27019 \series default
27020  , 
27021 \series bold
27022
27023 \backslash
27024 d
27025 \series default
27026  , 
27027 \series bold
27028
27029 \backslash
27030 H
27031 \series default
27032  , 
27033 \series bold
27034
27035 \backslash
27036 t
27037 \series default
27038  , 
27039 \series bold
27040
27041 \backslash
27042 u
27043 \series default
27044  , 
27045 \series bold
27046
27047 \backslash
27048 v
27049 \series default
27050  and accents that are inserted directly with the keyboard are also available
27051  in mathematical text.
27052  For the other accents there are special math commands to be used in formulas,
27053  see 
27054 \begin_inset CommandInset ref
27055 LatexCommand ref
27056 reference "sub:Accents-for-one"
27057
27058 \end_inset
27059
27060 .
27061 \end_layout
27062
27063 \begin_layout Standard
27064 \begin_inset VSpace bigskip
27065 \end_inset
27066
27067 Furthermore, with the command 
27068 \series bold
27069
27070 \backslash
27071 textcircled
27072 \series default
27073
27074 \begin_inset Index
27075 status collapsed
27076
27077 \begin_layout Plain Layout
27078 Commands ! T ! 
27079 \backslash
27080 textcircled
27081 \end_layout
27082
27083 \end_inset
27084
27085  all numbers and letters can be set into a circle, quasi accented with a
27086  circle, similar to the copyright symbol.
27087 \end_layout
27088
27089 \begin_layout Standard
27090 \align center
27091 \begin_inset Tabular
27092 <lyxtabular version="3" rows="3" columns="2">
27093 <features>
27094 <column alignment="center" valignment="top" width="0">
27095 <column alignment="center" valignment="top" width="0">
27096 <row>
27097 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27098 \begin_inset Text
27099
27100 \begin_layout Plain Layout
27101 Command
27102 \end_layout
27103
27104 \end_inset
27105 </cell>
27106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27107 \begin_inset Text
27108
27109 \begin_layout Plain Layout
27110 Result
27111 \begin_inset Note Note
27112 status collapsed
27113
27114 \begin_layout Plain Layout
27115
27116 \series bold
27117
27118 \backslash
27119 raisebox
27120 \series default
27121  is only used as spacer.
27122 \end_layout
27123
27124 \end_inset
27125
27126
27127 \end_layout
27128
27129 \end_inset
27130 </cell>
27131 </row>
27132 <row>
27133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27134 \begin_inset Text
27135
27136 \begin_layout Plain Layout
27137
27138 \backslash
27139 textcircled{w}
27140 \end_layout
27141
27142 \end_inset
27143 </cell>
27144 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27145 \begin_inset Text
27146
27147 \begin_layout Plain Layout
27148 \begin_inset ERT
27149 status collapsed
27150
27151 \begin_layout Plain Layout
27152
27153
27154 \backslash
27155 textcircled{w}
27156 \end_layout
27157
27158 \end_inset
27159
27160
27161 \end_layout
27162
27163 \end_inset
27164 </cell>
27165 </row>
27166 <row>
27167 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27168 \begin_inset Text
27169
27170 \begin_layout Plain Layout
27171
27172 \backslash
27173 Large 
27174 \backslash
27175 textcircled{
27176 \backslash
27177 normalsize
27178 \backslash
27179 protect
27180 \backslash
27181 raisebox{-1.5pt}{W}}
27182 \end_layout
27183
27184 \end_inset
27185 </cell>
27186 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27187 \begin_inset Text
27188
27189 \begin_layout Plain Layout
27190 \begin_inset Formula $\raisebox{4.5mm}{}$
27191 \end_inset
27192
27193
27194 \begin_inset ERT
27195 status collapsed
27196
27197 \begin_layout Plain Layout
27198
27199
27200 \backslash
27201 Large 
27202 \backslash
27203 textcircled{
27204 \backslash
27205 normalsize
27206 \backslash
27207 protect
27208 \backslash
27209 raisebox{-1.5pt}W}
27210 \end_layout
27211
27212 \end_inset
27213
27214
27215 \begin_inset Formula $\raisebox{-2mm}{}$
27216 \end_inset
27217
27218
27219 \end_layout
27220
27221 \end_inset
27222 </cell>
27223 </row>
27224 </lyxtabular>
27225
27226 \end_inset
27227
27228
27229 \end_layout
27230
27231 \begin_layout Standard
27232 One has to take care that the character fits in the circle.
27233  
27234 \series bold
27235
27236 \backslash
27237 Large
27238 \series default
27239
27240 \begin_inset Foot
27241 status collapsed
27242
27243 \begin_layout Plain Layout
27244 see 
27245 \begin_inset CommandInset ref
27246 LatexCommand ref
27247 reference "sub:Font-Sizes"
27248
27249 \end_inset
27250
27251
27252 \end_layout
27253
27254 \end_inset
27255
27256  specifies thereby the size of the circle.
27257  With the help of 
27258 \series bold
27259
27260 \backslash
27261 raisebox
27262 \series default
27263
27264 \begin_inset Foot
27265 status collapsed
27266
27267 \begin_layout Plain Layout
27268 see 
27269 \begin_inset CommandInset ref
27270 LatexCommand ref
27271 reference "sub:Boxes-without-Frame"
27272
27273 \end_inset
27274
27275
27276 \end_layout
27277
27278 \end_inset
27279
27280  the character can be centered.
27281 \end_layout
27282
27283 \begin_layout Subsection
27284 Minuscule Numbers
27285 \begin_inset Index
27286 status collapsed
27287
27288 \begin_layout Plain Layout
27289 Minuscule numbers
27290 \end_layout
27291
27292 \end_inset
27293
27294
27295 \end_layout
27296
27297 \begin_layout Standard
27298 Minuscule numbers are created with the command 
27299 \series bold
27300
27301 \backslash
27302 oldstylenums
27303 \series default
27304
27305 \begin_inset Index
27306 status collapsed
27307
27308 \begin_layout Plain Layout
27309 Commands ! O ! 
27310 \backslash
27311 oldstylenums
27312 \end_layout
27313
27314 \end_inset
27315
27316 .
27317  The command can be used in formulas and in TeX-mode.
27318  The command scheme is:
27319 \end_layout
27320
27321 \begin_layout Standard
27322
27323 \series bold
27324
27325 \backslash
27326 oldstylenums{number}
27327 \end_layout
27328
27329 \begin_layout Standard
27330 The command 
27331 \series bold
27332
27333 \backslash
27334 oldstylenums{0123456789
27335 \series default
27336  produces: 
27337 \begin_inset Formula $\oldstylenums{0123456789}$
27338 \end_inset
27339
27340
27341 \end_layout
27342
27343 \begin_layout Subsection
27344 Miscellaneous special Characters
27345 \begin_inset CommandInset label
27346 LatexCommand label
27347 name "sub:Miscellaneous-special-Characters"
27348
27349 \end_inset
27350
27351
27352 \begin_inset Index
27353 status collapsed
27354
27355 \begin_layout Plain Layout
27356 Special characters ! miscellaneous
27357 \end_layout
27358
27359 \end_inset
27360
27361
27362 \end_layout
27363
27364 \begin_layout Standard
27365 The following characters can only be inserted to formulas by using commands:
27366 \end_layout
27367
27368 \begin_layout Standard
27369 \align center
27370 \begin_inset Tabular
27371 <lyxtabular version="3" rows="4" columns="2">
27372 <features>
27373 <column alignment="center" valignment="top" width="0">
27374 <column alignment="center" valignment="top" width="0">
27375 <row>
27376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27377 \begin_inset Text
27378
27379 \begin_layout Plain Layout
27380 Command
27381 \end_layout
27382
27383 \end_inset
27384 </cell>
27385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27386 \begin_inset Text
27387
27388 \begin_layout Plain Layout
27389 Result
27390 \end_layout
27391
27392 \end_inset
27393 </cell>
27394 </row>
27395 <row>
27396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27397 \begin_inset Text
27398
27399 \begin_layout Plain Layout
27400
27401 \backslash
27402 ^
27403 \begin_inset ERT
27404 status collapsed
27405
27406 \begin_layout Plain Layout
27407
27408
27409 \backslash
27410 spce 
27411 \end_layout
27412
27413 \end_inset
27414
27415
27416 \end_layout
27417
27418 \end_inset
27419 </cell>
27420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27421 \begin_inset Text
27422
27423 \begin_layout Plain Layout
27424 \begin_inset Formula $\mathcircumflex$
27425 \end_inset
27426
27427
27428 \end_layout
27429
27430 \end_inset
27431 </cell>
27432 </row>
27433 <row>
27434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27435 \begin_inset Text
27436
27437 \begin_layout Plain Layout
27438
27439 \backslash
27440 _
27441 \end_layout
27442
27443 \end_inset
27444 </cell>
27445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27446 \begin_inset Text
27447
27448 \begin_layout Plain Layout
27449 \begin_inset Formula $\_$
27450 \end_inset
27451
27452
27453 \end_layout
27454
27455 \end_inset
27456 </cell>
27457 </row>
27458 <row>
27459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27460 \begin_inset Text
27461
27462 \begin_layout Plain Layout
27463 ^
27464 \begin_inset ERT
27465 status collapsed
27466
27467 \begin_layout Plain Layout
27468
27469
27470 \backslash
27471 spce 
27472 \end_layout
27473
27474 \end_inset
27475
27476
27477 \backslash
27478 circ
27479 \begin_inset Index
27480 status collapsed
27481
27482 \begin_layout Plain Layout
27483
27484 \backslash
27485
27486 \end_layout
27487
27488 \end_inset
27489
27490
27491 \end_layout
27492
27493 \end_inset
27494 </cell>
27495 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27496 \begin_inset Text
27497
27498 \begin_layout Plain Layout
27499 \begin_inset Formula $^{\circ}$
27500 \end_inset
27501
27502
27503 \end_layout
27504
27505 \end_inset
27506 </cell>
27507 </row>
27508 </lyxtabular>
27509
27510 \end_inset
27511
27512
27513 \end_layout
27514
27515 \begin_layout Standard
27516 The degree sign ° can nevertheless be directly inserted if the LaTeX-preamble
27517  contains the following line
27518 \begin_inset Foot
27519 status collapsed
27520
27521 \begin_layout Plain Layout
27522 More about this is described in 
27523 \begin_inset CommandInset ref
27524 LatexCommand ref
27525 reference "sub:Text-Characters-in"
27526
27527 \end_inset
27528
27529 .
27530 \end_layout
27531
27532 \end_inset
27533
27534 :
27535 \end_layout
27536
27537 \begin_layout Standard
27538
27539 \series bold
27540
27541 \backslash
27542 DeclareInputtext{176}{
27543 \backslash
27544 ifmmode^
27545 \backslash
27546 circ
27547 \backslash
27548 else
27549 \backslash
27550 textdegree
27551 \backslash
27552 fi}
27553 \end_layout
27554
27555 \begin_layout Section
27556 Formula Styles
27557 \begin_inset CommandInset label
27558 LatexCommand label
27559 name "sec:Formula-Styles"
27560
27561 \end_inset
27562
27563
27564 \begin_inset Index
27565 status collapsed
27566
27567 \begin_layout Plain Layout
27568 Formula ! styles
27569 \end_layout
27570
27571 \end_inset
27572
27573
27574 \end_layout
27575
27576 \begin_layout Itemize
27577 There are two different alignment styles:
27578 \end_layout
27579
27580 \begin_deeper
27581 \begin_layout Description
27582 Centered is the predefined standard
27583 \end_layout
27584
27585 \begin_layout Description
27586 Indented for this the option 
27587 \series bold
27588 fleqn
27589 \series default
27590  must be inserted in the menu 
27591 \family sans
27592 Document\SpecialChar \menuseparator
27593 Settings
27594 \family default
27595  under 
27596 \family sans
27597 Document
27598 \begin_inset space ~
27599 \end_inset
27600
27601 Class
27602 \end_layout
27603
27604 \begin_layout Standard
27605 When 
27606 \series bold
27607 Indented
27608 \series default
27609  is used, the indentation can be adjusted with the length 
27610 \series bold
27611
27612 \backslash
27613 mathindent
27614 \series default
27615
27616 \begin_inset Index
27617 status collapsed
27618
27619 \begin_layout Plain Layout
27620 Commands ! M ! 
27621 \backslash
27622 mathindent
27623 \end_layout
27624
27625 \end_inset
27626
27627 .
27628  Should the distance be 15
27629 \begin_inset space \thinspace{}
27630 \end_inset
27631
27632 mm, the following command line is inserted in the LaTeX-preamble
27633 \end_layout
27634
27635 \begin_layout Standard
27636
27637 \series bold
27638
27639 \backslash
27640 setlength{
27641 \backslash
27642 mathindent}{15mm}
27643 \end_layout
27644
27645 \begin_layout Standard
27646 When no length is specified, the predefined value of 30
27647 \begin_inset space \thinspace{}
27648 \end_inset
27649
27650 pt will be used.
27651 \end_layout
27652
27653 \end_deeper
27654 \begin_layout Itemize
27655 And two different numbering styles:
27656 \end_layout
27657
27658 \begin_deeper
27659 \begin_layout Description
27660 Right is the predefined standard
27661 \end_layout
27662
27663 \begin_layout Description
27664 Left for this the option 
27665 \series bold
27666 leqno
27667 \series default
27668  must be inserted in the menu 
27669 \family sans
27670 Document\SpecialChar \menuseparator
27671 Settings
27672 \family default
27673  under 
27674 \family sans
27675 Document
27676 \begin_inset space ~
27677 \end_inset
27678
27679 Class
27680 \end_layout
27681
27682 \end_deeper
27683 \begin_layout Standard
27684
27685 \series bold
27686 fleqn
27687 \series default
27688  and 
27689 \series bold
27690 leqno
27691 \series default
27692  can also be used together.
27693  In this case both options are inserted, separated by a comma.
27694 \end_layout
27695
27696 \begin_layout Standard
27697 The chosen styles are used for all displayed formulas of the document.
27698  When both, centered and indented formulas should be created in a document,
27699  the style 
27700 \series bold
27701 Centered
27702 \series default
27703  is used.
27704  The indented formulas are then set in a flalign environment, see 
27705 \begin_inset CommandInset ref
27706 LatexCommand ref
27707 reference "sub:Flalign-Environment"
27708
27709 \end_inset
27710
27711 .
27712 \end_layout
27713
27714 \begin_layout Section
27715 Multiline Formulas
27716 \begin_inset CommandInset label
27717 LatexCommand label
27718 name "sec:Multiline-Formulas"
27719
27720 \end_inset
27721
27722
27723 \begin_inset Index
27724 status collapsed
27725
27726 \begin_layout Plain Layout
27727 Formula ! multiline
27728 \end_layout
27729
27730 \end_inset
27731
27732
27733 \end_layout
27734
27735 \begin_layout Subsection
27736 General
27737 \end_layout
27738
27739 \begin_layout Standard
27740 In LyX multiline formulas are created by pressing 
27741 \series bold
27742
27743 \begin_inset Info
27744 type  "shortcut"
27745 arg   "newline-insert newline"
27746 \end_inset
27747
27748
27749 \series default
27750  inside a formula.
27751  This creates either an 
27752 \series bold
27753 eqnarray environment
27754 \series default
27755  that is described in 
27756 \begin_inset CommandInset ref
27757 LatexCommand ref
27758 reference "sub:Eqnarray-Environment"
27759
27760 \end_inset
27761
27762  or, when the option 
27763 \family sans
27764 Use AMS math package
27765 \family default
27766  in the document settings is selected, an 
27767 \series bold
27768 align environment
27769 \series default
27770  that is described in 
27771 \begin_inset CommandInset ref
27772 LatexCommand ref
27773 reference "sub:Standard-align-Environment"
27774
27775 \end_inset
27776
27777 .
27778 \end_layout
27779
27780 \begin_layout Standard
27781 There are other multiline formula environments that can be created via the
27782  menu 
27783 \family sans
27784 Insert\SpecialChar \menuseparator
27785 Math
27786 \family default
27787 .
27788  These environments are described in the following sections.
27789 \end_layout
27790
27791 \begin_layout Standard
27792 In all multiline formula environments a new line is created by pressing
27793  
27794 \begin_inset Info
27795 type  "shortcut"
27796 arg   "newline-insert newline"
27797 \end_inset
27798
27799 .
27800  To add or delete lines, the math toolbar buttons 
27801 \begin_inset Graphics
27802         filename ../images/tabular-feature_append-row.png
27803         scale 85
27804
27805 \end_inset
27806
27807  or 
27808 \begin_inset Graphics
27809         filename ../images/tabular-feature_delete-row.png
27810         scale 85
27811
27812 \end_inset
27813
27814 , respectively, or the menu 
27815 \family sans
27816 Edit\SpecialChar \menuseparator
27817 Rows & Columns
27818 \family default
27819  can be used.
27820 \end_layout
27821
27822 \begin_layout Subsubsection
27823 Line Separation
27824 \begin_inset CommandInset label
27825 LatexCommand label
27826 name "sub:Line-Separation"
27827
27828 \end_inset
27829
27830
27831 \begin_inset Index
27832 status collapsed
27833
27834 \begin_layout Plain Layout
27835 Formula ! multiline ! Line separation
27836 \end_layout
27837
27838 \end_inset
27839
27840
27841 \end_layout
27842
27843 \begin_layout Standard
27844 There is sometimes not enough space in multiline formulas between the lines:
27845 \begin_inset Formula \begin{eqnarray*}
27846 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}\\
27847 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*}
27848
27849 \end_inset
27850
27851
27852 \end_layout
27853
27854 \begin_layout Standard
27855 In LaTeX additional line space is specified as optional argument of the
27856  new line command.
27857  This is not yet possible in LyX
27858 \begin_inset Foot
27859 status collapsed
27860
27861 \begin_layout Plain Layout
27862 see 
27863 \begin_inset CommandInset href
27864 LatexCommand href
27865 name "LyX-bug #1505"
27866 target "http://www.lyx.org/trac/ticket/1505"
27867
27868 \end_inset
27869
27870
27871 \end_layout
27872
27873 \end_inset
27874
27875 , therefore the whole formula must be inserted in TeX-mode.
27876  To add in our example space, the command 
27877 \series bold
27878
27879 \backslash
27880
27881 \backslash
27882 [3mm]
27883 \series default
27884  is inserted at the end of the first line.
27885  One gets: 
27886 \begin_inset ERT
27887 status collapsed
27888
27889 \begin_layout Plain Layout
27890
27891
27892 \backslash
27893 begin{eqnarray*}
27894 \end_layout
27895
27896 \begin_layout Plain Layout
27897
27898 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
27899  = & 
27900 \backslash
27901 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
27902 \backslash
27903
27904 \backslash
27905 [3mm]
27906 \end_layout
27907
27908 \begin_layout Plain Layout
27909
27910 4x^{2}
27911 \backslash
27912 left(B^{2}+x_{0}^{2}
27913 \backslash
27914 right)+4x_{0}x
27915 \backslash
27916 left(D-B^{2}
27917 \backslash
27918 right)+B^{2}
27919 \backslash
27920 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
27921 \backslash
27922 right) & = & 0
27923 \end_layout
27924
27925 \begin_layout Plain Layout
27926
27927
27928 \backslash
27929 end{eqnarray*}
27930 \end_layout
27931
27932 \end_inset
27933
27934
27935 \end_layout
27936
27937 \begin_layout Standard
27938 \begin_inset VSpace bigskip
27939 \end_inset
27940
27941 To set the line separation for all lines in a formula, the length 
27942 \series bold
27943
27944 \backslash
27945 jot
27946 \series default
27947
27948 \begin_inset Index
27949 status collapsed
27950
27951 \begin_layout Plain Layout
27952 Commands ! J ! 
27953 \backslash
27954 jot
27955 \end_layout
27956
27957 \end_inset
27958
27959  is changed.
27960  The definition is: 
27961 \begin_inset Formula $\mbox{line separation}=\mathrm{6\, pt+\backslash jot}$
27962 \end_inset
27963
27964 .
27965  Predefined for 
27966 \series bold
27967
27968 \backslash
27969 jot
27970 \series default
27971  is the value 3
27972 \begin_inset space \thinspace{}
27973 \end_inset
27974
27975 pt.
27976  To create 3
27977 \begin_inset space \thinspace{}
27978 \end_inset
27979
27980 mm additional line separation as in the previous example, the command
27981 \end_layout
27982
27983 \begin_layout Standard
27984
27985 \series bold
27986
27987 \backslash
27988 setlength{
27989 \backslash
27990 jot}{3mm+3pt}
27991 \end_layout
27992
27993 \begin_layout Standard
27994 is inserted in TeX-mode before the formula.
27995  This requires that the LaTeX-package 
27996 \series bold
27997 calc
27998 \series default
27999
28000 \begin_inset Foot
28001 status collapsed
28002
28003 \begin_layout Plain Layout
28004
28005 \series bold
28006 calc
28007 \series default
28008  is part of every LaTeX standard installation.
28009 \end_layout
28010
28011 \end_inset
28012
28013
28014 \begin_inset Index
28015 status collapsed
28016
28017 \begin_layout Plain Layout
28018 Packages ! calc
28019 \end_layout
28020
28021 \end_inset
28022
28023  was loaded in LaTeX-preamble with the line
28024 \end_layout
28025
28026 \begin_layout Standard
28027
28028 \series bold
28029
28030 \backslash
28031 usepackage{calc}
28032 \end_layout
28033
28034 \begin_layout Standard
28035 One gets: 
28036 \begin_inset ERT
28037 status collapsed
28038
28039 \begin_layout Plain Layout
28040
28041
28042 \backslash
28043 setlength{
28044 \backslash
28045 jot}{3mm+3pt}
28046 \end_layout
28047
28048 \end_inset
28049
28050
28051 \begin_inset Formula \begin{eqnarray*}
28052 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}\\
28053 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*}
28054
28055 \end_inset
28056
28057
28058 \end_layout
28059
28060 \begin_layout Standard
28061 \begin_inset ERT
28062 status collapsed
28063
28064 \begin_layout Plain Layout
28065
28066
28067 \backslash
28068 setlength{
28069 \backslash
28070 jot}{3pt}
28071 \end_layout
28072
28073 \end_inset
28074
28075  To get back to the predefined distance, 
28076 \series bold
28077
28078 \backslash
28079 jot
28080 \series default
28081  is set to the value 3
28082 \begin_inset space \thinspace{}
28083 \end_inset
28084
28085 pt.
28086 \end_layout
28087
28088 \begin_layout Subsubsection
28089 Column Separation
28090 \begin_inset CommandInset label
28091 LatexCommand label
28092 name "sub:Column-Separation"
28093
28094 \end_inset
28095
28096
28097 \begin_inset Index
28098 status collapsed
28099
28100 \begin_layout Plain Layout
28101 Formula ! multiline ! Column separation
28102 \end_layout
28103
28104 \end_inset
28105
28106
28107 \end_layout
28108
28109 \begin_layout Standard
28110 Multiline formulas form a matrix.
28111  A formula in the eqnarray environment is for example a matrix with three
28112  columns.
28113  By changing the column separation in this environment, the space beside
28114  the relation sign can be changed.
28115 \end_layout
28116
28117 \begin_layout Standard
28118 The column separation is specified with the length 
28119 \series bold
28120
28121 \backslash
28122 arraycolsep
28123 \series default
28124
28125 \begin_inset Index
28126 status collapsed
28127
28128 \begin_layout Plain Layout
28129 Commands ! A ! 
28130 \backslash
28131 arraycolsep
28132 \end_layout
28133
28134 \end_inset
28135
28136  according to:
28137 \begin_inset Newline newline
28138 \end_inset
28139
28140 column separation = 2
28141 \begin_inset space \thinspace{}
28142 \end_inset
28143
28144
28145 \series bold
28146
28147 \backslash
28148 arraycolsep
28149 \series default
28150
28151 \begin_inset Newline newline
28152 \end_inset
28153
28154 Thus, the command
28155 \end_layout
28156
28157 \begin_layout Standard
28158
28159 \series bold
28160
28161 \backslash
28162 setlength{
28163 \backslash
28164 arraycolsep}{1cm}
28165 \end_layout
28166
28167 \begin_layout Standard
28168 inserted in TeX-mode, sets for all following formulas a column separation
28169  of 2
28170 \begin_inset space \thinspace{}
28171 \end_inset
28172
28173 cm.
28174  To get back to the predefined distance, 
28175 \series bold
28176
28177 \backslash
28178 arraycolsep
28179 \series default
28180  is set to 5
28181 \begin_inset space \thinspace{}
28182 \end_inset
28183
28184 pt.
28185 \end_layout
28186
28187 \begin_layout Standard
28188 A formula with 2
28189 \begin_inset space \thinspace{}
28190 \end_inset
28191
28192 cm column separation:
28193 \begin_inset ERT
28194 status collapsed
28195
28196 \begin_layout Plain Layout
28197
28198
28199 \backslash
28200 setlength{
28201 \backslash
28202 arraycolsep}{1cm}
28203 \end_layout
28204
28205 \end_inset
28206
28207
28208 \begin_inset Formula \begin{eqnarray*}
28209 A & = & B\\
28210 C & \ne & A\end{eqnarray*}
28211
28212 \end_inset
28213
28214 A formula with the predefined column separation for matrices of 10
28215 \begin_inset space \thinspace{}
28216 \end_inset
28217
28218 pt:
28219 \begin_inset ERT
28220 status collapsed
28221
28222 \begin_layout Plain Layout
28223
28224
28225 \backslash
28226 setlength{
28227 \backslash
28228 arraycolsep}{5pt}
28229 \end_layout
28230
28231 \end_inset
28232
28233
28234 \begin_inset Formula \begin{eqnarray*}
28235 A & = & B\\
28236 C & \ne & A\end{eqnarray*}
28237
28238 \end_inset
28239
28240
28241 \end_layout
28242
28243 \begin_layout Subsubsection
28244 Long Formulas
28245 \begin_inset Index
28246 status collapsed
28247
28248 \begin_layout Plain Layout
28249 Formula ! long
28250 \end_layout
28251
28252 \end_inset
28253
28254
28255 \end_layout
28256
28257 \begin_layout Standard
28258 Long formulas can be typeset using these methods:
28259 \end_layout
28260
28261 \begin_layout Itemize
28262 When one side of the equation is much shorther than the line width, this
28263  one is chosen for the left side and the right side is typeset over two
28264  lines:
28265 \begin_inset Formula \begin{eqnarray}
28266 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 \\
28267  &  & -\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}
28268
28269 \end_inset
28270
28271 The minus sign at the beginning of the second line does normally not appear
28272  as operator because it is the first character of the line.
28273  Thus it would not be surrounded by space and could not be distinguished
28274  from the fraction bar.
28275  To avoid this, 3
28276 \begin_inset space \thinspace{}
28277 \end_inset
28278
28279 pt space was inserted behind the minus sign with the command 
28280 \series bold
28281
28282 \backslash
28283 hspace
28284 \series default
28285 .
28286 \begin_inset Foot
28287 status collapsed
28288
28289 \begin_layout Plain Layout
28290 more about 
28291 \series bold
28292
28293 \backslash
28294 hspace
28295 \series default
28296  see 
28297 \begin_inset CommandInset ref
28298 LatexCommand ref
28299 reference "sub:Variable-Space"
28300
28301 \end_inset
28302
28303
28304 \end_layout
28305
28306 \end_inset
28307
28308
28309 \begin_inset Index
28310 status collapsed
28311
28312 \begin_layout Plain Layout
28313 Commands ! H ! 
28314 \backslash
28315 hspace
28316 \end_layout
28317
28318 \end_inset
28319
28320
28321 \end_layout
28322
28323 \begin_layout Itemize
28324 When both sides of the equation are too long, the command 
28325 \series bold
28326
28327 \backslash
28328 lefteqn
28329 \series default
28330
28331 \begin_inset Index
28332 status collapsed
28333
28334 \begin_layout Plain Layout
28335 Commands ! L ! 
28336 \backslash
28337 lefteqn
28338 \end_layout
28339
28340 \end_inset
28341
28342  is used.
28343  It is inserted to the first column of the first line and effects that all
28344  further insertions overwrite the following columns:
28345 \begin_inset Formula \begin{eqnarray}
28346 \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 \\
28347  &  & -\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 \\
28348  &  & =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}
28349
28350 \end_inset
28351
28352 After the insertion of 
28353 \series bold
28354
28355 \backslash
28356 lefteqn
28357 \series default
28358 , the cursor is in a purple box that is a bit shifted to the left from the
28359  blue one.
28360  In this the formula is inserted.
28361 \begin_inset Newline newline
28362 \end_inset
28363
28364 The content of the further lines is inserted to the second or another formula
28365  column.
28366  The greater the column number where it was inserted, the larger the indentation.
28367 \begin_inset VSpace medskip
28368 \end_inset
28369
28370
28371 \begin_inset Newline newline
28372 \end_inset
28373
28374
28375 \begin_inset Note Greyedout
28376 status open
28377
28378 \begin_layout Plain Layout
28379 Note the following when using 
28380 \series bold
28381
28382 \backslash
28383 lefteqn
28384 \series default
28385 :
28386 \end_layout
28387
28388 \begin_layout Itemize
28389 The formula doesn't use the full page width.
28390  When e.
28391 \begin_inset space \thinspace{}
28392 \end_inset
28393
28394 g.
28395 \begin_inset space \space{}
28396 \end_inset
28397
28398 the term 
28399 \begin_inset Formula $-B^{2}$
28400 \end_inset
28401
28402  is added to the first line in the above example, it would have been outside
28403  the page margin.
28404  To better use the width, negative space can be inserted at the beginning
28405  of the first line.
28406 \end_layout
28407
28408 \begin_layout Itemize
28409 Due to a bug in LyX the cursor cannot be set with the mouse into the first
28410  line.
28411 \begin_inset Foot
28412 status collapsed
28413
28414 \begin_layout Plain Layout
28415 \begin_inset CommandInset href
28416 LatexCommand href
28417 name "LyX-bug #1429"
28418 target "http://www.lyx.org/trac/ticket/1429"
28419
28420 \end_inset
28421
28422
28423 \end_layout
28424
28425 \end_inset
28426
28427  One can only set the cursor at the beginning of the line and move it with
28428  the arrow keys.
28429 \end_layout
28430
28431 \end_inset
28432
28433
28434 \end_layout
28435
28436 \begin_layout Itemize
28437 Other methods to set long formulas are offered by the environments described
28438  in 
28439 \begin_inset CommandInset ref
28440 LatexCommand ref
28441 reference "sub:Multline-Environment"
28442
28443 \end_inset
28444
28445  and 
28446 \begin_inset CommandInset ref
28447 LatexCommand ref
28448 reference "sub:Multiline-Formula-Parts"
28449
28450 \end_inset
28451
28452 .
28453 \end_layout
28454
28455 \begin_layout Subsubsection
28456 Multiline Brackets
28457 \begin_inset CommandInset label
28458 LatexCommand label
28459 name "sub:Multiline-Brackets"
28460
28461 \end_inset
28462
28463
28464 \begin_inset Index
28465 status collapsed
28466
28467 \begin_layout Plain Layout
28468 Brackets ! for multiline expressions
28469 \end_layout
28470
28471 \end_inset
28472
28473
28474 \end_layout
28475
28476 \begin_layout Standard
28477 For brackets spanning multiple lines the following problem occurs:
28478 \begin_inset Formula \begin{eqnarray*}
28479 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28480  &  & \left.\cdots+B-D\right]\end{eqnarray*}
28481
28482 \end_inset
28483
28484
28485 \end_layout
28486
28487 \begin_layout Standard
28488 The closing bracket is smaller than the opening bracket because brackets
28489  with variable size may not span multiple lines.
28490 \end_layout
28491
28492 \begin_layout Standard
28493 To set the bracket size for the second line correctly, the first line is
28494  ended with 
28495 \series bold
28496
28497 \backslash
28498 right.
28499 \series default
28500
28501 \begin_inset Index
28502 status collapsed
28503
28504 \begin_layout Plain Layout
28505 Commands ! R ! 
28506 \backslash
28507 right
28508 \end_layout
28509
28510 \end_inset
28511
28512  and the second line with 
28513 \series bold
28514
28515 \backslash
28516 left.
28517 \begin_inset Foot
28518 status collapsed
28519
28520 \begin_layout Plain Layout
28521 for more about 
28522 \series bold
28523
28524 \backslash
28525 left
28526 \series default
28527  and 
28528 \series bold
28529
28530 \backslash
28531 right
28532 \series default
28533  see 
28534 \begin_inset CommandInset ref
28535 LatexCommand ref
28536 reference "sub:Automatic-Bracket-Size"
28537
28538 \end_inset
28539
28540
28541 \end_layout
28542
28543 \end_inset
28544
28545
28546 \series default
28547
28548 \begin_inset Index
28549 status collapsed
28550
28551 \begin_layout Plain Layout
28552 Commands ! L ! 
28553 \backslash
28554 left
28555 \end_layout
28556
28557 \end_inset
28558
28559 .
28560  After 
28561 \series bold
28562
28563 \backslash
28564 left.
28565
28566 \series default
28567  the command 
28568 \series bold
28569
28570 \backslash
28571 vphantom
28572 \series default
28573
28574 \begin_inset ERT
28575 status collapsed
28576
28577 \begin_layout Plain Layout
28578
28579
28580 \backslash
28581 spce 
28582 \end_layout
28583
28584 \end_inset
28585
28586
28587 \series bold
28588
28589 \backslash
28590 prod
28591 \series default
28592 ^
28593 \begin_inset ERT
28594 status collapsed
28595
28596 \begin_layout Plain Layout
28597
28598
28599 \backslash
28600 spce 
28601 \end_layout
28602
28603 \end_inset
28604
28605
28606 \series bold
28607
28608 \backslash
28609 infty
28610 \series default
28611
28612 \begin_inset ERT
28613 status collapsed
28614
28615 \begin_layout Plain Layout
28616
28617
28618 \backslash
28619 spce 
28620 \end_layout
28621
28622 \end_inset
28623
28624
28625 \series bold
28626
28627 \begin_inset Formula $\downarrow$
28628 \end_inset
28629
28630 _R=1}
28631 \series default
28632
28633 \begin_inset Index
28634 status collapsed
28635
28636 \begin_layout Plain Layout
28637 Commands ! V ! 
28638 \backslash
28639 vphantom
28640 \end_layout
28641
28642 \end_inset
28643
28644  is inserted, because the multiplication operator with its limits is the
28645  largest symbol in the first line and this should be the size for the bracket
28646  in the second line.
28647 \end_layout
28648
28649 \begin_layout Standard
28650 The result is this:
28651 \begin_inset Formula \begin{eqnarray*}
28652 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28653  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]\end{eqnarray*}
28654
28655 \end_inset
28656
28657
28658 \end_layout
28659
28660 \begin_layout Subsection
28661 Align Environments
28662 \end_layout
28663
28664 \begin_layout Standard
28665 Align environments can be used for every kind of multiline formulas.
28666  They are specially useful to set several formulas side by side.
28667 \end_layout
28668
28669 \begin_layout Standard
28670 Align environments consist of columns.
28671  The odd columns are right aligned, the even ones left aligned.
28672  Every line in an Align environment can be numbered.
28673 \end_layout
28674
28675 \begin_layout Standard
28676 Align environments are created via the menu 
28677 \family sans
28678 Insert\SpecialChar \menuseparator
28679 Math
28680 \family default
28681 .
28682  With the menu 
28683 \family sans
28684 Edit\SpecialChar \menuseparator
28685 Math\SpecialChar \menuseparator
28686 Change Formula Type
28687 \family default
28688  already existing formulas can be converted to Align environments.
28689 \end_layout
28690
28691 \begin_layout Standard
28692 To add or delete columns, the math toolbar buttons 
28693 \begin_inset Graphics
28694         filename ../images/tabular-feature_append-column.png
28695         scale 85
28696
28697 \end_inset
28698
28699  or 
28700 \begin_inset Graphics
28701         filename ../images/tabular-feature_delete-column.png
28702         scale 85
28703
28704 \end_inset
28705
28706 , respectively, or the menu 
28707 \family sans
28708 Edit\SpecialChar \menuseparator
28709 Rows & Columns
28710 \family default
28711  can be used.
28712 \end_layout
28713
28714 \begin_layout Subsubsection
28715 Standard align Environment
28716 \begin_inset CommandInset label
28717 LatexCommand label
28718 name "sub:Standard-align-Environment"
28719
28720 \end_inset
28721
28722
28723 \begin_inset Index
28724 status collapsed
28725
28726 \begin_layout Plain Layout
28727 Formula ! multiline ! align environment
28728 \end_layout
28729
28730 \end_inset
28731
28732
28733 \end_layout
28734
28735 \begin_layout Standard
28736 This Align environment is created by presssing 
28737 \begin_inset Info
28738 type  "shortcut"
28739 arg   "newline-insert newline"
28740 \end_inset
28741
28742  in a formula or by the menu 
28743 \family sans
28744 Insert\SpecialChar \menuseparator
28745 Math\SpecialChar \menuseparator
28746 AMS align Environment
28747 \family default
28748 .
28749 \end_layout
28750
28751 \begin_layout Standard
28752 An example for two formulas set side by side, that are created with a four
28753  column align environment:
28754 \begin_inset Formula \begin{align*}
28755 A & =\sin(B) & C & =D\\
28756 C & \ne A & B & \ne D\end{align*}
28757
28758 \end_inset
28759
28760 As it can be seen, the formulas in this environment are placed so as if
28761  there would be a 
28762 \series bold
28763
28764 \backslash
28765 hfill
28766 \begin_inset Foot
28767 status collapsed
28768
28769 \begin_layout Plain Layout
28770 more about 
28771 \series bold
28772
28773 \backslash
28774 hfill
28775 \series default
28776  see 
28777 \begin_inset CommandInset ref
28778 LatexCommand ref
28779 reference "sub:Variable-Space"
28780
28781 \end_inset
28782
28783
28784 \end_layout
28785
28786 \end_inset
28787
28788
28789 \series default
28790  before the first and after every even column.
28791  When the formula style 
28792 \series bold
28793 Indented
28794 \begin_inset Foot
28795 status collapsed
28796
28797 \begin_layout Plain Layout
28798 formula styles see 
28799 \begin_inset CommandInset ref
28800 LatexCommand ref
28801 reference "sec:Formula-Styles"
28802
28803 \end_inset
28804
28805
28806 \end_layout
28807
28808 \end_inset
28809
28810
28811 \series default
28812  is used, the formula is set without the 
28813 \series bold
28814
28815 \backslash
28816 hfill
28817 \series default
28818  before the first column.
28819 \end_layout
28820
28821 \begin_layout Subsubsection
28822 Alignat Environment
28823 \begin_inset Index
28824 status collapsed
28825
28826 \begin_layout Plain Layout
28827 Formula ! multiline ! alignat environment
28828 \end_layout
28829
28830 \end_inset
28831
28832
28833 \end_layout
28834
28835 \begin_layout Standard
28836 The alignat environment has no predefined column separation.
28837  It can be inserted manually with the spaces that are described 
28838 \begin_inset CommandInset ref
28839 LatexCommand ref
28840 reference "sub:Space"
28841
28842 \end_inset
28843
28844 .
28845 \end_layout
28846
28847 \begin_layout Standard
28848 The above example in the alignat environment where 1
28849 \begin_inset space \thinspace{}
28850 \end_inset
28851
28852 cm space was inserted at the beginning of the second formula:
28853 \begin_inset Formula \begin{alignat*}{2}
28854 A & =\sin(B) & \hspace{1cm}C & =D\\
28855 C & \ne A & B & \ne D\end{alignat*}
28856
28857 \end_inset
28858
28859 Because the column separation can be set separately for every column, this
28860  environment is especially suitable to set three and more formulas side
28861  by side.
28862 \end_layout
28863
28864 \begin_layout Subsubsection
28865 Flalign Environment
28866 \begin_inset CommandInset label
28867 LatexCommand label
28868 name "sub:Flalign-Environment"
28869
28870 \end_inset
28871
28872
28873 \begin_inset Index
28874 status collapsed
28875
28876 \begin_layout Plain Layout
28877 Formula ! multiline ! flalign environment
28878 \end_layout
28879
28880 \end_inset
28881
28882
28883 \end_layout
28884
28885 \begin_layout Standard
28886 In this environment the first two columns are always set as much as possible
28887  to the left and the last two ones to the right.
28888  An example:
28889 \begin_inset Formula \begin{flalign*}
28890 A & =1 & B & =2 & C & =3\\
28891 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4\end{flalign*}
28892
28893 \end_inset
28894
28895
28896 \end_layout
28897
28898 \begin_layout Standard
28899 By creating a flalign environment with an odd number of columns where an
28900  empty TeX-brace is inserted to the last column, several formulas in a document
28901  can be set to the left, although the formula style 
28902 \series bold
28903 Centered
28904 \series default
28905  is used.
28906  As example the indented formula 
28907 \begin_inset CommandInset ref
28908 LatexCommand eqref
28909 reference "eq:VolInt"
28910
28911 \end_inset
28912
28913 :
28914 \begin_inset Formula \begin{flalign}
28915 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}\end{flalign}
28916
28917 \end_inset
28918
28919 The first two columns contain the formula.
28920  To indent it as with the formula style 
28921 \series bold
28922 Indented
28923 \series default
28924 , 30
28925 \begin_inset space \thinspace{}
28926 \end_inset
28927
28928 pt space was inserted at the beginning of the first column.
28929 \end_layout
28930
28931 \begin_layout Subsection
28932 Eqnarray Environment
28933 \begin_inset CommandInset label
28934 LatexCommand label
28935 name "sub:Eqnarray-Environment"
28936
28937 \end_inset
28938
28939
28940 \begin_inset Index
28941 status collapsed
28942
28943 \begin_layout Plain Layout
28944 Formula ! multiline ! eqnarray environment
28945 \end_layout
28946
28947 \end_inset
28948
28949
28950 \end_layout
28951
28952 \begin_layout Standard
28953 When this environment has been created, three blue boxes appear.
28954  The content of the first box is right aligned, the content of the last
28955  one left aligned.
28956  The content of the middle box appears centered and a bit smaller, because
28957  it is designed to insert there only relation characters.
28958 \begin_inset Formula \begin{eqnarray*}
28959 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
28960 AB & AB & AB\\
28961 A & = & A\end{eqnarray*}
28962
28963 \end_inset
28964
28965
28966 \end_layout
28967
28968 \begin_layout Subsection
28969 Gather Environment
28970 \begin_inset Index
28971 status collapsed
28972
28973 \begin_layout Plain Layout
28974 Formula ! multiline ! gather environment
28975 \end_layout
28976
28977 \end_inset
28978
28979
28980 \end_layout
28981
28982 \begin_layout Standard
28983 This environment consists of only one centered column.
28984  Every line can be numbered.
28985 \begin_inset Formula \begin{gather}
28986 A=1\\
28987 X=\textrm{-}1\end{gather}
28988
28989 \end_inset
28990
28991
28992 \end_layout
28993
28994 \begin_layout Subsection
28995 Multline Environment
28996 \begin_inset CommandInset label
28997 LatexCommand label
28998 name "sub:Multline-Environment"
28999
29000 \end_inset
29001
29002
29003 \begin_inset Index
29004 status collapsed
29005
29006 \begin_layout Plain Layout
29007 Formula ! multiline ! multline environment
29008 \end_layout
29009
29010 \end_inset
29011
29012
29013 \end_layout
29014
29015 \begin_layout Standard
29016 The multline environment consists, like the gather environment, of only
29017  one column.
29018  But the first line is left aligned, the last one right aligned.
29019  All other lines are centered.
29020  Therefore this environment is suitable for long formulas.
29021  As example formula 
29022 \begin_inset CommandInset ref
29023 LatexCommand eqref
29024 reference "eq:lefteqn"
29025
29026 \end_inset
29027
29028  in the multline environment:
29029 \begin_inset Formula \begin{multline}
29030 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}\\
29031 -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}\\
29032 =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}
29033
29034 \end_inset
29035
29036
29037 \end_layout
29038
29039 \begin_layout Standard
29040 In the output only the last (first) line of a multline environment appears
29041  numbered when the document numbering is right (left).
29042 \begin_inset Foot
29043 status collapsed
29044
29045 \begin_layout Plain Layout
29046 numbering styles see 
29047 \begin_inset CommandInset ref
29048 LatexCommand ref
29049 reference "sec:Formula-Styles"
29050
29051 \end_inset
29052
29053
29054 \end_layout
29055
29056 \end_inset
29057
29058
29059 \end_layout
29060
29061 \begin_layout Standard
29062 With the commands 
29063 \series bold
29064
29065 \backslash
29066 shoveright
29067 \begin_inset Index
29068 status collapsed
29069
29070 \begin_layout Plain Layout
29071 Commands ! S ! 
29072 \backslash
29073 shoveright
29074 \end_layout
29075
29076 \end_inset
29077
29078
29079 \series default
29080  and 
29081 \series bold
29082
29083 \backslash
29084 shoveleft
29085 \begin_inset Index
29086 status collapsed
29087
29088 \begin_layout Plain Layout
29089 Commands ! S ! 
29090 \backslash
29091 shoveleft
29092 \end_layout
29093
29094 \end_inset
29095
29096
29097 \series default
29098  a centered line can be right or left aligned, respectively.
29099  The commands are used as follows:
29100 \end_layout
29101
29102 \begin_layout Standard
29103
29104 \series bold
29105
29106 \backslash
29107 shoveright{line content}
29108 \series default
29109  and 
29110 \series bold
29111
29112 \backslash
29113 shoveleft{line content}
29114 \end_layout
29115
29116 \begin_layout Standard
29117 \begin_inset VSpace medskip
29118 \end_inset
29119
29120 The length 
29121 \series bold
29122
29123 \backslash
29124 multlinegap
29125 \begin_inset Index
29126 status collapsed
29127
29128 \begin_layout Plain Layout
29129 Commands ! M ! 
29130 \backslash
29131 multlinegap
29132 \end_layout
29133
29134 \end_inset
29135
29136
29137 \series default
29138  specifies the distance of the first line from the left page margin.
29139  Predefined is the length 0
29140 \begin_inset space \thinspace{}
29141 \end_inset
29142
29143 pt.
29144 \end_layout
29145
29146 \begin_layout Standard
29147 As example the above formula where the command
29148 \end_layout
29149
29150 \begin_layout Standard
29151
29152 \series bold
29153
29154 \backslash
29155 setlength{
29156 \backslash
29157 multlinegap}{2cm}
29158 \end_layout
29159
29160 \begin_layout Standard
29161 was inserted in TeX-mode before:
29162 \begin_inset ERT
29163 status collapsed
29164
29165 \begin_layout Plain Layout
29166
29167
29168 \backslash
29169 setlength{
29170 \backslash
29171 multlinegap}{2cm}
29172 \end_layout
29173
29174 \end_inset
29175
29176
29177 \begin_inset Formula \begin{multline}
29178 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}\\
29179 \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}}\\
29180 =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}
29181
29182 \end_inset
29183
29184
29185 \begin_inset ERT
29186 status collapsed
29187
29188 \begin_layout Plain Layout
29189
29190
29191 \backslash
29192 setlength{
29193 \backslash
29194 multlinegap}{0pt}
29195 \end_layout
29196
29197 \end_inset
29198
29199 The second line was left aligned using 
29200 \series bold
29201
29202 \backslash
29203 shoveleft
29204 \series default
29205 .
29206 \end_layout
29207
29208 \begin_layout Subsection
29209 Multiline Formula Parts
29210 \begin_inset CommandInset label
29211 LatexCommand label
29212 name "sub:Multiline-Formula-Parts"
29213
29214 \end_inset
29215
29216
29217 \begin_inset Index
29218 status collapsed
29219
29220 \begin_layout Plain Layout
29221 Formula ! multiline ! formula parts
29222 \end_layout
29223
29224 \end_inset
29225
29226
29227 \end_layout
29228
29229 \begin_layout Standard
29230 To display only parts of a formula with multiple lines, one of the following
29231  environments are used: 
29232 \series bold
29233 aligned
29234 \series default
29235
29236 \series bold
29237 alignedat
29238 \series default
29239
29240 \series bold
29241 gathered
29242 \series default
29243  or 
29244 \series bold
29245 split
29246 \series default
29247 .
29248  They can be inserted via the menu 
29249 \family sans
29250 Insert\SpecialChar \menuseparator
29251 Math
29252 \family default
29253  or by using the commands described in this section.
29254 \end_layout
29255
29256 \begin_layout Standard
29257 The first three have the same properties as the corresponding multiline
29258  formula environments, but it is possible to set further formula parts beside
29259  them.
29260  An example:
29261 \begin_inset Formula \[
29262 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29263 \Delta E\Delta t & \ge\frac{\hbar}{2}\end{aligned}
29264 \right\} \textrm{Uncertainty relations}\]
29265
29266 \end_inset
29267
29268
29269 \end_layout
29270
29271 \begin_layout Standard
29272 To get this formula, a displayed formula is created where the command 
29273 \series bold
29274
29275 \backslash
29276 aligned
29277 \begin_inset Index
29278 status collapsed
29279
29280 \begin_layout Plain Layout
29281 Commands ! A ! 
29282 \backslash
29283 aligned
29284 \end_layout
29285
29286 \end_inset
29287
29288
29289 \series default
29290  is inserted.
29291  A purple box appears around the blue formula box where now columns and
29292  lines can be added.
29293  Outside the multiline environment other formula parts can be set, like
29294  the brace.
29295 \end_layout
29296
29297 \begin_layout Standard
29298 The aligned environment is also suitable for long formulas whose lines are
29299  horizontally aligned.
29300  Using aligned in a displayed formula has the advantage that the formula
29301  number is vertically centered behind the lines.
29302  As example formula 
29303 \begin_inset CommandInset ref
29304 LatexCommand eqref
29305 reference "eq:shortlong"
29306
29307 \end_inset
29308
29309  in the aligned environment:
29310 \begin_inset Formula \begin{equation}
29311 \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}|}\\
29312  & -\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}
29313 \end{equation}
29314
29315 \end_inset
29316
29317
29318 \end_layout
29319
29320 \begin_layout Standard
29321 To use the environments 
29322 \series bold
29323 alignedat
29324 \series default
29325
29326 \series bold
29327 gathered
29328 \series default
29329 , or 
29330 \series bold
29331 split
29332 \series default
29333 , the command 
29334 \series bold
29335
29336 \backslash
29337 alignedat
29338 \series default
29339 ,
29340 \begin_inset Index
29341 status collapsed
29342
29343 \begin_layout Plain Layout
29344 Commands ! A ! 
29345 \backslash
29346 alignedat
29347 \end_layout
29348
29349 \end_inset
29350
29351  
29352 \series bold
29353
29354 \backslash
29355 gathered
29356 \series default
29357
29358 \begin_inset Index
29359 status collapsed
29360
29361 \begin_layout Plain Layout
29362 Commands ! G ! 
29363 \backslash
29364 gathered
29365 \end_layout
29366
29367 \end_inset
29368
29369 , or 
29370 \series bold
29371
29372 \backslash
29373 split
29374 \series default
29375
29376 \begin_inset Index
29377 status collapsed
29378
29379 \begin_layout Plain Layout
29380 Commands ! S ! 
29381 \backslash
29382 split
29383 \end_layout
29384
29385 \end_inset
29386
29387  are inserted, respectively.
29388  The split environment has the same properties as the aligned environment
29389  but it can only have two columns.
29390 \end_layout
29391
29392 \begin_layout Subsection
29393 Text in multiline Formulas
29394 \begin_inset CommandInset label
29395 LatexCommand label
29396 name "sub:Text-in-multiline"
29397
29398 \end_inset
29399
29400
29401 \begin_inset Index
29402 status collapsed
29403
29404 \begin_layout Plain Layout
29405 Text ! in formulas
29406 \end_layout
29407
29408 \end_inset
29409
29410
29411 \begin_inset Index
29412 status collapsed
29413
29414 \begin_layout Plain Layout
29415 Formula ! multiline ! text
29416 \end_layout
29417
29418 \end_inset
29419
29420
29421 \end_layout
29422
29423 \begin_layout Standard
29424 In the Align environments, and the multline and gather environment, text
29425  can be inserted that will appear in a separate line and doesn't affect
29426  the column alignment.
29427  To do this, the command 
29428 \series bold
29429
29430 \backslash
29431 intertext
29432 \begin_inset Index
29433 status collapsed
29434
29435 \begin_layout Plain Layout
29436 Commands ! I ! 
29437 \backslash
29438 intertext
29439 \end_layout
29440
29441 \end_inset
29442
29443
29444 \series default
29445  is used in the following scheme:
29446 \end_layout
29447
29448 \begin_layout Standard
29449
29450 \series bold
29451
29452 \backslash
29453 intertext{text}
29454 \end_layout
29455
29456 \begin_layout Standard
29457 The text should not be longer than a line because it cannot be hyphenated.
29458  As LyX doesn't yet support 
29459 \series bold
29460
29461 \backslash
29462 intertext
29463 \series default
29464  directly, the text is written as mathematical text.
29465  
29466 \series bold
29467
29468 \backslash
29469 intertext
29470 \series default
29471  must hereby be at the beginning of a line and appears in the output above
29472  this line.
29473  An example where the text was inserted at the beginning of the second line:
29474 \begin_inset Formula \begin{align}
29475 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29476 \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}
29477
29478 \end_inset
29479
29480
29481 \end_layout
29482
29483 \begin_layout Section
29484 Formula Numbering
29485 \begin_inset Index
29486 status collapsed
29487
29488 \begin_layout Plain Layout
29489 Formula numbering
29490 \end_layout
29491
29492 \end_inset
29493
29494
29495 \begin_inset Index
29496 status collapsed
29497
29498 \begin_layout Plain Layout
29499 Formula ! numbering|see
29500 \begin_inset ERT
29501 status collapsed
29502
29503 \begin_layout Plain Layout
29504
29505 {
29506 \end_layout
29507
29508 \end_inset
29509
29510 Formula numbering
29511 \begin_inset ERT
29512 status collapsed
29513
29514 \begin_layout Plain Layout
29515
29516 }
29517 \end_layout
29518
29519 \end_inset
29520
29521
29522 \end_layout
29523
29524 \end_inset
29525
29526
29527 \end_layout
29528
29529 \begin_layout Subsection
29530 General
29531 \end_layout
29532
29533 \begin_layout Standard
29534 Numbered formulas can be created with the menu 
29535 \family sans
29536 Insert\SpecialChar \menuseparator
29537 Math\SpecialChar \menuseparator
29538 Numbered
29539 \begin_inset space ~
29540 \end_inset
29541
29542 Formula
29543 \family default
29544  (shortcut 
29545 \family sans
29546 Ctrl+Alt
29547 \begin_inset space ~
29548 \end_inset
29549
29550 N
29551 \family default
29552 ).
29553  Existing formulas can be numbered with the menu 
29554 \family sans
29555 Edit\SpecialChar \menuseparator
29556 Math\SpecialChar \menuseparator
29557 Toggle
29558 \begin_inset space ~
29559 \end_inset
29560
29561 Numbering
29562 \family default
29563  (shortcut 
29564 \begin_inset Info
29565 type  "shortcut"
29566 arg   "math-number-toggle"
29567 \end_inset
29568
29569 ).
29570  The formula number is displayed in LyX behind the formula as number sign
29571  in parentheses.
29572  The number sign is replaced in the output by the formula number.
29573 \end_layout
29574
29575 \begin_layout Standard
29576 When numbering is turned on in multiline formulas, all lines will be numbered.
29577  But the numbering can be controlled with the menu 
29578 \family sans
29579 Edit\SpecialChar \menuseparator
29580 Math\SpecialChar \menuseparator
29581 Toggle
29582 \begin_inset space ~
29583 \end_inset
29584
29585 Numbering
29586 \begin_inset space ~
29587 \end_inset
29588
29589 of
29590 \begin_inset space ~
29591 \end_inset
29592
29593 Line
29594 \family default
29595  (shortcut
29596 \begin_inset Info
29597 type  "shortcut"
29598 arg   "math-number-line-toggle"
29599 \end_inset
29600
29601 ) for every line.
29602 \end_layout
29603
29604 \begin_layout Standard
29605 Except for inline formulas, all formulas can be numbered with two different
29606  styles, see 
29607 \begin_inset CommandInset ref
29608 LatexCommand ref
29609 reference "sec:Formula-Styles"
29610
29611 \end_inset
29612
29613 .
29614 \end_layout
29615
29616 \begin_layout Subsection
29617 Cross-References
29618 \begin_inset Index
29619 status collapsed
29620
29621 \begin_layout Plain Layout
29622 Cross-references ! to formulas
29623 \end_layout
29624
29625 \end_inset
29626
29627
29628 \end_layout
29629
29630 \begin_layout Standard
29631 All labeled formulas can be cross-referenced.
29632  A label is added by the menu 
29633 \family sans
29634 Insert\SpecialChar \menuseparator
29635 Label
29636 \family default
29637  or the toolbar button 
29638 \begin_inset Graphics
29639         filename ../images/label-insert.png
29640         scale 85
29641
29642 \end_inset
29643
29644 .
29645  The cursor must hereby be inside a displayed formula.
29646  A dialog pops up displaying the prefix 
29647 \series bold
29648 eq:
29649 \series default
29650  in a text field.
29651  The label is inserted there behind the prefix.
29652  The predefined prefix means 
29653 \begin_inset Quotes eld
29654 \end_inset
29655
29656 equation
29657 \begin_inset Quotes erd
29658 \end_inset
29659
29660  and makes it easier to find labels in large documents because it marks
29661  it as formula label to divide it from e.
29662 \begin_inset space \thinspace{}
29663 \end_inset
29664
29665 g.
29666 \begin_inset space \space{}
29667 \end_inset
29668
29669 section labels.
29670  To change a label, the menu 
29671 \family sans
29672 Insert\SpecialChar \menuseparator
29673 Label
29674 \family default
29675  is used again.
29676 \end_layout
29677
29678 \begin_layout Standard
29679 The name of the label is displayed in LyX within two parentheses behind
29680  formula.
29681  A formula with a label is always numbered.
29682 \end_layout
29683
29684 \begin_layout Standard
29685 Cross-references are inserted via the menu 
29686 \family sans
29687 Insert\SpecialChar \menuseparator
29688 Cross-Reference
29689 \family default
29690  or with the toolbar button 
29691 \begin_inset Graphics
29692         filename ../images/dialog-show-new-inset_ref.png
29693         scale 85
29694
29695 \end_inset
29696
29697 .
29698  A formula cross-reference appears in the output as formula number.
29699  When in the cross-reference dialog window the format 
29700 \series bold
29701 (<reference>)
29702 \series default
29703  is chosen, the cross-reference appears in the output as formula number
29704  in parentheses.
29705 \begin_inset Newline newline
29706 \end_inset
29707
29708 By right-clicking on a cross-reference in LyX, one jumps to the formula
29709  that is referenced.
29710 \end_layout
29711
29712 \begin_layout Standard
29713 Here are as examples cross-references to formulas of the following subsections:
29714 \begin_inset Note Note
29715 status open
29716
29717 \begin_layout Plain Layout
29718 Note the different cross-reference types.
29719 \end_layout
29720
29721 \end_inset
29722
29723
29724 \end_layout
29725
29726 \begin_layout Standard
29727 The equations 
29728 \begin_inset CommandInset ref
29729 LatexCommand eqref
29730 reference "eq:tag"
29731
29732 \end_inset
29733
29734  and 
29735 \begin_inset CommandInset ref
29736 LatexCommand eqref
29737 reference "eq:c"
29738
29739 \end_inset
29740
29741  are equivalent.
29742  In (
29743 \begin_inset CommandInset ref
29744 LatexCommand ref
29745 reference "eq:Lat"
29746
29747 \end_inset
29748
29749 ) big Latin letters are used for the numbering in contrary to (
29750 \begin_inset CommandInset ref
29751 LatexCommand ref
29752 reference "eq:Rom"
29753
29754 \end_inset
29755
29756 ).
29757 \end_layout
29758
29759 \begin_layout Standard
29760 \begin_inset VSpace medskip
29761 \end_inset
29762
29763 When the argument of 
29764 \series bold
29765
29766 \backslash
29767 tag
29768 \begin_inset Foot
29769 status collapsed
29770
29771 \begin_layout Plain Layout
29772
29773 \series bold
29774
29775 \backslash
29776 tag
29777 \series default
29778  is described in 
29779 \begin_inset CommandInset ref
29780 LatexCommand ref
29781 reference "sub:User-defined-Numbering"
29782
29783 \end_inset
29784
29785 .
29786 \end_layout
29787
29788 \end_inset
29789
29790
29791 \series default
29792  contains a box like in 
29793 \begin_inset CommandInset ref
29794 LatexCommand ref
29795 reference "sub:Paragraph-Boxes"
29796
29797 \end_inset
29798
29799 , the formula cannot be referenced.
29800 \end_layout
29801
29802 \begin_layout Subsection
29803 Subnumbering
29804 \begin_inset Index
29805 status collapsed
29806
29807 \begin_layout Plain Layout
29808 Formula numbering ! subnumbering
29809 \end_layout
29810
29811 \end_inset
29812
29813
29814 \end_layout
29815
29816 \begin_layout Standard
29817 With the help of the commands 
29818 \series bold
29819
29820 \backslash
29821 begin{subequations}
29822 \series default
29823  and 
29824 \series bold
29825
29826 \backslash
29827 end{subequations}
29828 \series default
29829  formulas can be subnumbered.
29830  Both commands are inserted in TeX-mode.
29831 \end_layout
29832
29833 \begin_layout Standard
29834 An example:
29835 \begin_inset Formula \begin{equation}
29836 A=C-B\label{eq:a}\end{equation}
29837
29838 \end_inset
29839
29840
29841 \begin_inset ERT
29842 status collapsed
29843
29844 \begin_layout Plain Layout
29845
29846
29847 \backslash
29848 addtocounter{equation}{-1}
29849 \end_layout
29850
29851 \end_inset
29852
29853
29854 \begin_inset ERT
29855 status collapsed
29856
29857 \begin_layout Plain Layout
29858
29859
29860 \backslash
29861 begin{subequations}
29862 \end_layout
29863
29864 \end_inset
29865
29866
29867 \begin_inset VSpace -5mm
29868 \end_inset
29869
29870
29871 \begin_inset Formula \begin{equation}
29872 B=C-A\label{eq:b}\end{equation}
29873
29874 \end_inset
29875
29876
29877 \begin_inset Formula \begin{equation}
29878 C=A+B\label{eq:c}\end{equation}
29879
29880 \end_inset
29881
29882
29883 \end_layout
29884
29885 \begin_layout Standard
29886 \begin_inset ERT
29887 status collapsed
29888
29889 \begin_layout Plain Layout
29890
29891
29892 \backslash
29893 end{subequations}
29894 \end_layout
29895
29896 \end_inset
29897
29898
29899 \end_layout
29900
29901 \begin_layout Standard
29902 To create the example, the following is done:
29903 \end_layout
29904
29905 \begin_layout Enumerate
29906 first formula is inserted
29907 \end_layout
29908
29909 \begin_layout Enumerate
29910
29911 \series bold
29912
29913 \backslash
29914 addtocounter{equation}{-1} 
29915 \backslash
29916 begin{subequations}
29917 \begin_inset Index
29918 status collapsed
29919
29920 \begin_layout Plain Layout
29921 Commands ! A ! 
29922 \backslash
29923 addtocounter
29924 \end_layout
29925
29926 \end_inset
29927
29928
29929 \begin_inset Newline newline
29930 \end_inset
29931
29932
29933 \series default
29934 is inserted after the first formula
29935 \end_layout
29936
29937 \begin_layout Enumerate
29938 second formula is inserted
29939 \end_layout
29940
29941 \begin_layout Enumerate
29942 third formula is inserted
29943 \end_layout
29944
29945 \begin_layout Enumerate
29946
29947 \series bold
29948
29949 \backslash
29950 end{subequations}
29951 \series default
29952  is inserted after the third formula
29953 \end_layout
29954
29955 \begin_layout Standard
29956 Every formula between the commands 
29957 \series bold
29958
29959 \backslash
29960 begin
29961 \series default
29962  and 
29963 \series bold
29964
29965 \backslash
29966 end
29967 \series default
29968  is subnumbered as a, b, 
29969 \begin_inset Newline linebreak
29970 \end_inset
29971
29972 c, \SpecialChar \ldots{}
29973  For multiline formulas every line will be subnumbered.
29974  All subnumbered formulas are treated as 
29975 \emph on
29976 one
29977 \emph default
29978  numbered formula.
29979  But as every numbered formula increases the counter 
29980 \series bold
29981 equation
29982 \series default
29983  by one, the command 
29984 \series bold
29985
29986 \backslash
29987 addtocounter
29988 \series default
29989  is needed to decrease it.
29990  Otherwise the formulas 
29991 \begin_inset CommandInset ref
29992 LatexCommand eqref
29993 reference "eq:a"
29994
29995 \end_inset
29996
29997
29998 \begin_inset CommandInset ref
29999 LatexCommand eqref
30000 reference "eq:b"
30001
30002 \end_inset
30003
30004
30005 \begin_inset CommandInset ref
30006 LatexCommand eqref
30007 reference "eq:c"
30008
30009 \end_inset
30010
30011  would be numbered as 
30012 \begin_inset CommandInset ref
30013 LatexCommand eqref
30014 reference "eq:a"
30015
30016 \end_inset
30017
30018
30019 \begin_inset CommandInset ref
30020 LatexCommand eqref
30021 reference "eq:d"
30022
30023 \end_inset
30024
30025
30026 \begin_inset CommandInset ref
30027 LatexCommand eqref
30028 reference "eq:f"
30029
30030 \end_inset
30031
30032 .
30033 \end_layout
30034
30035 \begin_layout Standard
30036 By inserting the commands in TeX-mode, a space is created between the first
30037  two formulas.
30038  To revert this -5
30039 \begin_inset space \thinspace{}
30040 \end_inset
30041
30042 mm vertical space is inserted after the command 
30043 \series bold
30044
30045 \backslash
30046 begin{subequations}
30047 \series default
30048 .
30049  When the formula style 
30050 \series bold
30051 Indented
30052 \begin_inset Foot
30053 status collapsed
30054
30055 \begin_layout Plain Layout
30056 formula styles see 
30057 \begin_inset CommandInset ref
30058 LatexCommand ref
30059 reference "sec:Formula-Styles"
30060
30061 \end_inset
30062
30063
30064 \end_layout
30065
30066 \end_inset
30067
30068
30069 \series default
30070  is used, -7
30071 \begin_inset space \thinspace{}
30072 \end_inset
30073
30074 mm space is inserted instead.
30075 \end_layout
30076
30077 \begin_layout Standard
30078 Here is an example for a multiline formula where the numbering was turned
30079  off for the second line:
30080 \begin_inset ERT
30081 status collapsed
30082
30083 \begin_layout Plain Layout
30084
30085
30086 \backslash
30087 begin{subequations}
30088 \end_layout
30089
30090 \end_inset
30091
30092
30093 \begin_inset Formula \begin{eqnarray}
30094 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30095  & = & B^{2}-ZB-BZ+Z^{2}\nonumber \\
30096  & = & B^{2}-2BZ+Z^{2}\label{eq:f}\end{eqnarray}
30097
30098 \end_inset
30099
30100
30101 \begin_inset ERT
30102 status collapsed
30103
30104 \begin_layout Plain Layout
30105
30106
30107 \backslash
30108 end{subequations}
30109 \end_layout
30110
30111 \end_inset
30112
30113
30114 \end_layout
30115
30116 \begin_layout Subsection
30117 User-defined Numbering
30118 \begin_inset CommandInset label
30119 LatexCommand label
30120 name "sub:User-defined-Numbering"
30121
30122 \end_inset
30123
30124
30125 \begin_inset Index
30126 status collapsed
30127
30128 \begin_layout Plain Layout
30129 Formula numbering ! user-defined
30130 \end_layout
30131
30132 \end_inset
30133
30134
30135 \end_layout
30136
30137 \begin_layout Standard
30138 \begin_inset Index
30139 status collapsed
30140
30141 \begin_layout Plain Layout
30142 Formula numbering ! self-defined delimiters
30143 \end_layout
30144
30145 \end_inset
30146
30147 With the standard numbering parentheses are set around the formula number.
30148  To replace the parentheses for example by vertical bars, the following
30149  line is added to the LaTeX-preamble:
30150 \end_layout
30151
30152 \begin_layout Standard
30153
30154 \series bold
30155
30156 \backslash
30157 def
30158 \backslash
30159 tagform@#1{
30160 \backslash
30161 maketag@@@{|#1|}}
30162 \series default
30163
30164 \begin_inset Note Note
30165 status collapsed
30166
30167 \begin_layout Plain Layout
30168 This macro is already declared in the LaTeX-preamble for testing.
30169  To activate it, remove the percent sign at the beginning.
30170 \end_layout
30171
30172 \end_inset
30173
30174
30175 \end_layout
30176
30177 \begin_layout Standard
30178 To use other characters, the vertical bars besides the 
30179 \series bold
30180 #1
30181 \series default
30182  are replaced by one ore more characters.
30183  To get only the formula number the vertical bars are omitted.
30184 \end_layout
30185
30186 \begin_layout Standard
30187 \begin_inset VSpace bigskip
30188 \end_inset
30189
30190 When there should be an expression of your choice instead of the consecutive
30191  formula number in parentheses behind the formula, the command 
30192 \series bold
30193
30194 \backslash
30195 tag
30196 \series default
30197
30198 \begin_inset Index
30199 status collapsed
30200
30201 \begin_layout Plain Layout
30202 Commands ! T ! 
30203 \backslash
30204 tag
30205 \end_layout
30206
30207 \end_inset
30208
30209  is used:
30210 \begin_inset Formula \begin{equation}
30211 A+B=C\tag{something}\label{eq:tag}\end{equation}
30212
30213 \end_inset
30214
30215 In this example the command 
30216 \series bold
30217
30218 \backslash
30219 tag
30220 \begin_inset ERT
30221 status collapsed
30222
30223 \begin_layout Plain Layout
30224
30225
30226 \backslash
30227 spce 
30228 \end_layout
30229
30230 \end_inset
30231
30232 something
30233 \series default
30234  was inserted to the formula.
30235 \end_layout
30236
30237 \begin_layout Standard
30238 When the command 
30239 \series bold
30240
30241 \backslash
30242 tag*
30243 \begin_inset ERT
30244 status collapsed
30245
30246 \begin_layout Plain Layout
30247
30248
30249 \backslash
30250 spce 
30251 \end_layout
30252
30253 \end_inset
30254
30255 something
30256 \series default
30257  is inserted instead, the star prevents the parentheses around the expression:
30258 \begin_inset Formula \[
30259 A+B=C\tag*{something}\]
30260
30261 \end_inset
30262
30263
30264 \end_layout
30265
30266 \begin_layout Standard
30267 \begin_inset VSpace bigskip
30268 \end_inset
30269
30270 To restart the formula numbering with new document parts or sections, the
30271  following command is used:
30272 \end_layout
30273
30274 \begin_layout Standard
30275
30276 \series bold
30277
30278 \backslash
30279 @addtoreset{equation}{part}
30280 \series default
30281
30282 \begin_inset Index
30283 status collapsed
30284
30285 \begin_layout Plain Layout
30286 Commands ! 
30287 \begin_inset ERT
30288 status collapsed
30289
30290 \begin_layout Plain Layout
30291
30292 "
30293 \end_layout
30294
30295 \end_inset
30296
30297 @
30298 \begin_inset ERT
30299 status collapsed
30300
30301 \begin_layout Plain Layout
30302
30303 "
30304 \end_layout
30305
30306 \end_inset
30307
30308  ! 
30309 \backslash
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 \begin_inset ERT
30323 status collapsed
30324
30325 \begin_layout Plain Layout
30326
30327 "
30328 \end_layout
30329
30330 \end_inset
30331
30332 addtoreset
30333 \end_layout
30334
30335 \end_inset
30336
30337
30338 \begin_inset Newline newline
30339 \end_inset
30340
30341 resp.
30342 \begin_inset Newline newline
30343 \end_inset
30344
30345
30346 \series bold
30347
30348 \backslash
30349 @addtoreset{equation}{section}
30350 \end_layout
30351
30352 \begin_layout Standard
30353 To be able to use these commands in TeX-mode, the 
30354 \begin_inset Quotes eld
30355 \end_inset
30356
30357 @
30358 \begin_inset Quotes erd
30359 \end_inset
30360
30361  character has to be made 
30362 \begin_inset Quotes eld
30363 \end_inset
30364
30365 active
30366 \begin_inset Quotes erd
30367 \end_inset
30368
30369  for LaTeX using the command 
30370 \series bold
30371
30372 \backslash
30373 makeatletter.
30374
30375 \series default
30376  The command 
30377 \series bold
30378
30379 \backslash
30380 makeatother
30381 \series default
30382  reverts this.
30383  So the command sequence in TeX-mode is:
30384 \end_layout
30385
30386 \begin_layout Standard
30387
30388 \series bold
30389
30390 \backslash
30391 makeatletter
30392 \begin_inset Newline newline
30393 \end_inset
30394
30395
30396 \backslash
30397 @addtoreset{equation}{section}
30398 \begin_inset Newline newline
30399 \end_inset
30400
30401
30402 \backslash
30403 makeatother
30404 \end_layout
30405
30406 \begin_layout Standard
30407 In the LaTeX-preamble 
30408 \series bold
30409
30410 \backslash
30411 makeatletter
30412 \series default
30413  and 
30414 \series bold
30415
30416 \backslash
30417 makeatother
30418 \series default
30419  can be omitted as they are automatically internally inserted by LyX.
30420 \end_layout
30421
30422 \begin_layout Standard
30423 To revert 
30424 \series bold
30425
30426 \backslash
30427 @addtoreset
30428 \series default
30429 , the file 
30430 \series bold
30431 remreset.sty
30432 \series default
30433
30434 \begin_inset Foot
30435 status collapsed
30436
30437 \begin_layout Plain Layout
30438
30439 \series bold
30440 remreset
30441 \series default
30442  is part of the LaTeX-package 
30443 \series bold
30444 carlisle
30445 \series default
30446
30447 \begin_inset Index
30448 status collapsed
30449
30450 \begin_layout Plain Layout
30451 Packages ! carlisle
30452 \end_layout
30453
30454 \end_inset
30455
30456  that is part of every LaTeX standard installation.
30457 \end_layout
30458
30459 \end_inset
30460
30461
30462 \begin_inset Index
30463 status collapsed
30464
30465 \begin_layout Plain Layout
30466 Packages ! remreset
30467 \end_layout
30468
30469 \end_inset
30470
30471  has to be loaded in the LaTeX-preamble with the line
30472 \end_layout
30473
30474 \begin_layout Standard
30475
30476 \series bold
30477
30478 \backslash
30479 usepackage{remreset}
30480 \end_layout
30481
30482 \begin_layout Standard
30483 Then the command 
30484 \series bold
30485
30486 \backslash
30487 @removefromreset
30488 \series default
30489
30490 \begin_inset Index
30491 status collapsed
30492
30493 \begin_layout Plain Layout
30494 Commands ! 
30495 \begin_inset ERT
30496 status collapsed
30497
30498 \begin_layout Plain Layout
30499
30500 "
30501 \end_layout
30502
30503 \end_inset
30504
30505 @
30506 \begin_inset ERT
30507 status collapsed
30508
30509 \begin_layout Plain Layout
30510
30511 "
30512 \end_layout
30513
30514 \end_inset
30515
30516  ! 
30517 \backslash
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 \begin_inset ERT
30531 status collapsed
30532
30533 \begin_layout Plain Layout
30534
30535 "
30536 \end_layout
30537
30538 \end_inset
30539
30540 removefromreset
30541 \end_layout
30542
30543 \end_inset
30544
30545  can be used with the same scheme as 
30546 \series bold
30547
30548 \backslash
30549 @addtoreset
30550 \series default
30551 .
30552 \end_layout
30553
30554 \begin_layout Standard
30555 \begin_inset VSpace bigskip
30556 \end_inset
30557
30558 Sometimes formulas should be numbered in the following form:
30559 \end_layout
30560
30561 \begin_layout Standard
30562
30563 \family typewriter
30564 (section number.formula number)
30565 \end_layout
30566
30567 \begin_layout Standard
30568 The formula number should start with every section with 
30569 \begin_inset Quotes eld
30570 \end_inset
30571
30572 1
30573 \begin_inset Quotes erd
30574 \end_inset
30575
30576 .
30577 \end_layout
30578
30579 \begin_layout Standard
30580 For this case there is the command 
30581 \series bold
30582
30583 \backslash
30584 numberwithin
30585 \series default
30586
30587 \begin_inset Index
30588 status collapsed
30589
30590 \begin_layout Plain Layout
30591 Commands ! N ! 
30592 \backslash
30593 numberwithin
30594 \end_layout
30595
30596 \end_inset
30597
30598 , which is used with the following scheme:
30599 \end_layout
30600
30601 \begin_layout Standard
30602
30603 \series bold
30604
30605 \backslash
30606 numberwithin{counter}{sectioning}
30607 \end_layout
30608
30609 \begin_layout Standard
30610 Counter denotes what kind of numbering is affected, sectioning denotes what
30611  number is before the dot.
30612 \end_layout
30613
30614 \begin_layout Standard
30615 Thus in our case the following LaTeX-preamble or TeX-Code line is used:
30616 \end_layout
30617
30618 \begin_layout Standard
30619
30620 \series bold
30621
30622 \backslash
30623 numberwithin{equation}{section}
30624 \end_layout
30625
30626 \begin_layout Standard
30627 This is the result:
30628 \begin_inset ERT
30629 status collapsed
30630
30631 \begin_layout Plain Layout
30632
30633
30634 \backslash
30635 numberwithin{equation}{section}
30636 \end_layout
30637
30638 \end_inset
30639
30640
30641 \begin_inset Formula \begin{equation}
30642 A+B=C\end{equation}
30643
30644 \end_inset
30645
30646
30647 \end_layout
30648
30649 \begin_layout Standard
30650 To number e.
30651 \begin_inset space \thinspace{}
30652 \end_inset
30653
30654 g.
30655 \begin_inset space \space{}
30656 \end_inset
30657
30658 tables so that the number of the part is the sectioning,
30659 \begin_inset Newline newline
30660 \end_inset
30661
30662
30663 \series bold
30664
30665 \backslash
30666 numberwithin{table}{part}
30667 \series default
30668  is used.
30669 \end_layout
30670
30671 \begin_layout Standard
30672 To go back to the standard numbering or to prevent this kind of numbering
30673  when it is defined by the document class, the following command is inserted
30674  as TeX-Code or to the LaTeX-preamble:
30675 \end_layout
30676
30677 \begin_layout Standard
30678
30679 \series bold
30680
30681 \backslash
30682 renewcommand{
30683 \backslash
30684 theequation}{
30685 \backslash
30686 arabic{equation}}
30687 \begin_inset Index
30688 status collapsed
30689
30690 \begin_layout Plain Layout
30691 Commands ! A ! 
30692 \backslash
30693 arabic
30694 \end_layout
30695
30696 \end_inset
30697
30698
30699 \series default
30700
30701 \begin_inset ERT
30702 status collapsed
30703
30704 \begin_layout Plain Layout
30705
30706
30707 \backslash
30708 renewcommand{
30709 \backslash
30710 theequation}{
30711 \backslash
30712 arabic{equation}}
30713 \end_layout
30714
30715 \end_inset
30716
30717
30718 \series bold
30719
30720 \begin_inset Newline newline
30721 \end_inset
30722
30723
30724 \series default
30725 or
30726 \series bold
30727
30728 \begin_inset Newline newline
30729 \end_inset
30730
30731
30732 \backslash
30733 renewcommand{
30734 \backslash
30735 thetable}{
30736 \backslash
30737 arabic{table}}
30738 \end_layout
30739
30740 \begin_layout Standard
30741
30742 \series bold
30743
30744 \backslash
30745 numberwithin
30746 \series default
30747  uses internally the command 
30748 \series bold
30749
30750 \backslash
30751 @addtoreset
30752 \series default
30753 , described above, that also needs to be reverted.
30754 \begin_inset ERT
30755 status collapsed
30756
30757 \begin_layout Plain Layout
30758
30759
30760 \backslash
30761 makeatletter
30762 \end_layout
30763
30764 \begin_layout Plain Layout
30765
30766
30767 \backslash
30768 @removefromreset{equation}{section}
30769 \end_layout
30770
30771 \begin_layout Plain Layout
30772
30773
30774 \backslash
30775 makeatother
30776 \end_layout
30777
30778 \end_inset
30779
30780
30781 \end_layout
30782
30783 \begin_layout Subsection
30784 Numbering with Roman Numbers and Letters
30785 \begin_inset Index
30786 status collapsed
30787
30788 \begin_layout Plain Layout
30789 Formula numbering ! with letters
30790 \end_layout
30791
30792 \end_inset
30793
30794
30795 \begin_inset Index
30796 status collapsed
30797
30798 \begin_layout Plain Layout
30799 Formula numbering ! with Roman numbers
30800 \end_layout
30801
30802 \end_inset
30803
30804
30805 \end_layout
30806
30807 \begin_layout Standard
30808 Formulas can also be numbered with Roman numbers and Latin letters.
30809  To number for example with small Roman numbers, the command
30810 \end_layout
30811
30812 \begin_layout Standard
30813
30814 \series bold
30815
30816 \backslash
30817 renewcommand{
30818 \backslash
30819 theequation}{
30820 \backslash
30821 roman{equation}}
30822 \end_layout
30823
30824 \begin_layout Standard
30825 is inserted before the formula in TeX-mode.
30826  
30827 \series bold
30828
30829 \backslash
30830 renewcommand
30831 \series default
30832
30833 \begin_inset Index
30834 status collapsed
30835
30836 \begin_layout Plain Layout
30837 Commands ! R ! 
30838 \backslash
30839 renewcommand
30840 \end_layout
30841
30842 \end_inset
30843
30844  redefines the predefined command 
30845 \series bold
30846
30847 \backslash
30848 theequation
30849 \series default
30850  to the command 
30851 \series bold
30852
30853 \backslash
30854 roman{equation}
30855 \series default
30856 .
30857 \begin_inset Foot
30858 status collapsed
30859
30860 \begin_layout Plain Layout
30861 The command 
30862 \series bold
30863
30864 \backslash
30865 renewcommand
30866 \series default
30867  has the same scheme like the command 
30868 \series bold
30869
30870 \backslash
30871 newcommand
30872 \series default
30873  that is described in 
30874 \begin_inset CommandInset ref
30875 LatexCommand ref
30876 reference "sub:The-Command-newcommand"
30877
30878 \end_inset
30879
30880 .
30881 \end_layout
30882
30883 \end_inset
30884
30885  
30886 \series bold
30887 equation
30888 \series default
30889  is the formula counter.
30890  When the command 
30891 \series bold
30892
30893 \backslash
30894 the
30895 \series default
30896  is used as prefix for a counter, the value of the counter is output as
30897  Arabic number.
30898  When a formula is numbered, LaTeX sets internally the command 
30899 \series bold
30900
30901 \backslash
30902 theequation
30903 \series default
30904  behind the formula.
30905  
30906 \series bold
30907
30908 \backslash
30909 roman{equation}
30910 \begin_inset Index
30911 status collapsed
30912
30913 \begin_layout Plain Layout
30914 Commands ! R ! 
30915 \backslash
30916 roman
30917 \end_layout
30918
30919 \end_inset
30920
30921
30922 \series default
30923  outputs the counter as small Roman number.
30924 \end_layout
30925
30926 \begin_layout Standard
30927 All formulas behind the command 
30928 \series bold
30929
30930 \backslash
30931 renew
30932 \series default
30933 c
30934 \series bold
30935 ommand
30936 \series default
30937  are now numbered Roman.
30938  To switch to numbering with big Roman numbers, the command is inserted
30939  again, but 
30940 \series bold
30941
30942 \backslash
30943 roman
30944 \series default
30945  is replaced by 
30946 \series bold
30947
30948 \backslash
30949 Roman
30950 \series default
30951
30952 \begin_inset Index
30953 status collapsed
30954
30955 \begin_layout Plain Layout
30956 Commands ! R ! 
30957 \backslash
30958 roman@
30959 \backslash
30960 Roman
30961 \end_layout
30962
30963 \end_inset
30964
30965 .
30966  To 
30967 \begin_inset Quotes eld
30968 \end_inset
30969
30970 number
30971 \begin_inset Quotes erd
30972 \end_inset
30973
30974  with small Latin letters there is the command 
30975 \series bold
30976
30977 \backslash
30978 alph
30979 \series default
30980
30981 \begin_inset Index
30982 status collapsed
30983
30984 \begin_layout Plain Layout
30985 Commands ! A ! 
30986 \backslash
30987 alph
30988 \end_layout
30989
30990 \end_inset
30991
30992 , for big ones there is the command 
30993 \series bold
30994
30995 \backslash
30996 Alph
30997 \series default
30998
30999 \begin_inset Index
31000 status collapsed
31001
31002 \begin_layout Plain Layout
31003 Commands ! A ! 
31004 \backslash
31005 alph@
31006 \backslash
31007 Alph
31008 \end_layout
31009
31010 \end_inset
31011
31012 .
31013 \end_layout
31014
31015 \begin_layout Standard
31016 \begin_inset Note Greyedout
31017 status open
31018
31019 \begin_layout Plain Layout
31020
31021 \series bold
31022 Note:
31023 \series default
31024  Only maximal 26 formulas can be numbered with Latin letters in one document.
31025 \end_layout
31026
31027 \end_inset
31028
31029
31030 \end_layout
31031
31032 \begin_layout Standard
31033 \begin_inset ERT
31034 status collapsed
31035
31036 \begin_layout Plain Layout
31037
31038
31039 \backslash
31040 renewcommand{
31041 \backslash
31042 theequation}{
31043 \backslash
31044 roman{equation}}
31045 \end_layout
31046
31047 \end_inset
31048
31049
31050 \end_layout
31051
31052 \begin_layout Standard
31053 \begin_inset Formula \begin{equation}
31054 A=\textrm{small roman}\end{equation}
31055
31056 \end_inset
31057
31058
31059 \begin_inset ERT
31060 status collapsed
31061
31062 \begin_layout Plain Layout
31063
31064
31065 \backslash
31066 renewcommand{
31067 \backslash
31068 theequation}{
31069 \backslash
31070 Roman{equation}}
31071 \end_layout
31072
31073 \end_inset
31074
31075
31076 \begin_inset Formula \begin{equation}
31077 B=\textrm{big Roman}\label{eq:Rom}\end{equation}
31078
31079 \end_inset
31080
31081
31082 \begin_inset ERT
31083 status collapsed
31084
31085 \begin_layout Plain Layout
31086
31087
31088 \backslash
31089 renewcommand{
31090 \backslash
31091 theequation}{
31092 \backslash
31093 alph{equation}}
31094 \end_layout
31095
31096 \end_inset
31097
31098
31099 \begin_inset Formula \begin{equation}
31100 C=\textrm{small Latin}\end{equation}
31101
31102 \end_inset
31103
31104
31105 \begin_inset ERT
31106 status collapsed
31107
31108 \begin_layout Plain Layout
31109
31110
31111 \backslash
31112 renewcommand{
31113 \backslash
31114 theequation}{
31115 \backslash
31116 Alph{equation}}
31117 \end_layout
31118
31119 \end_inset
31120
31121
31122 \begin_inset Formula \begin{equation}
31123 D=\textrm{big Latin}\label{eq:Lat}\end{equation}
31124
31125 \end_inset
31126
31127
31128 \end_layout
31129
31130 \begin_layout Standard
31131 To switch back to the default numbering, insert the command:
31132 \end_layout
31133
31134 \begin_layout Standard
31135
31136 \series bold
31137
31138 \backslash
31139 renewcommand{
31140 \backslash
31141 theequation}{
31142 \backslash
31143 arabic{equation}}
31144 \begin_inset Index
31145 status collapsed
31146
31147 \begin_layout Plain Layout
31148 Commands ! A ! 
31149 \backslash
31150 arabic
31151 \end_layout
31152
31153 \end_inset
31154
31155
31156 \end_layout
31157
31158 \begin_layout Standard
31159 \begin_inset ERT
31160 status collapsed
31161
31162 \begin_layout Plain Layout
31163
31164
31165 \backslash
31166 renewcommand{
31167 \backslash
31168 theequation}{
31169 \backslash
31170 arabic{equation}}
31171 \end_layout
31172
31173 \end_inset
31174
31175
31176 \begin_inset Formula \begin{equation}
31177 E=\textrm{Arabic}\end{equation}
31178
31179 \end_inset
31180
31181
31182 \end_layout
31183
31184 \begin_layout Standard
31185 \begin_inset VSpace medskip
31186 \end_inset
31187
31188 As you see, formulas are numbered serially independent from the numbering
31189  style.
31190  When then numbering should start with 
31191 \begin_inset Quotes eld
31192 \end_inset
31193
31194 1
31195 \begin_inset Quotes erd
31196 \end_inset
31197
31198  when the style is changed, new equation counters have to be defined.
31199  A description about this can be found in the file 
31200 \begin_inset CommandInset href
31201 LatexCommand href
31202 name "Formula-numbering.lyx"
31203 target "run:Formula-numbering.lyx"
31204
31205 \end_inset
31206
31207 .
31208 \end_layout
31209
31210 \begin_layout Section
31211 Chemical Symbols and Equations
31212 \begin_inset CommandInset label
31213 LatexCommand label
31214 name "sub:Chemical-Symbols-and"
31215
31216 \end_inset
31217
31218
31219 \begin_inset Index
31220 status collapsed
31221
31222 \begin_layout Plain Layout
31223 Chemical characters ! Symbols
31224 \end_layout
31225
31226 \end_inset
31227
31228
31229 \begin_inset Index
31230 status collapsed
31231
31232 \begin_layout Plain Layout
31233 Chemical equations
31234 \end_layout
31235
31236 \end_inset
31237
31238
31239 \begin_inset Index
31240 status collapsed
31241
31242 \begin_layout Plain Layout
31243 Symbols ! chemical
31244 \end_layout
31245
31246 \end_inset
31247
31248
31249 \end_layout
31250
31251 \begin_layout Standard
31252 An example text from chemistry:
31253 \end_layout
31254
31255 \begin_layout Quote
31256 The 
31257 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31258 \end_inset
31259
31260 -ion reacts with two 
31261 \begin_inset Formula $\mathrm{Na^{+}}$
31262 \end_inset
31263
31264 -ions to sodium sulfate 
31265 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31266 \end_inset
31267
31268 .
31269  The chemical equation for this is:
31270 \begin_inset Formula \begin{equation}
31271 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chem-reaction}\end{equation}
31272
31273 \end_inset
31274
31275
31276 \end_layout
31277
31278 \begin_layout Standard
31279 This chemical equation can directly be created as formula.
31280  To avoid that the symbols appear italic, everything is highlighted and
31281  changed by the shortcut 
31282 \begin_inset Info
31283 type  "shortcut"
31284 arg   "font-roman"
31285 \end_inset
31286
31287  to the upright font style.
31288 \begin_inset Foot
31289 status collapsed
31290
31291 \begin_layout Plain Layout
31292 font styles
31293 \series bold
31294  
31295 \series default
31296 see 
31297 \begin_inset CommandInset ref
31298 LatexCommand ref
31299 reference "sub:Font-Styles"
31300
31301 \end_inset
31302
31303
31304 \end_layout
31305
31306 \end_inset
31307
31308
31309 \end_layout
31310
31311 \begin_layout Standard
31312 A more convenient way to typeset chemical formulas is to use the command
31313  
31314 \series bold
31315
31316 \backslash
31317 ce
31318 \series default
31319
31320 \begin_inset Index
31321 status collapsed
31322
31323 \begin_layout Plain Layout
31324 Commands ! C ! 
31325 \backslash
31326 ce
31327 \end_layout
31328
31329 \end_inset
31330
31331  that is available when the LaTeX-package 
31332 \series bold
31333 mhchem
31334 \series default
31335
31336 \begin_inset Index
31337 status collapsed
31338
31339 \begin_layout Plain Layout
31340 Packages ! mhchem
31341 \end_layout
31342
31343 \end_inset
31344
31345  is installed.
31346  After inserting 
31347 \series bold
31348
31349 \backslash
31350 ce
31351 \series default
31352  to a formula a new blue box appears where chemical formulas can be inserted
31353  in an intuitive way.
31354 \end_layout
31355
31356 \begin_layout Standard
31357 \align center
31358 \begin_inset Tabular
31359 <lyxtabular version="3" rows="9" columns="2">
31360 <features>
31361 <column alignment="center" valignment="top" width="0">
31362 <column alignment="center" valignment="top" width="0">
31363 <row>
31364 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31365 \begin_inset Text
31366
31367 \begin_layout Plain Layout
31368 Command
31369 \end_layout
31370
31371 \end_inset
31372 </cell>
31373 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31374 \begin_inset Text
31375
31376 \begin_layout Plain Layout
31377 Result
31378 \begin_inset Note Note
31379 status collapsed
31380
31381 \begin_layout Plain Layout
31382
31383 \series bold
31384
31385 \backslash
31386 raisebox
31387 \series default
31388  is only used as spacer.
31389 \end_layout
31390
31391 \end_inset
31392
31393
31394 \end_layout
31395
31396 \end_inset
31397 </cell>
31398 </row>
31399 <row>
31400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31401 \begin_inset Text
31402
31403 \begin_layout Plain Layout
31404
31405 \backslash
31406 ce
31407 \begin_inset ERT
31408 status collapsed
31409
31410 \begin_layout Plain Layout
31411
31412
31413 \backslash
31414 spce 
31415 \end_layout
31416
31417 \end_inset
31418
31419 H2CO3
31420 \end_layout
31421
31422 \end_inset
31423 </cell>
31424 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31425 \begin_inset Text
31426
31427 \begin_layout Plain Layout
31428 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31429 \end_inset
31430
31431
31432 \end_layout
31433
31434 \end_inset
31435 </cell>
31436 </row>
31437 <row>
31438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31439 \begin_inset Text
31440
31441 \begin_layout Plain Layout
31442
31443 \backslash
31444 ce
31445 \begin_inset ERT
31446 status collapsed
31447
31448 \begin_layout Plain Layout
31449
31450
31451 \backslash
31452 spce 
31453 \end_layout
31454
31455 \end_inset
31456
31457 SO4^2-
31458 \end_layout
31459
31460 \end_inset
31461 </cell>
31462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31463 \begin_inset Text
31464
31465 \begin_layout Plain Layout
31466 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
31467 \end_inset
31468
31469
31470 \end_layout
31471
31472 \end_inset
31473 </cell>
31474 </row>
31475 <row>
31476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31477 \begin_inset Text
31478
31479 \begin_layout Plain Layout
31480
31481 \backslash
31482 ce
31483 \begin_inset ERT
31484 status collapsed
31485
31486 \begin_layout Plain Layout
31487
31488
31489 \backslash
31490 spce 
31491 \end_layout
31492
31493 \end_inset
31494
31495 (NH4)2S
31496 \end_layout
31497
31498 \end_inset
31499 </cell>
31500 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31501 \begin_inset Text
31502
31503 \begin_layout Plain Layout
31504 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
31505 \end_inset
31506
31507
31508 \end_layout
31509
31510 \end_inset
31511 </cell>
31512 </row>
31513 <row>
31514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31515 \begin_inset Text
31516
31517 \begin_layout Plain Layout
31518
31519 \backslash
31520 ce
31521 \begin_inset ERT
31522 status collapsed
31523
31524 \begin_layout Plain Layout
31525
31526
31527 \backslash
31528 spce 
31529 \end_layout
31530
31531 \end_inset
31532
31533 KCr(SO4)2.12H2O
31534 \end_layout
31535
31536 \end_inset
31537 </cell>
31538 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31539 \begin_inset Text
31540
31541 \begin_layout Plain Layout
31542 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
31543 \end_inset
31544
31545
31546 \end_layout
31547
31548 \end_inset
31549 </cell>
31550 </row>
31551 <row>
31552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31553 \begin_inset Text
31554
31555 \begin_layout Plain Layout
31556
31557 \backslash
31558 ce
31559 \begin_inset ERT
31560 status collapsed
31561
31562 \begin_layout Plain Layout
31563
31564
31565 \backslash
31566 spce 
31567 \end_layout
31568
31569 \end_inset
31570
31571 A-B
31572 \backslash
31573 dbond
31574 \begin_inset ERT
31575 status collapsed
31576
31577 \begin_layout Plain Layout
31578
31579
31580 \backslash
31581 spce 
31582 \end_layout
31583
31584 \end_inset
31585
31586 C
31587 \backslash
31588 tbond
31589 \begin_inset ERT
31590 status collapsed
31591
31592 \begin_layout Plain Layout
31593
31594
31595 \backslash
31596 spce 
31597 \end_layout
31598
31599 \end_inset
31600
31601 D
31602 \end_layout
31603
31604 \end_inset
31605 </cell>
31606 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31607 \begin_inset Text
31608
31609 \begin_layout Plain Layout
31610 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
31611 \end_inset
31612
31613
31614 \end_layout
31615
31616 \end_inset
31617 </cell>
31618 </row>
31619 <row>
31620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31621 \begin_inset Text
31622
31623 \begin_layout Plain Layout
31624
31625 \backslash
31626 ce
31627 \begin_inset ERT
31628 status collapsed
31629
31630 \begin_layout Plain Layout
31631
31632
31633 \backslash
31634 spce 
31635 \end_layout
31636
31637 \end_inset
31638
31639 ^227
31640 \begin_inset Formula $\downarrow$
31641 \end_inset
31642
31643 _90
31644 \begin_inset Formula $\to$
31645 \end_inset
31646
31647 Th+
31648 \end_layout
31649
31650 \end_inset
31651 </cell>
31652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31653 \begin_inset Text
31654
31655 \begin_layout Plain Layout
31656 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
31657 \end_inset
31658
31659
31660 \end_layout
31661
31662 \end_inset
31663 </cell>
31664 </row>
31665 <row>
31666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31667 \begin_inset Text
31668
31669 \begin_layout Plain Layout
31670
31671 \backslash
31672 ce
31673 \begin_inset ERT
31674 status collapsed
31675
31676 \begin_layout Plain Layout
31677
31678
31679 \backslash
31680 spce 
31681 \end_layout
31682
31683 \end_inset
31684
31685 CO2
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 +
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 C
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 <=>
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 2CO
31738 \end_layout
31739
31740 \end_inset
31741 </cell>
31742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31743 \begin_inset Text
31744
31745 \begin_layout Plain Layout
31746 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
31747 \end_inset
31748
31749
31750 \end_layout
31751
31752 \end_inset
31753 </cell>
31754 </row>
31755 <row>
31756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31757 \begin_inset Text
31758
31759 \begin_layout Plain Layout
31760
31761 \backslash
31762 ce
31763 \begin_inset ERT
31764 status collapsed
31765
31766 \begin_layout Plain Layout
31767
31768
31769 \backslash
31770 spce 
31771 \end_layout
31772
31773 \end_inset
31774
31775 CO2
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 +
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 C
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 ->[
31815 \backslash
31816 alpha][
31817 \backslash
31818 beta]
31819 \begin_inset ERT
31820 status collapsed
31821
31822 \begin_layout Plain Layout
31823
31824
31825 \backslash
31826 spce 
31827 \end_layout
31828
31829 \end_inset
31830
31831 2CO}
31832 \end_layout
31833
31834 \end_inset
31835 </cell>
31836 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31837 \begin_inset Text
31838
31839 \begin_layout Plain Layout
31840 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
31841 \end_inset
31842
31843
31844 \end_layout
31845
31846 \end_inset
31847 </cell>
31848 </row>
31849 </lyxtabular>
31850
31851 \end_inset
31852
31853
31854 \end_layout
31855
31856 \begin_layout Standard
31857 \begin_inset Note Greyedout
31858 status open
31859
31860 \begin_layout Plain Layout
31861
31862 \series bold
31863 Note:
31864 \series default
31865  Inserting a formula to a 
31866 \series bold
31867
31868 \backslash
31869 ce
31870 \series default
31871  box will lead to LaTeX errors.
31872  In this case TeX code has to be used like for 
31873 \series bold
31874
31875 \backslash
31876 ce{$
31877 \backslash
31878 mu
31879 \backslash
31880 hyphen$Cl}
31881 \series default
31882
31883 \begin_inset ERT
31884 status collapsed
31885
31886 \begin_layout Plain Layout
31887
31888
31889 \backslash
31890 ce{$
31891 \backslash
31892 mu
31893 \backslash
31894 hyphen$Cl}
31895 \end_layout
31896
31897 \end_inset
31898
31899  
31900 \end_layout
31901
31902 \end_inset
31903
31904
31905 \end_layout
31906
31907 \begin_layout Standard
31908 Using 
31909 \series bold
31910
31911 \backslash
31912 ce
31913 \series default
31914  the command for equation
31915 \begin_inset space ~
31916 \end_inset
31917
31918
31919 \begin_inset CommandInset ref
31920 LatexCommand eqref
31921 reference "eq:chem-reaction"
31922
31923 \end_inset
31924
31925  is:
31926 \begin_inset Newline newline
31927 \end_inset
31928
31929
31930 \series bold
31931  
31932 \backslash
31933 ce
31934 \begin_inset ERT
31935 status collapsed
31936
31937 \begin_layout Plain Layout
31938
31939
31940 \backslash
31941 spce 
31942 \end_layout
31943
31944 \end_inset
31945
31946 2Na+
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 +
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 SO4^2-
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
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 Na2SO4
32012 \end_layout
32013
32014 \begin_layout Standard
32015 To create multiline chemical equations first a multiline formula is created
32016  as described in 
32017 \begin_inset CommandInset ref
32018 LatexCommand ref
32019 reference "sec:Multiline-Formulas"
32020
32021 \end_inset
32022
32023 .
32024  Afterwards the command 
32025 \series bold
32026
32027 \backslash
32028 ce
32029 \series default
32030  is used in every small blue box of the formula.
32031  
32032 \begin_inset CommandInset ref
32033 LatexCommand eqref
32034 reference "eq:TEOS-reaction-1"
32035
32036 \end_inset
32037
32038  and 
32039 \begin_inset CommandInset ref
32040 LatexCommand eqref
32041 reference "eq:TEOS-reaction-2"
32042
32043 \end_inset
32044
32045  are an example of a multi-stage chemical reaction where every equation
32046  has its own number.
32047 \begin_inset Formula \begin{eqnarray}
32048 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-reaction-1}\\
32049 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-reaction-2}\end{eqnarray}
32050
32051 \end_inset
32052
32053
32054 \end_layout
32055
32056 \begin_layout Standard
32057 Besides 
32058 \series bold
32059
32060 \backslash
32061 ce
32062 \series default
32063  the 
32064 \series bold
32065 mhchem
32066 \series default
32067  package provides the command 
32068 \series bold
32069
32070 \backslash
32071 cf
32072 \series default
32073
32074 \begin_inset Index
32075 status collapsed
32076
32077 \begin_layout Plain Layout
32078 Commands ! C ! 
32079 \backslash
32080 cf
32081 \end_layout
32082
32083 \end_inset
32084
32085  that has to be used for special cases.
32086  For more information about 
32087 \series bold
32088
32089 \backslash
32090 cf
32091 \series default
32092  and more examples have a look at the documentation of 
32093 \series bold
32094 mhchem
32095 \series default
32096
32097 \begin_inset CommandInset citation
32098 LatexCommand cite
32099 key "mhchem"
32100
32101 \end_inset
32102
32103 .
32104 \end_layout
32105
32106 \begin_layout Standard
32107 \begin_inset Newpage newpage
32108 \end_inset
32109
32110
32111 \end_layout
32112
32113 \begin_layout Section
32114 Diagrams
32115 \end_layout
32116
32117 \begin_layout Standard
32118 LyX supports two types of commutative diagrams: 
32119 \series bold
32120 amscd
32121 \series default
32122  and 
32123 \series bold
32124 xymatrix
32125 \series default
32126  that are explained in the following.
32127 \end_layout
32128
32129 \begin_layout Subsection
32130 Amscd Diagrams
32131 \begin_inset Index
32132 status collapsed
32133
32134 \begin_layout Plain Layout
32135 Diagrams ! amscd
32136 \end_layout
32137
32138 \end_inset
32139
32140
32141 \end_layout
32142
32143 \begin_layout Standard
32144 Diagrams of this type visualize relations by vertical and horizontal lines
32145  or arrows:
32146 \begin_inset Formula \[
32147 \begin{CD}A@>>>B@>>>C\\
32148 @AAA@.@VVV\\
32149 F@<<<E@<<<D\end{CD}\]
32150
32151 \end_inset
32152
32153
32154 \end_layout
32155
32156 \begin_layout Standard
32157 To get them, the command 
32158 \series bold
32159
32160 \backslash
32161 CD
32162 \begin_inset Index
32163 status collapsed
32164
32165 \begin_layout Plain Layout
32166 Commands ! C ! 
32167 \backslash
32168 CD
32169 \end_layout
32170
32171 \end_inset
32172
32173
32174 \series default
32175  is inserted to a formula.
32176  A blue box appears with two dashed lines where further commands can be
32177  inserted.
32178  With 
32179 \begin_inset Info
32180 type  "shortcut"
32181 arg   "newline-insert newline"
32182 \end_inset
32183
32184  a new line is created.
32185  Horizontal relations are inserted in odd, vertical in even formula lines.
32186 \end_layout
32187
32188 \begin_layout Standard
32189 To create the relations there are the following commands:
32190 \end_layout
32191
32192 \begin_layout Itemize
32193
32194 \series bold
32195 @<<<
32196 \series default
32197  creates a left arrow, 
32198 \series bold
32199 @>>>
32200 \series default
32201  a right arrow and 
32202 \series bold
32203 @=
32204 \series default
32205  a long equal sign
32206 \end_layout
32207
32208 \begin_layout Itemize
32209
32210 \series bold
32211 @AAA
32212 \series default
32213  creates an up arrow, 
32214 \series bold
32215 @VVV
32216 \series default
32217  an down arrow and 
32218 \series bold
32219 @|
32220 \series default
32221  a vertical equal sign
32222 \end_layout
32223
32224 \begin_layout Itemize
32225
32226 \series bold
32227 @.
32228
32229 \series default
32230  is a placeholder for non-existent relations
32231 \end_layout
32232
32233 \begin_layout Standard
32234 All arrows can be labeled as follows:
32235 \end_layout
32236
32237 \begin_layout Itemize
32238 Is text inserted between the first and second < or >, resp., it is placed
32239  above the arrow.
32240  When it is inserted between the second and third one, it appears under
32241  the arrow.
32242 \end_layout
32243
32244 \begin_layout Itemize
32245 When text for vertical arrows is inserted between the first and second A
32246  or V, resp., it is placed left beside the arrow.
32247  When it is inserted between the second and third one, it appears right
32248  beside the arrow.
32249  If the text contains an A or V, these letters must be set into a TeX-brace.
32250 \end_layout
32251
32252 \begin_layout Standard
32253 As example a diagram with all possible relations:
32254 \end_layout
32255
32256 \begin_layout Standard
32257 \begin_inset Formula \[
32258 \begin{CD}A@>j>>B@>>k>C@=F\\
32259 @AmAA@.@VV{V}V@|\\
32260 D@<<j<E@>k>>F@=C\end{CD}\]
32261
32262 \end_inset
32263
32264
32265 \end_layout
32266
32267 \begin_layout Standard
32268 The command for this is:
32269 \begin_inset Newline newline
32270 \end_inset
32271
32272
32273 \series bold
32274
32275 \backslash
32276 CD
32277 \begin_inset ERT
32278 status collapsed
32279
32280 \begin_layout Plain Layout
32281
32282
32283 \backslash
32284 spce 
32285 \end_layout
32286
32287 \end_inset
32288
32289 A@>j>>B@>>k>C@=F Ctrl+Return
32290 \begin_inset Newline newline
32291 \end_inset
32292
32293
32294 \begin_inset ERT
32295 status collapsed
32296
32297 \begin_layout Plain Layout
32298
32299
32300 \backslash
32301 hphantom{
32302 \end_layout
32303
32304 \end_inset
32305
32306
32307 \backslash
32308 CD
32309 \begin_inset ERT
32310 status collapsed
32311
32312 \begin_layout Plain Layout
32313
32314
32315 \backslash
32316 spce 
32317 \end_layout
32318
32319 \end_inset
32320
32321
32322 \begin_inset ERT
32323 status collapsed
32324
32325 \begin_layout Plain Layout
32326
32327 }
32328 \end_layout
32329
32330 \end_inset
32331
32332 @AmAA@.@VV
32333 \backslash
32334 {V
32335 \series default
32336
32337 \begin_inset Formula $\to$
32338 \end_inset
32339
32340
32341 \series bold
32342 V@| Ctrl+Return
32343 \begin_inset Newline newline
32344 \end_inset
32345
32346
32347 \begin_inset ERT
32348 status collapsed
32349
32350 \begin_layout Plain Layout
32351
32352
32353 \backslash
32354 hphantom{
32355 \end_layout
32356
32357 \end_inset
32358
32359
32360 \backslash
32361 CD
32362 \begin_inset ERT
32363 status collapsed
32364
32365 \begin_layout Plain Layout
32366
32367
32368 \backslash
32369 spce 
32370 \end_layout
32371
32372 \end_inset
32373
32374
32375 \begin_inset ERT
32376 status collapsed
32377
32378 \begin_layout Plain Layout
32379
32380 }
32381 \end_layout
32382
32383 \end_inset
32384
32385 D@<<j<E@>k>>F@=C
32386 \end_layout
32387
32388 \begin_layout Subsection
32389 Xymatrix Diagrams
32390 \begin_inset Index
32391 status collapsed
32392
32393 \begin_layout Plain Layout
32394 Diagrams ! xymatrix
32395 \end_layout
32396
32397 \end_inset
32398
32399
32400 \end_layout
32401
32402 \begin_layout Standard
32403 To be able to use xymatrices, the LaTeX-package 
32404 \series bold
32405 xypic
32406 \series default
32407  must be installed.
32408  A xymatrix is created by inserting the command 
32409 \series bold
32410
32411 \backslash
32412 xymatrix
32413 \series default
32414  in a formula.
32415  Then you are able to add new matrix columns and rows like for normal matrices,
32416  see 
32417 \begin_inset CommandInset ref
32418 LatexCommand ref
32419 reference "sec:Matrices"
32420
32421 \end_inset
32422
32423 .
32424 \end_layout
32425
32426 \begin_layout Standard
32427 In contrary to amscd diagrams, xymatrices supports diagonal and curved arrows,
32428  and much more.
32429  All possibilities to create commutative diagrams and decorations are explained
32430  in detail in the 
32431 \emph on
32432 XY-pic manual
32433 \emph default
32434  that you find in the menu 
32435 \family sans
32436 Help\SpecialChar \menuseparator
32437 Specific
32438 \begin_inset space ~
32439 \end_inset
32440
32441 Manuals\SpecialChar \menuseparator
32442 XY-pic
32443 \begin_inset space ~
32444 \end_inset
32445
32446 Manual
32447 \family default
32448 .
32449 \end_layout
32450
32451 \begin_layout Section
32452 User-defined Commands
32453 \begin_inset Index
32454 status collapsed
32455
32456 \begin_layout Plain Layout
32457 User-defined commands
32458 \end_layout
32459
32460 \end_inset
32461
32462
32463 \end_layout
32464
32465 \begin_layout Standard
32466 \begin_inset Note Greyedout
32467 status open
32468
32469 \begin_layout Plain Layout
32470
32471 \series bold
32472 Note:
32473 \series default
32474  The names of user-defined commands and macros may only consist of Latin
32475  letters.
32476 \end_layout
32477
32478 \end_inset
32479
32480
32481 \end_layout
32482
32483 \begin_layout Subsection
32484 The Command 
32485 \backslash
32486 newcommand
32487 \begin_inset CommandInset label
32488 LatexCommand label
32489 name "sub:The-Command-newcommand"
32490
32491 \end_inset
32492
32493
32494 \begin_inset Index
32495 status collapsed
32496
32497 \begin_layout Plain Layout
32498 User-defined commands ! 
32499 \backslash
32500 newcommand
32501 \end_layout
32502
32503 \end_inset
32504
32505
32506 \begin_inset Index
32507 status collapsed
32508
32509 \begin_layout Plain Layout
32510 Commands ! N ! 
32511 \backslash
32512 newcommand
32513 \end_layout
32514
32515 \end_inset
32516
32517
32518 \end_layout
32519
32520 \begin_layout Standard
32521 Many LaTeX-commands are too long to be used frequently.
32522  But it is possible to define with the command 
32523 \series bold
32524
32525 \backslash
32526 newcommand
32527 \series default
32528  new shorter commands.
32529 \end_layout
32530
32531 \begin_layout Standard
32532 The command scheme of 
32533 \series bold
32534
32535 \backslash
32536 newcommand
32537 \series default
32538  is:
32539 \end_layout
32540
32541 \begin_layout Standard
32542
32543 \series bold
32544
32545 \backslash
32546 newcommand{new command name}[number of arguments][optional
32547 \series default
32548  
32549 \series bold
32550 value]
32551 \begin_inset Newline newline
32552 \end_inset
32553
32554
32555 \begin_inset ERT
32556 status collapsed
32557
32558 \begin_layout Plain Layout
32559
32560
32561 \backslash
32562 phantom{
32563 \end_layout
32564
32565 \end_inset
32566
32567
32568 \backslash
32569 newcommand
32570 \begin_inset ERT
32571 status collapsed
32572
32573 \begin_layout Plain Layout
32574
32575 }
32576 \end_layout
32577
32578 \end_inset
32579
32580 {command definition}
32581 \end_layout
32582
32583 \begin_layout Standard
32584 \begin_inset Note Greyedout
32585 status open
32586
32587 \begin_layout Plain Layout
32588
32589 \series bold
32590 Note:
32591 \series default
32592  Assure that the name of the new command is not already used in your document
32593  or by LaTeX-packages that you use.
32594  When you for example define the command 
32595 \series bold
32596
32597 \backslash
32598 le
32599 \series default
32600  for 
32601 \series bold
32602
32603 \backslash
32604 Leftarrow
32605 \series default
32606 , you get an error message because 
32607 \series bold
32608
32609 \backslash
32610 le
32611 \series default
32612  is already defined as command for 
32613 \begin_inset Quotes eld
32614 \end_inset
32615
32616
32617 \begin_inset Formula $\le$
32618 \end_inset
32619
32620
32621 \begin_inset Quotes erd
32622 \end_inset
32623
32624 .
32625 \end_layout
32626
32627 \end_inset
32628
32629
32630 \end_layout
32631
32632 \begin_layout Standard
32633 The number of arguments is an integer in the range 0
32634 \begin_inset space \thinspace{}
32635 \end_inset
32636
32637 -
32638 \begin_inset space \thinspace{}
32639 \end_inset
32640
32641 9 and specifies how many arguments the new command should have.
32642  With the optional value a value for an optional argument can be predefined.
32643  When this is done, the 
32644 \emph on
32645 first
32646 \emph default
32647  
32648 \emph on
32649 a
32650 \emph default
32651 rgument of the new command is automatically an optional one.
32652 \end_layout
32653
32654 \begin_layout Standard
32655 Here are some examples:
32656 \end_layout
32657
32658 \begin_layout Itemize
32659 To define the command 
32660 \series bold
32661
32662 \backslash
32663 gr
32664 \series default
32665  for 
32666 \series bold
32667
32668 \backslash
32669 Longrightarrow
32670 \series default
32671 , the LaTeX-preamble line is:
32672 \begin_inset VSpace medskip
32673 \end_inset
32674
32675
32676 \begin_inset Newline newline
32677 \end_inset
32678
32679
32680 \series bold
32681
32682 \backslash
32683 newcommand{
32684 \backslash
32685 gr}{
32686 \backslash
32687 Longrightarrow}
32688 \end_layout
32689
32690 \begin_layout Itemize
32691 To define the command 
32692 \series bold
32693
32694 \backslash
32695 us
32696 \series default
32697  for 
32698 \series bold
32699
32700 \backslash
32701 underline
32702 \series default
32703 , the argument (that should be underlined) must be taken into account.
32704  For this the preamble line is:
32705 \begin_inset VSpace medskip
32706 \end_inset
32707
32708
32709 \begin_inset Newline newline
32710 \end_inset
32711
32712
32713 \series bold
32714
32715 \backslash
32716 newcommand{
32717 \backslash
32718 us}[1]{
32719 \backslash
32720 underline{#1}}
32721 \series default
32722
32723 \begin_inset VSpace medskip
32724 \end_inset
32725
32726
32727 \begin_inset Newline newline
32728 \end_inset
32729
32730 The character 
32731 \series bold
32732 #
32733 \series default
32734  acts as argument placeholder, the 
32735 \series bold
32736 1
32737 \series default
32738  behind it denotes that it is the placeholder for the first argument.
32739 \end_layout
32740
32741 \begin_layout Itemize
32742 For 
32743 \series bold
32744
32745 \backslash
32746 framebox
32747 \series default
32748  one can e.
32749 \begin_inset space \thinspace{}
32750 \end_inset
32751
32752 g.
32753 \begin_inset space \space{}
32754 \end_inset
32755
32756 define the command 
32757 \series bold
32758
32759 \backslash
32760 fb
32761 \series default
32762 :
32763 \begin_inset VSpace medskip
32764 \end_inset
32765
32766
32767 \begin_inset Newline newline
32768 \end_inset
32769
32770
32771 \series bold
32772
32773 \backslash
32774 newcommand{
32775 \backslash
32776 fb}[3]{
32777 \backslash
32778 framebox#1#2{$#3$}}
32779 \series default
32780
32781 \begin_inset VSpace medskip
32782 \end_inset
32783
32784
32785 \begin_inset Newline newline
32786 \end_inset
32787
32788 The two Dollar signs creates the extra formula needed for 
32789 \series bold
32790
32791 \backslash
32792 framebox
32793 \series default
32794 , see 
32795 \begin_inset CommandInset ref
32796 LatexCommand ref
32797 reference "sub:Boxes-with-Frame"
32798
32799 \end_inset
32800
32801 .
32802 \end_layout
32803
32804 \begin_layout Itemize
32805 To create a new command for 
32806 \series bold
32807
32808 \backslash
32809 fcolorbox
32810 \series default
32811  where the color for the box needn't to be specified, the argument for the
32812  color is defined optional:
32813 \begin_inset VSpace medskip
32814 \end_inset
32815
32816
32817 \begin_inset Newline newline
32818 \end_inset
32819
32820
32821 \series bold
32822
32823 \backslash
32824 newcommand{
32825 \backslash
32826 cb}[3][white]{
32827 \backslash
32828 fcolorbox{#2}{#1}{$#3$}}
32829 \series default
32830
32831 \begin_inset VSpace medskip
32832 \end_inset
32833
32834
32835 \begin_inset Newline newline
32836 \end_inset
32837
32838 When the color is not specified when using 
32839 \series bold
32840
32841 \backslash
32842 cb
32843 \series default
32844 , the predefined color 
32845 \series bold
32846 white
32847 \series default
32848  will be used.
32849 \end_layout
32850
32851 \begin_layout Standard
32852 A test of the new defined commands:
32853 \end_layout
32854
32855 \begin_layout Standard
32856 \align center
32857 \begin_inset Tabular
32858 <lyxtabular version="3" rows="6" columns="2">
32859 <features>
32860 <column alignment="center" valignment="top" width="0">
32861 <column alignment="center" valignment="top" width="0">
32862 <row>
32863 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32864 \begin_inset Text
32865
32866 \begin_layout Plain Layout
32867 Command
32868 \end_layout
32869
32870 \end_inset
32871 </cell>
32872 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32873 \begin_inset Text
32874
32875 \begin_layout Plain Layout
32876 Result
32877 \begin_inset Note Note
32878 status collapsed
32879
32880 \begin_layout Plain Layout
32881
32882 \series bold
32883
32884 \backslash
32885 raisebox
32886 \series default
32887  is only used as spacer.
32888 \end_layout
32889
32890 \end_inset
32891
32892
32893 \end_layout
32894
32895 \end_inset
32896 </cell>
32897 </row>
32898 <row>
32899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32900 \begin_inset Text
32901
32902 \begin_layout Plain Layout
32903 A
32904 \backslash
32905 gr
32906 \begin_inset ERT
32907 status collapsed
32908
32909 \begin_layout Plain Layout
32910
32911
32912 \backslash
32913 spce 
32914 \end_layout
32915
32916 \end_inset
32917
32918 B
32919 \end_layout
32920
32921 \end_inset
32922 </cell>
32923 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32924 \begin_inset Text
32925
32926 \begin_layout Plain Layout
32927 \begin_inset Formula $A\gr B$
32928 \end_inset
32929
32930
32931 \end_layout
32932
32933 \end_inset
32934 </cell>
32935 </row>
32936 <row>
32937 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32938 \begin_inset Text
32939
32940 \begin_layout Plain Layout
32941
32942 \backslash
32943 us{ABcd
32944 \end_layout
32945
32946 \end_inset
32947 </cell>
32948 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32949 \begin_inset Text
32950
32951 \begin_layout Plain Layout
32952 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
32953 \end_inset
32954
32955
32956 \end_layout
32957
32958 \end_inset
32959 </cell>
32960 </row>
32961 <row>
32962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32963 \begin_inset Text
32964
32965 \begin_layout Plain Layout
32966
32967 \backslash
32968 fb{[2cm]
32969 \begin_inset Formula $\to$
32970 \end_inset
32971
32972
32973 \backslash
32974 {
32975 \begin_inset Formula $\to$
32976 \end_inset
32977
32978
32979 \backslash
32980 {
32981 \backslash
32982 int
32983 \begin_inset ERT
32984 status collapsed
32985
32986 \begin_layout Plain Layout
32987
32988
32989 \backslash
32990 spce 
32991 \end_layout
32992
32993 \end_inset
32994
32995 A=B
32996 \end_layout
32997
32998 \end_inset
32999 </cell>
33000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33001 \begin_inset Text
33002
33003 \begin_layout Plain Layout
33004 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33005 \end_inset
33006
33007
33008 \end_layout
33009
33010 \end_inset
33011 </cell>
33012 </row>
33013 <row>
33014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33015 \begin_inset Text
33016
33017 \begin_layout Plain Layout
33018
33019 \backslash
33020 cb{red
33021 \begin_inset Formula $\to$
33022 \end_inset
33023
33024
33025 \backslash
33026 {
33027 \backslash
33028 int
33029 \begin_inset ERT
33030 status collapsed
33031
33032 \begin_layout Plain Layout
33033
33034
33035 \backslash
33036 spce 
33037 \end_layout
33038
33039 \end_inset
33040
33041 A=B
33042 \end_layout
33043
33044 \end_inset
33045 </cell>
33046 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33047 \begin_inset Text
33048
33049 \begin_layout Plain Layout
33050 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33051 \end_inset
33052
33053
33054 \end_layout
33055
33056 \end_inset
33057 </cell>
33058 </row>
33059 <row>
33060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33061 \begin_inset Text
33062
33063 \begin_layout Plain Layout
33064
33065 \backslash
33066 cb[green]
33067 \backslash
33068 {red
33069 \begin_inset Formula $\to$
33070 \end_inset
33071
33072
33073 \backslash
33074 {
33075 \backslash
33076 int
33077 \begin_inset ERT
33078 status collapsed
33079
33080 \begin_layout Plain Layout
33081
33082
33083 \backslash
33084 spce 
33085 \end_layout
33086
33087 \end_inset
33088
33089 A=B
33090 \end_layout
33091
33092 \end_inset
33093 </cell>
33094 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33095 \begin_inset Text
33096
33097 \begin_layout Plain Layout
33098 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33099 \end_inset
33100
33101
33102 \end_layout
33103
33104 \end_inset
33105 </cell>
33106 </row>
33107 </lyxtabular>
33108
33109 \end_inset
33110
33111
33112 \end_layout
33113
33114 \begin_layout Subsection
33115 Math Macros
33116 \begin_inset Index
33117 status collapsed
33118
33119 \begin_layout Plain Layout
33120 User-defined commands! Math macros
33121 \end_layout
33122
33123 \end_inset
33124
33125
33126 \begin_inset Index
33127 status collapsed
33128
33129 \begin_layout Plain Layout
33130 Macros
33131 \end_layout
33132
33133 \end_inset
33134
33135
33136 \end_layout
33137
33138 \begin_layout Standard
33139 User-defined commands are especially convenient for complex expressions.
33140  When you are for example dealing in a document with quadratic equations,
33141  the same solution type occurs several times.
33142  The general form of a quadratic equation is
33143 \begin_inset Formula \[
33144 0=\lambda^{2}+p\lambda+q\]
33145
33146 \end_inset
33147
33148 The general form of the solution is
33149 \begin_inset Formula \[
33150 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}\]
33151
33152 \end_inset
33153
33154
33155 \end_layout
33156
33157 \begin_layout Standard
33158 To define a command for the solution formula where only the three parameters
33159  
33160 \begin_inset Formula $\lambda$
33161 \end_inset
33162
33163
33164 \begin_inset Formula $p$
33165 \end_inset
33166
33167  and 
33168 \begin_inset Formula $q$
33169 \end_inset
33170
33171  need to be specified and the index of 
33172 \begin_inset Formula $\lambda$
33173 \end_inset
33174
33175  can be given optionally, the LaTeX-preamble line is
33176 \begin_inset Newline newline
33177 \end_inset
33178
33179
33180 \series bold
33181
33182 \backslash
33183 newcommand{
33184 \backslash
33185 qG}[4][1,
33186 \backslash
33187 ,2]{#2_{#1}=-
33188 \backslash
33189 frac{#3}{2}
33190 \backslash
33191 pm
33192 \begin_inset Newline newline
33193 \end_inset
33194
33195
33196 \begin_inset ERT
33197 status collapsed
33198
33199 \begin_layout Plain Layout
33200
33201
33202 \backslash
33203 hphantom{
33204 \end_layout
33205
33206 \end_inset
33207
33208
33209 \backslash
33210 newcommand
33211 \begin_inset ERT
33212 status collapsed
33213
33214 \begin_layout Plain Layout
33215
33216 }
33217 \end_layout
33218
33219 \end_inset
33220
33221
33222 \backslash
33223 sqrt{
33224 \backslash
33225 frac{#3^{2}}{4}-#4}}
33226 \end_layout
33227
33228 \begin_layout Standard
33229 To create with this the solution formula, the command
33230 \begin_inset Newline newline
33231 \end_inset
33232
33233
33234 \series bold
33235
33236 \backslash
33237 qG{
33238 \backslash
33239 lambda
33240 \begin_inset Formula $\to$
33241 \end_inset
33242
33243
33244 \backslash
33245 {p
33246 \begin_inset Formula $\to$
33247 \end_inset
33248
33249
33250 \backslash
33251 {q
33252 \series default
33253  is inserted to a formula
33254 \series bold
33255 .
33256 \end_layout
33257
33258 \begin_layout Standard
33259 The definition of the new command is unintuitive because one has to know
33260  the schemes of all used LaTeX commands, e.
33261 \begin_inset space \thinspace{}
33262 \end_inset
33263
33264 g.
33265 \begin_inset space \space{}
33266 \end_inset
33267
33268 that a fraction is inserted in LaTeX as 
33269 \series bold
33270
33271 \backslash
33272 frac{numerator}{denominator}
33273 \series default
33274 .
33275  Furthermore one can easily forget a brace in the definition and cannot
33276  see in LyX what the new command is doing.
33277  To avoid these problems LyX offers the possibility to use math macros instead
33278  of the command 
33279 \series bold
33280
33281 \backslash
33282 newcommand
33283 \series default
33284 .
33285 \end_layout
33286
33287 \begin_layout Standard
33288 A math macro is created by using the menu 
33289 \family sans
33290 Insert\SpecialChar \menuseparator
33291 Math\SpecialChar \menuseparator
33292 Macro
33293 \family default
33294  or the toolbar button 
33295 \begin_inset Graphics
33296         filename ../images/math-macro_newmacroname_newcommand.png
33297         scale 85
33298
33299 \end_inset
33300
33301 .
33302  The math macro toolbar appears together with the following box where the
33303  macro is defined:
33304 \begin_inset Newline newline
33305 \end_inset
33306
33307
33308 \begin_inset space \hspace*{\fill}
33309 \end_inset
33310
33311
33312 \begin_inset Graphics
33313         filename clipart/macrobox.png
33314
33315 \end_inset
33316
33317
33318 \begin_inset space \hspace*{\fill}
33319 \end_inset
33320
33321
33322 \begin_inset Newline newline
33323 \end_inset
33324
33325
33326 \begin_inset FormulaMacro
33327 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33328 \end_inset
33329
33330
33331 \backslash
33332 newmacroname is the default name of the macro that should be changed to
33333  something sensible.
33334  The wanted formula is inserted in the first blue box.
33335  An argument placeholder is inserted with the command 
33336 \series bold
33337
33338 \backslash
33339 #argumentnumber
33340 \series default
33341 , e.
33342 \begin_inset space \thinspace{}
33343 \end_inset
33344
33345 g
33346 \begin_inset space \space{}
33347 \end_inset
33348
33349
33350 \series bold
33351
33352 \backslash
33353 #1
33354 \series default
33355  or by using the macro toolbar button 
33356 \begin_inset Graphics
33357         filename ../images/math-macro-add-param.png
33358         scale 85
33359
33360 \end_inset
33361
33362 .
33363  Argument placeholders are displayed red.
33364  Maximum 9 arguments are possible.
33365  Optional arguments are created with the toolbar button 
33366 \begin_inset Graphics
33367         filename ../images/math-macro-add-optional-param.png
33368         scale 85
33369
33370 \end_inset
33371
33372 .
33373  The first non-optional argument can be transformed to an optional one with
33374  the toolbar button 
33375 \begin_inset Graphics
33376         filename ../images/math-macro-make-optional.png
33377         scale 85
33378
33379 \end_inset
33380
33381 .
33382  In the second blue box the appearance of the macro in LyX can be defined.
33383  Normally you want to see it as it is defined, so the box is kept empty.
33384  But when you have created a macro that needs lot of space on the screen,
33385  you can insert in the box for example
33386 \begin_inset Newline newline
33387 \end_inset
33388
33389
33390 \series bold
33391 qG: 
33392 \backslash
33393 #1
33394 \series default
33395  
33396 \series bold
33397 ,
33398 \series default
33399  
33400 \series bold
33401
33402 \backslash
33403 #2
33404 \series default
33405  
33406 \series bold
33407 ,
33408 \series default
33409  
33410 \series bold
33411
33412 \backslash
33413 #3, 
33414 \backslash
33415 #4
33416 \begin_inset Newline newline
33417 \end_inset
33418
33419
33420 \series default
33421 For the macro only the arguments with the macro name in front of them will
33422  then be displayed in LyX, leading to a better overview.
33423  The formula appears in the output as defined in the first box.
33424 \begin_inset Newline newline
33425 \end_inset
33426
33427 The appearance of macros in formulas can furthermore be changed for single
33428  macros by setting the cursor in the macro and using the menu 
33429 \family sans
33430 View\SpecialChar \menuseparator
33431 (Un)fold
33432 \begin_inset space ~
33433 \end_inset
33434
33435 Math
33436 \begin_inset space ~
33437 \end_inset
33438
33439 Macro
33440 \family default
33441 .
33442 \end_layout
33443
33444 \begin_layout Standard
33445 To use a macro, the macro name is inserted as command to a formula, in our
33446  case 
33447 \series bold
33448
33449 \backslash
33450 qG
33451 \series default
33452 .
33453  Our macro looks in LyX like this:
33454 \begin_inset Newline newline
33455 \end_inset
33456
33457
33458 \begin_inset space \hspace*{\fill}
33459 \end_inset
33460
33461
33462 \begin_inset Graphics
33463         filename clipart/macrouse.png
33464
33465 \end_inset
33466
33467
33468 \begin_inset space \hspace*{\fill}
33469 \end_inset
33470
33471
33472 \begin_inset Newline newline
33473 \end_inset
33474
33475 Here is our macro example with the arguments 
33476 \begin_inset Formula $x$
33477 \end_inset
33478
33479
33480 \begin_inset Formula $\ln(x)$
33481 \end_inset
33482
33483  and 
33484 \begin_inset Formula $B$
33485 \end_inset
33486
33487 :
33488 \end_layout
33489
33490 \begin_layout Standard
33491 \begin_inset Formula \[
33492 \qG x{\ln(x)}B\]
33493
33494 \end_inset
33495
33496
33497 \end_layout
33498
33499 \begin_layout Standard
33500 LyX offers in the menu 
33501 \family sans
33502 Tools\SpecialChar \menuseparator
33503 Preferences\SpecialChar \menuseparator
33504 Editing\SpecialChar \menuseparator
33505 Control
33506 \family default
33507  different styles to edit macros.
33508  To find the style that suits you the most, choose a style and set the cursor
33509  in a macro formula to see the difference.
33510 \end_layout
33511
33512 \begin_layout Standard
33513 A math macro is transformed internally to a 
33514 \series bold
33515
33516 \backslash
33517 newcommand
33518 \series default
33519  command when exporting the document.
33520  The created 
33521 \series bold
33522
33523 \backslash
33524 newcommand
33525 \series default
33526  command is not placed in the LaTeX-preamble, therefore macros can only
33527  be used in formulas that are in the document below the macro definition
33528  box.
33529 \end_layout
33530
33531 \begin_layout Standard
33532 Math macros can also be directly be created from a 
33533 \series bold
33534
33535 \backslash
33536 newcommand
33537 \series default
33538  command.
33539  When writing for example the command
33540 \series bold
33541
33542 \begin_inset Newline newline
33543 \end_inset
33544
33545
33546 \backslash
33547 newcommand{
33548 \backslash
33549 larrow}[2]{
33550 \backslash
33551 xleftarrow[#2]{#1}}
33552 \begin_inset Newline newline
33553 \end_inset
33554
33555
33556 \series default
33557 in LyX as normal text, highlighting it completely and using then the shortcut
33558  
33559 \family sans
33560 Ctrl+M
33561 \family default
33562 , the command will be transformed to a math macro.
33563  Using this method you need to be careful that the 
33564 \series bold
33565
33566 \backslash
33567 newcommand
33568 \series default
33569  command is typed correctly, otherwise you get a faulty macro leading to
33570  LaTeX errors.
33571 \end_layout
33572
33573 \begin_layout Standard
33574 Math macros currently yet have the problem that further formulas in macro
33575  definitions are handled wrongly.
33576  Therefore the example 
33577 \series bold
33578
33579 \backslash
33580 fb
33581 \series default
33582  from 
33583 \begin_inset CommandInset ref
33584 LatexCommand ref
33585 reference "sub:The-Command-newcommand"
33586
33587 \end_inset
33588
33589  cannot be created as macro.
33590 \end_layout
33591
33592 \begin_layout Standard
33593 When the cursor is in a macro definition box, you will see the macro toolbar
33594  in LyX:
33595 \end_layout
33596
33597 \begin_layout Standard
33598 \begin_inset VSpace defskip
33599 \end_inset
33600
33601
33602 \end_layout
33603
33604 \begin_layout Standard
33605 \begin_inset Graphics
33606         filename clipart/MacroToolbar.png
33607
33608 \end_inset
33609
33610
33611 \begin_inset Index
33612 status collapsed
33613
33614 \begin_layout Plain Layout
33615 Macros ! Toolbar
33616 \end_layout
33617
33618 \end_inset
33619
33620
33621 \end_layout
33622
33623 \begin_layout Standard
33624 \begin_inset VSpace defskip
33625 \end_inset
33626
33627
33628 \end_layout
33629
33630 \begin_layout Standard
33631 The macro toolbar contains from left to right the following buttons:
33632 \end_layout
33633
33634 \begin_layout Standard
33635 \begin_inset VSpace defskip
33636 \end_inset
33637
33638
33639 \end_layout
33640
33641 \begin_layout Standard
33642 \begin_inset Tabular
33643 <lyxtabular version="3" rows="9" columns="2">
33644 <features islongtable="true">
33645 <column alignment="left" valignment="top" width="0">
33646 <column alignment="left" valignment="top" width="85col%">
33647 <row interlinespace="2.5mm">
33648 <cell alignment="center" valignment="top" usebox="none">
33649 \begin_inset Text
33650
33651 \begin_layout Plain Layout
33652 \begin_inset Graphics
33653         filename ../images/math-macro-remove-param.png
33654         BoundingBox 0bp 5bp 20bp 25bp
33655         rotateOrigin center
33656
33657 \end_inset
33658
33659
33660 \end_layout
33661
33662 \end_inset
33663 </cell>
33664 <cell alignment="center" valignment="top" usebox="none">
33665 \begin_inset Text
33666
33667 \begin_layout Plain Layout
33668
33669 \family sans
33670 Edit\SpecialChar \menuseparator
33671 Math\SpecialChar \menuseparator
33672 Macro
33673 \begin_inset space ~
33674 \end_inset
33675
33676 Definition\SpecialChar \menuseparator
33677 Remove Last Argument
33678 \end_layout
33679
33680 \end_inset
33681 </cell>
33682 </row>
33683 <row interlinespace="2.5mm">
33684 <cell alignment="center" valignment="top" usebox="none">
33685 \begin_inset Text
33686
33687 \begin_layout Plain Layout
33688 \begin_inset Graphics
33689         filename ../images/math-macro-add-param.png
33690         BoundingBox 0bp 5bp 20bp 25bp
33691         rotateOrigin center
33692
33693 \end_inset
33694
33695
33696 \end_layout
33697
33698 \end_inset
33699 </cell>
33700 <cell alignment="center" valignment="top" usebox="none">
33701 \begin_inset Text
33702
33703 \begin_layout Plain Layout
33704
33705 \family sans
33706 Edit\SpecialChar \menuseparator
33707 Math\SpecialChar \menuseparator
33708 Macro
33709 \begin_inset space ~
33710 \end_inset
33711
33712 Definition\SpecialChar \menuseparator
33713 Append Argument
33714 \end_layout
33715
33716 \end_inset
33717 </cell>
33718 </row>
33719 <row interlinespace="2.5mm">
33720 <cell alignment="center" valignment="top" usebox="none">
33721 \begin_inset Text
33722
33723 \begin_layout Plain Layout
33724 \begin_inset Graphics
33725         filename ../images/math-macro-make-optional.png
33726         BoundingBox 0bp 5bp 20bp 25bp
33727         rotateOrigin center
33728
33729 \end_inset
33730
33731
33732 \end_layout
33733
33734 \end_inset
33735 </cell>
33736 <cell alignment="center" valignment="top" usebox="none">
33737 \begin_inset Text
33738
33739 \begin_layout Plain Layout
33740
33741 \family sans
33742 Edit\SpecialChar \menuseparator
33743 Math\SpecialChar \menuseparator
33744 Macro
33745 \begin_inset space ~
33746 \end_inset
33747
33748 Definition\SpecialChar \menuseparator
33749 Make First Non-Optional into
33750 \begin_inset Newline newline
33751 \end_inset
33752
33753
33754 \begin_inset ERT
33755 status collapsed
33756
33757 \begin_layout Plain Layout
33758
33759
33760 \backslash
33761 hphantom{
33762 \end_layout
33763
33764 \end_inset
33765
33766 Edit\SpecialChar \menuseparator
33767 Math\SpecialChar \menuseparator
33768 Macro
33769 \begin_inset space ~
33770 \end_inset
33771
33772 Definition\SpecialChar \menuseparator
33773
33774 \begin_inset ERT
33775 status collapsed
33776
33777 \begin_layout Plain Layout
33778
33779 }
33780 \end_layout
33781
33782 \end_inset
33783
33784 Optional Argument
33785 \end_layout
33786
33787 \end_inset
33788 </cell>
33789 </row>
33790 <row interlinespace="2.5mm">
33791 <cell alignment="center" valignment="top" usebox="none">
33792 \begin_inset Text
33793
33794 \begin_layout Plain Layout
33795 \begin_inset Graphics
33796         filename ../images/math-macro-make-nonoptional.png
33797         BoundingBox 0bp 5bp 20bp 25bp
33798         rotateOrigin center
33799
33800 \end_inset
33801
33802
33803 \end_layout
33804
33805 \end_inset
33806 </cell>
33807 <cell alignment="center" valignment="top" usebox="none">
33808 \begin_inset Text
33809
33810 \begin_layout Plain Layout
33811
33812 \family sans
33813 Edit\SpecialChar \menuseparator
33814 Math\SpecialChar \menuseparator
33815 Macro
33816 \begin_inset space ~
33817 \end_inset
33818
33819 Definition\SpecialChar \menuseparator
33820 Make Last Optional into
33821 \begin_inset Newline newline
33822 \end_inset
33823
33824
33825 \begin_inset ERT
33826 status collapsed
33827
33828 \begin_layout Plain Layout
33829
33830
33831 \backslash
33832 hphantom{
33833 \end_layout
33834
33835 \end_inset
33836
33837 Edit\SpecialChar \menuseparator
33838 Math\SpecialChar \menuseparator
33839 Macro
33840 \begin_inset space ~
33841 \end_inset
33842
33843 Definition\SpecialChar \menuseparator
33844
33845 \begin_inset ERT
33846 status collapsed
33847
33848 \begin_layout Plain Layout
33849
33850 }
33851 \end_layout
33852
33853 \end_inset
33854
33855 Non-Optional Argument
33856 \end_layout
33857
33858 \end_inset
33859 </cell>
33860 </row>
33861 <row interlinespace="2.5mm">
33862 <cell alignment="center" valignment="top" usebox="none">
33863 \begin_inset Text
33864
33865 \begin_layout Plain Layout
33866 \begin_inset Graphics
33867         filename ../images/math-macro-remove-optional-param.png
33868         BoundingBox 0bp 5bp 20bp 25bp
33869         rotateOrigin center
33870
33871 \end_inset
33872
33873
33874 \end_layout
33875
33876 \end_inset
33877 </cell>
33878 <cell alignment="center" valignment="top" usebox="none">
33879 \begin_inset Text
33880
33881 \begin_layout Plain Layout
33882
33883 \family sans
33884 Edit\SpecialChar \menuseparator
33885 Math\SpecialChar \menuseparator
33886 Macro
33887 \begin_inset space ~
33888 \end_inset
33889
33890 Definition\SpecialChar \menuseparator
33891 Remove Optional Argument
33892 \end_layout
33893
33894 \end_inset
33895 </cell>
33896 </row>
33897 <row interlinespace="2.5mm">
33898 <cell alignment="center" valignment="top" usebox="none">
33899 \begin_inset Text
33900
33901 \begin_layout Plain Layout
33902 \begin_inset Graphics
33903         filename ../images/math-macro-add-optional-param.png
33904         BoundingBox 0bp 5bp 20bp 25bp
33905         rotateOrigin center
33906
33907 \end_inset
33908
33909
33910 \end_layout
33911
33912 \end_inset
33913 </cell>
33914 <cell alignment="center" valignment="top" usebox="none">
33915 \begin_inset Text
33916
33917 \begin_layout Plain Layout
33918
33919 \family sans
33920 Edit\SpecialChar \menuseparator
33921 Math\SpecialChar \menuseparator
33922 Macro
33923 \begin_inset space ~
33924 \end_inset
33925
33926 Definition\SpecialChar \menuseparator
33927 Insert Optional Argument
33928 \end_layout
33929
33930 \end_inset
33931 </cell>
33932 </row>
33933 <row interlinespace="2.5mm">
33934 <cell alignment="center" valignment="top" usebox="none">
33935 \begin_inset Text
33936
33937 \begin_layout Plain Layout
33938 \begin_inset Graphics
33939         filename ../images/math-macro-remove-greedy-param.png
33940         BoundingBox 0bp 5bp 20bp 25bp
33941         rotateOrigin center
33942
33943 \end_inset
33944
33945
33946 \end_layout
33947
33948 \end_inset
33949 </cell>
33950 <cell alignment="center" valignment="top" usebox="none">
33951 \begin_inset Text
33952
33953 \begin_layout Plain Layout
33954
33955 \family sans
33956 Edit\SpecialChar \menuseparator
33957 Math\SpecialChar \menuseparator
33958 Macro
33959 \begin_inset space ~
33960 \end_inset
33961
33962 Definition\SpecialChar \menuseparator
33963 Remove Last Argument
33964 \begin_inset Newline newline
33965 \end_inset
33966
33967
33968 \begin_inset ERT
33969 status collapsed
33970
33971 \begin_layout Plain Layout
33972
33973
33974 \backslash
33975 hphantom{
33976 \end_layout
33977
33978 \end_inset
33979
33980 Edit\SpecialChar \menuseparator
33981 Math\SpecialChar \menuseparator
33982 Macro
33983 \begin_inset space ~
33984 \end_inset
33985
33986 Definition\SpecialChar \menuseparator
33987
33988 \begin_inset ERT
33989 status collapsed
33990
33991 \begin_layout Plain Layout
33992
33993 }
33994 \end_layout
33995
33996 \end_inset
33997
33998 Spitting Out To The Right
33999 \end_layout
34000
34001 \end_inset
34002 </cell>
34003 </row>
34004 <row interlinespace="2.5mm">
34005 <cell alignment="center" valignment="top" usebox="none">
34006 \begin_inset Text
34007
34008 \begin_layout Plain Layout
34009 \begin_inset Graphics
34010         filename ../images/math-macro-append-greedy-param.png
34011         BoundingBox 0bp 5bp 20bp 25bp
34012         rotateOrigin center
34013
34014 \end_inset
34015
34016
34017 \end_layout
34018
34019 \end_inset
34020 </cell>
34021 <cell alignment="center" valignment="top" usebox="none">
34022 \begin_inset Text
34023
34024 \begin_layout Plain Layout
34025
34026 \family sans
34027 Edit\SpecialChar \menuseparator
34028 Math\SpecialChar \menuseparator
34029 Macro
34030 \begin_inset space ~
34031 \end_inset
34032
34033 Definition\SpecialChar \menuseparator
34034 Append Argument
34035 \begin_inset Newline newline
34036 \end_inset
34037
34038
34039 \begin_inset ERT
34040 status collapsed
34041
34042 \begin_layout Plain Layout
34043
34044
34045 \backslash
34046 hphantom{
34047 \end_layout
34048
34049 \end_inset
34050
34051 Edit\SpecialChar \menuseparator
34052 Math\SpecialChar \menuseparator
34053 Macro
34054 \begin_inset space ~
34055 \end_inset
34056
34057 Definition\SpecialChar \menuseparator
34058
34059 \begin_inset ERT
34060 status collapsed
34061
34062 \begin_layout Plain Layout
34063
34064 }
34065 \end_layout
34066
34067 \end_inset
34068
34069 Eating From The Right
34070 \end_layout
34071
34072 \end_inset
34073 </cell>
34074 </row>
34075 <row interlinespace="2.5mm">
34076 <cell alignment="center" valignment="top" usebox="none">
34077 \begin_inset Text
34078
34079 \begin_layout Plain Layout
34080 \begin_inset Graphics
34081         filename ../images/math-macro-add-greedy-optional-param.png
34082         BoundingBox 0bp 5bp 20bp 25bp
34083         rotateOrigin center
34084
34085 \end_inset
34086
34087
34088 \end_layout
34089
34090 \end_inset
34091 </cell>
34092 <cell alignment="center" valignment="top" usebox="none">
34093 \begin_inset Text
34094
34095 \begin_layout Plain Layout
34096
34097 \family sans
34098 Edit\SpecialChar \menuseparator
34099 Math\SpecialChar \menuseparator
34100 Macro
34101 \begin_inset space ~
34102 \end_inset
34103
34104 Definition\SpecialChar \menuseparator
34105 Append Optional Argument
34106 \begin_inset Newline newline
34107 \end_inset
34108
34109
34110 \begin_inset ERT
34111 status collapsed
34112
34113 \begin_layout Plain Layout
34114
34115
34116 \backslash
34117 hphantom{
34118 \end_layout
34119
34120 \end_inset
34121
34122 Edit\SpecialChar \menuseparator
34123 Math\SpecialChar \menuseparator
34124 Macro
34125 \begin_inset space ~
34126 \end_inset
34127
34128 Definition\SpecialChar \menuseparator
34129
34130 \begin_inset ERT
34131 status collapsed
34132
34133 \begin_layout Plain Layout
34134
34135 }
34136 \end_layout
34137
34138 \end_inset
34139
34140 Eating From The Right
34141 \end_layout
34142
34143 \end_inset
34144 </cell>
34145 </row>
34146 </lyxtabular>
34147
34148 \end_inset
34149
34150
34151 \end_layout
34152
34153 \begin_layout Standard
34154 \begin_inset Newpage newpage
34155 \end_inset
34156
34157
34158 \end_layout
34159
34160 \begin_layout Section
34161 Tips
34162 \begin_inset Index
34163 status collapsed
34164
34165 \begin_layout Plain Layout
34166 Tips
34167 \end_layout
34168
34169 \end_inset
34170
34171
34172 \end_layout
34173
34174 \begin_layout Subsection
34175 Negative Numbers
34176 \begin_inset Index
34177 status collapsed
34178
34179 \begin_layout Plain Layout
34180 Numbers ! negative
34181 \end_layout
34182
34183 \end_inset
34184
34185
34186 \end_layout
34187
34188 \begin_layout Standard
34189 Negative numbers often look ugly in formulas because the minus sign before
34190  the number is set with the same length as the minus operator sign.
34191  When writing the negative number in normal text, the minus sign appears
34192  correctly.
34193 \end_layout
34194
34195 \begin_layout Standard
34196 Thus, the problem disappears when converting the minus sign to mathematical
34197  text.
34198 \end_layout
34199
34200 \begin_layout Standard
34201 An example to visualize the problem:
34202 \end_layout
34203
34204 \begin_layout Standard
34205 \align center
34206 \begin_inset Tabular
34207 <lyxtabular version="3" rows="3" columns="2">
34208 <features>
34209 <column alignment="right" valignment="top" width="0">
34210 <column alignment="left" valignment="top" width="0">
34211 <row>
34212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34213 \begin_inset Text
34214
34215 \begin_layout Plain Layout
34216 normal text:
34217 \end_layout
34218
34219 \end_inset
34220 </cell>
34221 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34222 \begin_inset Text
34223
34224 \begin_layout Plain Layout
34225 x = -2
34226 \end_layout
34227
34228 \end_inset
34229 </cell>
34230 </row>
34231 <row>
34232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34233 \begin_inset Text
34234
34235 \begin_layout Plain Layout
34236 formula:
34237 \end_layout
34238
34239 \end_inset
34240 </cell>
34241 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34242 \begin_inset Text
34243
34244 \begin_layout Plain Layout
34245 \begin_inset Formula $x=-2$
34246 \end_inset
34247
34248
34249 \end_layout
34250
34251 \end_inset
34252 </cell>
34253 </row>
34254 <row>
34255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34256 \begin_inset Text
34257
34258 \begin_layout Plain Layout
34259 solution:
34260 \end_layout
34261
34262 \end_inset
34263 </cell>
34264 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34265 \begin_inset Text
34266
34267 \begin_layout Plain Layout
34268 \begin_inset Formula $x=\textrm{-}2$
34269 \end_inset
34270
34271
34272 \end_layout
34273
34274 \end_inset
34275 </cell>
34276 </row>
34277 </lyxtabular>
34278
34279 \end_inset
34280
34281
34282 \end_layout
34283
34284 \begin_layout Subsection
34285 Comma as decimal Separator
34286 \begin_inset Index
34287 status collapsed
34288
34289 \begin_layout Plain Layout
34290 Comma
34291 \end_layout
34292
34293 \end_inset
34294
34295
34296 \end_layout
34297
34298 \begin_layout Standard
34299 In LaTeX a comma inside a formula is used, according to the English convention,
34300  as number group separator.
34301  So there will be space added behind all commas in formulas.
34302 \end_layout
34303
34304 \begin_layout Standard
34305 To avoid this, the comma is highlighted and changed to mathematical text
34306  (shortcut 
34307 \begin_inset Info
34308 type  "shortcut"
34309 arg   "math-mode"
34310 \end_inset
34311
34312 ).
34313 \end_layout
34314
34315 \begin_layout Standard
34316 To use all formula commas in the document as decimal separator, the file
34317  
34318 \series bold
34319 icomma.sty
34320 \series default
34321
34322 \begin_inset Foot
34323 status collapsed
34324
34325 \begin_layout Plain Layout
34326
34327 \series bold
34328 icomma
34329 \series default
34330  is part of the LaTeX-package 
34331 \series bold
34332 was
34333 \series default
34334
34335 \begin_inset Index
34336 status collapsed
34337
34338 \begin_layout Plain Layout
34339 Packages ! was
34340 \begin_inset ERT
34341 status collapsed
34342
34343 \begin_layout Plain Layout
34344
34345
34346 \backslash
34347 vspace{4mm}
34348 \end_layout
34349
34350 \end_inset
34351
34352
34353 \end_layout
34354
34355 \end_inset
34356
34357 .
34358 \end_layout
34359
34360 \end_inset
34361
34362
34363 \begin_inset Index
34364 status collapsed
34365
34366 \begin_layout Plain Layout
34367 Packages ! icomma
34368 \end_layout
34369
34370 \end_inset
34371
34372  is loaded with the LaTeX-preamble line
34373 \end_layout
34374
34375 \begin_layout Standard
34376
34377 \series bold
34378
34379 \backslash
34380 usepackage{icomma}
34381 \end_layout
34382
34383 \begin_layout Subsection
34384 Physical Vectors
34385 \begin_inset CommandInset label
34386 LatexCommand label
34387 name "sub:Physical-Vectors"
34388
34389 \end_inset
34390
34391
34392 \begin_inset Index
34393 status collapsed
34394
34395 \begin_layout Plain Layout
34396 Vectors ! physical
34397 \end_layout
34398
34399 \end_inset
34400
34401
34402 \end_layout
34403
34404 \begin_layout Standard
34405 Predefined vectors are offered by the LaTeX-package 
34406 \series bold
34407 braket
34408 \series default
34409
34410 \begin_inset Index
34411 status collapsed
34412
34413 \begin_layout Plain Layout
34414 Packages ! braket
34415 \end_layout
34416
34417 \end_inset
34418
34419  that is loaded with the LaTeX-preamble line
34420 \end_layout
34421
34422 \begin_layout Standard
34423
34424 \series bold
34425
34426 \backslash
34427 usepackage{braket}
34428 \end_layout
34429
34430 \begin_layout Standard
34431 \begin_inset ERT
34432 status collapsed
34433
34434 \begin_layout Plain Layout
34435
34436
34437 \backslash
34438 ifbraket 
34439 \end_layout
34440
34441 \end_inset
34442
34443
34444 \begin_inset Note Note
34445 status open
34446
34447 \begin_layout Plain Layout
34448 The following table will only be displayed when the LaTeX-package 
34449 \series bold
34450 braket
34451 \series default
34452  is installed.
34453 \end_layout
34454
34455 \end_inset
34456
34457
34458 \end_layout
34459
34460 \begin_layout Standard
34461 The following commands are defined:
34462 \end_layout
34463
34464 \begin_layout Standard
34465 \align center
34466 \begin_inset Tabular
34467 <lyxtabular version="3" rows="4" columns="2">
34468 <features>
34469 <column alignment="center" valignment="top" width="0">
34470 <column alignment="center" valignment="top" width="0">
34471 <row>
34472 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34473 \begin_inset Text
34474
34475 \begin_layout Plain Layout
34476 Command
34477 \end_layout
34478
34479 \end_inset
34480 </cell>
34481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34482 \begin_inset Text
34483
34484 \begin_layout Plain Layout
34485 Result
34486 \end_layout
34487
34488 \end_inset
34489 </cell>
34490 </row>
34491 <row>
34492 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34493 \begin_inset Text
34494
34495 \begin_layout Plain Layout
34496
34497 \backslash
34498 Bra{
34499 \backslash
34500 psi
34501 \end_layout
34502
34503 \end_inset
34504 </cell>
34505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34506 \begin_inset Text
34507
34508 \begin_layout Plain Layout
34509 \begin_inset Formula $\Bra{\psi}$
34510 \end_inset
34511
34512
34513 \end_layout
34514
34515 \end_inset
34516 </cell>
34517 </row>
34518 <row>
34519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34520 \begin_inset Text
34521
34522 \begin_layout Plain Layout
34523
34524 \backslash
34525 Ket{
34526 \backslash
34527 psi
34528 \end_layout
34529
34530 \end_inset
34531 </cell>
34532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34533 \begin_inset Text
34534
34535 \begin_layout Plain Layout
34536 \begin_inset Formula $\Ket{\psi}$
34537 \end_inset
34538
34539
34540 \end_layout
34541
34542 \end_inset
34543 </cell>
34544 </row>
34545 <row>
34546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34547 \begin_inset Text
34548
34549 \begin_layout Plain Layout
34550
34551 \backslash
34552 Braket{
34553 \backslash
34554 psi|
34555 \backslash
34556 phi
34557 \end_layout
34558
34559 \end_inset
34560 </cell>
34561 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34562 \begin_inset Text
34563
34564 \begin_layout Plain Layout
34565 \begin_inset Formula $\Braket{\psi|\phi}$
34566 \end_inset
34567
34568
34569 \end_layout
34570
34571 \end_inset
34572 </cell>
34573 </row>
34574 </lyxtabular>
34575
34576 \end_inset
34577
34578
34579 \end_layout
34580
34581 \begin_layout Standard
34582 The command 
34583 \series bold
34584
34585 \backslash
34586 Braket
34587 \series default
34588  assures that all vertical bars are set in the size of the surrounding brackets:
34589 \begin_inset Formula \[
34590 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
34591
34592 \end_inset
34593
34594
34595 \begin_inset ERT
34596 status collapsed
34597
34598 \begin_layout Plain Layout
34599
34600
34601 \backslash
34602 else 
34603 \end_layout
34604
34605 \end_inset
34606
34607
34608 \begin_inset Note Note
34609 status open
34610
34611 \begin_layout Plain Layout
34612 The following will be displayed when the LaTeX-package 
34613 \series bold
34614 braket
34615 \series default
34616  is not installed:
34617 \end_layout
34618
34619 \end_inset
34620
34621
34622 \end_layout
34623
34624 \begin_layout Standard
34625 You need to install the LaTeX-package 
34626 \series bold
34627 braket
34628 \series default
34629  to see the rest of this subsection in the output.
34630 \end_layout
34631
34632 \begin_layout Standard
34633 \begin_inset ERT
34634 status collapsed
34635
34636 \begin_layout Plain Layout
34637
34638
34639 \backslash
34640 fi 
34641 \end_layout
34642
34643 \end_inset
34644
34645
34646 \end_layout
34647
34648 \begin_layout Standard
34649 The effect of 
34650 \series bold
34651
34652 \backslash
34653 Braket
34654 \series default
34655  can also be achieved using the command 
34656 \series bold
34657
34658 \backslash
34659 middle
34660 \series default
34661 , that is described in 
34662 \begin_inset CommandInset ref
34663 LatexCommand ref
34664 reference "sub:Automatic-Bracket-Size"
34665
34666 \end_inset
34667
34668 .
34669 \end_layout
34670
34671 \begin_layout Subsection
34672 Self-defined Fractions
34673 \begin_inset CommandInset label
34674 LatexCommand label
34675 name "sub:Self-defined-Fractions"
34676
34677 \end_inset
34678
34679
34680 \begin_inset Index
34681 status collapsed
34682
34683 \begin_layout Plain Layout
34684 Fractions ! self-defined
34685 \end_layout
34686
34687 \end_inset
34688
34689
34690 \end_layout
34691
34692 \begin_layout Standard
34693 To define custom commands for fractions, the command 
34694 \series bold
34695
34696 \backslash
34697 genfrac
34698 \series default
34699
34700 \begin_inset Index
34701 status collapsed
34702
34703 \begin_layout Plain Layout
34704 Commands ! G ! 
34705 \backslash
34706 genfrac
34707 \end_layout
34708
34709 \end_inset
34710
34711  is used in the following scheme:
34712 \end_layout
34713
34714 \begin_layout Standard
34715
34716 \series bold
34717
34718 \backslash
34719 genfrac{left
34720 \series default
34721  
34722 \series bold
34723 bracket}{right
34724 \series default
34725  
34726 \series bold
34727 bracket}{fraction bar thickness}{style}
34728 \begin_inset Newline newline
34729 \end_inset
34730
34731
34732 \begin_inset ERT
34733 status collapsed
34734
34735 \begin_layout Plain Layout
34736
34737
34738 \backslash
34739 phantom{
34740 \end_layout
34741
34742 \end_inset
34743
34744
34745 \backslash
34746 genfrac
34747 \begin_inset ERT
34748 status collapsed
34749
34750 \begin_layout Plain Layout
34751
34752 }
34753 \end_layout
34754
34755 \end_inset
34756
34757 {numerator}{denominator}
34758 \end_layout
34759
34760 \begin_layout Standard
34761 The style is a number in the range of 0
34762 \begin_inset space \thinspace{}
34763 \end_inset
34764
34765 -
34766 \begin_inset space \thinspace{}
34767 \end_inset
34768
34769 3.
34770 \end_layout
34771
34772 \begin_layout Standard
34773 \align center
34774 \begin_inset Tabular
34775 <lyxtabular version="3" rows="5" columns="2">
34776 <features>
34777 <column alignment="center" valignment="top" width="0">
34778 <column alignment="center" valignment="top" width="0">
34779 <row>
34780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34781 \begin_inset Text
34782
34783 \begin_layout Plain Layout
34784 Number
34785 \end_layout
34786
34787 \end_inset
34788 </cell>
34789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34790 \begin_inset Text
34791
34792 \begin_layout Plain Layout
34793 Style (Size)
34794 \end_layout
34795
34796 \end_inset
34797 </cell>
34798 </row>
34799 <row>
34800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34801 \begin_inset Text
34802
34803 \begin_layout Plain Layout
34804 0
34805 \end_layout
34806
34807 \end_inset
34808 </cell>
34809 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34810 \begin_inset Text
34811
34812 \begin_layout Plain Layout
34813 display style formula
34814 \end_layout
34815
34816 \end_inset
34817 </cell>
34818 </row>
34819 <row>
34820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34821 \begin_inset Text
34822
34823 \begin_layout Plain Layout
34824 1
34825 \end_layout
34826
34827 \end_inset
34828 </cell>
34829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34830 \begin_inset Text
34831
34832 \begin_layout Plain Layout
34833 inline formula
34834 \end_layout
34835
34836 \end_inset
34837 </cell>
34838 </row>
34839 <row>
34840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34841 \begin_inset Text
34842
34843 \begin_layout Plain Layout
34844 2
34845 \end_layout
34846
34847 \end_inset
34848 </cell>
34849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34850 \begin_inset Text
34851
34852 \begin_layout Plain Layout
34853 small
34854 \end_layout
34855
34856 \end_inset
34857 </cell>
34858 </row>
34859 <row>
34860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34861 \begin_inset Text
34862
34863 \begin_layout Plain Layout
34864 3
34865 \end_layout
34866
34867 \end_inset
34868 </cell>
34869 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34870 \begin_inset Text
34871
34872 \begin_layout Plain Layout
34873 tiny
34874 \end_layout
34875
34876 \end_inset
34877 </cell>
34878 </row>
34879 </lyxtabular>
34880
34881 \end_inset
34882
34883
34884 \end_layout
34885
34886 \begin_layout Standard
34887 When no style is given, the size is adjusted to the surrounding environment
34888  like for the command 
34889 \series bold
34890
34891 \backslash
34892 frac
34893 \series default
34894 .
34895 \end_layout
34896
34897 \begin_layout Standard
34898 When no fraction bar thickness is given, the predefined value of 0.4
34899 \begin_inset space \thinspace{}
34900 \end_inset
34901
34902 pt will be used.
34903 \end_layout
34904
34905 \begin_layout Standard
34906 \begin_inset VSpace medskip
34907 \end_inset
34908
34909 For example, the commands 
34910 \series bold
34911
34912 \backslash
34913 dfrac
34914 \series default
34915  and 
34916 \series bold
34917
34918 \backslash
34919 tbinom
34920 \series default
34921  from 
34922 \begin_inset CommandInset ref
34923 LatexCommand ref
34924 reference "sub:Fractions"
34925
34926 \end_inset
34927
34928  are defined with the commands
34929 \end_layout
34930
34931 \begin_layout Standard
34932
34933 \series bold
34934
34935 \backslash
34936 newcommand{
34937 \backslash
34938 dfrac}[2]{
34939 \backslash
34940 genfrac{}{}{}{0}{#1}{#2}}
34941 \end_layout
34942
34943 \begin_layout Standard
34944 and
34945 \end_layout
34946
34947 \begin_layout Standard
34948
34949 \series bold
34950
34951 \backslash
34952 newcommand{
34953 \backslash
34954 tbinom}[2]{
34955 \backslash
34956 genfrac{(}{)}{0pt}{1}{#1}{#2}}
34957 \end_layout
34958
34959 \begin_layout Standard
34960 \begin_inset VSpace medskip
34961 \end_inset
34962
34963 To define a fraction where the fraction bar thickness can be given as optional
34964  argument, the following line is inserted to the LaTeX-preamble:
34965 \end_layout
34966
34967 \begin_layout Standard
34968
34969 \series bold
34970
34971 \backslash
34972 newcommand{
34973 \backslash
34974 fracS}[3][]{
34975 \backslash
34976 genfrac{}{}{#1}{}{#2}{#3}}
34977 \end_layout
34978
34979 \begin_layout Standard
34980 A test:
34981 \begin_inset Formula \begin{align*}
34982 \text{Command} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
34983 \text{Result} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}\end{align*}
34984
34985 \end_inset
34986
34987 As one can see, the distance of the numerator and the denominator to the
34988  fraction bar is round about three times the bar thickness.
34989 \end_layout
34990
34991 \begin_layout Subsection
34992 Canceled Formulas
34993 \begin_inset Index
34994 status collapsed
34995
34996 \begin_layout Plain Layout
34997 Formula ! canceled
34998 \end_layout
34999
35000 \end_inset
35001
35002
35003 \end_layout
35004
35005 \begin_layout Standard
35006 To cancel formulas or formula parts, the LaTeX-package 
35007 \series bold
35008 cancel
35009 \series default
35010
35011 \begin_inset Index
35012 status collapsed
35013
35014 \begin_layout Plain Layout
35015 Packages ! cancel
35016 \end_layout
35017
35018 \end_inset
35019
35020  has to be loaded with the LaTeX-preamble line
35021 \end_layout
35022
35023 \begin_layout Standard
35024
35025 \series bold
35026
35027 \backslash
35028 usepackage[samesize]{cancel}
35029 \end_layout
35030
35031 \begin_layout Standard
35032 \begin_inset ERT
35033 status collapsed
35034
35035 \begin_layout Plain Layout
35036
35037
35038 \backslash
35039 ifcancel 
35040 \end_layout
35041
35042 \end_inset
35043
35044
35045 \begin_inset Note Note
35046 status open
35047
35048 \begin_layout Plain Layout
35049 The following table will only be displayed when the LaTeX-package 
35050 \series bold
35051 cancel
35052 \series default
35053  is installed.
35054 \end_layout
35055
35056 \end_inset
35057
35058
35059 \end_layout
35060
35061 \begin_layout Standard
35062 There are four ways to cancel formulas:
35063 \end_layout
35064
35065 \begin_layout Standard
35066 \align center
35067 \begin_inset Tabular
35068 <lyxtabular version="3" rows="5" columns="2">
35069 <features>
35070 <column alignment="center" valignment="top" width="0">
35071 <column alignment="center" valignment="top" width="0">
35072 <row>
35073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35074 \begin_inset Text
35075
35076 \begin_layout Plain Layout
35077 Command
35078 \end_layout
35079
35080 \end_inset
35081 </cell>
35082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35083 \begin_inset Text
35084
35085 \begin_layout Plain Layout
35086 Result
35087 \begin_inset Note Note
35088 status collapsed
35089
35090 \begin_layout Plain Layout
35091 The space and
35092 \series bold
35093  
35094 \backslash
35095 raisebox
35096 \series default
35097  are used here as spacer.
35098 \end_layout
35099
35100 \end_inset
35101
35102
35103 \end_layout
35104
35105 \end_inset
35106 </cell>
35107 </row>
35108 <row>
35109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35110 \begin_inset Text
35111
35112 \begin_layout Plain Layout
35113
35114 \backslash
35115 cancel{
35116 \backslash
35117 int
35118 \begin_inset ERT
35119 status collapsed
35120
35121 \begin_layout Plain Layout
35122
35123
35124 \backslash
35125 spce 
35126 \end_layout
35127
35128 \end_inset
35129
35130 A=B
35131 \end_layout
35132
35133 \end_inset
35134 </cell>
35135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35136 \begin_inset Text
35137
35138 \begin_layout Plain Layout
35139 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35140 \end_inset
35141
35142
35143 \end_layout
35144
35145 \end_inset
35146 </cell>
35147 </row>
35148 <row>
35149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35150 \begin_inset Text
35151
35152 \begin_layout Plain Layout
35153
35154 \backslash
35155 bcancel{
35156 \backslash
35157 int
35158 \begin_inset ERT
35159 status collapsed
35160
35161 \begin_layout Plain Layout
35162
35163
35164 \backslash
35165 spce 
35166 \end_layout
35167
35168 \end_inset
35169
35170 A=B
35171 \end_layout
35172
35173 \end_inset
35174 </cell>
35175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35176 \begin_inset Text
35177
35178 \begin_layout Plain Layout
35179 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35180 \end_inset
35181
35182
35183 \end_layout
35184
35185 \end_inset
35186 </cell>
35187 </row>
35188 <row>
35189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35190 \begin_inset Text
35191
35192 \begin_layout Plain Layout
35193
35194 \backslash
35195 xcancel{
35196 \backslash
35197 int
35198 \begin_inset ERT
35199 status collapsed
35200
35201 \begin_layout Plain Layout
35202
35203
35204 \backslash
35205 spce 
35206 \end_layout
35207
35208 \end_inset
35209
35210 A=B
35211 \end_layout
35212
35213 \end_inset
35214 </cell>
35215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35216 \begin_inset Text
35217
35218 \begin_layout Plain Layout
35219 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35220 \end_inset
35221
35222
35223 \end_layout
35224
35225 \end_inset
35226 </cell>
35227 </row>
35228 <row>
35229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35230 \begin_inset Text
35231
35232 \begin_layout Plain Layout
35233
35234 \backslash
35235 cancelto{1
35236 \begin_inset Formula $\to$
35237 \end_inset
35238
35239
35240 \backslash
35241 {
35242 \backslash
35243 int
35244 \begin_inset ERT
35245 status collapsed
35246
35247 \begin_layout Plain Layout
35248
35249
35250 \backslash
35251 spce 
35252 \end_layout
35253
35254 \end_inset
35255
35256 A=B
35257 \end_layout
35258
35259 \end_inset
35260 </cell>
35261 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35262 \begin_inset Text
35263
35264 \begin_layout Plain Layout
35265 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35266 \end_inset
35267
35268
35269 \end_layout
35270
35271 \end_inset
35272 </cell>
35273 </row>
35274 </lyxtabular>
35275
35276 \end_inset
35277
35278
35279 \end_layout
35280
35281 \begin_layout Standard
35282
35283 \series bold
35284
35285 \backslash
35286 cancelto
35287 \series default
35288  is especially suitable to visualize the reduction of fractions within formulas:
35289 \begin_inset Formula \[
35290 \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}}}\]
35291
35292 \end_inset
35293
35294
35295 \end_layout
35296
35297 \begin_layout Standard
35298 \begin_inset ERT
35299 status collapsed
35300
35301 \begin_layout Plain Layout
35302
35303
35304 \backslash
35305 else 
35306 \end_layout
35307
35308 \end_inset
35309
35310
35311 \begin_inset Note Note
35312 status open
35313
35314 \begin_layout Plain Layout
35315 The following will be displayed when the LaTeX-package 
35316 \series bold
35317 cancel
35318 \series default
35319  is not installed:
35320 \end_layout
35321
35322 \end_inset
35323
35324
35325 \end_layout
35326
35327 \begin_layout Standard
35328 You need to install the LaTeX-package 
35329 \series bold
35330 cancel
35331 \series default
35332  to see the rest of this subsection in the output.
35333 \end_layout
35334
35335 \begin_layout Standard
35336 \begin_inset ERT
35337 status collapsed
35338
35339 \begin_layout Plain Layout
35340
35341
35342 \backslash
35343 fi 
35344 \end_layout
35345
35346 \end_inset
35347
35348
35349 \end_layout
35350
35351 \begin_layout Subsection
35352 Formulas in Section Headings
35353 \begin_inset CommandInset label
35354 LatexCommand label
35355 name "sub:Formulas-in-Section"
35356
35357 \end_inset
35358
35359
35360 \begin_inset Index
35361 status collapsed
35362
35363 \begin_layout Plain Layout
35364 Formula ! in section headings
35365 \end_layout
35366
35367 \end_inset
35368
35369
35370 \end_layout
35371
35372 \begin_layout Standard
35373 When formulas are used in section headings, the following has to be taken
35374  into account:
35375 \end_layout
35376
35377 \begin_layout Standard
35378 \begin_inset Note Greyedout
35379 status open
35380
35381 \begin_layout Plain Layout
35382 When 
35383 \series bold
35384 hyperref
35385 \series default
35386
35387 \begin_inset Index
35388 status collapsed
35389
35390 \begin_layout Plain Layout
35391 Packages ! hyperref
35392 \end_layout
35393
35394 \end_inset
35395
35396  support is enabled in the document settings dialog under 
35397 \family sans
35398 PDF
35399 \begin_inset space ~
35400 \end_inset
35401
35402 Properties
35403 \family default
35404 , PDF-bookmarks are created for every section heading in the table of contents.
35405  If a section heading contains formulas, they are incorrectly displayed
35406  in the bookmark text, because formulas in bookmarks infringe the PDF convention
35407 s.
35408 \end_layout
35409
35410 \end_inset
35411
35412
35413 \end_layout
35414
35415 \begin_layout Standard
35416 Both problems can be solved by inserting at the end of the section heading
35417  a short title with the menu 
35418 \family sans
35419 Insert\SpecialChar \menuseparator
35420 Short
35421 \begin_inset space ~
35422 \end_inset
35423
35424 Title
35425 \family default
35426 .
35427  Short titles are used as alternative for multiline section headings to
35428  keep the table of contents clearly arranged.
35429  Only the short title appears in the table of contents and therefore also
35430  in the PDF-bookmark.
35431 \end_layout
35432
35433 \begin_layout Standard
35434 When formulas should be used in the table of contents but 
35435 \series bold
35436 hyperref
35437 \series default
35438  is used, one can use the following command in TeX-mode:
35439 \end_layout
35440
35441 \begin_layout Standard
35442
35443 \series bold
35444
35445 \backslash
35446 texorpdfstring{part}{alternative}
35447 \begin_inset Index
35448 status collapsed
35449
35450 \begin_layout Plain Layout
35451 Commands ! T ! 
35452 \backslash
35453 texorpdfstring
35454 \end_layout
35455
35456 \end_inset
35457
35458
35459 \end_layout
35460
35461 \begin_layout Standard
35462 Part is the part of the heading that shouldn't appear in the PDF-bookmark.
35463  This can be characters, formulas, footnotes, but also cross-references.
35464  The alternative is used instead of the part for the bookmark.
35465 \end_layout
35466
35467 \begin_layout Standard
35468 Here are two example headings:
35469 \begin_inset VSpace -3mm
35470 \end_inset
35471
35472
35473 \begin_inset ERT
35474 status collapsed
35475
35476 \begin_layout Plain Layout
35477
35478
35479 \backslash
35480 boldmath 
35481 \end_layout
35482
35483 \end_inset
35484
35485
35486 \end_layout
35487
35488 \begin_layout Subsubsection
35489 Heading without formula in table of contents 
35490 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35491 \end_inset
35492
35493
35494 \begin_inset OptArg
35495 status collapsed
35496
35497 \begin_layout Plain Layout
35498 Heading without formula in table of contents
35499 \end_layout
35500
35501 \end_inset
35502
35503
35504 \end_layout
35505
35506 \begin_layout Subsubsection
35507 Heading with formula in table of contents
35508 \begin_inset ERT
35509 status collapsed
35510
35511 \begin_layout Plain Layout
35512
35513
35514 \backslash
35515 texorpdfstring{
35516 \end_layout
35517
35518 \end_inset
35519
35520  
35521 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35522 \end_inset
35523
35524
35525 \begin_inset ERT
35526 status collapsed
35527
35528 \begin_layout Plain Layout
35529
35530 }{}
35531 \end_layout
35532
35533 \end_inset
35534
35535
35536 \end_layout
35537
35538 \begin_layout Standard
35539 \begin_inset ERT
35540 status collapsed
35541
35542 \begin_layout Plain Layout
35543
35544
35545 \backslash
35546 unboldmath 
35547 \end_layout
35548
35549 \end_inset
35550
35551 In the first heading a short title was used, in the second one 
35552 \series bold
35553
35554 \backslash
35555 texorpdfstring
35556 \series default
35557 .
35558 \end_layout
35559
35560 \begin_layout Standard
35561 To get the same formatting as for the other headings, the complete heading
35562  was set into a 
35563 \series bold
35564 boldmath
35565 \series default
35566  environment
35567 \begin_inset Foot
35568 status collapsed
35569
35570 \begin_layout Plain Layout
35571 see 
35572 \begin_inset CommandInset ref
35573 LatexCommand ref
35574 reference "sub:Bold-Formulas"
35575
35576 \end_inset
35577
35578
35579 \end_layout
35580
35581 \end_inset
35582
35583 .
35584 \end_layout
35585
35586 \begin_layout Subsection
35587 Formulas in multi-column Text
35588 \begin_inset Index
35589 status collapsed
35590
35591 \begin_layout Plain Layout
35592 Formula ! in multi-column text
35593 \end_layout
35594
35595 \end_inset
35596
35597
35598 \end_layout
35599
35600 \begin_layout Standard
35601 Formulas in multi-column text are often too wide to fit into a column and
35602  thus need to be set over the whole page width.
35603  This is done by using the LaTeX-package 
35604 \series bold
35605 multicol
35606 \series default
35607
35608 \begin_inset Foot
35609 status collapsed
35610
35611 \begin_layout Plain Layout
35612
35613 \series bold
35614 multicol
35615 \series default
35616  is part of every LaTeX standard installation.
35617 \end_layout
35618
35619 \end_inset
35620
35621
35622 \begin_inset Index
35623 status collapsed
35624
35625 \begin_layout Plain Layout
35626 Packages ! multicol
35627 \end_layout
35628
35629 \end_inset
35630
35631 , that is loaded with the LaTeX-preamble line
35632 \end_layout
35633
35634 \begin_layout Standard
35635
35636 \series bold
35637
35638 \backslash
35639 usepackage{multicol}
35640 \end_layout
35641
35642 \begin_layout Standard
35643 \begin_inset Note Greyedout
35644 status open
35645
35646 \begin_layout Plain Layout
35647 Note herby that the setting 
35648 \family sans
35649 Two-column
35650 \begin_inset space ~
35651 \end_inset
35652
35653 document
35654 \family default
35655  in the menu 
35656 \family sans
35657 Document\SpecialChar \menuseparator
35658 Settings
35659 \family default
35660  under 
35661 \family sans
35662 Text
35663 \begin_inset space ~
35664 \end_inset
35665
35666 Layout
35667 \family default
35668 \emph on
35669  
35670 \emph default
35671 must 
35672 \emph on
35673 not
35674 \emph default
35675  be selected.
35676 \end_layout
35677
35678 \end_inset
35679
35680
35681 \end_layout
35682
35683 \begin_layout Standard
35684 Before the multi-column text the command
35685 \end_layout
35686
35687 \begin_layout Standard
35688
35689 \series bold
35690
35691 \backslash
35692 begin{multicols}{column number}
35693 \end_layout
35694
35695 \begin_layout Standard
35696 is written in TeX-mode.
35697  The column number is a number in the range of 2
35698 \begin_inset space \thinspace{}
35699 \end_inset
35700
35701 -
35702 \begin_inset space \thinspace{}
35703 \end_inset
35704
35705 10.
35706  Before the formula the multi-column text is ended by inserting the command
35707 \end_layout
35708
35709 \begin_layout Standard
35710
35711 \series bold
35712
35713 \backslash
35714 end{multicols}
35715 \end_layout
35716
35717 \begin_layout Standard
35718 in TeX-mode.
35719 \end_layout
35720
35721 \begin_layout Standard
35722 Due to the command some space is automatically added before the formula.
35723  To revert this, -6
35724 \begin_inset space \thinspace{}
35725 \end_inset
35726
35727 mm vertical space is inserted before the formula.
35728  When the formula style 
35729 \series bold
35730 Indented
35731 \begin_inset Foot
35732 status collapsed
35733
35734 \begin_layout Plain Layout
35735 formula styles see 
35736 \begin_inset CommandInset ref
35737 LatexCommand ref
35738 reference "sec:Formula-Styles"
35739
35740 \end_inset
35741
35742
35743 \end_layout
35744
35745 \end_inset
35746
35747
35748 \series default
35749  is used, -9
35750 \begin_inset space \thinspace{}
35751 \end_inset
35752
35753 mm space is inserted instead.
35754 \end_layout
35755
35756 \begin_layout Standard
35757 As example a multi-column text with a displayed formula:
35758 \end_layout
35759
35760 \begin_layout Standard
35761
35762 \lang german
35763 \begin_inset ERT
35764 status collapsed
35765
35766 \begin_layout Plain Layout
35767
35768
35769 \backslash
35770 begin{multicols}{2}
35771 \end_layout
35772
35773 \end_inset
35774
35775 Das Spektrum wird fouriertransformiert.
35776  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
35777 , Lösungsmittel) zu trennen.
35778  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
35779  nun das Aussehen des Ausgangssignals.
35780  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
35781  über alle Phasen integrieren muss.
35782  Sei nun 
35783 \begin_inset Formula $S$
35784 \end_inset
35785
35786  unser normiertes Ausgangssignal und 
35787 \begin_inset Formula $P$
35788 \end_inset
35789
35790  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
35791 \begin_inset ERT
35792 status collapsed
35793
35794 \begin_layout Plain Layout
35795
35796
35797 \backslash
35798 end{multicols}
35799 \end_layout
35800
35801 \end_inset
35802
35803
35804 \begin_inset VSpace -6mm
35805 \end_inset
35806
35807
35808 \begin_inset Formula \begin{equation}
35809 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\end{equation}
35810
35811 \end_inset
35812
35813
35814 \begin_inset ERT
35815 status collapsed
35816
35817 \begin_layout Plain Layout
35818
35819
35820 \backslash
35821 begin{multicols}{2}
35822 \end_layout
35823
35824 \end_inset
35825
35826 wobei 
35827 \begin_inset Formula $S_{0}$
35828 \end_inset
35829
35830  das Signal ohne Gradient ist und die Normierungsbedingung 
35831 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
35832 \end_inset
35833
35834  gilt.
35835  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
35836  Direkt nach dem 
35837 \begin_inset Formula $\nicefrac{\pi}{2}$
35838 \end_inset
35839
35840
35841 \begin_inset space \thinspace{}
35842 \end_inset
35843
35844 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
35845  das Signal zusätzlich abschwächt.
35846  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
35847  
35848 \begin_inset Formula $T_{2}$
35849 \end_inset
35850
35851 -Zeit.
35852 \end_layout
35853
35854 \begin_layout Standard
35855
35856 \lang german
35857 \begin_inset ERT
35858 status collapsed
35859
35860 \begin_layout Plain Layout
35861
35862
35863 \backslash
35864 end{multicols}
35865 \end_layout
35866
35867 \end_inset
35868
35869
35870 \end_layout
35871
35872 \begin_layout Subsection
35873 Formulas with Description of Variables
35874 \begin_inset Index
35875 status collapsed
35876
35877 \begin_layout Plain Layout
35878 Formula ! with description of variables
35879 \end_layout
35880
35881 \end_inset
35882
35883
35884 \end_layout
35885
35886 \begin_layout Standard
35887 To describe variables within a formula, like in formula 
35888 \begin_inset CommandInset ref
35889 LatexCommand eqref
35890 reference "eq:within"
35891
35892 \end_inset
35893
35894 , a 2
35895 \series bold
35896 ×
35897 \series default
35898
35899 \begin_inset Formula $n$
35900 \end_inset
35901
35902
35903 \begin_inset space ~
35904 \end_inset
35905
35906 matrix is used with left aligned columns for the 
35907 \begin_inset Formula $n$
35908 \end_inset
35909
35910  used variables.
35911 \begin_inset Foot
35912 status collapsed
35913
35914 \begin_layout Plain Layout
35915 matrices see 
35916 \begin_inset CommandInset ref
35917 LatexCommand ref
35918 reference "sec:Matrices"
35919
35920 \end_inset
35921
35922
35923 \end_layout
35924
35925 \end_inset
35926
35927  To set the description in a smaller size, before the matrix e.
35928 \begin_inset space \thinspace{}
35929 \end_inset
35930
35931 g.
35932 \begin_inset space \space{}
35933 \end_inset
35934
35935 the command 
35936 \series bold
35937
35938 \backslash
35939 footnotesize
35940 \series default
35941  is inserted.
35942 \begin_inset Foot
35943 status collapsed
35944
35945 \begin_layout Plain Layout
35946 font sizes see 
35947 \begin_inset CommandInset ref
35948 LatexCommand ref
35949 reference "sub:Font-Sizes"
35950
35951 \end_inset
35952
35953
35954 \end_layout
35955
35956 \end_inset
35957
35958
35959 \end_layout
35960
35961 \begin_layout Standard
35962 When the formula style 
35963 \series bold
35964 Indented
35965 \begin_inset Foot
35966 status collapsed
35967
35968 \begin_layout Plain Layout
35969 formula styles see 
35970 \begin_inset CommandInset ref
35971 LatexCommand ref
35972 reference "sec:Formula-Styles"
35973
35974 \end_inset
35975
35976
35977 \end_layout
35978
35979 \end_inset
35980
35981
35982 \series default
35983  is used, a 
35984 \series bold
35985
35986 \backslash
35987 hfill
35988 \series default
35989
35990 \begin_inset Foot
35991 status collapsed
35992
35993 \begin_layout Plain Layout
35994
35995 \series bold
35996
35997 \backslash
35998 hfill
35999 \series default
36000  only works in formulas with the style 
36001 \series bold
36002 Indented
36003 \series default
36004 , see 
36005 \begin_inset CommandInset ref
36006 LatexCommand ref
36007 reference "sub:Variable-Space"
36008
36009 \end_inset
36010
36011 .
36012 \end_layout
36013
36014 \end_inset
36015
36016  is inserted before and after the matrix to have the same separation of
36017  the matrix from the equation and the side margin.
36018 \end_layout
36019
36020 \begin_layout Standard
36021 When the formula style 
36022 \series bold
36023 Centered
36024 \series default
36025  is used, the method described in 
36026 \begin_inset CommandInset ref
36027 LatexCommand ref
36028 reference "sub:Flalign-Environment"
36029
36030 \end_inset
36031
36032  is used to indent formulas.
36033  Formula 
36034 \begin_inset CommandInset ref
36035 LatexCommand eqref
36036 reference "eq:within"
36037
36038 \end_inset
36039
36040  consists of five columns whereas in the first two columns contain the equation,
36041  the third the matrix and the last one an empty TeX-brace.
36042 \begin_inset Formula \begin{flalign}
36043 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36044 \rho & \textrm{density}\\
36045 V & \textrm{volume}\\
36046 g & \textrm{gravitational acceleration}\end{array} &  & {}\label{eq:within}\end{flalign}
36047
36048 \end_inset
36049
36050
36051 \end_layout
36052
36053 \begin_layout Subsection
36054 Upright small Greek Letters
36055 \begin_inset CommandInset label
36056 LatexCommand label
36057 name "sub:Upright-small-Greek"
36058
36059 \end_inset
36060
36061
36062 \begin_inset Index
36063 status collapsed
36064
36065 \begin_layout Plain Layout
36066 Greek letters ! upright
36067 \end_layout
36068
36069 \end_inset
36070
36071
36072 \end_layout
36073
36074 \begin_layout Standard
36075 Most of the math fonts only provide italic small Greek letters.
36076  But for symbols of elementary particles like pions and neutrinos, upright
36077  Greek letters are needed.
36078  The file 
36079 \series bold
36080 upgreek.sty
36081 \series default
36082
36083 \begin_inset Foot
36084 status collapsed
36085
36086 \begin_layout Plain Layout
36087
36088 \series bold
36089 upgreek
36090 \series default
36091  is part of the LaTeX-package 
36092 \series bold
36093 was
36094 \series default
36095
36096 \begin_inset Index
36097 status collapsed
36098
36099 \begin_layout Plain Layout
36100 Packages ! was
36101 \begin_inset ERT
36102 status collapsed
36103
36104 \begin_layout Plain Layout
36105
36106
36107 \backslash
36108 vspace{4mm}
36109 \end_layout
36110
36111 \end_inset
36112
36113
36114 \end_layout
36115
36116 \end_inset
36117
36118 .
36119 \end_layout
36120
36121 \end_inset
36122
36123
36124 \begin_inset Index
36125 status collapsed
36126
36127 \begin_layout Plain Layout
36128 Packages ! upgreek
36129 \end_layout
36130
36131 \end_inset
36132
36133  that is loaded with the LaTeX-preamble line
36134 \end_layout
36135
36136 \begin_layout Standard
36137
36138 \series bold
36139
36140 \backslash
36141 usepackage{upgreek}
36142 \end_layout
36143
36144 \begin_layout Standard
36145 provides them.
36146  
36147 \begin_inset ERT
36148 status collapsed
36149
36150 \begin_layout Plain Layout
36151
36152
36153 \backslash
36154 ifupgreek 
36155 \end_layout
36156
36157 \end_inset
36158
36159
36160 \begin_inset Note Note
36161 status open
36162
36163 \begin_layout Plain Layout
36164 The following table will only be displayed when the LaTeX-package 
36165 \series bold
36166 upgreek
36167 \series default
36168  is installed:
36169 \end_layout
36170
36171 \end_inset
36172
36173  They are created when the command for a small Greek letters is started
36174  with 
36175 \series bold
36176 up
36177 \series default
36178 .
36179  For example the command 
36180 \series bold
36181
36182 \backslash
36183 uptau
36184 \series default
36185  creates this: 
36186 \begin_inset Formula $\uptau$
36187 \end_inset
36188
36189
36190 \end_layout
36191
36192 \begin_layout Standard
36193 With these commands reactions of elementary particles can be typeset:
36194 \begin_inset Formula \[
36195 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}\]
36196
36197 \end_inset
36198
36199
36200 \end_layout
36201
36202 \begin_layout Standard
36203 The upright letters are more bold and wider than the italic ones.
36204  They should therefore not be used for units like 
36205 \begin_inset Quotes eld
36206 \end_inset
36207
36208 µm
36209 \begin_inset Quotes erd
36210 \end_inset
36211
36212 .
36213 \end_layout
36214
36215 \begin_layout Standard
36216 \begin_inset ERT
36217 status collapsed
36218
36219 \begin_layout Plain Layout
36220
36221
36222 \backslash
36223 else 
36224 \end_layout
36225
36226 \end_inset
36227
36228
36229 \begin_inset Note Note
36230 status open
36231
36232 \begin_layout Plain Layout
36233 The following will be displayed when the LaTeX-package 
36234 \series bold
36235 upgreek
36236 \series default
36237  is not installed:
36238 \end_layout
36239
36240 \end_inset
36241
36242
36243 \end_layout
36244
36245 \begin_layout Standard
36246 You need to install the LaTeX-package 
36247 \series bold
36248 upgreek
36249 \series default
36250  to see the rest of this subsection in the output.
36251 \end_layout
36252
36253 \begin_layout Standard
36254 \begin_inset ERT
36255 status collapsed
36256
36257 \begin_layout Plain Layout
36258
36259
36260 \backslash
36261 fi 
36262 \end_layout
36263
36264 \end_inset
36265
36266
36267 \end_layout
36268
36269 \begin_layout Subsection
36270 Text Characters in Formulas
36271 \begin_inset CommandInset label
36272 LatexCommand label
36273 name "sub:Text-Characters-in"
36274
36275 \end_inset
36276
36277
36278 \begin_inset Index
36279 status collapsed
36280
36281 \begin_layout Plain Layout
36282 Text ! in formulas
36283 \end_layout
36284
36285 \end_inset
36286
36287
36288 \end_layout
36289
36290 \begin_layout Standard
36291 In some cases you might want to insert text characters directly into formulas.
36292  When for example the centered dot · is often used in formulas like 
36293 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
36294 \end_inset
36295
36296 , one would have to insert the command 
36297 \series bold
36298
36299 \backslash
36300 cdot
36301 \series default
36302
36303 \begin_inset Foot
36304 status collapsed
36305
36306 \begin_layout Plain Layout
36307 see 
36308 \begin_inset CommandInset ref
36309 LatexCommand ref
36310 reference "sub:Binary-Operators"
36311
36312 \end_inset
36313
36314
36315 \end_layout
36316
36317 \end_inset
36318
36319  all the time, because this character is defined in all encodings as text
36320  character.
36321  But the encoding can be changed by this LaTeX-preamble line:
36322 \end_layout
36323
36324 \begin_layout Standard
36325
36326 \series bold
36327
36328 \backslash
36329 Declare Inputtext{183}{
36330 \backslash
36331 ifmmode
36332 \backslash
36333 cdot
36334 \backslash
36335 else
36336 \backslash
36337 textperiodcentered
36338 \backslash
36339 f\SpecialChar \textcompwordmark{}
36340 i}
36341 \end_layout
36342
36343 \begin_layout Standard
36344 The character encoding (menu 
36345 \family sans
36346 Document\SpecialChar \menuseparator
36347 Settings\SpecialChar \menuseparator
36348 Language
36349 \family default
36350 ) specifies what character appears when a keyboard key is pressed.
36351  When the key for the character '·' is pressed, internally the command 
36352 \series bold
36353
36354 \backslash
36355 textperiodcentered
36356 \series default
36357  is used.
36358  But this command is not available in a formula so that you would get LaTeX-erro
36359 rs.
36360  With the changed encoding the right command is chosen automatically, depending
36361  on if the character was inserted into a formula or not.
36362 \end_layout
36363
36364 \begin_layout Standard
36365 The encoding of several characters is saved in definition files.
36366  Fore example the encoding 
36367 \series bold
36368 latin9
36369 \series default
36370  is defined in the file 
36371 \series bold
36372 latin9.def
36373 \series default
36374  that is in the installation folder of LaTeX.
36375  Encodings should only be changed via the LaTeX-preamble and not in the
36376  definition files.
36377  Otherwise own documents could not be edited by other LyX users working
36378  on other computers.
36379 \end_layout
36380
36381 \begin_layout Standard
36382 \begin_inset VSpace medskip
36383 \end_inset
36384
36385 Besides the centered dot, in this document the degree sign ° is defined
36386  with the following LaTeX-preamble line so that it can directly be inserted
36387  to a formula:
36388 \end_layout
36389
36390 \begin_layout Standard
36391
36392 \series bold
36393
36394 \backslash
36395 DeclareInputtext{176}{
36396 \backslash
36397 ifmmode^
36398 \backslash
36399 circ
36400 \backslash
36401 else
36402 \backslash
36403 textdegree
36404 \backslash
36405 f\SpecialChar \textcompwordmark{}
36406 i}
36407 \end_layout
36408
36409 \begin_layout Standard
36410 \begin_inset Newpage newpage
36411 \end_inset
36412
36413
36414 \end_layout
36415
36416 \begin_layout Section
36417 \start_of_appendix
36418 Typographic Advice
36419 \begin_inset Index
36420 status collapsed
36421
36422 \begin_layout Plain Layout
36423 Typographic advice
36424 \end_layout
36425
36426 \end_inset
36427
36428
36429 \end_layout
36430
36431 \begin_layout Standard
36432 This section is a summary of the most important typographic rules, listed
36433  in ISO norms.
36434 \begin_inset Foot
36435 status collapsed
36436
36437 \begin_layout Plain Layout
36438 This collection was partly taken from the German semi-official dictionary
36439  called 
36440 \begin_inset Quotes eld
36441 \end_inset
36442
36443 Duden
36444 \begin_inset Quotes erd
36445 \end_inset
36446
36447  
36448 \begin_inset CommandInset citation
36449 LatexCommand cite
36450 key "Duden"
36451
36452 \end_inset
36453
36454  that lists some of the ISO rules.
36455  More rules are listed in 
36456 \begin_inset CommandInset citation
36457 LatexCommand cite
36458 key "Checklist"
36459
36460 \end_inset
36461
36462 .
36463 \end_layout
36464
36465 \end_inset
36466
36467
36468 \end_layout
36469
36470 \begin_layout Itemize
36471 Physical units are 
36472 \emph on
36473 always
36474 \emph default
36475  set upright
36476 \begin_inset Foot
36477 status collapsed
36478
36479 \begin_layout Plain Layout
36480 done with font styles, see 
36481 \begin_inset CommandInset ref
36482 LatexCommand ref
36483 reference "sub:Font-Styles"
36484
36485 \end_inset
36486
36487
36488 \end_layout
36489
36490 \end_inset
36491
36492 , no matter if they appear in italic text: 30
36493 \begin_inset space \thinspace{}
36494 \end_inset
36495
36496 km/h
36497 \begin_inset Newline newline
36498 \end_inset
36499
36500 Between the value and the unit is the smallest space, see 
36501 \begin_inset CommandInset ref
36502 LatexCommand ref
36503 reference "sub:Predefined-Space"
36504
36505 \end_inset
36506
36507 .
36508 \begin_inset Newline newline
36509 \end_inset
36510
36511 This convention is automatically fulfilled when the command 
36512 \series bold
36513
36514 \backslash
36515 unittwo
36516 \series default
36517  is used.
36518  When it is entered to a formula, two boxes appear.
36519  In the first one the value is inserted, in the second one the unit, and
36520  one gets as above: 
36521 \begin_inset Formula $\unit[30]{km/h}$
36522 \end_inset
36523
36524
36525 \begin_inset space \thinspace{}
36526 \end_inset
36527
36528 .
36529  Note that 
36530 \series bold
36531
36532 \backslash
36533 unittwo
36534 \series default
36535  is not a real LaTeX command but the command 
36536 \series bold
36537
36538 \backslash
36539 unit[value]{unit}
36540 \series default
36541 , therefore you cannot use it in TeX code.
36542 \end_layout
36543
36544 \begin_layout Itemize
36545 Percent and perthousand signs are set like physical units:
36546 \begin_inset Newline newline
36547 \end_inset
36548
36549 1,2
36550 \begin_inset space \thinspace{}
36551 \end_inset
36552
36553 ‰ alcohol in blood
36554 \end_layout
36555
36556 \begin_layout Itemize
36557 The degree sign follows directly on the value: 15°, but not when it is used
36558  in units: 15
36559 \begin_inset space \thinspace{}
36560 \end_inset
36561
36562 °C
36563 \end_layout
36564
36565 \begin_layout Itemize
36566 In numbers with more than four digits the smallest space is inserted before
36567  every third digit to group them: 
36568 \family roman
36569 \series medium
36570 \shape up
36571 \size normal
36572 \emph off
36573 \bar no
36574 \noun off
36575 \color none
36576 18
36577 \begin_inset space \thinspace{}
36578 \end_inset
36579
36580 473
36581 \begin_inset space \thinspace{}
36582 \end_inset
36583
36584 588
36585 \end_layout
36586
36587 \begin_layout Itemize
36588 For dimensions like 120×90×40
36589 \begin_inset space \thinspace{}
36590 \end_inset
36591
36592 cm the multiplication sign 
36593 \begin_inset Quotes eld
36594 \end_inset
36595
36596 ×
36597 \begin_inset Quotes erd
36598 \end_inset
36599
36600  is used.
36601  It is available either via the command 
36602 \series bold
36603
36604 \backslash
36605 times
36606 \series default
36607  or via the menu 
36608 \family sans
36609 Insert\SpecialChar \menuseparator
36610 Special Character\SpecialChar \menuseparator
36611 Symbols
36612 \family default
36613 .
36614 \end_layout
36615
36616 \begin_layout Itemize
36617 Functions with names consisting of several letters are set upright to avoid
36618  confusions, see 
36619 \begin_inset CommandInset ref
36620 LatexCommand ref
36621 reference "sub:Predefined-Functions"
36622
36623 \end_inset
36624
36625 .
36626 \end_layout
36627
36628 \begin_layout Itemize
36629 Indices consisting of several letters, are set upright: 
36630 \begin_inset Formula $E_{\mathrm{kin}}$
36631 \end_inset
36632
36633
36634 \begin_inset Newline newline
36635 \end_inset
36636
36637 Components of matrices are set italic: 
36638 \begin_inset Formula $\hat{H}_{kl}$
36639 \end_inset
36640
36641
36642 \end_layout
36643
36644 \begin_layout Itemize
36645 The differentiation/integration operator 'd', the Euler's number 'e' and
36646  the imaginary unit 'i' should be set upright, to avoid mixing them up with
36647  other variables.
36648 \end_layout
36649
36650 \begin_layout Itemize
36651 The character that denotes a 
36652 \noun on
36653 Fourier
36654 \noun default
36655  transformation is inserted either by the command 
36656 \series bold
36657
36658 \backslash
36659 mathscr
36660 \begin_inset ERT
36661 status collapsed
36662
36663 \begin_layout Plain Layout
36664
36665
36666 \backslash
36667 spce 
36668 \end_layout
36669
36670 \end_inset
36671
36672
36673 \backslash
36674 {F
36675 \series default
36676
36677 \begin_inset Index
36678 status collapsed
36679
36680 \begin_layout Plain Layout
36681 Commands ! M ! 
36682 \backslash
36683 mathscr
36684 \end_layout
36685
36686 \end_inset
36687
36688  or via the menu 
36689 \family sans
36690 Insert\SpecialChar \menuseparator
36691 Special Character\SpecialChar \menuseparator
36692 Symbols\SpecialChar \menuseparator
36693 Letterlike
36694 \begin_inset space ~
36695 \end_inset
36696
36697 Symbols
36698 \family default
36699
36700 \begin_inset Formula $\mathscr{F}$
36701 \end_inset
36702
36703
36704 \begin_inset Newline newline
36705 \end_inset
36706
36707 To be able to use the command 
36708 \series bold
36709
36710 \backslash
36711 mathscr
36712 \series default
36713 , the LaTeX package 
36714 \series bold
36715 mathrsfs
36716 \series default
36717
36718 \begin_inset Index
36719 status collapsed
36720
36721 \begin_layout Plain Layout
36722 Packages ! mathrsfs
36723 \end_layout
36724
36725 \end_inset
36726
36727  needs to be loaded with the LaTeX-preamble line 
36728 \series bold
36729
36730 \backslash
36731 usepackage{mathrsfs}
36732 \series default
36733 .
36734 \end_layout
36735
36736 \begin_layout Standard
36737 \begin_inset Newpage newpage
36738 \end_inset
36739
36740
36741 \end_layout
36742
36743 \begin_layout Section
36744 Synonyms
36745 \begin_inset Index
36746 status collapsed
36747
36748 \begin_layout Plain Layout
36749 Synonyms
36750 \end_layout
36751
36752 \end_inset
36753
36754
36755 \end_layout
36756
36757 \begin_layout Standard
36758 Some characters and symbols can be created with several commands.
36759  Here is a list of the synonym commands:
36760 \end_layout
36761
36762 \begin_layout Standard
36763 \begin_inset VSpace bigskip
36764 \end_inset
36765
36766
36767 \begin_inset space \hfill{}
36768 \end_inset
36769
36770
36771 \begin_inset Tabular
36772 <lyxtabular version="3" rows="12" columns="2">
36773 <features>
36774 <column alignment="center" valignment="top" width="0pt">
36775 <column alignment="center" valignment="top" width="0pt">
36776 <row>
36777 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36778 \begin_inset Text
36779
36780 \begin_layout Plain Layout
36781 Command
36782 \end_layout
36783
36784 \end_inset
36785 </cell>
36786 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36787 \begin_inset Text
36788
36789 \begin_layout Plain Layout
36790 equivalent to
36791 \begin_inset Note Note
36792 status collapsed
36793
36794 \begin_layout Plain Layout
36795
36796 \series bold
36797
36798 \backslash
36799 raisebox
36800 \series default
36801  is only used as spacer.
36802 \end_layout
36803
36804 \end_inset
36805
36806
36807 \end_layout
36808
36809 \end_inset
36810 </cell>
36811 </row>
36812 <row>
36813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36814 \begin_inset Text
36815
36816 \begin_layout Plain Layout
36817
36818 \backslash
36819 ast
36820 \end_layout
36821
36822 \end_inset
36823 </cell>
36824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36825 \begin_inset Text
36826
36827 \begin_layout Plain Layout
36828 \begin_inset ERT
36829 status collapsed
36830
36831 \begin_layout Plain Layout
36832
36833
36834 \backslash
36835 raisebox{-1.2mm}{
36836 \end_layout
36837
36838 \end_inset
36839
36840 *
36841 \begin_inset ERT
36842 status collapsed
36843
36844 \begin_layout Plain Layout
36845
36846 }
36847 \end_layout
36848
36849 \end_inset
36850
36851
36852 \end_layout
36853
36854 \end_inset
36855 </cell>
36856 </row>
36857 <row>
36858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36859 \begin_inset Text
36860
36861 \begin_layout Plain Layout
36862
36863 \backslash
36864 choose
36865 \end_layout
36866
36867 \end_inset
36868 </cell>
36869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36870 \begin_inset Text
36871
36872 \begin_layout Plain Layout
36873
36874 \backslash
36875 binom
36876 \end_layout
36877
36878 \end_inset
36879 </cell>
36880 </row>
36881 <row>
36882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36883 \begin_inset Text
36884
36885 \begin_layout Plain Layout
36886
36887 \backslash
36888 geq
36889 \end_layout
36890
36891 \end_inset
36892 </cell>
36893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36894 \begin_inset Text
36895
36896 \begin_layout Plain Layout
36897
36898 \backslash
36899 ge
36900 \end_layout
36901
36902 \end_inset
36903 </cell>
36904 </row>
36905 <row>
36906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36907 \begin_inset Text
36908
36909 \begin_layout Plain Layout
36910
36911 \backslash
36912 lbrace
36913 \end_layout
36914
36915 \end_inset
36916 </cell>
36917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36918 \begin_inset Text
36919
36920 \begin_layout Plain Layout
36921 {
36922 \end_layout
36923
36924 \end_inset
36925 </cell>
36926 </row>
36927 <row>
36928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36929 \begin_inset Text
36930
36931 \begin_layout Plain Layout
36932
36933 \backslash
36934 lbracket
36935 \end_layout
36936
36937 \end_inset
36938 </cell>
36939 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36940 \begin_inset Text
36941
36942 \begin_layout Plain Layout
36943 [
36944 \end_layout
36945
36946 \end_inset
36947 </cell>
36948 </row>
36949 <row>
36950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36951 \begin_inset Text
36952
36953 \begin_layout Plain Layout
36954
36955 \backslash
36956 leftarrow
36957 \end_layout
36958
36959 \end_inset
36960 </cell>
36961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36962 \begin_inset Text
36963
36964 \begin_layout Plain Layout
36965
36966 \backslash
36967 gets
36968 \end_layout
36969
36970 \end_inset
36971 </cell>
36972 </row>
36973 <row>
36974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36975 \begin_inset Text
36976
36977 \begin_layout Plain Layout
36978
36979 \backslash
36980 leq
36981 \end_layout
36982
36983 \end_inset
36984 </cell>
36985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36986 \begin_inset Text
36987
36988 \begin_layout Plain Layout
36989
36990 \backslash
36991 le
36992 \end_layout
36993
36994 \end_inset
36995 </cell>
36996 </row>
36997 <row>
36998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36999 \begin_inset Text
37000
37001 \begin_layout Plain Layout
37002
37003 \backslash
37004 lor
37005 \end_layout
37006
37007 \end_inset
37008 </cell>
37009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37010 \begin_inset Text
37011
37012 \begin_layout Plain Layout
37013
37014 \backslash
37015 vee
37016 \end_layout
37017
37018 \end_inset
37019 </cell>
37020 </row>
37021 <row>
37022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37023 \begin_inset Text
37024
37025 \begin_layout Plain Layout
37026
37027 \backslash
37028 neq
37029 \end_layout
37030
37031 \end_inset
37032 </cell>
37033 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37034 \begin_inset Text
37035
37036 \begin_layout Plain Layout
37037
37038 \backslash
37039 not=
37040 \end_layout
37041
37042 \end_inset
37043 </cell>
37044 </row>
37045 <row>
37046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37047 \begin_inset Text
37048
37049 \begin_layout Plain Layout
37050
37051 \backslash
37052 slash
37053 \end_layout
37054
37055 \end_inset
37056 </cell>
37057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37058 \begin_inset Text
37059
37060 \begin_layout Plain Layout
37061 /
37062 \end_layout
37063
37064 \end_inset
37065 </cell>
37066 </row>
37067 <row>
37068 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37069 \begin_inset Text
37070
37071 \begin_layout Plain Layout
37072
37073 \backslash
37074 vert
37075 \end_layout
37076
37077 \end_inset
37078 </cell>
37079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37080 \begin_inset Text
37081
37082 \begin_layout Plain Layout
37083 |
37084 \end_layout
37085
37086 \end_inset
37087 </cell>
37088 </row>
37089 </lyxtabular>
37090
37091 \end_inset
37092
37093
37094 \begin_inset space \hfill{}
37095 \end_inset
37096
37097
37098 \begin_inset Tabular
37099 <lyxtabular version="3" rows="12" columns="2">
37100 <features>
37101 <column alignment="center" valignment="top" width="0pt">
37102 <column alignment="center" valignment="top" width="0pt">
37103 <row>
37104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37105 \begin_inset Text
37106
37107 \begin_layout Plain Layout
37108 Command
37109 \end_layout
37110
37111 \end_inset
37112 </cell>
37113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37114 \begin_inset Text
37115
37116 \begin_layout Plain Layout
37117 equivalent to
37118 \end_layout
37119
37120 \end_inset
37121 </cell>
37122 </row>
37123 <row>
37124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37125 \begin_inset Text
37126
37127 \begin_layout Plain Layout
37128
37129 \backslash
37130 backslash
37131 \end_layout
37132
37133 \end_inset
37134 </cell>
37135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37136 \begin_inset Text
37137
37138 \begin_layout Plain Layout
37139
37140 \backslash
37141
37142 \backslash
37143
37144 \end_layout
37145
37146 \end_inset
37147 </cell>
37148 </row>
37149 <row>
37150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37151 \begin_inset Text
37152
37153 \begin_layout Plain Layout
37154
37155 \backslash
37156 dasharrow
37157 \end_layout
37158
37159 \end_inset
37160 </cell>
37161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37162 \begin_inset Text
37163
37164 \begin_layout Plain Layout
37165
37166 \backslash
37167 dashrightarrow
37168 \end_layout
37169
37170 \end_inset
37171 </cell>
37172 </row>
37173 <row>
37174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37175 \begin_inset Text
37176
37177 \begin_layout Plain Layout
37178
37179 \backslash
37180 land
37181 \end_layout
37182
37183 \end_inset
37184 </cell>
37185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37186 \begin_inset Text
37187
37188 \begin_layout Plain Layout
37189
37190 \backslash
37191 wedge
37192 \end_layout
37193
37194 \end_inset
37195 </cell>
37196 </row>
37197 <row>
37198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37199 \begin_inset Text
37200
37201 \begin_layout Plain Layout
37202
37203 \backslash
37204 rbrace
37205 \end_layout
37206
37207 \end_inset
37208 </cell>
37209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37210 \begin_inset Text
37211
37212 \begin_layout Plain Layout
37213 }
37214 \end_layout
37215
37216 \end_inset
37217 </cell>
37218 </row>
37219 <row>
37220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37221 \begin_inset Text
37222
37223 \begin_layout Plain Layout
37224
37225 \backslash
37226 rbracket
37227 \end_layout
37228
37229 \end_inset
37230 </cell>
37231 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37232 \begin_inset Text
37233
37234 \begin_layout Plain Layout
37235 ]
37236 \end_layout
37237
37238 \end_inset
37239 </cell>
37240 </row>
37241 <row>
37242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37243 \begin_inset Text
37244
37245 \begin_layout Plain Layout
37246
37247 \backslash
37248 rightarrow
37249 \end_layout
37250
37251 \end_inset
37252 </cell>
37253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37254 \begin_inset Text
37255
37256 \begin_layout Plain Layout
37257
37258 \backslash
37259 to
37260 \end_layout
37261
37262 \end_inset
37263 </cell>
37264 </row>
37265 <row>
37266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37267 \begin_inset Text
37268
37269 \begin_layout Plain Layout
37270
37271 \backslash
37272 lnot
37273 \end_layout
37274
37275 \end_inset
37276 </cell>
37277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37278 \begin_inset Text
37279
37280 \begin_layout Plain Layout
37281
37282 \backslash
37283 neg
37284 \end_layout
37285
37286 \end_inset
37287 </cell>
37288 </row>
37289 <row>
37290 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37291 \begin_inset Text
37292
37293 \begin_layout Plain Layout
37294
37295 \backslash
37296 ne
37297 \end_layout
37298
37299 \end_inset
37300 </cell>
37301 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37302 \begin_inset Text
37303
37304 \begin_layout Plain Layout
37305
37306 \backslash
37307 not=
37308 \end_layout
37309
37310 \end_inset
37311 </cell>
37312 </row>
37313 <row>
37314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37315 \begin_inset Text
37316
37317 \begin_layout Plain Layout
37318
37319 \backslash
37320 owns
37321 \end_layout
37322
37323 \end_inset
37324 </cell>
37325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37326 \begin_inset Text
37327
37328 \begin_layout Plain Layout
37329
37330 \backslash
37331 ni
37332 \end_layout
37333
37334 \end_inset
37335 </cell>
37336 </row>
37337 <row>
37338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37339 \begin_inset Text
37340
37341 \begin_layout Plain Layout
37342
37343 \backslash
37344 square
37345 \end_layout
37346
37347 \end_inset
37348 </cell>
37349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37350 \begin_inset Text
37351
37352 \begin_layout Plain Layout
37353
37354 \backslash
37355 Box
37356 \end_layout
37357
37358 \end_inset
37359 </cell>
37360 </row>
37361 <row>
37362 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37363 \begin_inset Text
37364
37365 \begin_layout Plain Layout
37366
37367 \backslash
37368 Vert
37369 \end_layout
37370
37371 \end_inset
37372 </cell>
37373 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37374 \begin_inset Text
37375
37376 \begin_layout Plain Layout
37377
37378 \backslash
37379 |
37380 \end_layout
37381
37382 \end_inset
37383 </cell>
37384 </row>
37385 </lyxtabular>
37386
37387 \end_inset
37388
37389
37390 \begin_inset space \hfill{}
37391 \end_inset
37392
37393
37394 \end_layout
37395
37396 \begin_layout Standard
37397 \begin_inset Newpage newpage
37398 \end_inset
37399
37400
37401 \end_layout
37402
37403 \begin_layout Bibliography
37404 \begin_inset CommandInset bibitem
37405 LatexCommand bibitem
37406 key "TLC2"
37407
37408 \end_inset
37409
37410
37411 \shape smallcaps
37412 Mittelbach, F.
37413  ; Goossens, M.
37414 \shape default
37415
37416 \shape italic
37417 The LaTeX Companion
37418 \shape default
37419 .
37420  Addison Wesley, 2004
37421 \end_layout
37422
37423 \begin_layout Bibliography
37424 \begin_inset CommandInset bibitem
37425 LatexCommand bibitem
37426 key "Mathmode"
37427
37428 \end_inset
37429
37430
37431 \begin_inset CommandInset href
37432 LatexCommand href
37433 name "Description"
37434 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
37435
37436 \end_inset
37437
37438  of LaTeX's math abilities
37439 \end_layout
37440
37441 \begin_layout Bibliography
37442 \begin_inset CommandInset bibitem
37443 LatexCommand bibitem
37444 key "AMS"
37445
37446 \end_inset
37447
37448
37449 \begin_inset CommandInset href
37450 LatexCommand href
37451 name "Description"
37452 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
37453
37454 \end_inset
37455
37456  of 
37457 \begin_inset ERT
37458 status collapsed
37459
37460 \begin_layout Plain Layout
37461
37462
37463 \backslash
37464 AmS
37465 \end_layout
37466
37467 \end_inset
37468
37469 -LaTeX
37470 \end_layout
37471
37472 \begin_layout Bibliography
37473 \begin_inset CommandInset bibitem
37474 LatexCommand bibitem
37475 key "Symbols"
37476
37477 \end_inset
37478
37479
37480 \begin_inset CommandInset href
37481 LatexCommand href
37482 name "List"
37483 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
37484
37485 \end_inset
37486
37487  of all symbols available with LaTeX-packages
37488 \end_layout
37489
37490 \begin_layout Bibliography
37491 \begin_inset CommandInset bibitem
37492 LatexCommand bibitem
37493 key "hyperref"
37494
37495 \end_inset
37496
37497
37498 \begin_inset CommandInset href
37499 LatexCommand href
37500 name "Documentation"
37501 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
37502
37503 \end_inset
37504
37505  of the LaTeX-package 
37506 \series bold
37507 hyperref
37508 \series default
37509
37510 \begin_inset Index
37511 status collapsed
37512
37513 \begin_layout Plain Layout
37514 Packages ! hyperref
37515 \end_layout
37516
37517 \end_inset
37518
37519
37520 \end_layout
37521
37522 \begin_layout Bibliography
37523 \begin_inset CommandInset bibitem
37524 LatexCommand bibitem
37525 key "mhchem"
37526
37527 \end_inset
37528
37529
37530 \begin_inset CommandInset href
37531 LatexCommand href
37532 name "Documentation"
37533 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
37534
37535 \end_inset
37536
37537  of the LaTeX-package 
37538 \series bold
37539 mhchem
37540 \series default
37541
37542 \begin_inset Index
37543 status collapsed
37544
37545 \begin_layout Plain Layout
37546 Packages ! mhchem
37547 \end_layout
37548
37549 \end_inset
37550
37551
37552 \end_layout
37553
37554 \begin_layout Bibliography
37555 \begin_inset CommandInset bibitem
37556 LatexCommand bibitem
37557 key "Mathclap"
37558
37559 \end_inset
37560
37561
37562 \begin_inset CommandInset href
37563 LatexCommand href
37564 name "Description"
37565 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
37566
37567 \end_inset
37568
37569  of the command 
37570 \series bold
37571
37572 \backslash
37573 mathclap
37574 \series default
37575 , described in 
37576 \begin_inset CommandInset ref
37577 LatexCommand ref
37578 reference "sub:Operator-Limits"
37579
37580 \end_inset
37581
37582
37583 \begin_inset Index
37584 status collapsed
37585
37586 \begin_layout Plain Layout
37587 Commands ! M ! 
37588 \backslash
37589 mathclap
37590 \end_layout
37591
37592 \end_inset
37593
37594
37595 \end_layout
37596
37597 \begin_layout Bibliography
37598 \begin_inset CommandInset bibitem
37599 LatexCommand bibitem
37600 key "Duden"
37601
37602 \end_inset
37603
37604
37605 \emph on
37606 Duden Band 1
37607 \emph default
37608 .
37609  22.
37610  Auflage, Duden 2001
37611 \end_layout
37612
37613 \begin_layout Bibliography
37614 \begin_inset CommandInset bibitem
37615 LatexCommand bibitem
37616 key "Checklist"
37617
37618 \end_inset
37619
37620
37621 \begin_inset CommandInset href
37622 LatexCommand href
37623 name "Check list"
37624 target "http://physics.nist.gov/Document/checklist.pdf"
37625
37626 \end_inset
37627
37628  for reviewing manuscripts
37629 \end_layout
37630
37631 \begin_layout Standard
37632 \begin_inset CommandInset index_print
37633 LatexCommand printindex
37634
37635 \end_inset
37636
37637
37638 \end_layout
37639
37640 \end_body
37641 \end_document