]> git.lyx.org Git - lyx.git/blob - lib/doc/Math.lyx
29ffcdeb8404a3df953a77964371b93ff3143eb6
[lyx.git] / lib / doc / Math.lyx
1 #LyX 1.6.3svn 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 % center multirows (e.g. in sec. 13.3)
86 \renewcommand{\multirowsetup}{\centering}
87
88 % define a color, used in sec.9.3
89 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
90
91 % declare operators (see sec. 10.4 and sec. 15.2)
92 \DeclareMathOperator*{\Lozenge}{\blacklozenge}
93 \DeclareMathOperator{\sgn}{sgn}
94
95 \newcommand{\spce}{\textvisiblespace}
96
97 % example definitions for sec. 20.1 
98 \newcommand{\gr}{\Longrightarrow}
99 \newcommand{\us}[1]{\underline{#1}}
100 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
101 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
102 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
103
104 % example macro from sec. 19.4
105 %\def\tagform@#1{\maketag@@@{|#1|}}
106
107 % macro from sec. 10.2
108 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
109 \def\mathclap {\mathpalette \mathclapinternal}
110 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
111
112 % redefine the greyed out note
113 \renewenvironment{lyxgreyedout}
114  {\textcolor{blue}\bgroup}{\egroup}
115
116 % ------------------------------------
117 % used to check for needed LaTeX packages
118 \usepackage{ifthen}
119
120 % check for package eurosym
121 % used for the Euro symbol
122 \newboolean{eurosym}
123 \IfFileExists{eurosym.sty}
124  {\usepackage[gennarrow]{eurosym}
125   \setboolean{eurosym}{true}}
126  {\setboolean{eurosym}{false}}
127
128 % needed for math macros
129 % check for package xargs
130 \newboolean{xargs}
131 \IfFileExists{xargs.sty}
132  {\usepackage{xargs}
133   \setboolean{xargs}{true}}
134  {\setboolean{xargs}{false}}
135
136 % needed in sec. 22.4
137 % check for package braket
138 \newboolean{braket}
139 \IfFileExists{braket.sty}
140  {\usepackage{braket}
141   \setboolean{braket}{true}}
142  {\setboolean{braket}{false}}
143
144 % needed in sec. 22.10
145 % check for package upgreek
146 \newboolean{upgreek}
147 \IfFileExists{upgreek.sty}
148  {\usepackage{upgreek}
149   \setboolean{upgreek}{true}}
150  {\setboolean{upgreek}{false}}
151 \end_preamble
152 \options bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
153 \use_default_options false
154 \language english
155 \inputencoding auto
156 \font_roman default
157 \font_sans default
158 \font_typewriter default
159 \font_default_family default
160 \font_sc false
161 \font_osf false
162 \font_sf_scale 100
163 \font_tt_scale 100
164
165 \graphics default
166 \paperfontsize 12
167 \spacing single
168 \use_hyperref true
169 \pdf_title "LyX's Math Manual"
170 \pdf_author "LyX Team, Uwe Stöhr"
171 \pdf_subject "LyX-documentation about math"
172 \pdf_keywords "LyX, Mathed"
173 \pdf_bookmarks true
174 \pdf_bookmarksnumbered true
175 \pdf_bookmarksopen true
176 \pdf_bookmarksopenlevel 1
177 \pdf_breaklinks false
178 \pdf_pdfborder false
179 \pdf_colorlinks true
180 \pdf_backref false
181 \pdf_pdfusetitle false
182 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true,  pdfstartview=XYZ, plainpages=false, pdfpagelabels"
183 \papersize a4paper
184 \use_geometry false
185 \use_amsmath 2
186 \use_esint 1
187 \cite_engine basic
188 \use_bibtopic false
189 \paperorientation portrait
190 \secnumdepth 4
191 \tocdepth 3
192 \paragraph_separation skip
193 \defskip medskip
194 \quotes_language english
195 \papercolumns 1
196 \papersides 2
197 \paperpagestyle plain
198 \bullet 1 0 6 -1
199 \bullet 2 2 35 -1
200 \bullet 3 2 7 -1
201 \tracking_changes false
202 \output_changes false
203 \author "" 
204 \author "" 
205 \end_header
206
207 \begin_body
208
209 \begin_layout Title
210 LyX's detailed Math manual
211 \end_layout
212
213 \begin_layout Author
214 by the LyX Team
215 \begin_inset Foot
216 status collapsed
217
218 \begin_layout Plain Layout
219 \noindent
220 If you have comments or error corrections, please send them to the LyX Documenta
221 tion mailing list: 
222 \family typewriter
223
224 \begin_inset CommandInset href
225 LatexCommand href
226 name "lyx-docs@lists.lyx.org"
227 target "lyx-docs@lists.lyx.org?subject=LyX's Math manual"
228 type "mailto:"
229
230 \end_inset
231
232
233 \end_layout
234
235 \end_inset
236
237
238 \begin_inset Note Note
239 status collapsed
240
241 \begin_layout Plain Layout
242 author: Uwe Stöhr
243 \end_layout
244
245 \end_inset
246
247
248 \begin_inset Newline newline
249 \end_inset
250
251
252 \begin_inset Newline newline
253 \end_inset
254
255
256 \family sans
257 Version 2.0.x
258 \end_layout
259
260 \begin_layout Standard
261 \begin_inset CommandInset toc
262 LatexCommand tableofcontents
263
264 \end_inset
265
266
267 \end_layout
268
269 \begin_layout Standard
270 \begin_inset Note Note
271 status open
272
273 \begin_layout Plain Layout
274 To export this document to PDF, PS, or DVI the LaTeX-packages 
275 \series bold
276 eurosym,
277 \series default
278  
279 \series bold
280 multirow,
281 \series default
282  and 
283 \series bold
284 was
285 \series default
286  must be installed.
287  If they are not installed you can export the document anyway but the sections
288  where the packages are required won't appear in the output.
289 \end_layout
290
291 \begin_layout Plain Layout
292 The latest PDF-version of this document can be found here:
293 \begin_inset Newline newline
294 \end_inset
295
296
297 \series bold
298 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
299 \end_layout
300
301 \end_inset
302
303
304 \end_layout
305
306 \begin_layout Standard
307 \begin_inset Newpage newpage
308 \end_inset
309
310
311 \end_layout
312
313 \begin_layout Section
314 Introduction
315 \end_layout
316
317 \begin_layout Standard
318 This document explains LyX's math features and is furthermore a collection
319  of LaTeX-commands used for mathematical characters and constructs.
320  The explanations are designed for the usage of commands.
321  It is therefore required that you have read the section 
322 \family typewriter
323 Mathematical
324 \begin_inset space ~
325 \end_inset
326
327 Formulas
328 \family default
329  of the User's Guide.
330 \end_layout
331
332 \begin_layout Standard
333 Most of the characters and many constructs explained in this manual are
334  also accessible via the menu 
335 \family sans
336 Insert
337 \series bold
338 \SpecialChar \menuseparator
339
340 \series default
341 Math
342 \family default
343 , or the 
344 \family sans
345 math
346 \family default
347 \series bold
348  
349 \family sans
350 \series default
351 toolbar
352 \family default
353 .
354  But everybody who has to write lots of formulas will notice that it is
355  much faster to use commands instead of the math toolbar.
356  Therefore this manual is focused on commands but also mentions the correspondin
357 g toolbar buttons when available.
358 \end_layout
359
360 \begin_layout Standard
361 If not specially mentioned the commands are only available within formulas.
362  To be able to use all commands explained in this document, the option 
363 \family sans
364 Use AMS math package
365 \family default
366  must be used in the document settings (menu 
367 \family sans
368 Document\SpecialChar \menuseparator
369 Settings\SpecialChar \menuseparator
370 Math
371 \begin_inset space ~
372 \end_inset
373
374 Options
375 \family default
376 ).
377 \begin_inset Foot
378 status collapsed
379
380 \begin_layout Plain Layout
381 The option 
382 \family sans
383 Use AMS math package automatically
384 \family default
385  only uses 
386 \begin_inset ERT
387 status collapsed
388
389 \begin_layout Plain Layout
390
391
392 \backslash
393 AmS 
394 \end_layout
395
396 \end_inset
397
398 -math when math constructs are found that are supported by LyX.
399 \end_layout
400
401 \end_inset
402
403
404 \end_layout
405
406 \begin_layout Standard
407 This document doesn't list all 
408 \begin_inset ERT
409 status collapsed
410
411 \begin_layout Plain Layout
412
413
414 \backslash
415 AmS 
416 \end_layout
417
418 \end_inset
419
420 -math commands
421 \begin_inset Foot
422 status collapsed
423
424 \begin_layout Plain Layout
425 A list with all 
426 \begin_inset ERT
427 status collapsed
428
429 \begin_layout Plain Layout
430
431
432 \backslash
433 AmS
434 \end_layout
435
436 \end_inset
437
438 -math commands is in the file 
439 \family sans
440
441 \begin_inset CommandInset href
442 LatexCommand href
443 name "amsguide.ps"
444 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
445
446 \end_inset
447
448
449 \family default
450 , which is part of every LaTeX standard installation.
451 \end_layout
452
453 \end_inset
454
455  for lucidity reasons.
456 \end_layout
457
458 \begin_layout Section
459 General Instructions
460 \end_layout
461
462 \begin_layout Standard
463 To create an inline formula
464 \begin_inset Index
465 status collapsed
466
467 \begin_layout Plain Layout
468 Formula ! inline
469 \end_layout
470
471 \end_inset
472
473  that is embedded into a text line, use one of the shortcuts 
474 \begin_inset Info
475 type  "shortcuts"
476 arg   "math-mode"
477 \end_inset
478
479  or the toolbar button 
480 \begin_inset Graphics
481         filename ../images/math-mode.png
482         scale 85
483
484 \end_inset
485
486
487 \begin_inset Newline newline
488 \end_inset
489
490 To create a display style formula
491 \begin_inset Index
492 status collapsed
493
494 \begin_layout Plain Layout
495 Formula ! display style
496 \end_layout
497
498 \end_inset
499
500  that will appear bigger and in an own paragraph, use one of these shortcuts:
501  
502 \begin_inset Info
503 type  "shortcuts"
504 arg   "math-display"
505 \end_inset
506
507 .
508 \end_layout
509
510 \begin_layout Standard
511 To change a display style formula to an inline formula, set the cursor into
512  the formula and use one of the shortcuts 
513 \begin_inset Info
514 type  "shortcuts"
515 arg   "math-mode"
516 \end_inset
517
518  or the menu 
519 \family sans
520 Edit\SpecialChar \menuseparator
521 Math\SpecialChar \menuseparator
522 Change formula type
523 \family default
524 .
525  The same way is used to change an inline formula to a display style formula.
526 \end_layout
527
528 \begin_layout Standard
529 To display parts of an inline formula in the size of a display style formula,
530  enter the command 
531 \series bold
532
533 \backslash
534 displaystyle
535 \begin_inset Index
536 status collapsed
537
538 \begin_layout Plain Layout
539 Commands ! D ! 
540 \backslash
541 displaystyle
542 \end_layout
543
544 \end_inset
545
546
547 \series default
548  to a formula.
549  Then a new blue box appears in which the desired formula part is inserted.
550 \end_layout
551
552 \begin_layout Standard
553 Only inline formulas are allowed inside tables.
554 \end_layout
555
556 \begin_layout Standard
557 The 
558 \family sans
559 math toolbar
560 \family default
561  can be turned on in the menu 
562 \family sans
563 View\SpecialChar \menuseparator
564 Toolbars
565 \family default
566 .
567  When you click there on 
568 \begin_inset Quotes eld
569 \end_inset
570
571 Math
572 \begin_inset Quotes erd
573 \end_inset
574
575  the toolbar will be shown permanently at the bottom; this state is visualized
576  in the 
577 \family sans
578 Toolbars
579 \family default
580  menu with a checkmark.
581  When you click in this state again on 
582 \begin_inset Quotes eld
583 \end_inset
584
585 Math
586 \begin_inset Quotes erd
587 \end_inset
588
589  in the 
590 \family sans
591 Toolbars
592 \family default
593  menu, the 
594 \family sans
595 math toolbar
596 \family default
597  is only shown when the cursor is within a formula; this state is visualized
598  by the renaming of the menu entry from 
599 \begin_inset Quotes eld
600 \end_inset
601
602 Math
603 \begin_inset Quotes erd
604 \end_inset
605
606  to 
607 \begin_inset Quotes eld
608 \end_inset
609
610 Math
611 \begin_inset space ~
612 \end_inset
613
614 (auto)
615 \begin_inset Quotes erd
616 \end_inset
617
618 .
619 \end_layout
620
621 \begin_layout Standard
622 The TeX-mode
623 \begin_inset Index
624 status collapsed
625
626 \begin_layout Plain Layout
627 T@TeX-mode
628 \end_layout
629
630 \end_inset
631
632  is invoked by pressing the toolbar button 
633 \begin_inset Graphics
634         filename ../images/ert-insert.png
635         scale 85
636
637 \end_inset
638
639  or by using the menu 
640 \family sans
641 Insert\SpecialChar \menuseparator
642 Te
643 \begin_inset ERT
644 status collapsed
645
646 \begin_layout Plain Layout
647
648 {}
649 \end_layout
650
651 \end_inset
652
653 X Code
654 \family default
655  (shortcut 
656 \begin_inset Info
657 type  "shortcut"
658 arg   "ert-insert"
659 \end_inset
660
661 ).
662 \begin_inset Note Note
663 status collapsed
664
665 \begin_layout Plain Layout
666 In LyX there are three 
667 \begin_inset Quotes eld
668 \end_inset
669
670 proper names
671 \begin_inset Quotes erd
672 \end_inset
673
674  that appear in the output with sub- and superscript letters: TeX, LaTeX,
675  and LyX
676 \end_layout
677
678 \begin_layout Plain Layout
679 To avoid that these names are recognized as proper names, a TeX-brace pair
680  is inserted.
681 \end_layout
682
683 \end_inset
684
685
686 \end_layout
687
688 \begin_layout Standard
689 To change the LaTeX-preamble
690 \begin_inset Index
691 status collapsed
692
693 \begin_layout Plain Layout
694 L@LaTeX-preamble
695 \end_layout
696
697 \end_inset
698
699 , use the menu 
700 \family sans
701 Document\SpecialChar \menuseparator
702 Settings\SpecialChar \menuseparator
703 LaT
704 \begin_inset ERT
705 status collapsed
706
707 \begin_layout Plain Layout
708
709 {}
710 \end_layout
711
712 \end_inset
713
714 eX
715 \family default
716  
717 \family sans
718 Preamble
719 \family default
720 .
721 \end_layout
722
723 \begin_layout Standard
724 To edit matrices, case differentiations, and multiline formulas subsequently,
725  the menus 
726 \family sans
727 Edit\SpecialChar \menuseparator
728 Math
729 \family default
730  and 
731 \family sans
732 Edit\SpecialChar \menuseparator
733 Rows
734 \begin_inset space \thinspace{}
735 \end_inset
736
737 &
738 \begin_inset space \thinspace{}
739 \end_inset
740
741 Columns,
742 \family default
743  or the 
744 \family sans
745 table toolbar
746 \family default
747  can be used.
748  When lines and columns are swapped via the menu, the column or line where
749  the cursor is in is exchanged with the column to the right or the line
750  below, respectively.
751  Is the cursor in the last column or row, the exchange is done with the
752  column to the left or the line above.
753 \end_layout
754
755 \begin_layout Standard
756 To write text in formulas
757 \begin_inset Foot
758 status collapsed
759
760 \begin_layout Plain Layout
761 For multiline formulas the command 
762 \series bold
763
764 \backslash
765 intertext
766 \series default
767  is used, see 
768 \begin_inset CommandInset ref
769 LatexCommand ref
770 reference "sub:Text-in-multiline"
771
772 \end_inset
773
774 .
775 \end_layout
776
777 \end_inset
778
779  
780 \emph on
781 mathematical text
782 \emph default
783
784 \begin_inset Index
785 status collapsed
786
787 \begin_layout Plain Layout
788 Text ! in formulas
789 \end_layout
790
791 \end_inset
792
793
794 \begin_inset Index
795 status collapsed
796
797 \begin_layout Plain Layout
798 Mathematical text
799 \end_layout
800
801 \end_inset
802
803  is used.
804  This mode is invoked with the the shortcut 
805 \begin_inset Info
806 type  "shortcut"
807 arg   "font-default"
808 \end_inset
809
810  or by the insertion of the command 
811 \series bold
812
813 \backslash
814 text
815 \begin_inset Index
816 status collapsed
817
818 \begin_layout Plain Layout
819 Commands ! T ! 
820 \backslash
821 text
822 \end_layout
823
824 \end_inset
825
826
827 \series default
828 .
829  The text appears black in LyX and can therefore be distinguished from the
830  other formula parts that appear blue.
831  In the output mathematical text is set upright, in contrary to other formula
832  parts.
833 \end_layout
834
835 \begin_layout Subsection*
836 Command Scheme
837 \end_layout
838
839 \begin_layout Standard
840 Most of the LaTeX-commands for math constructs have the following scheme:
841 \end_layout
842
843 \begin_layout Standard
844
845 \series bold
846
847 \backslash
848 commandname[optional
849 \series default
850  
851 \series bold
852 argument]{required
853 \series default
854  
855 \series bold
856 argument}
857 \end_layout
858
859 \begin_layout Standard
860 A command starts always with a backslash 
861 \begin_inset Quotes gld
862 \end_inset
863
864
865 \series bold
866
867 \backslash
868
869 \series default
870
871 \begin_inset Quotes grd
872 \end_inset
873
874 .
875  To omit optional arguments, also omit the associated brackets.
876  The braces around the required arguments are named in this document as
877  TeX-braces
878 \begin_inset Index
879 status collapsed
880
881 \begin_layout Plain Layout
882 T@TeX-braces
883 \end_layout
884
885 \end_inset
886
887 .
888  If you add in a formula a left brace to a command name, LyX creates automatical
889 ly a TeX-brace.
890  In all other cases TeX-braces are created in formulas with the command
891  
892 \series bold
893
894 \backslash
895 {
896 \series default
897 .
898  TeX-braces appear red in LyX, in contrary to normal braces that appear
899  blue.
900  In TeX-mode no command is needed to get TeX-braces.
901  TeX-braces don't appear in the output.
902 \end_layout
903
904 \begin_layout Standard
905 When commands without arguments, like commands for symbols are entered in
906  TeX-mode, a space character must 
907 \emph on
908 always
909 \emph default
910  be behind the command to end it.
911  This space doesn't appear in the output.
912  When the space should appear in the output, the space must be followed
913  by a protected space in normal text.
914 \end_layout
915
916 \begin_layout Standard
917 A protected space is inserted with 
918 \begin_inset Info
919 type  "shortcut"
920 arg   "space-insert protected"
921 \end_inset
922
923 .
924 \end_layout
925
926 \begin_layout Subsection*
927 \begin_inset Newpage newpage
928 \end_inset
929
930 Syntax Explanation
931 \end_layout
932
933 \begin_layout Itemize
934 The symbol
935 \begin_inset Foot
936 status collapsed
937
938 \begin_layout Plain Layout
939 This visible space character can be created with the command 
940 \series bold
941
942 \backslash
943 textvisiblespace
944 \series default
945
946 \begin_inset Index
947 status collapsed
948
949 \begin_layout Plain Layout
950 Commands ! T ! 
951 \backslash
952 textvisiblespace
953 \end_layout
954
955 \end_inset
956
957 , inserted in TeX-mode.
958 \end_layout
959
960 \end_inset
961
962  
963 \begin_inset ERT
964 status collapsed
965
966 \begin_layout Plain Layout
967
968
969 \backslash
970 spce 
971 \end_layout
972
973 \end_inset
974
975
976 \begin_inset space ~
977 \end_inset
978
979 denotes a space character to be input.
980 \end_layout
981
982 \begin_layout Itemize
983 An arrow like 
984 \begin_inset Formula $\to$
985 \end_inset
986
987  denotes the usage of the corresponding arrow key on the keyboard.
988 \end_layout
989
990 \begin_layout Subsection*
991 Available units
992 \end_layout
993
994 \begin_layout Standard
995 \align center
996 \begin_inset Float table
997 placement H
998 wide false
999 sideways false
1000 status open
1001
1002 \begin_layout Plain Layout
1003 \align center
1004 \begin_inset Caption
1005
1006 \begin_layout Plain Layout
1007 \begin_inset CommandInset label
1008 LatexCommand label
1009 name "tab:Available-units"
1010
1011 \end_inset
1012
1013 Available units
1014 \end_layout
1015
1016 \end_inset
1017
1018
1019 \end_layout
1020
1021 \begin_layout Plain Layout
1022 \align center
1023 \begin_inset Tabular
1024 <lyxtabular version="3" rows="13" columns="2">
1025 <features>
1026 <column alignment="center" valignment="top" width="0">
1027 <column alignment="center" valignment="top" width="0">
1028 <row>
1029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1030 \begin_inset Text
1031
1032 \begin_layout Plain Layout
1033 Unit
1034 \end_layout
1035
1036 \end_inset
1037 </cell>
1038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1039 \begin_inset Text
1040
1041 \begin_layout Plain Layout
1042 Name / Description
1043 \end_layout
1044
1045 \end_inset
1046 </cell>
1047 </row>
1048 <row>
1049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1050 \begin_inset Text
1051
1052 \begin_layout Plain Layout
1053 mm
1054 \end_layout
1055
1056 \end_inset
1057 </cell>
1058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1059 \begin_inset Text
1060
1061 \begin_layout Plain Layout
1062 Millimeter
1063 \end_layout
1064
1065 \end_inset
1066 </cell>
1067 </row>
1068 <row>
1069 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1070 \begin_inset Text
1071
1072 \begin_layout Plain Layout
1073 cm
1074 \end_layout
1075
1076 \end_inset
1077 </cell>
1078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1079 \begin_inset Text
1080
1081 \begin_layout Plain Layout
1082 Centimeter
1083 \end_layout
1084
1085 \end_inset
1086 </cell>
1087 </row>
1088 <row>
1089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1090 \begin_inset Text
1091
1092 \begin_layout Plain Layout
1093 in
1094 \end_layout
1095
1096 \end_inset
1097 </cell>
1098 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1099 \begin_inset Text
1100
1101 \begin_layout Plain Layout
1102 Inch (1
1103 \begin_inset space \thinspace{}
1104 \end_inset
1105
1106 in = 2,54
1107 \begin_inset space \thinspace{}
1108 \end_inset
1109
1110 cm)
1111 \end_layout
1112
1113 \end_inset
1114 </cell>
1115 </row>
1116 <row>
1117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1118 \begin_inset Text
1119
1120 \begin_layout Plain Layout
1121 pt
1122 \end_layout
1123
1124 \end_inset
1125 </cell>
1126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1127 \begin_inset Text
1128
1129 \begin_layout Plain Layout
1130 Point (72.27
1131 \begin_inset space \thinspace{}
1132 \end_inset
1133
1134 pt = 1
1135 \begin_inset space \thinspace{}
1136 \end_inset
1137
1138 in)
1139 \end_layout
1140
1141 \end_inset
1142 </cell>
1143 </row>
1144 <row>
1145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1146 \begin_inset Text
1147
1148 \begin_layout Plain Layout
1149 pc
1150 \end_layout
1151
1152 \end_inset
1153 </cell>
1154 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1155 \begin_inset Text
1156
1157 \begin_layout Plain Layout
1158 Pica (1
1159 \begin_inset space \thinspace{}
1160 \end_inset
1161
1162 pc = 12
1163 \begin_inset space \thinspace{}
1164 \end_inset
1165
1166 pt)
1167 \end_layout
1168
1169 \end_inset
1170 </cell>
1171 </row>
1172 <row>
1173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1174 \begin_inset Text
1175
1176 \begin_layout Plain Layout
1177 sp
1178 \end_layout
1179
1180 \end_inset
1181 </cell>
1182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1183 \begin_inset Text
1184
1185 \begin_layout Plain Layout
1186 scaled point (65536
1187 \begin_inset space \thinspace{}
1188 \end_inset
1189
1190 sp = 1
1191 \begin_inset space \thinspace{}
1192 \end_inset
1193
1194 pt)
1195 \end_layout
1196
1197 \end_inset
1198 </cell>
1199 </row>
1200 <row>
1201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1202 \begin_inset Text
1203
1204 \begin_layout Plain Layout
1205 bp
1206 \end_layout
1207
1208 \end_inset
1209 </cell>
1210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1211 \begin_inset Text
1212
1213 \begin_layout Plain Layout
1214 big point (72
1215 \begin_inset space \thinspace{}
1216 \end_inset
1217
1218 bp = 1
1219 \begin_inset space \thinspace{}
1220 \end_inset
1221
1222 in)
1223 \end_layout
1224
1225 \end_inset
1226 </cell>
1227 </row>
1228 <row>
1229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1230 \begin_inset Text
1231
1232 \begin_layout Plain Layout
1233 dd
1234 \end_layout
1235
1236 \end_inset
1237 </cell>
1238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1239 \begin_inset Text
1240
1241 \begin_layout Plain Layout
1242 Didot (1
1243 \begin_inset space \thinspace{}
1244 \end_inset
1245
1246 dd 
1247 \begin_inset Formula $\approx$
1248 \end_inset
1249
1250  0.376
1251 \begin_inset space \thinspace{}
1252 \end_inset
1253
1254 mm)
1255 \end_layout
1256
1257 \end_inset
1258 </cell>
1259 </row>
1260 <row>
1261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1262 \begin_inset Text
1263
1264 \begin_layout Plain Layout
1265 cc
1266 \end_layout
1267
1268 \end_inset
1269 </cell>
1270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1271 \begin_inset Text
1272
1273 \begin_layout Plain Layout
1274 Cicero (1
1275 \begin_inset space \thinspace{}
1276 \end_inset
1277
1278 cc = 12
1279 \begin_inset space \thinspace{}
1280 \end_inset
1281
1282 dd)
1283 \end_layout
1284
1285 \end_inset
1286 </cell>
1287 </row>
1288 <row>
1289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1290 \begin_inset Text
1291
1292 \begin_layout Plain Layout
1293 ex
1294 \end_layout
1295
1296 \end_inset
1297 </cell>
1298 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1299 \begin_inset Text
1300
1301 \begin_layout Plain Layout
1302 Height of letter 
1303 \emph on
1304
1305 \begin_inset Quotes eld
1306 \end_inset
1307
1308 x
1309 \emph default
1310
1311 \begin_inset Quotes erd
1312 \end_inset
1313
1314  in the current font
1315 \end_layout
1316
1317 \end_inset
1318 </cell>
1319 </row>
1320 <row>
1321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1322 \begin_inset Text
1323
1324 \begin_layout Plain Layout
1325 em
1326 \end_layout
1327
1328 \end_inset
1329 </cell>
1330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1331 \begin_inset Text
1332
1333 \begin_layout Plain Layout
1334 width of letter 
1335 \begin_inset Quotes eld
1336 \end_inset
1337
1338
1339 \emph on
1340 M
1341 \emph default
1342
1343 \begin_inset Quotes erd
1344 \end_inset
1345
1346  in the current font
1347 \end_layout
1348
1349 \end_inset
1350 </cell>
1351 </row>
1352 <row>
1353 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1354 \begin_inset Text
1355
1356 \begin_layout Plain Layout
1357 mu
1358 \end_layout
1359
1360 \end_inset
1361 </cell>
1362 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1363 \begin_inset Text
1364
1365 \begin_layout Plain Layout
1366 math unit (1
1367 \begin_inset space \thinspace{}
1368 \end_inset
1369
1370 mu = 
1371 \begin_inset Formula $\nicefrac{1}{18}$
1372 \end_inset
1373
1374
1375 \begin_inset space \thinspace{}
1376 \end_inset
1377
1378 em)
1379 \end_layout
1380
1381 \end_inset
1382 </cell>
1383 </row>
1384 </lyxtabular>
1385
1386 \end_inset
1387
1388
1389 \end_layout
1390
1391 \end_inset
1392
1393
1394 \end_layout
1395
1396 \begin_layout Standard
1397 \begin_inset Newpage newpage
1398 \end_inset
1399
1400
1401 \end_layout
1402
1403 \begin_layout Section
1404 Basic Functions
1405 \end_layout
1406
1407 \begin_layout Subsection
1408 Exponents
1409 \begin_inset Index
1410 status collapsed
1411
1412 \begin_layout Plain Layout
1413 Exponents
1414 \end_layout
1415
1416 \end_inset
1417
1418  and Indices
1419 \begin_inset Index
1420 status collapsed
1421
1422 \begin_layout Plain Layout
1423 Indices
1424 \end_layout
1425
1426 \end_inset
1427
1428
1429 \begin_inset Index
1430 status collapsed
1431
1432 \begin_layout Plain Layout
1433 Superscripts|see
1434 \begin_inset ERT
1435 status collapsed
1436
1437 \begin_layout Plain Layout
1438
1439 {
1440 \end_layout
1441
1442 \end_inset
1443
1444 Exponents
1445 \begin_inset ERT
1446 status collapsed
1447
1448 \begin_layout Plain Layout
1449
1450 }
1451 \end_layout
1452
1453 \end_inset
1454
1455
1456 \end_layout
1457
1458 \end_inset
1459
1460
1461 \begin_inset Index
1462 status collapsed
1463
1464 \begin_layout Plain Layout
1465 Subscripts|see
1466 \begin_inset ERT
1467 status collapsed
1468
1469 \begin_layout Plain Layout
1470
1471 {
1472 \end_layout
1473
1474 \end_inset
1475
1476 Indices
1477 \begin_inset ERT
1478 status collapsed
1479
1480 \begin_layout Plain Layout
1481
1482 }
1483 \end_layout
1484
1485 \end_inset
1486
1487
1488 \end_layout
1489
1490 \end_inset
1491
1492
1493 \end_layout
1494
1495 \begin_layout Standard
1496 Indices are created with an underscore 
1497 \begin_inset Quotes eld
1498 \end_inset
1499
1500 _
1501 \begin_inset Quotes erd
1502 \end_inset
1503
1504  or via the math toolbar button 
1505 \begin_inset Graphics
1506         filename ../images/math-subscript.png
1507         scale 85
1508
1509 \end_inset
1510
1511  , exponents with a caret 
1512 \begin_inset Quotes eld
1513 \end_inset
1514
1515 ^
1516 \begin_inset Quotes erd
1517 \end_inset
1518
1519  or via the math toolbar button 
1520 \begin_inset Graphics
1521         filename ../images/math-superscript.png
1522         scale 85
1523
1524 \end_inset
1525
1526 .
1527 \end_layout
1528
1529 \begin_layout Standard
1530 \align center
1531 \begin_inset Tabular
1532 <lyxtabular version="3" rows="4" columns="2">
1533 <features>
1534 <column alignment="center" valignment="top" width="0pt">
1535 <column alignment="center" valignment="top" width="0pt">
1536 <row>
1537 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1538 \begin_inset Text
1539
1540 \begin_layout Plain Layout
1541 command
1542 \end_layout
1543
1544 \end_inset
1545 </cell>
1546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1547 \begin_inset Text
1548
1549 \begin_layout Plain Layout
1550 Result
1551 \begin_inset Note Note
1552 status collapsed
1553
1554 \begin_layout Plain Layout
1555
1556 \series bold
1557
1558 \backslash
1559 raisebox
1560 \series default
1561  is only used as spacer.
1562 \end_layout
1563
1564 \end_inset
1565
1566
1567 \end_layout
1568
1569 \end_inset
1570 </cell>
1571 </row>
1572 <row>
1573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1574 \begin_inset Text
1575
1576 \begin_layout Plain Layout
1577 B_V
1578 \end_layout
1579
1580 \end_inset
1581 </cell>
1582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1583 \begin_inset Text
1584
1585 \begin_layout Plain Layout
1586 \begin_inset Formula $B_{V}$
1587 \end_inset
1588
1589
1590 \end_layout
1591
1592 \end_inset
1593 </cell>
1594 </row>
1595 <row>
1596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1597 \begin_inset Text
1598
1599 \begin_layout Plain Layout
1600 B^V
1601 \end_layout
1602
1603 \end_inset
1604 </cell>
1605 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1606 \begin_inset Text
1607
1608 \begin_layout Plain Layout
1609 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1610 \end_inset
1611
1612
1613 \end_layout
1614
1615 \end_inset
1616 </cell>
1617 </row>
1618 <row>
1619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1620 \begin_inset Text
1621
1622 \begin_layout Plain Layout
1623 B^
1624 \begin_inset ERT
1625 status collapsed
1626
1627 \begin_layout Plain Layout
1628
1629
1630 \backslash
1631 spce 
1632 \end_layout
1633
1634 \end_inset
1635
1636 A
1637 \end_layout
1638
1639 \end_inset
1640 </cell>
1641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1642 \begin_inset Text
1643
1644 \begin_layout Plain Layout
1645 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1646 \end_inset
1647
1648
1649 \end_layout
1650
1651 \end_inset
1652 </cell>
1653 </row>
1654 </lyxtabular>
1655
1656 \end_inset
1657
1658
1659 \end_layout
1660
1661 \begin_layout Standard
1662 As the caret is in some languages an accent, vowels will be accentuated
1663  in this case and not set as exponents
1664 \begin_inset Foot
1665 status collapsed
1666
1667 \begin_layout Plain Layout
1668 Depending on the used keyboard settings this can also happen for other character
1669 s than vowels.
1670 \end_layout
1671
1672 \end_inset
1673
1674 .
1675  To get in this case exponents, press 
1676 \family sans
1677 Space
1678 \family default
1679  after the caret as in the last example.
1680 \end_layout
1681
1682 \begin_layout Subsection
1683 Fractions
1684 \begin_inset CommandInset label
1685 LatexCommand label
1686 name "sub:Fractions"
1687
1688 \end_inset
1689
1690
1691 \begin_inset Index
1692 status collapsed
1693
1694 \begin_layout Plain Layout
1695 Fractions
1696 \end_layout
1697
1698 \end_inset
1699
1700
1701 \end_layout
1702
1703 \begin_layout Standard
1704 Fractions are generated with the command 
1705 \series bold
1706
1707 \backslash
1708 frac
1709 \series default
1710
1711 \begin_inset Index
1712 status collapsed
1713
1714 \begin_layout Plain Layout
1715 Commands ! F ! 
1716 \backslash
1717 frac
1718 \end_layout
1719
1720 \end_inset
1721
1722  or via the math toolbar button 
1723 \begin_inset Graphics
1724         filename ../images/math/frac.png
1725         scale 50
1726
1727 \end_inset
1728
1729 .
1730  The font size is adjusted automatically, depending on whether the fraction
1731  is in an inline or display style formula.
1732  With the math toolbar button 
1733 \begin_inset Graphics
1734         filename ../images/math/frac-square.png
1735         scale 85
1736
1737 \end_inset
1738
1739  you can select different fraction types.
1740 \end_layout
1741
1742 \begin_layout Standard
1743 With the command 
1744 \series bold
1745
1746 \backslash
1747 dfrac
1748 \begin_inset Index
1749 status collapsed
1750
1751 \begin_layout Plain Layout
1752 Commands ! D ! 
1753 \backslash
1754 dfrac
1755 \end_layout
1756
1757 \end_inset
1758
1759
1760 \series default
1761  a fraction can be created that has in any case the size of a display style
1762  formula.
1763  With 
1764 \series bold
1765
1766 \backslash
1767 tfrac
1768 \begin_inset Index
1769 status collapsed
1770
1771 \begin_layout Plain Layout
1772 Commands ! T ! 
1773 \backslash
1774 tfrac
1775 \end_layout
1776
1777 \end_inset
1778
1779
1780 \series default
1781  the fraction appears always with the size of an inline formula.
1782  An example:
1783 \end_layout
1784
1785 \begin_layout Standard
1786 A line with the fraction 
1787 \begin_inset Formula $\frac{1}{2}$
1788 \end_inset
1789
1790  that was created with the command 
1791 \series bold
1792
1793 \backslash
1794 frac
1795 \series default
1796 .
1797 \end_layout
1798
1799 \begin_layout Standard
1800 A line with the fraction 
1801 \begin_inset Formula $\dfrac{1}{2}$
1802 \end_inset
1803
1804  that was created with the command 
1805 \series bold
1806
1807 \backslash
1808 dfrac
1809 \series default
1810 .
1811 \end_layout
1812
1813 \begin_layout Standard
1814 \align center
1815 \begin_inset Tabular
1816 <lyxtabular version="3" rows="4" columns="2">
1817 <features>
1818 <column alignment="center" valignment="top" width="0pt">
1819 <column alignment="center" valignment="top" width="0pt">
1820 <row>
1821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1822 \begin_inset Text
1823
1824 \begin_layout Plain Layout
1825 Command
1826 \end_layout
1827
1828 \end_inset
1829 </cell>
1830 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1831 \begin_inset Text
1832
1833 \begin_layout Plain Layout
1834 Result
1835 \begin_inset Note Note
1836 status collapsed
1837
1838 \begin_layout Plain Layout
1839
1840 \series bold
1841
1842 \backslash
1843 raisebox
1844 \series default
1845  is only used as spacer.
1846 \end_layout
1847
1848 \end_inset
1849
1850
1851 \end_layout
1852
1853 \end_inset
1854 </cell>
1855 </row>
1856 <row>
1857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1858 \begin_inset Text
1859
1860 \begin_layout Plain Layout
1861
1862 \backslash
1863 frac
1864 \begin_inset ERT
1865 status collapsed
1866
1867 \begin_layout Plain Layout
1868
1869
1870 \backslash
1871 spce 
1872 \end_layout
1873
1874 \end_inset
1875
1876 A
1877 \begin_inset Formula $\downarrow$
1878 \end_inset
1879
1880 B
1881 \end_layout
1882
1883 \end_inset
1884 </cell>
1885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1886 \begin_inset Text
1887
1888 \begin_layout Plain Layout
1889 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1890 \end_inset
1891
1892
1893 \end_layout
1894
1895 \end_inset
1896 </cell>
1897 </row>
1898 <row>
1899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1900 \begin_inset Text
1901
1902 \begin_layout Plain Layout
1903
1904 \backslash
1905 dfrac
1906 \begin_inset ERT
1907 status collapsed
1908
1909 \begin_layout Plain Layout
1910
1911
1912 \backslash
1913 spce 
1914 \end_layout
1915
1916 \end_inset
1917
1918 A
1919 \begin_inset Formula $\downarrow$
1920 \end_inset
1921
1922 B
1923 \end_layout
1924
1925 \end_inset
1926 </cell>
1927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1928 \begin_inset Text
1929
1930 \begin_layout Plain Layout
1931 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1932 \end_inset
1933
1934
1935 \end_layout
1936
1937 \end_inset
1938 </cell>
1939 </row>
1940 <row>
1941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1942 \begin_inset Text
1943
1944 \begin_layout Plain Layout
1945
1946 \backslash
1947 dfrac
1948 \begin_inset ERT
1949 status collapsed
1950
1951 \begin_layout Plain Layout
1952
1953
1954 \backslash
1955 spce 
1956 \end_layout
1957
1958 \end_inset
1959
1960 e^
1961 \begin_inset ERT
1962 status collapsed
1963
1964 \begin_layout Plain Layout
1965
1966
1967 \backslash
1968 spce 
1969 \end_layout
1970
1971 \end_inset
1972
1973
1974 \backslash
1975 frac
1976 \begin_inset ERT
1977 status collapsed
1978
1979 \begin_layout Plain Layout
1980
1981
1982 \backslash
1983 spce 
1984 \end_layout
1985
1986 \end_inset
1987
1988 1
1989 \begin_inset Formula $\downarrow$
1990 \end_inset
1991
1992 2
1993 \begin_inset Formula $\downarrow\downarrow$
1994 \end_inset
1995
1996 3
1997 \end_layout
1998
1999 \end_inset
2000 </cell>
2001 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2002 \begin_inset Text
2003
2004 \begin_layout Plain Layout
2005 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2006 \end_inset
2007
2008
2009 \end_layout
2010
2011 \end_inset
2012 </cell>
2013 </row>
2014 </lyxtabular>
2015
2016 \end_inset
2017
2018
2019 \end_layout
2020
2021 \begin_layout Standard
2022 \begin_inset VSpace bigskip
2023 \end_inset
2024
2025
2026 \begin_inset Newpage newpage
2027 \end_inset
2028
2029 For nested fractions the command 
2030 \series bold
2031
2032 \backslash
2033 cfrac
2034 \series default
2035
2036 \begin_inset Index
2037 status collapsed
2038
2039 \begin_layout Plain Layout
2040 Commands ! C ! 
2041 \backslash
2042 cfrac
2043 \end_layout
2044
2045 \end_inset
2046
2047  can be used.
2048  Here an example:
2049 \begin_inset VSpace -3mm
2050 \end_inset
2051
2052
2053 \end_layout
2054
2055 \begin_layout Standard
2056 \begin_inset Formula \begin{align*}
2057 \textrm{created with \textbf{\textbackslash frac}} &  & \textrm{created with \textbf{\textbackslash cfrac}}\\
2058 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}\end{align*}
2059
2060 \end_inset
2061
2062
2063 \end_layout
2064
2065 \begin_layout Standard
2066 The command for the example above is:
2067 \end_layout
2068
2069 \begin_layout Standard
2070
2071 \series bold
2072
2073 \backslash
2074 cfrac{A
2075 \begin_inset Formula $\to$
2076 \end_inset
2077
2078
2079 \backslash
2080 {B+
2081 \backslash
2082 cfrac{C+
2083 \backslash
2084 cfrac{E
2085 \begin_inset Formula $\to$
2086 \end_inset
2087
2088
2089 \backslash
2090 {F
2091 \begin_inset Formula $\to\to$
2092 \end_inset
2093
2094
2095 \backslash
2096 {D
2097 \end_layout
2098
2099 \begin_layout Standard
2100 \begin_inset VSpace medskip
2101 \end_inset
2102
2103
2104 \end_layout
2105
2106 \begin_layout Standard
2107
2108 \series bold
2109
2110 \backslash
2111 cfrac
2112 \series default
2113  sets the fraction always in the size of a displayed formula, also when
2114  it is part of another fraction.
2115  
2116 \series bold
2117
2118 \backslash
2119 cfrac
2120 \series default
2121  has the following command scheme:
2122 \end_layout
2123
2124 \begin_layout Standard
2125
2126 \series bold
2127
2128 \backslash
2129 cfrac[numerator position]{numerator}{denominator}
2130 \end_layout
2131
2132 \begin_layout Standard
2133 The numerator position can be 
2134 \emph on
2135 l
2136 \emph default
2137  , 
2138 \emph on
2139 c
2140 \emph default
2141 , or 
2142 \emph on
2143 r
2144 \emph default
2145  .
2146  l or r aligns the numerator to the left or right, resp.
2147 \begin_inset space ~
2148 \end_inset
2149
2150 with the fraction stroke.
2151  When 
2152 \emph on
2153 c
2154 \emph default
2155  or no position is given, the numerator appears centered.
2156  These fractions demonstrate the different alignments:
2157 \begin_inset Newline newline
2158 \end_inset
2159
2160
2161 \series bold
2162
2163 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2164 \end_inset
2165
2166
2167 \begin_inset Formula $\cfrac{A}{B+C}$
2168 \end_inset
2169
2170
2171 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2172 \end_inset
2173
2174
2175 \end_layout
2176
2177 \begin_layout Standard
2178 \begin_inset VSpace medskip
2179 \end_inset
2180
2181 It is often advantageous to combine 
2182 \series bold
2183
2184 \backslash
2185 cfrac
2186 \series default
2187  and 
2188 \series bold
2189
2190 \backslash
2191 frac
2192 \series default
2193 :
2194 \begin_inset Formula \[
2195 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}\]
2196
2197 \end_inset
2198
2199
2200 \end_layout
2201
2202 \begin_layout Standard
2203 For inline fractions with a sloped fraction stroke you can use the command
2204  
2205 \series bold
2206
2207 \backslash
2208 nicefrac
2209 \series default
2210
2211 \begin_inset Index
2212 status collapsed
2213
2214 \begin_layout Plain Layout
2215 Commands ! N ! 
2216 \backslash
2217 nicefrac
2218 \end_layout
2219
2220 \end_inset
2221
2222
2223 \begin_inset Formula $\nicefrac{5}{31}$
2224 \end_inset
2225
2226  or 
2227 \series bold
2228
2229 \backslash
2230 unitfrac
2231 \series default
2232
2233 \begin_inset Index
2234 status collapsed
2235
2236 \begin_layout Plain Layout
2237 Commands ! U ! 
2238 \backslash
2239 unitfrac
2240 \end_layout
2241
2242 \end_inset
2243
2244
2245 \begin_inset Formula $\unitfrac{5}{31}$
2246 \end_inset
2247
2248  There is furthermore the command 
2249 \series bold
2250
2251 \backslash
2252 unitfracthree
2253 \series default
2254  that offers to write a fraction in combination with a number: 
2255 \begin_inset Formula $\unitfrac[2]{1}{3}$
2256 \end_inset
2257
2258
2259 \begin_inset Newline newline
2260 \end_inset
2261
2262 Note that 
2263 \series bold
2264
2265 \backslash
2266 unitfracthree
2267 \series default
2268  is not a real LaTeX command but the command
2269 \begin_inset Newline newline
2270 \end_inset
2271
2272
2273 \series bold
2274
2275 \backslash
2276 unitfrac[number]{numerator}{denominator}
2277 \series default
2278 , therefore you cannot use it in TeX code.
2279 \end_layout
2280
2281 \begin_layout Standard
2282 How to define own fractions where the fraction stroke can be changed, is
2283  explained in 
2284 \begin_inset CommandInset ref
2285 LatexCommand ref
2286 reference "sub:Self-defined-Fractions"
2287
2288 \end_inset
2289
2290 .
2291 \end_layout
2292
2293 \begin_layout Subsection
2294 Roots
2295 \begin_inset Index
2296 status collapsed
2297
2298 \begin_layout Plain Layout
2299 Roots
2300 \end_layout
2301
2302 \end_inset
2303
2304
2305 \end_layout
2306
2307 \begin_layout Standard
2308 Square roots are created with 
2309 \series bold
2310
2311 \backslash
2312 sqrt
2313 \series default
2314
2315 \begin_inset Index
2316 status collapsed
2317
2318 \begin_layout Plain Layout
2319 Commands ! S ! 
2320 \backslash
2321 sqrt
2322 \end_layout
2323
2324 \end_inset
2325
2326  or the math toolbar button 
2327 \begin_inset Graphics
2328         filename ../images/math/sqrt.png
2329         scale 85
2330
2331 \end_inset
2332
2333 , all other roots with the command 
2334 \series bold
2335
2336 \backslash
2337 root
2338 \series default
2339
2340 \begin_inset Index
2341 status collapsed
2342
2343 \begin_layout Plain Layout
2344 Commands ! R ! 
2345 \backslash
2346 root
2347 \end_layout
2348
2349 \end_inset
2350
2351  or with the math toolbar button 
2352 \begin_inset Graphics
2353         filename ../images/math/root.png
2354         scale 85
2355
2356 \end_inset
2357
2358 .
2359 \end_layout
2360
2361 \begin_layout Standard
2362 \align center
2363 \begin_inset Tabular
2364 <lyxtabular version="3" rows="3" columns="2">
2365 <features>
2366 <column alignment="center" valignment="top" width="0pt">
2367 <column alignment="center" valignment="top" width="0pt">
2368 <row>
2369 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2370 \begin_inset Text
2371
2372 \begin_layout Plain Layout
2373 Command
2374 \end_layout
2375
2376 \end_inset
2377 </cell>
2378 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2379 \begin_inset Text
2380
2381 \begin_layout Plain Layout
2382 Result
2383 \begin_inset Note Note
2384 status collapsed
2385
2386 \begin_layout Plain Layout
2387
2388 \series bold
2389
2390 \backslash
2391 raisebox
2392 \series default
2393  is only used as spacer.
2394 \end_layout
2395
2396 \end_inset
2397
2398
2399 \end_layout
2400
2401 \end_inset
2402 </cell>
2403 </row>
2404 <row>
2405 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2406 \begin_inset Text
2407
2408 \begin_layout Plain Layout
2409
2410 \backslash
2411 sqrt
2412 \begin_inset ERT
2413 status collapsed
2414
2415 \begin_layout Plain Layout
2416
2417
2418 \backslash
2419 spce 
2420 \end_layout
2421
2422 \end_inset
2423
2424 A-B
2425 \end_layout
2426
2427 \end_inset
2428 </cell>
2429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2430 \begin_inset Text
2431
2432 \begin_layout Plain Layout
2433 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2434 \end_inset
2435
2436
2437 \end_layout
2438
2439 \end_inset
2440 </cell>
2441 </row>
2442 <row>
2443 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2444 \begin_inset Text
2445
2446 \begin_layout Plain Layout
2447
2448 \backslash
2449 root
2450 \begin_inset ERT
2451 status collapsed
2452
2453 \begin_layout Plain Layout
2454
2455
2456 \backslash
2457 spce 
2458 \end_layout
2459
2460 \end_inset
2461
2462 3
2463 \begin_inset Formula $\downarrow$
2464 \end_inset
2465
2466 A-B
2467 \end_layout
2468
2469 \end_inset
2470 </cell>
2471 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2472 \begin_inset Text
2473
2474 \begin_layout Plain Layout
2475 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2476 \end_inset
2477
2478
2479 \end_layout
2480
2481 \end_inset
2482 </cell>
2483 </row>
2484 </lyxtabular>
2485
2486 \end_inset
2487
2488
2489 \end_layout
2490
2491 \begin_layout Standard
2492 A square root can also be created with 
2493 \series bold
2494
2495 \backslash
2496 root
2497 \series default
2498  when the root index field is left empty.
2499 \end_layout
2500
2501 \begin_layout Standard
2502 With certain indices the distance to the root is too small, like in this
2503  formula: 
2504 \begin_inset Formula $\sqrt[\beta]{B}$
2505 \end_inset
2506
2507
2508 \begin_inset Newline newline
2509 \end_inset
2510
2511 The 
2512 \begin_inset Formula $\beta$
2513 \end_inset
2514
2515  touches the root.
2516  To avoid this, the commands 
2517 \series bold
2518
2519 \backslash
2520 leftroot
2521 \series default
2522
2523 \begin_inset Index
2524 status collapsed
2525
2526 \begin_layout Plain Layout
2527 Commands ! L ! 
2528 \backslash
2529 leftroot
2530 \end_layout
2531
2532 \end_inset
2533
2534  and 
2535 \series bold
2536
2537 \backslash
2538 uproot
2539 \series default
2540
2541 \begin_inset Index
2542 status collapsed
2543
2544 \begin_layout Plain Layout
2545 Commands ! U ! 
2546 \backslash
2547 uproot
2548 \end_layout
2549
2550 \end_inset
2551
2552  are used with the following scheme:
2553 \end_layout
2554
2555 \begin_layout Standard
2556
2557 \series bold
2558
2559 \backslash
2560 leftroot{distance}
2561 \series default
2562  and 
2563 \series bold
2564
2565 \backslash
2566 uproot{distance}
2567 \end_layout
2568
2569 \begin_layout Standard
2570 Distance is the number of Big Points (unit bp; 
2571 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2572 \end_inset
2573
2574 ), that the index should be moved to the left or top, resp..
2575  The commands are written to the index.
2576  This way the command
2577 \begin_inset Newline newline
2578 \end_inset
2579
2580
2581 \series bold
2582
2583 \backslash
2584 root
2585 \backslash
2586 leftroot{-1
2587 \begin_inset Formula $\to$
2588 \end_inset
2589
2590
2591 \backslash
2592 uproot{2
2593 \begin_inset Formula $\to$
2594 \end_inset
2595
2596
2597 \backslash
2598 beta
2599 \begin_inset ERT
2600 status collapsed
2601
2602 \begin_layout Plain Layout
2603
2604
2605 \backslash
2606 spce 
2607 \end_layout
2608
2609 \end_inset
2610
2611
2612 \begin_inset Formula $\to$
2613 \end_inset
2614
2615 B
2616 \begin_inset Newline newline
2617 \end_inset
2618
2619
2620 \series default
2621 produces a correct typeset formula: 
2622 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2623 \end_inset
2624
2625
2626 \end_layout
2627
2628 \begin_layout Subsection
2629 Binomial Coefficients
2630 \begin_inset Index
2631 status collapsed
2632
2633 \begin_layout Plain Layout
2634 Binomial coefficients
2635 \end_layout
2636
2637 \end_inset
2638
2639
2640 \end_layout
2641
2642 \begin_layout Standard
2643 Binomial coefficients are inserted with the command 
2644 \series bold
2645
2646 \backslash
2647 binom
2648 \series default
2649
2650 \begin_inset Index
2651 status collapsed
2652
2653 \begin_layout Plain Layout
2654 Commands ! B ! 
2655 \backslash
2656 binom
2657 \end_layout
2658
2659 \end_inset
2660
2661  or with the submenu of the math toolbar button 
2662 \begin_inset Graphics
2663         filename ../images/math/frac-square.png
2664         scale 85
2665
2666 \end_inset
2667
2668 .
2669  Analog to fractions (
2670 \series bold
2671
2672 \backslash
2673 frac
2674 \series default
2675 ) there are besides 
2676 \series bold
2677
2678 \backslash
2679 binom
2680 \series default
2681  the commands 
2682 \series bold
2683
2684 \backslash
2685 dbinom
2686 \begin_inset Index
2687 status collapsed
2688
2689 \begin_layout Plain Layout
2690 Commands ! D ! 
2691 \backslash
2692 dbinom
2693 \end_layout
2694
2695 \end_inset
2696
2697
2698 \series default
2699  and 
2700 \series bold
2701
2702 \backslash
2703 tbinom
2704 \series default
2705
2706 \begin_inset Index
2707 status collapsed
2708
2709 \begin_layout Plain Layout
2710 Commands ! T ! 
2711 \backslash
2712 tbinom
2713 \end_layout
2714
2715 \end_inset
2716
2717 .
2718  For other brackets around binomial coeficients there are the commands 
2719 \series bold
2720
2721 \backslash
2722 brace
2723 \series default
2724
2725 \begin_inset Index
2726 status collapsed
2727
2728 \begin_layout Plain Layout
2729 Commands ! B ! 
2730 \backslash
2731 brace
2732 \end_layout
2733
2734 \end_inset
2735
2736  and 
2737 \series bold
2738
2739 \backslash
2740 brack
2741 \series default
2742
2743 \begin_inset Index
2744 status collapsed
2745
2746 \begin_layout Plain Layout
2747 Commands ! B ! 
2748 \backslash
2749 brack
2750 \end_layout
2751
2752 \end_inset
2753
2754 .
2755 \end_layout
2756
2757 \begin_layout Standard
2758 \align center
2759 \begin_inset Tabular
2760 <lyxtabular version="3" rows="6" columns="2">
2761 <features>
2762 <column alignment="center" valignment="top" width="0pt">
2763 <column alignment="center" valignment="top" width="0pt">
2764 <row>
2765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2766 \begin_inset Text
2767
2768 \begin_layout Plain Layout
2769 Command
2770 \end_layout
2771
2772 \end_inset
2773 </cell>
2774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2775 \begin_inset Text
2776
2777 \begin_layout Plain Layout
2778 Result
2779 \begin_inset Note Note
2780 status collapsed
2781
2782 \begin_layout Plain Layout
2783
2784 \series bold
2785
2786 \backslash
2787 raisebox
2788 \series default
2789  is only used as spacer.
2790 \end_layout
2791
2792 \end_inset
2793
2794
2795 \end_layout
2796
2797 \end_inset
2798 </cell>
2799 </row>
2800 <row>
2801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2802 \begin_inset Text
2803
2804 \begin_layout Plain Layout
2805
2806 \backslash
2807 binom
2808 \begin_inset ERT
2809 status collapsed
2810
2811 \begin_layout Plain Layout
2812
2813
2814 \backslash
2815 spce 
2816 \end_layout
2817
2818 \end_inset
2819
2820 A
2821 \begin_inset Formula $\downarrow$
2822 \end_inset
2823
2824 B
2825 \end_layout
2826
2827 \end_inset
2828 </cell>
2829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2830 \begin_inset Text
2831
2832 \begin_layout Plain Layout
2833 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2834 \end_inset
2835
2836
2837 \end_layout
2838
2839 \end_inset
2840 </cell>
2841 </row>
2842 <row>
2843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2844 \begin_inset Text
2845
2846 \begin_layout Plain Layout
2847
2848 \backslash
2849 dbinom
2850 \begin_inset ERT
2851 status collapsed
2852
2853 \begin_layout Plain Layout
2854
2855
2856 \backslash
2857 spce 
2858 \end_layout
2859
2860 \end_inset
2861
2862 A
2863 \begin_inset Formula $\downarrow$
2864 \end_inset
2865
2866 B
2867 \end_layout
2868
2869 \end_inset
2870 </cell>
2871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2872 \begin_inset Text
2873
2874 \begin_layout Plain Layout
2875 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2876 \end_inset
2877
2878
2879 \end_layout
2880
2881 \end_inset
2882 </cell>
2883 </row>
2884 <row>
2885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2886 \begin_inset Text
2887
2888 \begin_layout Plain Layout
2889
2890 \backslash
2891 tbinom
2892 \begin_inset ERT
2893 status collapsed
2894
2895 \begin_layout Plain Layout
2896
2897
2898 \backslash
2899 spce 
2900 \end_layout
2901
2902 \end_inset
2903
2904 A
2905 \begin_inset Formula $\downarrow$
2906 \end_inset
2907
2908 B
2909 \end_layout
2910
2911 \end_inset
2912 </cell>
2913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2914 \begin_inset Text
2915
2916 \begin_layout Plain Layout
2917 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2918 \end_inset
2919
2920
2921 \end_layout
2922
2923 \end_inset
2924 </cell>
2925 </row>
2926 <row>
2927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2928 \begin_inset Text
2929
2930 \begin_layout Plain Layout
2931
2932 \backslash
2933 brack
2934 \begin_inset ERT
2935 status collapsed
2936
2937 \begin_layout Plain Layout
2938
2939
2940 \backslash
2941 spce 
2942 \end_layout
2943
2944 \end_inset
2945
2946 A
2947 \begin_inset Formula $\downarrow$
2948 \end_inset
2949
2950 B
2951 \end_layout
2952
2953 \end_inset
2954 </cell>
2955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2956 \begin_inset Text
2957
2958 \begin_layout Plain Layout
2959 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
2960 \end_inset
2961
2962
2963 \end_layout
2964
2965 \end_inset
2966 </cell>
2967 </row>
2968 <row>
2969 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2970 \begin_inset Text
2971
2972 \begin_layout Plain Layout
2973
2974 \backslash
2975 brace
2976 \begin_inset ERT
2977 status collapsed
2978
2979 \begin_layout Plain Layout
2980
2981
2982 \backslash
2983 spce 
2984 \end_layout
2985
2986 \end_inset
2987
2988 A
2989 \begin_inset Formula $\downarrow$
2990 \end_inset
2991
2992 B
2993 \end_layout
2994
2995 \end_inset
2996 </cell>
2997 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2998 \begin_inset Text
2999
3000 \begin_layout Plain Layout
3001 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3002 \end_inset
3003
3004
3005 \end_layout
3006
3007 \end_inset
3008 </cell>
3009 </row>
3010 </lyxtabular>
3011
3012 \end_inset
3013
3014
3015 \end_layout
3016
3017 \begin_layout Subsection
3018 Case Differentiations
3019 \begin_inset Index
3020 status collapsed
3021
3022 \begin_layout Plain Layout
3023 Case differentiations 
3024 \end_layout
3025
3026 \end_inset
3027
3028
3029 \end_layout
3030
3031 \begin_layout Standard
3032 \align center
3033 \begin_inset Tabular
3034 <lyxtabular version="3" rows="3" columns="2">
3035 <features>
3036 <column alignment="center" valignment="top" width="0pt">
3037 <column alignment="center" valignment="top" width="0pt">
3038 <row>
3039 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3040 \begin_inset Text
3041
3042 \begin_layout Plain Layout
3043 Command
3044 \end_layout
3045
3046 \end_inset
3047 </cell>
3048 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3049 \begin_inset Text
3050
3051 \begin_layout Plain Layout
3052 Result
3053 \end_layout
3054
3055 \end_inset
3056 </cell>
3057 </row>
3058 <row>
3059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3060 \begin_inset Text
3061
3062 \begin_layout Plain Layout
3063
3064 \backslash
3065 cases
3066 \begin_inset ERT
3067 status collapsed
3068
3069 \begin_layout Plain Layout
3070
3071
3072 \backslash
3073 spce 
3074 \end_layout
3075
3076 \end_inset
3077
3078 A
3079 \begin_inset Formula $\to$
3080 \end_inset
3081
3082 B>0
3083 \begin_inset Index
3084 status collapsed
3085
3086 \begin_layout Plain Layout
3087 Commands ! C ! 
3088 \backslash
3089 cases
3090 \end_layout
3091
3092 \end_inset
3093
3094
3095 \end_layout
3096
3097 \end_inset
3098 </cell>
3099 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3100 \begin_inset Text
3101
3102 \begin_layout Plain Layout
3103 \begin_inset Formula $\begin{cases}
3104 A & B>0\end{cases}$
3105 \end_inset
3106
3107
3108 \end_layout
3109
3110 \end_inset
3111 </cell>
3112 </row>
3113 <row>
3114 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3115 \begin_inset Text
3116
3117 \begin_layout Plain Layout
3118
3119 \backslash
3120 cases
3121 \begin_inset ERT
3122 status collapsed
3123
3124 \begin_layout Plain Layout
3125
3126
3127 \backslash
3128 spce 
3129 \end_layout
3130
3131 \end_inset
3132
3133
3134 \begin_inset Info
3135 type  "shortcut"
3136 arg   "newline-insert newline"
3137 \end_inset
3138
3139
3140 \end_layout
3141
3142 \end_inset
3143 </cell>
3144 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3145 \begin_inset Text
3146
3147 \begin_layout Plain Layout
3148 \begin_inset Formula $\begin{cases}
3149 A & \textrm{for }x>0\\
3150 B & \textrm{for }x=0\end{cases}$
3151 \end_inset
3152
3153
3154 \end_layout
3155
3156 \end_inset
3157 </cell>
3158 </row>
3159 </lyxtabular>
3160
3161 \end_inset
3162
3163
3164 \end_layout
3165
3166 \begin_layout Standard
3167 After inserting 
3168 \series bold
3169
3170 \backslash
3171 cases
3172 \series default
3173  or the usage of the math toolbar button 
3174 \begin_inset Graphics
3175         filename ../images/math/cases.png
3176         scale 85
3177
3178 \end_inset
3179
3180  you can create new lines with the shortcut 
3181 \begin_inset Info
3182 type  "shortcut"
3183 arg   "newline-insert newline"
3184 \end_inset
3185
3186  or the table toolbar button 
3187 \begin_inset Graphics
3188         filename ../images/tabular-feature_append-row.png
3189         scale 85
3190
3191 \end_inset
3192
3193 .
3194 \end_layout
3195
3196 \begin_layout Standard
3197 The command 
3198 \series bold
3199
3200 \backslash
3201 cases
3202 \series default
3203  is also available via the menu 
3204 \family sans
3205 Insert\SpecialChar \menuseparator
3206 Math\SpecialChar \menuseparator
3207 Cases-Environment
3208 \family default
3209 .
3210 \end_layout
3211
3212 \begin_layout Subsection
3213 Negations
3214 \begin_inset Index
3215 status collapsed
3216
3217 \begin_layout Plain Layout
3218 Negations
3219 \end_layout
3220
3221 \end_inset
3222
3223
3224 \end_layout
3225
3226 \begin_layout Standard
3227 By inserting of 
3228 \series bold
3229
3230 \backslash
3231 not
3232 \series default
3233
3234 \begin_inset Index
3235 status collapsed
3236
3237 \begin_layout Plain Layout
3238 Commands ! N ! 
3239 \backslash
3240 not
3241 \end_layout
3242
3243 \end_inset
3244
3245  every character can be displayed canceled.
3246  The characters are quasi accentuated by a slash.
3247 \end_layout
3248
3249 \begin_layout Standard
3250 \align center
3251 \begin_inset Tabular
3252 <lyxtabular version="3" rows="4" columns="2">
3253 <features>
3254 <column alignment="center" valignment="top" width="0pt">
3255 <column alignment="center" valignment="top" width="0pt">
3256 <row>
3257 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3258 \begin_inset Text
3259
3260 \begin_layout Plain Layout
3261 Command
3262 \end_layout
3263
3264 \end_inset
3265 </cell>
3266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3267 \begin_inset Text
3268
3269 \begin_layout Plain Layout
3270 Result
3271 \end_layout
3272
3273 \end_inset
3274 </cell>
3275 </row>
3276 <row>
3277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3278 \begin_inset Text
3279
3280 \begin_layout Plain Layout
3281
3282 \backslash
3283 not=
3284 \end_layout
3285
3286 \end_inset
3287 </cell>
3288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3289 \begin_inset Text
3290
3291 \begin_layout Plain Layout
3292 \begin_inset Formula $\not=$
3293 \end_inset
3294
3295
3296 \end_layout
3297
3298 \end_inset
3299 </cell>
3300 </row>
3301 <row>
3302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3303 \begin_inset Text
3304
3305 \begin_layout Plain Layout
3306
3307 \backslash
3308 not 
3309 \backslash
3310 le
3311 \end_layout
3312
3313 \end_inset
3314 </cell>
3315 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3316 \begin_inset Text
3317
3318 \begin_layout Plain Layout
3319 \begin_inset Formula $\not\le$
3320 \end_inset
3321
3322
3323 \end_layout
3324
3325 \end_inset
3326 </cell>
3327 </row>
3328 <row>
3329 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3330 \begin_inset Text
3331
3332 \begin_layout Plain Layout
3333
3334 \backslash
3335 not 
3336 \backslash
3337 parallel
3338 \end_layout
3339
3340 \end_inset
3341 </cell>
3342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3343 \begin_inset Text
3344
3345 \begin_layout Plain Layout
3346 \begin_inset Formula $\not\parallel$
3347 \end_inset
3348
3349
3350 \end_layout
3351
3352 \end_inset
3353 </cell>
3354 </row>
3355 </lyxtabular>
3356
3357 \end_inset
3358
3359
3360 \end_layout
3361
3362 \begin_layout Standard
3363 The last example shows, that not all negations look good.
3364  Therefore there are for some negations special commands (see 
3365 \begin_inset CommandInset ref
3366 LatexCommand ref
3367 reference "sub:Mathematical-Symbols"
3368
3369 \end_inset
3370
3371  and 
3372 \begin_inset CommandInset ref
3373 LatexCommand ref
3374 reference "sec:Relations"
3375
3376 \end_inset
3377
3378 ).
3379 \end_layout
3380
3381 \begin_layout Subsection
3382 Placeholders
3383 \begin_inset CommandInset label
3384 LatexCommand label
3385 name "sub:Placeholders"
3386
3387 \end_inset
3388
3389
3390 \begin_inset Index
3391 status collapsed
3392
3393 \begin_layout Plain Layout
3394 Placeholders
3395 \end_layout
3396
3397 \end_inset
3398
3399
3400 \begin_inset Index
3401 status collapsed
3402
3403 \begin_layout Plain Layout
3404 Chemical characters ! Isotopes
3405 \end_layout
3406
3407 \end_inset
3408
3409
3410 \begin_inset Index
3411 status collapsed
3412
3413 \begin_layout Plain Layout
3414 Isotopes|see
3415 \begin_inset ERT
3416 status collapsed
3417
3418 \begin_layout Plain Layout
3419
3420 {
3421 \end_layout
3422
3423 \end_inset
3424
3425 Chemical characters
3426 \begin_inset ERT
3427 status collapsed
3428
3429 \begin_layout Plain Layout
3430
3431 }
3432 \end_layout
3433
3434 \end_inset
3435
3436
3437 \end_layout
3438
3439 \end_inset
3440
3441
3442 \end_layout
3443
3444 \begin_layout Standard
3445 When displaying e.
3446 \begin_inset space \thinspace{}
3447 \end_inset
3448
3449 g.
3450 \begin_inset space \space{}
3451 \end_inset
3452
3453 isotopes
3454 \begin_inset Foot
3455 status collapsed
3456
3457 \begin_layout Plain Layout
3458 More about chemical symbols is written in 
3459 \begin_inset CommandInset ref
3460 LatexCommand ref
3461 reference "sub:Chemical-Symbols-and"
3462
3463 \end_inset
3464
3465 .
3466 \end_layout
3467
3468 \end_inset
3469
3470  the following problem occurs:
3471 \end_layout
3472
3473 \begin_layout Standard
3474 \align center
3475 \begin_inset Tabular
3476 <lyxtabular version="3" rows="2" columns="2">
3477 <features>
3478 <column alignment="center" valignment="top" width="0pt">
3479 <column alignment="center" valignment="top" width="0pt">
3480 <row>
3481 <cell alignment="center" valignment="top" usebox="none">
3482 \begin_inset Text
3483
3484 \begin_layout Plain Layout
3485 Indices created with sub- and superscripts:
3486 \end_layout
3487
3488 \end_inset
3489 </cell>
3490 <cell alignment="center" valignment="top" usebox="none">
3491 \begin_inset Text
3492
3493 \begin_layout Plain Layout
3494 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3495 \end_inset
3496
3497
3498 \end_layout
3499
3500 \end_inset
3501 </cell>
3502 </row>
3503 <row>
3504 <cell alignment="center" valignment="top" usebox="none">
3505 \begin_inset Text
3506
3507 \begin_layout Plain Layout
3508 correct indices:
3509 \end_layout
3510
3511 \end_inset
3512 </cell>
3513 <cell alignment="center" valignment="top" usebox="none">
3514 \begin_inset Text
3515
3516 \begin_layout Plain Layout
3517 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3518 \end_inset
3519
3520
3521 \end_layout
3522
3523 \end_inset
3524 </cell>
3525 </row>
3526 </lyxtabular>
3527
3528 \end_inset
3529
3530
3531 \begin_inset Note Note
3532 status collapsed
3533
3534 \begin_layout Plain Layout
3535
3536 \series bold
3537
3538 \backslash
3539 raisebox
3540 \series default
3541  is only used as spacer.
3542 \end_layout
3543
3544 \end_inset
3545
3546
3547 \end_layout
3548
3549 \begin_layout Standard
3550 The shorter index is by default placed below or above the first character
3551  of the longer index.
3552  To avoid this there is the command 
3553 \series bold
3554
3555 \backslash
3556 phantom
3557 \series default
3558
3559 \begin_inset Index
3560 status collapsed
3561
3562 \begin_layout Plain Layout
3563 Commands ! P ! 
3564 \backslash
3565 phantom
3566 \end_layout
3567
3568 \end_inset
3569
3570  or the math toolbar button
3571 \begin_inset space \thinspace{}
3572 \end_inset
3573
3574
3575 \begin_inset Foot
3576 status collapsed
3577
3578 \begin_layout Plain Layout
3579 can be found in the submenu of the toolbar button 
3580 \begin_inset Graphics
3581         filename ../images/math/space.png
3582         scale 85
3583
3584 \end_inset
3585
3586
3587 \end_layout
3588
3589 \end_inset
3590
3591  
3592 \begin_inset Graphics
3593         filename ../images/math/phantom.png
3594         scale 85
3595
3596 \end_inset
3597
3598  that creates one or more phantom characters.
3599  When inserting 
3600 \series bold
3601
3602 \backslash
3603 phantom
3604 \series default
3605  a small blue box appears that is superposed with two red arrows.
3606  The arrows indicate that the complete width and height of the box content
3607  will be created as placeholder.
3608  Phantom characters are accordingly placeholders with the size of the characters.
3609 \end_layout
3610
3611 \begin_layout Standard
3612 \align center
3613 \begin_inset Tabular
3614 <lyxtabular version="3" rows="4" columns="2">
3615 <features>
3616 <column alignment="center" valignment="top" width="0">
3617 <column alignment="center" valignment="top" width="0">
3618 <row>
3619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3620 \begin_inset Text
3621
3622 \begin_layout Plain Layout
3623 Command
3624 \end_layout
3625
3626 \end_inset
3627 </cell>
3628 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3629 \begin_inset Text
3630
3631 \begin_layout Plain Layout
3632 Result
3633 \begin_inset Note Note
3634 status collapsed
3635
3636 \begin_layout Plain Layout
3637
3638 \series bold
3639
3640 \backslash
3641 raisebox
3642 \series default
3643  is only used as spacer.
3644 \end_layout
3645
3646 \end_inset
3647
3648
3649 \end_layout
3650
3651 \end_inset
3652 </cell>
3653 </row>
3654 <row>
3655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3656 \begin_inset Text
3657
3658 \begin_layout Plain Layout
3659 ^19
3660 \begin_inset ERT
3661 status collapsed
3662
3663 \begin_layout Plain Layout
3664
3665
3666 \backslash
3667 spce 
3668 \end_layout
3669
3670 \end_inset
3671
3672 _
3673 \backslash
3674 phantom
3675 \begin_inset ERT
3676 status collapsed
3677
3678 \begin_layout Plain Layout
3679
3680
3681 \backslash
3682 spce 
3683 \end_layout
3684
3685 \end_inset
3686
3687 1
3688 \begin_inset Formula $\to$
3689 \end_inset
3690
3691 9
3692 \begin_inset ERT
3693 status collapsed
3694
3695 \begin_layout Plain Layout
3696
3697
3698 \backslash
3699 spce 
3700 \end_layout
3701
3702 \end_inset
3703
3704 F
3705 \end_layout
3706
3707 \end_inset
3708 </cell>
3709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3710 \begin_inset Text
3711
3712 \begin_layout Plain Layout
3713 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3714 \end_inset
3715
3716
3717 \end_layout
3718
3719 \end_inset
3720 </cell>
3721 </row>
3722 <row>
3723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3724 \begin_inset Text
3725
3726 \begin_layout Plain Layout
3727 ^235
3728 \begin_inset ERT
3729 status collapsed
3730
3731 \begin_layout Plain Layout
3732
3733
3734 \backslash
3735 spce 
3736 \end_layout
3737
3738 \end_inset
3739
3740 _
3741 \backslash
3742 phantom
3743 \begin_inset ERT
3744 status collapsed
3745
3746 \begin_layout Plain Layout
3747
3748
3749 \backslash
3750 spce 
3751 \end_layout
3752
3753 \end_inset
3754
3755 23
3756 \begin_inset Formula $\to$
3757 \end_inset
3758
3759 9
3760 \begin_inset ERT
3761 status collapsed
3762
3763 \begin_layout Plain Layout
3764
3765
3766 \backslash
3767 spce 
3768 \end_layout
3769
3770 \end_inset
3771
3772 F
3773 \end_layout
3774
3775 \end_inset
3776 </cell>
3777 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3778 \begin_inset Text
3779
3780 \begin_layout Plain Layout
3781 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3782 \end_inset
3783
3784
3785 \end_layout
3786
3787 \end_inset
3788 </cell>
3789 </row>
3790 <row>
3791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3792 \begin_inset Text
3793
3794 \begin_layout Plain Layout
3795
3796 \backslash
3797 Lambda^
3798 \begin_inset ERT
3799 status collapsed
3800
3801 \begin_layout Plain Layout
3802
3803
3804 \backslash
3805 spce 
3806 \end_layout
3807
3808 \end_inset
3809
3810
3811 \backslash
3812 phantom
3813 \begin_inset ERT
3814 status collapsed
3815
3816 \begin_layout Plain Layout
3817
3818
3819 \backslash
3820 spce 
3821 \end_layout
3822
3823 \end_inset
3824
3825 ii
3826 \begin_inset Formula $\to$
3827 \end_inset
3828
3829 t
3830 \begin_inset ERT
3831 status collapsed
3832
3833 \begin_layout Plain Layout
3834
3835
3836 \backslash
3837 spce 
3838 \end_layout
3839
3840 \end_inset
3841
3842 _MMt
3843 \end_layout
3844
3845 \end_inset
3846 </cell>
3847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3848 \begin_inset Text
3849
3850 \begin_layout Plain Layout
3851 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3852 \end_inset
3853
3854
3855 \end_layout
3856
3857 \end_inset
3858 </cell>
3859 </row>
3860 </lyxtabular>
3861
3862 \end_inset
3863
3864
3865 \end_layout
3866
3867 \begin_layout Standard
3868 Furthermore there are the commands 
3869 \series bold
3870
3871 \backslash
3872 vphantom
3873 \series default
3874
3875 \begin_inset Index
3876 status collapsed
3877
3878 \begin_layout Plain Layout
3879 Commands ! V ! 
3880 \backslash
3881 vphantom
3882 \end_layout
3883
3884 \end_inset
3885
3886  (toolbar button 
3887 \begin_inset space ~
3888 \end_inset
3889
3890
3891 \begin_inset Graphics
3892         filename ../images/math/vphantom.png
3893         scale 85
3894
3895 \end_inset
3896
3897 ) and 
3898 \series bold
3899
3900 \backslash
3901 hphantom
3902 \series default
3903
3904 \begin_inset Index
3905 status collapsed
3906
3907 \begin_layout Plain Layout
3908 Commands ! H ! 
3909 \backslash
3910 hphantom
3911 \end_layout
3912
3913 \end_inset
3914
3915  (toolbar button 
3916 \begin_inset space ~
3917 \end_inset
3918
3919
3920 \begin_inset Graphics
3921         filename ../images/math/hphantom.png
3922         scale 85
3923
3924 \end_inset
3925
3926 ).
3927  
3928 \series bold
3929
3930 \backslash
3931 hphantom
3932 \series default
3933  creates only space for the maximal height of the characters in the box
3934  but not for its width.
3935  
3936 \series bold
3937
3938 \backslash
3939 vphantom
3940 \series default
3941  creates only space for the width of the box content.
3942  Therefore  the boxes of both commands have only one red arrow.
3943 \end_layout
3944
3945 \begin_layout Standard
3946 For example creates 
3947 \series bold
3948
3949 \backslash
3950 vphantom
3951 \series default
3952
3953 \begin_inset ERT
3954 status collapsed
3955
3956 \begin_layout Plain Layout
3957
3958
3959 \backslash
3960 spce 
3961 \end_layout
3962
3963 \end_inset
3964
3965
3966 \series bold
3967 a
3968 \backslash
3969 int
3970 \series default
3971  space for the height of the integral sign,
3972 \begin_inset Foot
3973 status collapsed
3974
3975 \begin_layout Plain Layout
3976 The command 
3977 \series bold
3978
3979 \backslash
3980 int
3981 \series default
3982  creates an integral sign, see 
3983 \begin_inset CommandInset ref
3984 LatexCommand ref
3985 reference "sub:Big-Operators"
3986
3987 \end_inset
3988
3989 .
3990 \end_layout
3991
3992 \end_inset
3993
3994  because this is the larger character.
3995  An example application is in 
3996 \begin_inset CommandInset ref
3997 LatexCommand ref
3998 reference "sub:Multiline-Brackets"
3999
4000 \end_inset
4001
4002 .
4003 \end_layout
4004
4005 \begin_layout Subsection
4006 Lines
4007 \begin_inset Index
4008 status collapsed
4009
4010 \begin_layout Plain Layout
4011 Lines
4012 \end_layout
4013
4014 \end_inset
4015
4016
4017 \begin_inset Index
4018 status collapsed
4019
4020 \begin_layout Plain Layout
4021 Formula ! underlined
4022 \end_layout
4023
4024 \end_inset
4025
4026
4027 \end_layout
4028
4029 \begin_layout Standard
4030 \align center
4031 \begin_inset Tabular
4032 <lyxtabular version="3" rows="4" columns="2">
4033 <features>
4034 <column alignment="center" valignment="top" width="0pt">
4035 <column alignment="center" valignment="top" width="0pt">
4036 <row>
4037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4038 \begin_inset Text
4039
4040 \begin_layout Plain Layout
4041 Command
4042 \end_layout
4043
4044 \end_inset
4045 </cell>
4046 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4047 \begin_inset Text
4048
4049 \begin_layout Plain Layout
4050 Result
4051 \begin_inset Note Note
4052 status collapsed
4053
4054 \begin_layout Plain Layout
4055
4056 \series bold
4057
4058 \backslash
4059 raisebox
4060 \series default
4061  is only used as spacer.
4062 \end_layout
4063
4064 \end_inset
4065
4066
4067 \end_layout
4068
4069 \end_inset
4070 </cell>
4071 </row>
4072 <row>
4073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4074 \begin_inset Text
4075
4076 \begin_layout Plain Layout
4077
4078 \backslash
4079 overline
4080 \begin_inset ERT
4081 status collapsed
4082
4083 \begin_layout Plain Layout
4084
4085
4086 \backslash
4087 spce 
4088 \end_layout
4089
4090 \end_inset
4091
4092 A+B
4093 \begin_inset Index
4094 status collapsed
4095
4096 \begin_layout Plain Layout
4097 Commands ! O ! 
4098 \backslash
4099 overline
4100 \end_layout
4101
4102 \end_inset
4103
4104
4105 \end_layout
4106
4107 \end_inset
4108 </cell>
4109 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4110 \begin_inset Text
4111
4112 \begin_layout Plain Layout
4113 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4114 \end_inset
4115
4116
4117 \end_layout
4118
4119 \end_inset
4120 </cell>
4121 </row>
4122 <row>
4123 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4124 \begin_inset Text
4125
4126 \begin_layout Plain Layout
4127
4128 \backslash
4129 underline
4130 \begin_inset ERT
4131 status collapsed
4132
4133 \begin_layout Plain Layout
4134
4135
4136 \backslash
4137 spce 
4138 \end_layout
4139
4140 \end_inset
4141
4142 A+B
4143 \begin_inset Index
4144 status collapsed
4145
4146 \begin_layout Plain Layout
4147 Commands ! U ! 
4148 \backslash
4149 underline
4150 \end_layout
4151
4152 \end_inset
4153
4154
4155 \end_layout
4156
4157 \end_inset
4158 </cell>
4159 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4160 \begin_inset Text
4161
4162 \begin_layout Plain Layout
4163 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4164 \end_inset
4165
4166
4167 \end_layout
4168
4169 \end_inset
4170 </cell>
4171 </row>
4172 <row>
4173 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4174 \begin_inset Text
4175
4176 \begin_layout Plain Layout
4177
4178 \backslash
4179 overline
4180 \begin_inset ERT
4181 status collapsed
4182
4183 \begin_layout Plain Layout
4184
4185
4186 \backslash
4187 spce 
4188 \end_layout
4189
4190 \end_inset
4191
4192
4193 \backslash
4194 underline
4195 \begin_inset ERT
4196 status collapsed
4197
4198 \begin_layout Plain Layout
4199
4200
4201 \backslash
4202 spce 
4203 \end_layout
4204
4205 \end_inset
4206
4207 A+B
4208 \end_layout
4209
4210 \end_inset
4211 </cell>
4212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4213 \begin_inset Text
4214
4215 \begin_layout Plain Layout
4216 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4217 \end_inset
4218
4219
4220 \end_layout
4221
4222 \end_inset
4223 </cell>
4224 </row>
4225 </lyxtabular>
4226
4227 \end_inset
4228
4229
4230 \end_layout
4231
4232 \begin_layout Standard
4233 In the last example it doesn't matter if first 
4234 \series bold
4235
4236 \backslash
4237 overline
4238 \series default
4239  or 
4240 \series bold
4241
4242 \backslash
4243 underline
4244 \series default
4245  is inserted.
4246 \end_layout
4247
4248 \begin_layout Standard
4249 To double underline e.
4250 \begin_inset space \thinspace{}
4251 \end_inset
4252
4253 g.
4254 \begin_inset space \space{}
4255 \end_inset
4256
4257 results, one uses 
4258 \series bold
4259
4260 \backslash
4261 underline
4262 \series default
4263  twice.
4264 \end_layout
4265
4266 \begin_layout Standard
4267 It is possible to place up to 6 lines above or below characters.
4268 \end_layout
4269
4270 \begin_layout Standard
4271 \begin_inset VSpace bigskip
4272 \end_inset
4273
4274 Custom lines can be created using the command 
4275 \series bold
4276
4277 \backslash
4278 rule
4279 \series default
4280
4281 \begin_inset Index
4282 status collapsed
4283
4284 \begin_layout Plain Layout
4285 Commands ! R ! 
4286 \backslash
4287 rule
4288 \end_layout
4289
4290 \end_inset
4291
4292  which has the following scheme:
4293 \end_layout
4294
4295 \begin_layout Standard
4296
4297 \series bold
4298
4299 \backslash
4300 rule[vertical offset]{length}{thickness}
4301 \end_layout
4302
4303 \begin_layout Standard
4304 The optional vertical offset shifts the line upwards (or downwards, when
4305  the value is negative).
4306  The units listed in 
4307 \begin_inset CommandInset ref
4308 LatexCommand ref
4309 reference "tab:Available-units"
4310
4311 \end_inset
4312
4313  can be used for the values.
4314  Here are two example lines created with the commands
4315 \begin_inset Newline newline
4316 \end_inset
4317
4318
4319 \series bold
4320
4321 \backslash
4322 rule[-2ex]{3cm}{2pt}
4323 \series default
4324  and 
4325 \series bold
4326
4327 \backslash
4328 rule{2cm}{1pt}
4329 \series default
4330 :
4331 \end_layout
4332
4333 \begin_layout Standard
4334 This is a sentence 
4335 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4336 \end_inset
4337
4338  with two lines.
4339 \end_layout
4340
4341 \begin_layout Standard
4342
4343 \series bold
4344
4345 \backslash
4346 rule
4347 \series default
4348  can also be used for text when it is inserted in TeX-mode.
4349 \end_layout
4350
4351 \begin_layout Subsection
4352 Ellipses
4353 \begin_inset CommandInset label
4354 LatexCommand label
4355 name "sub:Ellipses"
4356
4357 \end_inset
4358
4359
4360 \begin_inset Index
4361 status collapsed
4362
4363 \begin_layout Plain Layout
4364 Ellipses
4365 \end_layout
4366
4367 \end_inset
4368
4369
4370 \end_layout
4371
4372 \begin_layout Standard
4373 There are different types of ellipses available.
4374 \begin_inset Foot
4375 status collapsed
4376
4377 \begin_layout Plain Layout
4378 In the math toolbar in the submenu of the button 
4379 \begin_inset Graphics
4380         filename ../images/math/ldots.png
4381         scale 85
4382
4383 \end_inset
4384
4385
4386 \end_layout
4387
4388 \end_inset
4389
4390  For listings dots at the baseline are used (
4391 \series bold
4392
4393 \backslash
4394 ldots
4395 \series default
4396
4397 \begin_inset Index
4398 status collapsed
4399
4400 \begin_layout Plain Layout
4401 Commands ! L ! 
4402 \backslash
4403 ldots
4404 \end_layout
4405
4406 \end_inset
4407
4408 ), while for operations dots are needed that are on the same height as the
4409  operators (
4410 \series bold
4411
4412 \backslash
4413 cdots
4414 \series default
4415
4416 \begin_inset Index
4417 status collapsed
4418
4419 \begin_layout Plain Layout
4420 Commands ! C ! 
4421 \backslash
4422 cdots
4423 \end_layout
4424
4425 \end_inset
4426
4427 ).
4428  When using the command 
4429 \series bold
4430
4431 \backslash
4432 dots
4433 \series default
4434
4435 \begin_inset Index
4436 status collapsed
4437
4438 \begin_layout Plain Layout
4439 Commands ! D ! 
4440 \backslash
4441 dots
4442 \end_layout
4443
4444 \end_inset
4445
4446 , LaTeX decides on the basis of the next character what type is used.
4447 \end_layout
4448
4449 \begin_layout Standard
4450 \align center
4451 \begin_inset Tabular
4452 <lyxtabular version="3" rows="8" columns="2">
4453 <features>
4454 <column alignment="center" valignment="top" width="0pt">
4455 <column alignment="center" valignment="top" width="0pt">
4456 <row>
4457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4458 \begin_inset Text
4459
4460 \begin_layout Plain Layout
4461 Command
4462 \end_layout
4463
4464 \end_inset
4465 </cell>
4466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4467 \begin_inset Text
4468
4469 \begin_layout Plain Layout
4470 Result
4471 \end_layout
4472
4473 \end_inset
4474 </cell>
4475 </row>
4476 <row>
4477 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4478 \begin_inset Text
4479
4480 \begin_layout Plain Layout
4481 A_1
4482 \begin_inset ERT
4483 status collapsed
4484
4485 \begin_layout Plain Layout
4486
4487
4488 \backslash
4489 spce 
4490 \end_layout
4491
4492 \end_inset
4493
4494 ,
4495 \backslash
4496 dots
4497 \begin_inset ERT
4498 status collapsed
4499
4500 \begin_layout Plain Layout
4501
4502
4503 \backslash
4504 spce 
4505 \end_layout
4506
4507 \end_inset
4508
4509 ,A_n
4510 \end_layout
4511
4512 \end_inset
4513 </cell>
4514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4515 \begin_inset Text
4516
4517 \begin_layout Plain Layout
4518 \begin_inset Formula $A_{1},\dots,A_{n}$
4519 \end_inset
4520
4521
4522 \end_layout
4523
4524 \end_inset
4525 </cell>
4526 </row>
4527 <row>
4528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4529 \begin_inset Text
4530
4531 \begin_layout Plain Layout
4532 A_1
4533 \begin_inset ERT
4534 status collapsed
4535
4536 \begin_layout Plain Layout
4537
4538
4539 \backslash
4540 spce 
4541 \end_layout
4542
4543 \end_inset
4544
4545 +
4546 \backslash
4547 dots
4548 \begin_inset ERT
4549 status collapsed
4550
4551 \begin_layout Plain Layout
4552
4553
4554 \backslash
4555 spce 
4556 \end_layout
4557
4558 \end_inset
4559
4560 +A_n
4561 \end_layout
4562
4563 \end_inset
4564 </cell>
4565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4566 \begin_inset Text
4567
4568 \begin_layout Plain Layout
4569 \begin_inset Formula $A_{1}+\dots+A_{n}$
4570 \end_inset
4571
4572
4573 \end_layout
4574
4575 \end_inset
4576 </cell>
4577 </row>
4578 <row>
4579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4580 \begin_inset Text
4581
4582 \begin_layout Plain Layout
4583 A_1
4584 \begin_inset ERT
4585 status collapsed
4586
4587 \begin_layout Plain Layout
4588
4589
4590 \backslash
4591 spce 
4592 \end_layout
4593
4594 \end_inset
4595
4596 ,
4597 \backslash
4598 ldots
4599 \begin_inset ERT
4600 status collapsed
4601
4602 \begin_layout Plain Layout
4603
4604
4605 \backslash
4606 spce 
4607 \end_layout
4608
4609 \end_inset
4610
4611 ,A_n
4612 \end_layout
4613
4614 \end_inset
4615 </cell>
4616 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4617 \begin_inset Text
4618
4619 \begin_layout Plain Layout
4620 \begin_inset Formula $A_{1},\ldots,A_{n}$
4621 \end_inset
4622
4623
4624 \end_layout
4625
4626 \end_inset
4627 </cell>
4628 </row>
4629 <row>
4630 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4631 \begin_inset Text
4632
4633 \begin_layout Plain Layout
4634 A_1
4635 \begin_inset ERT
4636 status collapsed
4637
4638 \begin_layout Plain Layout
4639
4640
4641 \backslash
4642 spce 
4643 \end_layout
4644
4645 \end_inset
4646
4647 +
4648 \backslash
4649 cdots
4650 \begin_inset ERT
4651 status collapsed
4652
4653 \begin_layout Plain Layout
4654
4655
4656 \backslash
4657 spce 
4658 \end_layout
4659
4660 \end_inset
4661
4662 +A_n
4663 \end_layout
4664
4665 \end_inset
4666 </cell>
4667 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4668 \begin_inset Text
4669
4670 \begin_layout Plain Layout
4671 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4672 \end_inset
4673
4674
4675 \end_layout
4676
4677 \end_inset
4678 </cell>
4679 </row>
4680 <row>
4681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4682 \begin_inset Text
4683
4684 \begin_layout Plain Layout
4685
4686 \backslash
4687 vdots
4688 \end_layout
4689
4690 \end_inset
4691 </cell>
4692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4693 \begin_inset Text
4694
4695 \begin_layout Plain Layout
4696 \begin_inset Formula $\vdots$
4697 \end_inset
4698
4699
4700 \end_layout
4701
4702 \end_inset
4703 </cell>
4704 </row>
4705 <row>
4706 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4707 \begin_inset Text
4708
4709 \begin_layout Plain Layout
4710
4711 \backslash
4712 ddots
4713 \end_layout
4714
4715 \end_inset
4716 </cell>
4717 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4718 \begin_inset Text
4719
4720 \begin_layout Plain Layout
4721 \begin_inset Formula $\ddots$
4722 \end_inset
4723
4724
4725 \end_layout
4726
4727 \end_inset
4728 </cell>
4729 </row>
4730 <row>
4731 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4732 \begin_inset Text
4733
4734 \begin_layout Plain Layout
4735 3×3
4736 \begin_inset space \thinspace{}
4737 \end_inset
4738
4739 matrix with the different dots
4740 \end_layout
4741
4742 \end_inset
4743 </cell>
4744 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4745 \begin_inset Text
4746
4747 \begin_layout Plain Layout
4748 \begin_inset Formula $\begin{array}{ccc}
4749 A_{11} & \cdots & A_{1m}\\
4750 \vdots & \ddots & \vdots\\
4751 A_{n1} & \cdots & A_{nm}\end{array}$
4752 \end_inset
4753
4754
4755 \end_layout
4756
4757 \end_inset
4758 </cell>
4759 </row>
4760 </lyxtabular>
4761
4762 \end_inset
4763
4764
4765 \end_layout
4766
4767 \begin_layout Standard
4768 The ellipses available in menu 
4769 \family sans
4770 Insert\SpecialChar \menuseparator
4771 Special
4772 \begin_inset space ~
4773 \end_inset
4774
4775 Character
4776 \family default
4777  are 
4778 \series bold
4779
4780 \backslash
4781 ldots
4782 \series default
4783 .
4784 \end_layout
4785
4786 \begin_layout Standard
4787 \begin_inset VSpace medskip
4788 \end_inset
4789
4790 Specially for matrices there are ellipses that span over several columns.
4791  They are created with the command 
4792 \series bold
4793
4794 \backslash
4795 hdotsfor
4796 \series default
4797
4798 \begin_inset Index
4799 status collapsed
4800
4801 \begin_layout Plain Layout
4802 Commands ! H ! 
4803 \backslash
4804 hdotsfor
4805 \end_layout
4806
4807 \end_inset
4808
4809 , that has the following scheme:
4810 \end_layout
4811
4812 \begin_layout Standard
4813
4814 \series bold
4815
4816 \backslash
4817 hdotsfor[distance]{number of columns}
4818 \end_layout
4819
4820 \begin_layout Standard
4821 The number of columns specifies how many columns should be spanned.
4822  Distance is a factor for the distance between the dots.
4823 \end_layout
4824
4825 \begin_layout Standard
4826 In the following matrix the command 
4827 \series bold
4828
4829 \backslash
4830 hdotsfor[2]{4}
4831 \series default
4832  was inserted in the first box of the second line, to get an ellipsis with
4833  a dot distance twice as long as with the command 
4834 \series bold
4835
4836 \backslash
4837 dots
4838 \series default
4839 :
4840 \begin_inset Formula \[
4841 \left(\begin{array}{cccc}
4842 A & B & C & D\\
4843 \hdotsfor[2]{4}\\
4844 q & w & e & r\end{array}\right)\]
4845
4846 \end_inset
4847
4848 Note that the matrix fields that should be spanned must be empty, otherwise
4849  you get LaTeX-errors.
4850 \end_layout
4851
4852 \begin_layout Standard
4853 \begin_inset VSpace bigskip
4854 \end_inset
4855
4856 Furthermore you can fill with the command 
4857 \series bold
4858
4859 \backslash
4860 dotfill
4861 \series default
4862
4863 \begin_inset Index
4864 status collapsed
4865
4866 \begin_layout Plain Layout
4867 Commands ! D ! 
4868 \backslash
4869 dotfill
4870 \end_layout
4871
4872 \end_inset
4873
4874  the rest of a line with dots.
4875  The effect of these commands is the same like with 
4876 \series bold
4877
4878 \backslash
4879 hfill
4880 \series default
4881 , see 
4882 \begin_inset CommandInset ref
4883 LatexCommand ref
4884 reference "sub:Variable-Space"
4885
4886 \end_inset
4887
4888 .
4889 \end_layout
4890
4891 \begin_layout Standard
4892 For example the command 
4893 \series bold
4894 A
4895 \backslash
4896 dotfill
4897 \begin_inset ERT
4898 status collapsed
4899
4900 \begin_layout Plain Layout
4901
4902
4903 \backslash
4904 spce 
4905 \end_layout
4906
4907 \end_inset
4908
4909 B
4910 \series default
4911  produces
4912 \end_layout
4913
4914 \begin_layout Standard
4915 \begin_inset Formula $A\dotfill B$
4916 \end_inset
4917
4918
4919 \end_layout
4920
4921 \begin_layout Standard
4922 Analog to
4923 \series bold
4924  
4925 \backslash
4926 dotfill
4927 \series default
4928  there is for a line the command 
4929 \series bold
4930
4931 \backslash
4932 hrulefill
4933 \series default
4934
4935 \begin_inset Index
4936 status collapsed
4937
4938 \begin_layout Plain Layout
4939 Commands ! H ! 
4940 \backslash
4941 hrulefill
4942 \end_layout
4943
4944 \end_inset
4945
4946 :
4947 \end_layout
4948
4949 \begin_layout Standard
4950 \begin_inset Formula $A\hrulefill B$
4951 \end_inset
4952
4953
4954 \end_layout
4955
4956 \begin_layout Standard
4957 To use the commands for text, they have to be inserted in TeX-mode.
4958 \end_layout
4959
4960 \begin_layout Section
4961 Matrices
4962 \begin_inset CommandInset label
4963 LatexCommand label
4964 name "sec:Matrices"
4965
4966 \end_inset
4967
4968
4969 \begin_inset Index
4970 status collapsed
4971
4972 \begin_layout Plain Layout
4973 Matrices
4974 \end_layout
4975
4976 \end_inset
4977
4978
4979 \end_layout
4980
4981 \begin_layout Standard
4982 Matrices can be inserted via the math toolbar button 
4983 \begin_inset Graphics
4984         filename ../images/dialog-show_mathmatrix.png
4985         scale 85
4986
4987 \end_inset
4988
4989  or the menu 
4990 \family sans
4991 Insert\SpecialChar \menuseparator
4992 Math\SpecialChar \menuseparator
4993 Matrix
4994 \family default
4995 .
4996  You will be asked for the number of matrix columns and rows, and the alignment.
4997  The vertical alignment is hereby only of importance for matrices in inline
4998  formulas:
4999 \end_layout
5000
5001 \begin_layout Standard
5002 The first matrix is top 
5003 \begin_inset Formula $\begin{array}[t]{cccc}
5004 A & D & G & J\\
5005 B & E & H & K\\
5006 C & F & I & L\end{array}$
5007 \end_inset
5008
5009 , the second middle 
5010 \begin_inset Formula $\begin{array}{cccc}
5011 A & D & G & J\\
5012 B & E & H & K\\
5013 C & F & I & L\end{array}$
5014 \end_inset
5015
5016 , and the third bottom 
5017 \begin_inset Formula $\begin{array}[b]{cccc}
5018 A & D & G & J\\
5019 B & E & H & K\\
5020 C & F & I & L\end{array}$
5021 \end_inset
5022
5023  aligned.
5024 \end_layout
5025
5026 \begin_layout Standard
5027 The horizontal alignment specifies how the column entries should be aligned.
5028  It is set by entering a letter for every column.
5029  
5030 \emph on
5031 l
5032 \emph default
5033  denotes left aligned, 
5034 \emph on
5035 c
5036 \emph default
5037  centered, and 
5038 \emph on
5039 r
5040 \emph default
5041  right aligned.
5042  To create for example a 4
5043 \series bold
5044 ×
5045 \series default
5046 4
5047 \begin_inset space ~
5048 \end_inset
5049
5050 matrix where the first column is left aligned, the second and third are
5051  centered, and the last one is right aligned, one enters for the horizontal
5052  alignment 
5053 \series bold
5054 lccr
5055 \series default
5056 .
5057  Normally are in a matrix all columns centered, therefore the default is
5058  for every column is a 
5059 \series bold
5060 c
5061 \series default
5062 .
5063 \end_layout
5064
5065 \begin_layout Standard
5066 Horizontal alignment:
5067 \end_layout
5068
5069 \begin_layout Standard
5070
5071 \series bold
5072 lll
5073 \series default
5074  : 
5075 \begin_inset Formula $\begin{array}{lll}
5076 10000 & D & G\\
5077 B & 10000 & H\\
5078 C & F & 10000\end{array}$
5079 \end_inset
5080
5081  , 
5082 \series bold
5083 ccc
5084 \series default
5085  : 
5086 \begin_inset Formula $\begin{array}{ccc}
5087 10000 & D & G\\
5088 B & 10000 & H\\
5089 C & F & 10000\end{array}$
5090 \end_inset
5091
5092  , 
5093 \series bold
5094 rrr
5095 \series default
5096  : 
5097 \begin_inset Formula $\begin{array}{rrr}
5098 10000 & D & G\\
5099 B & 10000 & H\\
5100 C & F & 10000\end{array}$
5101 \end_inset
5102
5103
5104 \end_layout
5105
5106 \begin_layout Standard
5107 To add or delete rows and columns subsequently, the math toolbar buttons
5108  
5109 \begin_inset Graphics
5110         filename ../images/tabular-feature_append-row.png
5111         scale 85
5112
5113 \end_inset
5114
5115
5116 \begin_inset Graphics
5117         filename ../images/tabular-feature_delete-row.png
5118         scale 85
5119
5120 \end_inset
5121
5122 , etc.
5123 \begin_inset space \thinspace{}
5124 \end_inset
5125
5126 , or the menu 
5127 \family sans
5128 Edit\SpecialChar \menuseparator
5129 Rows & Columns
5130 \family default
5131  can be used.
5132  New rows can also be created with 
5133 \begin_inset Info
5134 type  "shortcut"
5135 arg   "newline-insert newline"
5136 \end_inset
5137
5138 .
5139 \end_layout
5140
5141 \begin_layout Standard
5142 \begin_inset VSpace bigskip
5143 \end_inset
5144
5145 Parentheses around a matrix can can either be created with the commands
5146  
5147 \series bold
5148
5149 \backslash
5150 left
5151 \series default
5152
5153 \begin_inset Index
5154 status collapsed
5155
5156 \begin_layout Plain Layout
5157 Commands ! L ! 
5158 \backslash
5159 left
5160 \end_layout
5161
5162 \end_inset
5163
5164  and 
5165 \series bold
5166
5167 \backslash
5168 right
5169 \series default
5170
5171 \begin_inset Index
5172 status collapsed
5173
5174 \begin_layout Plain Layout
5175 Commands ! R ! 
5176 \backslash
5177 right
5178 \end_layout
5179
5180 \end_inset
5181
5182  (shortcut 
5183 \family sans
5184 Alt+M
5185 \begin_inset space ~
5186 \end_inset
5187
5188 Parenthesis
5189 \family default
5190 ), see 
5191 \begin_inset CommandInset ref
5192 LatexCommand ref
5193 reference "sub:Automatic-Bracket-Size"
5194
5195 \end_inset
5196
5197 , or by using the following commands:
5198 \begin_inset VSpace medskip
5199 \end_inset
5200
5201
5202 \end_layout
5203
5204 \begin_layout Standard
5205 \begin_inset space \hfill{}
5206 \end_inset
5207
5208
5209 \begin_inset Tabular
5210 <lyxtabular version="3" rows="4" columns="2">
5211 <features>
5212 <column alignment="center" valignment="top" width="0">
5213 <column alignment="center" valignment="top" width="0">
5214 <row>
5215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5216 \begin_inset Text
5217
5218 \begin_layout Plain Layout
5219 Command
5220 \end_layout
5221
5222 \end_inset
5223 </cell>
5224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5225 \begin_inset Text
5226
5227 \begin_layout Plain Layout
5228 Result
5229 \begin_inset Note Note
5230 status collapsed
5231
5232 \begin_layout Plain Layout
5233
5234 \series bold
5235
5236 \backslash
5237 raisebox
5238 \series default
5239  is only used as spacer.
5240 \end_layout
5241
5242 \end_inset
5243
5244
5245 \end_layout
5246
5247 \end_inset
5248 </cell>
5249 </row>
5250 <row>
5251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5252 \begin_inset Text
5253
5254 \begin_layout Plain Layout
5255
5256 \backslash
5257 bmatrix
5258 \begin_inset ERT
5259 status collapsed
5260
5261 \begin_layout Plain Layout
5262
5263
5264 \backslash
5265 spce 
5266 \end_layout
5267
5268 \end_inset
5269
5270 2
5271 \series bold
5272 ×
5273 \series default
5274 2
5275 \begin_inset space \thinspace{}
5276 \end_inset
5277
5278 matrix
5279 \end_layout
5280
5281 \end_inset
5282 </cell>
5283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5284 \begin_inset Text
5285
5286 \begin_layout Plain Layout
5287 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5288 0 & \textrm{-}\mathrm{i}\\
5289 \mathrm{i} & 0\end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5290 \end_inset
5291
5292
5293 \end_layout
5294
5295 \end_inset
5296 </cell>
5297 </row>
5298 <row>
5299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5300 \begin_inset Text
5301
5302 \begin_layout Plain Layout
5303
5304 \backslash
5305 Bmatrix
5306 \begin_inset ERT
5307 status collapsed
5308
5309 \begin_layout Plain Layout
5310
5311
5312 \backslash
5313 spce 
5314 \end_layout
5315
5316 \end_inset
5317
5318 2
5319 \series bold
5320 ×
5321 \series default
5322 2
5323 \begin_inset space \thinspace{}
5324 \end_inset
5325
5326 matrix
5327 \end_layout
5328
5329 \end_inset
5330 </cell>
5331 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5332 \begin_inset Text
5333
5334 \begin_layout Plain Layout
5335 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5336 0 & \textrm{-}\mathrm{i}\\
5337 \mathrm{i} & 0\end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5338 \end_inset
5339
5340
5341 \end_layout
5342
5343 \end_inset
5344 </cell>
5345 </row>
5346 <row>
5347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5348 \begin_inset Text
5349
5350 \begin_layout Plain Layout
5351
5352 \backslash
5353 pmatrix
5354 \begin_inset ERT
5355 status collapsed
5356
5357 \begin_layout Plain Layout
5358
5359
5360 \backslash
5361 spce 
5362 \end_layout
5363
5364 \end_inset
5365
5366 2
5367 \series bold
5368 ×
5369 \series default
5370 2
5371 \begin_inset space \thinspace{}
5372 \end_inset
5373
5374 matrix
5375 \end_layout
5376
5377 \end_inset
5378 </cell>
5379 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5380 \begin_inset Text
5381
5382 \begin_layout Plain Layout
5383 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5384 0 & \textrm{-}\mathrm{i}\\
5385 \mathrm{i} & 0\end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5386 \end_inset
5387
5388
5389 \end_layout
5390
5391 \end_inset
5392 </cell>
5393 </row>
5394 </lyxtabular>
5395
5396 \end_inset
5397
5398
5399 \begin_inset space \hfill{}
5400 \end_inset
5401
5402
5403 \begin_inset Tabular
5404 <lyxtabular version="3" rows="4" columns="2">
5405 <features>
5406 <column alignment="center" valignment="top" width="0">
5407 <column alignment="center" valignment="top" width="0">
5408 <row>
5409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5410 \begin_inset Text
5411
5412 \begin_layout Plain Layout
5413 Command
5414 \end_layout
5415
5416 \end_inset
5417 </cell>
5418 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5419 \begin_inset Text
5420
5421 \begin_layout Plain Layout
5422 Result
5423 \end_layout
5424
5425 \end_inset
5426 </cell>
5427 </row>
5428 <row>
5429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5430 \begin_inset Text
5431
5432 \begin_layout Plain Layout
5433
5434 \backslash
5435 vmatrix
5436 \begin_inset ERT
5437 status collapsed
5438
5439 \begin_layout Plain Layout
5440
5441
5442 \backslash
5443 spce 
5444 \end_layout
5445
5446 \end_inset
5447
5448 2
5449 \series bold
5450 ×
5451 \series default
5452 2
5453 \begin_inset space \thinspace{}
5454 \end_inset
5455
5456 matrix
5457 \end_layout
5458
5459 \end_inset
5460 </cell>
5461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5462 \begin_inset Text
5463
5464 \begin_layout Plain Layout
5465 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5466 0 & \textrm{-}\mathrm{i}\\
5467 \mathrm{i} & 0\end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5468 \end_inset
5469
5470
5471 \end_layout
5472
5473 \end_inset
5474 </cell>
5475 </row>
5476 <row>
5477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5478 \begin_inset Text
5479
5480 \begin_layout Plain Layout
5481
5482 \backslash
5483 Vmatrix
5484 \begin_inset ERT
5485 status collapsed
5486
5487 \begin_layout Plain Layout
5488
5489
5490 \backslash
5491 spce 
5492 \end_layout
5493
5494 \end_inset
5495
5496 2
5497 \series bold
5498 ×
5499 \series default
5500 2
5501 \begin_inset space \thinspace{}
5502 \end_inset
5503
5504 matrix
5505 \end_layout
5506
5507 \end_inset
5508 </cell>
5509 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5510 \begin_inset Text
5511
5512 \begin_layout Plain Layout
5513 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5514 0 & \textrm{-}\mathrm{i}\\
5515 \mathrm{i} & 0\end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5516 \end_inset
5517
5518
5519 \end_layout
5520
5521 \end_inset
5522 </cell>
5523 </row>
5524 <row>
5525 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5526 \begin_inset Text
5527
5528 \begin_layout Plain Layout
5529
5530 \backslash
5531 matrix
5532 \begin_inset ERT
5533 status collapsed
5534
5535 \begin_layout Plain Layout
5536
5537
5538 \backslash
5539 spce 
5540 \end_layout
5541
5542 \end_inset
5543
5544 2
5545 \series bold
5546 ×
5547 \series default
5548 2
5549 \begin_inset space \thinspace{}
5550 \end_inset
5551
5552 matrix
5553 \end_layout
5554
5555 \end_inset
5556 </cell>
5557 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5558 \begin_inset Text
5559
5560 \begin_layout Plain Layout
5561 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5562 0 & \textrm{-}\mathrm{i}\\
5563 \mathrm{i} & 0\end{array}\end{matrix}\raisebox{-5.3mm}{}$
5564 \end_inset
5565
5566
5567 \end_layout
5568
5569 \end_inset
5570 </cell>
5571 </row>
5572 </lyxtabular>
5573
5574 \end_inset
5575
5576
5577 \begin_inset space \hfill{}
5578 \end_inset
5579
5580
5581 \end_layout
5582
5583 \begin_layout Standard
5584 \begin_inset VSpace medskip
5585 \end_inset
5586
5587 When e.
5588 \begin_inset space \thinspace{}
5589 \end_inset
5590
5591 g.
5592 \begin_inset space \space{}
5593 \end_inset
5594
5595
5596 \series bold
5597
5598 \backslash
5599 vmatrix
5600 \series default
5601  is inserted, a blue box appears between two vertical lines where the matrix
5602  is inserted.
5603 \end_layout
5604
5605 \begin_layout Standard
5606 \begin_inset VSpace bigskip
5607 \end_inset
5608
5609 As all multiline formulas are matrices, the length 
5610 \series bold
5611
5612 \backslash
5613 arraycolsep
5614 \series default
5615
5616 \begin_inset Index
5617 status collapsed
5618
5619 \begin_layout Plain Layout
5620 Commands ! A ! 
5621 \backslash
5622 arraycolsep
5623 \end_layout
5624
5625 \end_inset
5626
5627  that is described in 
5628 \begin_inset CommandInset ref
5629 LatexCommand ref
5630 reference "sub:Column-Separation"
5631
5632 \end_inset
5633
5634  can also be used to change the column separation of matrices.
5635 \end_layout
5636
5637 \begin_layout Standard
5638 To change the row separation, the command 
5639 \series bold
5640
5641 \backslash
5642 arraystretch
5643 \series default
5644
5645 \begin_inset Index
5646 status collapsed
5647
5648 \begin_layout Plain Layout
5649 Commands ! A ! 
5650 \backslash
5651 arraystretch
5652 \end_layout
5653
5654 \end_inset
5655
5656  is used.
5657  It is used as follows:
5658 \end_layout
5659
5660 \begin_layout Standard
5661
5662 \series bold
5663
5664 \backslash
5665 renewcommand{
5666 \backslash
5667 arraystretch}{stretch factor}
5668 \begin_inset Index
5669 status collapsed
5670
5671 \begin_layout Plain Layout
5672 Commands ! R ! 
5673 \backslash
5674 renewcommand
5675 \end_layout
5676
5677 \end_inset
5678
5679
5680 \end_layout
5681
5682 \begin_layout Standard
5683 The command 
5684 \series bold
5685
5686 \backslash
5687 renewcommand
5688 \series default
5689  assigns the stretch factor to the predefined command 
5690 \series bold
5691
5692 \backslash
5693 arraystretch
5694 \series default
5695 .
5696  To double e.
5697 \begin_inset space \thinspace{}
5698 \end_inset
5699
5700 g.
5701 \begin_inset space \space{}
5702 \end_inset
5703
5704 the row separation, use the factor 2.
5705  This is then used for all following matrices.
5706  To go back to the original separation, assign the factor 1 to 
5707 \series bold
5708
5709 \backslash
5710 arraystretch
5711 \series default
5712 .
5713 \end_layout
5714
5715 \begin_layout Standard
5716 To set matrices into a text line, the command 
5717 \series bold
5718
5719 \backslash
5720 smallmatrix
5721 \series default
5722
5723 \begin_inset Index
5724 status collapsed
5725
5726 \begin_layout Plain Layout
5727 Commands ! S ! 
5728 \backslash
5729 smallmatrix
5730 \end_layout
5731
5732 \end_inset
5733
5734  is used.
5735  When it is inserted a blue box with two dashed lines appears.
5736  In this box the matrix is inserted.
5737 \end_layout
5738
5739 \begin_layout Standard
5740 This is a matrix 
5741 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5742 C & D\end{smallmatrix}\right)$
5743 \end_inset
5744
5745  in a text line.
5746 \end_layout
5747
5748 \begin_layout Section
5749 Brackets and Delimiters
5750 \begin_inset Index
5751 status collapsed
5752
5753 \begin_layout Plain Layout
5754 Brackets
5755 \end_layout
5756
5757 \end_inset
5758
5759
5760 \begin_inset Index
5761 status collapsed
5762
5763 \begin_layout Plain Layout
5764 Delimiters
5765 \end_layout
5766
5767 \end_inset
5768
5769
5770 \end_layout
5771
5772 \begin_layout Subsection
5773 Vertical Brackets and Delimiters
5774 \begin_inset Index
5775 status collapsed
5776
5777 \begin_layout Plain Layout
5778 Brackets ! vertical
5779 \end_layout
5780
5781 \end_inset
5782
5783
5784 \end_layout
5785
5786 \begin_layout Standard
5787 \begin_inset space \hfill{}
5788 \end_inset
5789
5790
5791 \begin_inset Tabular
5792 <lyxtabular version="3" rows="9" columns="2">
5793 <features>
5794 <column alignment="center" valignment="top" width="0pt">
5795 <column alignment="center" valignment="top" width="0pt">
5796 <row>
5797 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5798 \begin_inset Text
5799
5800 \begin_layout Plain Layout
5801 Command
5802 \end_layout
5803
5804 \end_inset
5805 </cell>
5806 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5807 \begin_inset Text
5808
5809 \begin_layout Plain Layout
5810 Result
5811 \end_layout
5812
5813 \end_inset
5814 </cell>
5815 </row>
5816 <row>
5817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5818 \begin_inset Text
5819
5820 \begin_layout Plain Layout
5821 (
5822 \end_layout
5823
5824 \end_inset
5825 </cell>
5826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5827 \begin_inset Text
5828
5829 \begin_layout Plain Layout
5830 \begin_inset Formula $($
5831 \end_inset
5832
5833
5834 \end_layout
5835
5836 \end_inset
5837 </cell>
5838 </row>
5839 <row>
5840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5841 \begin_inset Text
5842
5843 \begin_layout Plain Layout
5844 {
5845 \end_layout
5846
5847 \end_inset
5848 </cell>
5849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5850 \begin_inset Text
5851
5852 \begin_layout Plain Layout
5853 \begin_inset Formula $\{$
5854 \end_inset
5855
5856
5857 \end_layout
5858
5859 \end_inset
5860 </cell>
5861 </row>
5862 <row>
5863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5864 \begin_inset Text
5865
5866 \begin_layout Plain Layout
5867 [
5868 \end_layout
5869
5870 \end_inset
5871 </cell>
5872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5873 \begin_inset Text
5874
5875 \begin_layout Plain Layout
5876 \begin_inset Formula $[$
5877 \end_inset
5878
5879
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 \backslash
5892 langle
5893 \end_layout
5894
5895 \end_inset
5896 </cell>
5897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5898 \begin_inset Text
5899
5900 \begin_layout Plain Layout
5901 \begin_inset Formula $\langle$
5902 \end_inset
5903
5904
5905 \end_layout
5906
5907 \end_inset
5908 </cell>
5909 </row>
5910 <row>
5911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5912 \begin_inset Text
5913
5914 \begin_layout Plain Layout
5915
5916 \backslash
5917 lceil
5918 \end_layout
5919
5920 \end_inset
5921 </cell>
5922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5923 \begin_inset Text
5924
5925 \begin_layout Plain Layout
5926 \begin_inset Formula $\lceil$
5927 \end_inset
5928
5929
5930 \end_layout
5931
5932 \end_inset
5933 </cell>
5934 </row>
5935 <row>
5936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5937 \begin_inset Text
5938
5939 \begin_layout Plain Layout
5940
5941 \backslash
5942 lfloor
5943 \end_layout
5944
5945 \end_inset
5946 </cell>
5947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5948 \begin_inset Text
5949
5950 \begin_layout Plain Layout
5951 \begin_inset Formula $\lfloor$
5952 \end_inset
5953
5954
5955 \end_layout
5956
5957 \end_inset
5958 </cell>
5959 </row>
5960 <row>
5961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5962 \begin_inset Text
5963
5964 \begin_layout Plain Layout
5965 /
5966 \end_layout
5967
5968 \end_inset
5969 </cell>
5970 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5971 \begin_inset Text
5972
5973 \begin_layout Plain Layout
5974 \begin_inset Formula $/$
5975 \end_inset
5976
5977
5978 \end_layout
5979
5980 \end_inset
5981 </cell>
5982 </row>
5983 <row>
5984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5985 \begin_inset Text
5986
5987 \begin_layout Plain Layout
5988 |
5989 \end_layout
5990
5991 \end_inset
5992 </cell>
5993 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5994 \begin_inset Text
5995
5996 \begin_layout Plain Layout
5997 \begin_inset Formula $|$
5998 \end_inset
5999
6000
6001 \end_layout
6002
6003 \end_inset
6004 </cell>
6005 </row>
6006 </lyxtabular>
6007
6008 \end_inset
6009
6010
6011 \begin_inset space \hfill{}
6012 \end_inset
6013
6014
6015 \begin_inset Tabular
6016 <lyxtabular version="3" rows="9" columns="2">
6017 <features>
6018 <column alignment="center" valignment="top" width="0pt">
6019 <column alignment="center" valignment="top" width="0pt">
6020 <row>
6021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6022 \begin_inset Text
6023
6024 \begin_layout Plain Layout
6025 Command
6026 \end_layout
6027
6028 \end_inset
6029 </cell>
6030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6031 \begin_inset Text
6032
6033 \begin_layout Plain Layout
6034 Result
6035 \end_layout
6036
6037 \end_inset
6038 </cell>
6039 </row>
6040 <row>
6041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6042 \begin_inset Text
6043
6044 \begin_layout Plain Layout
6045 )
6046 \end_layout
6047
6048 \end_inset
6049 </cell>
6050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6051 \begin_inset Text
6052
6053 \begin_layout Plain Layout
6054 \begin_inset Formula $)$
6055 \end_inset
6056
6057
6058 \end_layout
6059
6060 \end_inset
6061 </cell>
6062 </row>
6063 <row>
6064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6065 \begin_inset Text
6066
6067 \begin_layout Plain Layout
6068 }
6069 \end_layout
6070
6071 \end_inset
6072 </cell>
6073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6074 \begin_inset Text
6075
6076 \begin_layout Plain Layout
6077 \begin_inset Formula $\}$
6078 \end_inset
6079
6080
6081 \end_layout
6082
6083 \end_inset
6084 </cell>
6085 </row>
6086 <row>
6087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6088 \begin_inset Text
6089
6090 \begin_layout Plain Layout
6091 ]
6092 \end_layout
6093
6094 \end_inset
6095 </cell>
6096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6097 \begin_inset Text
6098
6099 \begin_layout Plain Layout
6100 \begin_inset Formula $]$
6101 \end_inset
6102
6103
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 \backslash
6116 rangle
6117 \end_layout
6118
6119 \end_inset
6120 </cell>
6121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6122 \begin_inset Text
6123
6124 \begin_layout Plain Layout
6125 \begin_inset Formula $\rangle$
6126 \end_inset
6127
6128
6129 \end_layout
6130
6131 \end_inset
6132 </cell>
6133 </row>
6134 <row>
6135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6136 \begin_inset Text
6137
6138 \begin_layout Plain Layout
6139
6140 \backslash
6141 rceil
6142 \end_layout
6143
6144 \end_inset
6145 </cell>
6146 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6147 \begin_inset Text
6148
6149 \begin_layout Plain Layout
6150 \begin_inset Formula $\rceil$
6151 \end_inset
6152
6153
6154 \end_layout
6155
6156 \end_inset
6157 </cell>
6158 </row>
6159 <row>
6160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6161 \begin_inset Text
6162
6163 \begin_layout Plain Layout
6164
6165 \backslash
6166 rfloor
6167 \end_layout
6168
6169 \end_inset
6170 </cell>
6171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6172 \begin_inset Text
6173
6174 \begin_layout Plain Layout
6175 \begin_inset Formula $\rfloor$
6176 \end_inset
6177
6178
6179 \end_layout
6180
6181 \end_inset
6182 </cell>
6183 </row>
6184 <row>
6185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6186 \begin_inset Text
6187
6188 \begin_layout Plain Layout
6189
6190 \backslash
6191
6192 \backslash
6193
6194 \end_layout
6195
6196 \end_inset
6197 </cell>
6198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6199 \begin_inset Text
6200
6201 \begin_layout Plain Layout
6202 \begin_inset Formula $\backslash$
6203 \end_inset
6204
6205
6206 \end_layout
6207
6208 \end_inset
6209 </cell>
6210 </row>
6211 <row>
6212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6213 \begin_inset Text
6214
6215 \begin_layout Plain Layout
6216
6217 \backslash
6218 |
6219 \end_layout
6220
6221 \end_inset
6222 </cell>
6223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6224 \begin_inset Text
6225
6226 \begin_layout Plain Layout
6227 \begin_inset Formula $\|$
6228 \end_inset
6229
6230
6231 \end_layout
6232
6233 \end_inset
6234 </cell>
6235 </row>
6236 </lyxtabular>
6237
6238 \end_inset
6239
6240
6241 \begin_inset space \hfill{}
6242 \end_inset
6243
6244
6245 \end_layout
6246
6247 \begin_layout Standard
6248
6249 \series medium
6250 \begin_inset Note Greyedout
6251 status open
6252
6253 \begin_layout Plain Layout
6254
6255 \series bold
6256 Note:
6257 \series default
6258  In TeX-mode the command 
6259 \series bold
6260
6261 \backslash
6262 textbackslash
6263 \series default
6264
6265 \begin_inset Index
6266 status collapsed
6267
6268 \begin_layout Plain Layout
6269 Commands ! T ! 
6270 \backslash
6271 textbackslash
6272 \end_layout
6273
6274 \end_inset
6275
6276  must be used for the backslash, because the command 
6277 \series bold
6278
6279 \backslash
6280
6281 \backslash
6282
6283 \series default
6284  produces there a line break.
6285 \end_layout
6286
6287 \end_inset
6288
6289
6290 \end_layout
6291
6292 \begin_layout Standard
6293 For all characters listed above the size can be adjusted with the commands
6294  described in the following two subsections.
6295  When using these commands, the characters < and > can directly be used
6296  instead of the commands 
6297 \series bold
6298
6299 \backslash
6300 langle
6301 \series default
6302  and 
6303 \series bold
6304
6305 \backslash
6306 rangle
6307 \series default
6308 .
6309 \end_layout
6310
6311 \begin_layout Subsubsection
6312 Manual Bracket Size
6313 \begin_inset CommandInset label
6314 LatexCommand label
6315 name "sub:Manual-Bracket-Size"
6316
6317 \end_inset
6318
6319
6320 \begin_inset Index
6321 status collapsed
6322
6323 \begin_layout Plain Layout
6324 Bracket size ! manual
6325 \end_layout
6326
6327 \end_inset
6328
6329
6330 \end_layout
6331
6332 \begin_layout Standard
6333 The bracket size can be specified manually by the LaTeX-commands 
6334 \series bold
6335
6336 \backslash
6337 big
6338 \series default
6339
6340 \begin_inset Index
6341 status collapsed
6342
6343 \begin_layout Plain Layout
6344 Commands ! B ! 
6345 \backslash
6346 big
6347 \end_layout
6348
6349 \end_inset
6350
6351
6352 \series bold
6353
6354 \backslash
6355 Big
6356 \series default
6357
6358 \series bold
6359
6360 \backslash
6361 bigg
6362 \series default
6363 , and 
6364 \series bold
6365
6366 \backslash
6367 Bigg
6368 \series default
6369 .
6370  
6371 \series bold
6372
6373 \backslash
6374 big
6375 \series default
6376  denotes the smallest and 
6377 \series bold
6378
6379 \backslash
6380 Bigg
6381 \series default
6382  the largest bracket size.
6383 \end_layout
6384
6385 \begin_layout Standard
6386 These commands are used to emphasize levels of brackets:
6387 \end_layout
6388
6389 \begin_layout Standard
6390 \align center
6391 \begin_inset Tabular
6392 <lyxtabular version="3" rows="2" columns="2">
6393 <features>
6394 <column alignment="center" valignment="top" width="0pt">
6395 <column alignment="center" valignment="top" width="0pt">
6396 <row>
6397 <cell alignment="center" valignment="top" usebox="none">
6398 \begin_inset Text
6399
6400 \begin_layout Plain Layout
6401 all brackets in the same size:
6402 \end_layout
6403
6404 \end_inset
6405 </cell>
6406 <cell alignment="center" valignment="top" usebox="none">
6407 \begin_inset Text
6408
6409 \begin_layout Plain Layout
6410 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6411 \end_inset
6412
6413
6414 \end_layout
6415
6416 \end_inset
6417 </cell>
6418 </row>
6419 <row>
6420 <cell alignment="center" valignment="top" usebox="none">
6421 \begin_inset Text
6422
6423 \begin_layout Plain Layout
6424 this looks better:
6425 \end_layout
6426
6427 \end_inset
6428 </cell>
6429 <cell alignment="center" valignment="top" usebox="none">
6430 \begin_inset Text
6431
6432 \begin_layout Plain Layout
6433 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6434 \end_inset
6435
6436
6437 \end_layout
6438
6439 \end_inset
6440 </cell>
6441 </row>
6442 </lyxtabular>
6443
6444 \end_inset
6445
6446
6447 \begin_inset Note Note
6448 status collapsed
6449
6450 \begin_layout Plain Layout
6451
6452 \series bold
6453
6454 \backslash
6455 raisebox
6456 \series default
6457  is only used as spacer.
6458 \end_layout
6459
6460 \end_inset
6461
6462
6463 \end_layout
6464
6465 \begin_layout Standard
6466 For the second formula the command 
6467 \series bold
6468
6469 \backslash
6470 Big((A+B)(A-B)
6471 \backslash
6472 Big)^
6473 \begin_inset ERT
6474 status collapsed
6475
6476 \begin_layout Plain Layout
6477
6478
6479 \backslash
6480 spce 
6481 \end_layout
6482
6483 \end_inset
6484
6485 C
6486 \series default
6487  has been used.
6488 \end_layout
6489
6490 \begin_layout Standard
6491 Here is an overview about all bracket sizes:
6492 \end_layout
6493
6494 \begin_layout Standard
6495 \align center
6496
6497 \backslash
6498 Bigg(
6499 \backslash
6500 exp
6501 \backslash
6502 bigg<
6503 \backslash
6504 Big[
6505 \backslash
6506 big{
6507 \backslash
6508 ln(3x)
6509 \backslash
6510 big}^2
6511 \begin_inset ERT
6512 status collapsed
6513
6514 \begin_layout Plain Layout
6515
6516
6517 \backslash
6518 spce 
6519 \end_layout
6520
6521 \end_inset
6522
6523
6524 \backslash
6525 sin(x)
6526 \backslash
6527 Big]^
6528 \begin_inset ERT
6529 status collapsed
6530
6531 \begin_layout Plain Layout
6532
6533
6534 \backslash
6535 spce 
6536 \end_layout
6537
6538 \end_inset
6539
6540 A
6541 \begin_inset ERT
6542 status collapsed
6543
6544 \begin_layout Plain Layout
6545
6546
6547 \backslash
6548 spce 
6549 \end_layout
6550
6551 \end_inset
6552
6553
6554 \backslash
6555 bigg>
6556 \backslash
6557 Bigg)^0,5
6558 \end_layout
6559
6560 \begin_layout Standard
6561 \align center
6562 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6563 \end_inset
6564
6565
6566 \end_layout
6567
6568 \begin_layout Standard
6569 Besides the 
6570 \series bold
6571
6572 \backslash
6573 big
6574 \series default
6575 -commands there is the variant 
6576 \series bold
6577
6578 \backslash
6579 bigm
6580 \series default
6581
6582 \begin_inset Index
6583 status collapsed
6584
6585 \begin_layout Plain Layout
6586 Commands ! B ! 
6587 \backslash
6588 bigm
6589 \end_layout
6590
6591 \end_inset
6592
6593  that adds a bit more space between the bracket and its content, and the
6594  variant 
6595 \series bold
6596
6597 \backslash
6598 bigl
6599 \series default
6600 -
6601 \series bold
6602
6603 \backslash
6604 bigr
6605 \series default
6606
6607 \begin_inset Index
6608 status collapsed
6609
6610 \begin_layout Plain Layout
6611 Commands ! B ! 
6612 \backslash
6613 bigl - 
6614 \backslash
6615 bigr
6616 \end_layout
6617
6618 \end_inset
6619
6620 , that don't add additional space.
6621  The 
6622 \emph on
6623 l
6624 \emph default
6625  at the end of the command 
6626 \series bold
6627
6628 \backslash
6629 bigl
6630 \series default
6631  is for a left bracket; for a right bracket this will be replaced by an
6632  
6633 \emph on
6634 r
6635 \emph default
6636 .
6637  A left or right bracket can each be an opening or closing bracket.
6638 \end_layout
6639
6640 \begin_layout Standard
6641 In the following table is a comparison of the variants:
6642 \end_layout
6643
6644 \begin_layout Standard
6645 \align center
6646 \begin_inset Tabular
6647 <lyxtabular version="3" rows="5" columns="2">
6648 <features>
6649 <column alignment="center" valignment="middle" width="0">
6650 <column alignment="center" valignment="middle" width="0">
6651 <row>
6652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6653 \begin_inset Text
6654
6655 \begin_layout Plain Layout
6656 Command
6657 \end_layout
6658
6659 \end_inset
6660 </cell>
6661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6662 \begin_inset Text
6663
6664 \begin_layout Plain Layout
6665 Result
6666 \begin_inset Note Note
6667 status collapsed
6668
6669 \begin_layout Plain Layout
6670
6671 \series bold
6672
6673 \backslash
6674 raisebox
6675 \series default
6676  is only used as spacer.
6677 \end_layout
6678
6679 \end_inset
6680
6681
6682 \end_layout
6683
6684 \end_inset
6685 </cell>
6686 </row>
6687 <row>
6688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6689 \begin_inset Text
6690
6691 \begin_layout Plain Layout
6692
6693 \backslash
6694 Bigm(
6695 \backslash
6696 bigm(
6697 \backslash
6698 ln(3x)
6699 \backslash
6700 bigm)^2
6701 \series bold
6702
6703 \begin_inset ERT
6704 status collapsed
6705
6706 \begin_layout Plain Layout
6707
6708
6709 \backslash
6710 spce 
6711 \end_layout
6712
6713 \end_inset
6714
6715
6716 \series default
6717
6718 \backslash
6719 Bigm)
6720 \end_layout
6721
6722 \end_inset
6723 </cell>
6724 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6725 \begin_inset Text
6726
6727 \begin_layout Plain Layout
6728 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6729 \end_inset
6730
6731
6732 \end_layout
6733
6734 \end_inset
6735 </cell>
6736 </row>
6737 <row>
6738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6739 \begin_inset Text
6740
6741 \begin_layout Plain Layout
6742
6743 \backslash
6744 Big(
6745 \backslash
6746 big(
6747 \backslash
6748 ln(3x)
6749 \backslash
6750 big)^2
6751 \series bold
6752
6753 \begin_inset ERT
6754 status collapsed
6755
6756 \begin_layout Plain Layout
6757
6758
6759 \backslash
6760 spce 
6761 \end_layout
6762
6763 \end_inset
6764
6765
6766 \series default
6767
6768 \backslash
6769 Big)
6770 \end_layout
6771
6772 \end_inset
6773 </cell>
6774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6775 \begin_inset Text
6776
6777 \begin_layout Plain Layout
6778 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6779 \end_inset
6780
6781
6782 \end_layout
6783
6784 \end_inset
6785 </cell>
6786 </row>
6787 <row>
6788 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6789 \begin_inset Text
6790
6791 \begin_layout Plain Layout
6792
6793 \backslash
6794 Bigl(
6795 \backslash
6796 bigl(
6797 \backslash
6798 ln(3x)
6799 \backslash
6800 bigr)^2
6801 \series bold
6802
6803 \begin_inset ERT
6804 status collapsed
6805
6806 \begin_layout Plain Layout
6807
6808
6809 \backslash
6810 spce 
6811 \end_layout
6812
6813 \end_inset
6814
6815
6816 \series default
6817
6818 \backslash
6819 Bigr)
6820 \end_layout
6821
6822 \end_inset
6823 </cell>
6824 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6825 \begin_inset Text
6826
6827 \begin_layout Plain Layout
6828 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
6829 \end_inset
6830
6831
6832 \end_layout
6833
6834 \end_inset
6835 </cell>
6836 </row>
6837 <row>
6838 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6839 \begin_inset Text
6840
6841 \begin_layout Plain Layout
6842
6843 \backslash
6844 bigl)
6845 \backslash
6846 ln(3x)
6847 \backslash
6848 bigr(
6849 \end_layout
6850
6851 \end_inset
6852 </cell>
6853 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6854 \begin_inset Text
6855
6856 \begin_layout Plain Layout
6857 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
6858 \end_inset
6859
6860
6861 \end_layout
6862
6863 \end_inset
6864 </cell>
6865 </row>
6866 </lyxtabular>
6867
6868 \end_inset
6869
6870
6871 \end_layout
6872
6873 \begin_layout Subsubsection
6874 Automatic Bracket Size
6875 \begin_inset CommandInset label
6876 LatexCommand label
6877 name "sub:Automatic-Bracket-Size"
6878
6879 \end_inset
6880
6881
6882 \begin_inset Index
6883 status collapsed
6884
6885 \begin_layout Plain Layout
6886 Bracket size ! automatic
6887 \end_layout
6888
6889 \end_inset
6890
6891
6892 \end_layout
6893
6894 \begin_layout Standard
6895 Brackets with variable size can be inserted with the commands 
6896 \series bold
6897
6898 \backslash
6899 left
6900 \series default
6901
6902 \begin_inset Index
6903 status collapsed
6904
6905 \begin_layout Plain Layout
6906 Commands ! L ! 
6907 \backslash
6908 left
6909 \end_layout
6910
6911 \end_inset
6912
6913  and 
6914 \series bold
6915
6916 \backslash
6917 right
6918 \series default
6919
6920 \begin_inset Index
6921 status collapsed
6922
6923 \begin_layout Plain Layout
6924 Commands ! R ! 
6925 \backslash
6926 right
6927 \end_layout
6928
6929 \end_inset
6930
6931  or via the math toolbar button 
6932 \begin_inset Graphics
6933         filename ../images/dialog-show_mathdelimiter.png
6934         scale 85
6935
6936 \end_inset
6937
6938 .
6939  Directly behind 
6940 \series bold
6941
6942 \backslash
6943 left
6944 \series default
6945  and 
6946 \series bold
6947
6948 \backslash
6949 right
6950 \series default
6951  the wanted bracket must be inserted.
6952  The bracket size will then automatically be calculated for the output.
6953 \end_layout
6954
6955 \begin_layout Standard
6956 \align center
6957 normal bracket: The command 
6958 \series bold
6959
6960 \backslash
6961 ln(
6962 \backslash
6963 frac
6964 \begin_inset ERT
6965 status collapsed
6966
6967 \begin_layout Plain Layout
6968
6969
6970 \backslash
6971 spce 
6972 \end_layout
6973
6974 \end_inset
6975
6976 A
6977 \begin_inset Formula $\downarrow$
6978 \end_inset
6979
6980 C
6981 \begin_inset ERT
6982 status collapsed
6983
6984 \begin_layout Plain Layout
6985
6986
6987 \backslash
6988 spce 
6989 \end_layout
6990
6991 \end_inset
6992
6993 )
6994 \series default
6995  creates
6996 \begin_inset Formula \[
6997 \ln(\frac{A}{C})\]
6998
6999 \end_inset
7000
7001
7002 \end_layout
7003
7004 \begin_layout Standard
7005 \align center
7006 multiline bracket: The command 
7007 \series bold
7008
7009 \backslash
7010 ln
7011 \backslash
7012 left(
7013 \backslash
7014 frac
7015 \begin_inset ERT
7016 status collapsed
7017
7018 \begin_layout Plain Layout
7019
7020
7021 \backslash
7022 spce 
7023 \end_layout
7024
7025 \end_inset
7026
7027 A
7028 \begin_inset Formula $\downarrow$
7029 \end_inset
7030
7031 C
7032 \begin_inset ERT
7033 status collapsed
7034
7035 \begin_layout Plain Layout
7036
7037
7038 \backslash
7039 spce 
7040 \end_layout
7041
7042 \end_inset
7043
7044
7045 \backslash
7046 right)
7047 \series default
7048  creates
7049 \begin_inset Formula \[
7050 \ln\left(\frac{A}{C}\right)\]
7051
7052 \end_inset
7053
7054
7055 \end_layout
7056
7057 \begin_layout Standard
7058 Instead of 
7059 \series bold
7060
7061 \backslash
7062 left
7063 \series default
7064  and 
7065 \series bold
7066
7067 \backslash
7068 right
7069 \series default
7070  the shortcut 
7071 \family sans
7072 Alt+M
7073 \begin_inset space ~
7074 \end_inset
7075
7076 Bracket
7077 \family default
7078  can be used.
7079  This has the advantage that you can see in LyX immediately the real bracket
7080  size and that the matching right bracket will be created too.
7081 \begin_inset Newline newline
7082 \end_inset
7083
7084 The command for the last example would then be: 
7085 \series bold
7086
7087 \backslash
7088 ln Alt+M
7089 \series default
7090  
7091 \series bold
7092 (
7093 \backslash
7094 frac
7095 \begin_inset ERT
7096 status collapsed
7097
7098 \begin_layout Plain Layout
7099
7100
7101 \backslash
7102 spce 
7103 \end_layout
7104
7105 \end_inset
7106
7107 A
7108 \begin_inset Formula $\downarrow$
7109 \end_inset
7110
7111 C
7112 \end_layout
7113
7114 \begin_layout Standard
7115 To omit a left or right bracket, a dot is inserted for the omitted bracket.
7116  For example the command 
7117 \series bold
7118
7119 \backslash
7120 left.
7121 \backslash
7122 frac
7123 \begin_inset ERT
7124 status collapsed
7125
7126 \begin_layout Plain Layout
7127
7128
7129 \backslash
7130 spce 
7131 \end_layout
7132
7133 \end_inset
7134
7135 A
7136 \begin_inset Formula $\downarrow$
7137 \end_inset
7138
7139 B
7140 \begin_inset ERT
7141 status collapsed
7142
7143 \begin_layout Plain Layout
7144
7145
7146 \backslash
7147 spce 
7148 \end_layout
7149
7150 \end_inset
7151
7152
7153 \backslash
7154 right}
7155 \series default
7156  creates:
7157 \series bold
7158
7159 \begin_inset Formula \[
7160 \left.\frac{A}{B}\right\} \]
7161
7162 \end_inset
7163
7164
7165 \series default
7166 The commands 
7167 \series bold
7168
7169 \backslash
7170 left
7171 \series default
7172  and 
7173 \series bold
7174
7175 \backslash
7176 right
7177 \series default
7178  will be converted by LyX to brackets in the right size when the document
7179  is reloaded and an omitted bracket will appear as dashed line.
7180 \end_layout
7181
7182 \begin_layout Standard
7183 \begin_inset VSpace bigskip
7184 \end_inset
7185
7186 Because all popular LaTeX-Distributions use eTeX, an extension to LaTeX,
7187  the command 
7188 \series bold
7189
7190 \backslash
7191 middle
7192 \series default
7193
7194 \begin_inset Index
7195 status collapsed
7196
7197 \begin_layout Plain Layout
7198 Commands ! M ! 
7199 \backslash
7200 middle
7201 \end_layout
7202
7203 \end_inset
7204
7205  is additionally available for all brackets and limits.
7206  With this command the height of the following character is adapted to the
7207  one of the surrounding brackets, what is e.
7208 \begin_inset space \thinspace{}
7209 \end_inset
7210
7211 g.
7212 \begin_inset space \space{}
7213 \end_inset
7214
7215 needed for physical vectors:
7216 \begin_inset Formula \[
7217 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7218
7219 \end_inset
7220
7221 For physical vectors there is a special LaTeX-package, described in 
7222 \begin_inset CommandInset ref
7223 LatexCommand ref
7224 reference "sub:Physical-Vectors"
7225
7226 \end_inset
7227
7228 .
7229 \end_layout
7230
7231 \begin_layout Subsection
7232 Horizontal Brackets
7233 \begin_inset Index
7234 status collapsed
7235
7236 \begin_layout Plain Layout
7237 Brackets ! horizontal
7238 \end_layout
7239
7240 \end_inset
7241
7242
7243 \end_layout
7244
7245 \begin_layout Standard
7246 \align center
7247 \begin_inset Tabular
7248 <lyxtabular version="3" rows="4" columns="2">
7249 <features>
7250 <column alignment="center" valignment="top" width="0pt">
7251 <column alignment="center" valignment="top" width="0pt">
7252 <row>
7253 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7254 \begin_inset Text
7255
7256 \begin_layout Plain Layout
7257 Command
7258 \begin_inset Note Note
7259 status collapsed
7260
7261 \begin_layout Plain Layout
7262
7263 \series bold
7264
7265 \backslash
7266 raisebox
7267 \series default
7268  is only used as spacer.
7269 \end_layout
7270
7271 \end_inset
7272
7273
7274 \end_layout
7275
7276 \end_inset
7277 </cell>
7278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7279 \begin_inset Text
7280
7281 \begin_layout Plain Layout
7282 Result
7283 \end_layout
7284
7285 \end_inset
7286 </cell>
7287 </row>
7288 <row>
7289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7290 \begin_inset Text
7291
7292 \begin_layout Plain Layout
7293 \begin_inset ERT
7294 status collapsed
7295
7296 \begin_layout Plain Layout
7297
7298
7299 \backslash
7300 raisebox{2.3mm}{
7301 \end_layout
7302
7303 \end_inset
7304
7305
7306 \backslash
7307 overbrace
7308 \begin_inset ERT
7309 status collapsed
7310
7311 \begin_layout Plain Layout
7312
7313
7314 \backslash
7315 spce 
7316 \end_layout
7317
7318 \end_inset
7319
7320 A+B
7321 \begin_inset ERT
7322 status collapsed
7323
7324 \begin_layout Plain Layout
7325
7326
7327 \backslash
7328 spce 
7329 \end_layout
7330
7331 \end_inset
7332
7333 ^
7334 \begin_inset ERT
7335 status collapsed
7336
7337 \begin_layout Plain Layout
7338
7339
7340 \backslash
7341 spce 
7342 \end_layout
7343
7344 \end_inset
7345
7346 3
7347 \begin_inset ERT
7348 status collapsed
7349
7350 \begin_layout Plain Layout
7351
7352 }
7353 \end_layout
7354
7355 \end_inset
7356
7357
7358 \begin_inset Index
7359 status collapsed
7360
7361 \begin_layout Plain Layout
7362 Commands ! O ! 
7363 \backslash
7364 overbrace
7365 \end_layout
7366
7367 \end_inset
7368
7369
7370 \end_layout
7371
7372 \end_inset
7373 </cell>
7374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7375 \begin_inset Text
7376
7377 \begin_layout Plain Layout
7378 \begin_inset Formula $\overbrace{A+B}^{3}$
7379 \end_inset
7380
7381
7382 \end_layout
7383
7384 \end_inset
7385 </cell>
7386 </row>
7387 <row>
7388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7389 \begin_inset Text
7390
7391 \begin_layout Plain Layout
7392 \begin_inset ERT
7393 status collapsed
7394
7395 \begin_layout Plain Layout
7396
7397
7398 \backslash
7399 raisebox{-2.2mm}{
7400 \end_layout
7401
7402 \end_inset
7403
7404
7405 \backslash
7406 underbrace
7407 \begin_inset ERT
7408 status collapsed
7409
7410 \begin_layout Plain Layout
7411
7412
7413 \backslash
7414 spce 
7415 \end_layout
7416
7417 \end_inset
7418
7419 A+B
7420 \begin_inset ERT
7421 status collapsed
7422
7423 \begin_layout Plain Layout
7424
7425
7426 \backslash
7427 spce 
7428 \end_layout
7429
7430 \end_inset
7431
7432 _5
7433 \begin_inset ERT
7434 status collapsed
7435
7436 \begin_layout Plain Layout
7437
7438 }
7439 \end_layout
7440
7441 \end_inset
7442
7443
7444 \begin_inset Index
7445 status collapsed
7446
7447 \begin_layout Plain Layout
7448 Commands ! U ! 
7449 \backslash
7450 underbrace
7451 \end_layout
7452
7453 \end_inset
7454
7455
7456 \end_layout
7457
7458 \end_inset
7459 </cell>
7460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7461 \begin_inset Text
7462
7463 \begin_layout Plain Layout
7464 \begin_inset Formula $\underbrace{A+B}_{5}$
7465 \end_inset
7466
7467
7468 \end_layout
7469
7470 \end_inset
7471 </cell>
7472 </row>
7473 <row>
7474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7475 \begin_inset Text
7476
7477 \begin_layout Plain Layout
7478
7479 \backslash
7480 overbrace
7481 \begin_inset ERT
7482 status collapsed
7483
7484 \begin_layout Plain Layout
7485
7486
7487 \backslash
7488 spce 
7489 \end_layout
7490
7491 \end_inset
7492
7493
7494 \backslash
7495 underbrace
7496 \begin_inset ERT
7497 status collapsed
7498
7499 \begin_layout Plain Layout
7500
7501
7502 \backslash
7503 spce 
7504 \end_layout
7505
7506 \end_inset
7507
7508 A+B_w
7509 \begin_inset ERT
7510 status collapsed
7511
7512 \begin_layout Plain Layout
7513
7514
7515 \backslash
7516 spce 
7517 \end_layout
7518
7519 \end_inset
7520
7521
7522 \begin_inset ERT
7523 status collapsed
7524
7525 \begin_layout Plain Layout
7526
7527
7528 \backslash
7529 spce 
7530 \end_layout
7531
7532 \end_inset
7533
7534 _7
7535 \begin_inset ERT
7536 status collapsed
7537
7538 \begin_layout Plain Layout
7539
7540
7541 \backslash
7542 spce 
7543 \end_layout
7544
7545 \end_inset
7546
7547
7548 \begin_inset ERT
7549 status collapsed
7550
7551 \begin_layout Plain Layout
7552
7553
7554 \backslash
7555 spce 
7556 \end_layout
7557
7558 \end_inset
7559
7560 ^
7561 \begin_inset ERT
7562 status collapsed
7563
7564 \begin_layout Plain Layout
7565
7566
7567 \backslash
7568 spce 
7569 \end_layout
7570
7571 \end_inset
7572
7573 C
7574 \end_layout
7575
7576 \end_inset
7577 </cell>
7578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7579 \begin_inset Text
7580
7581 \begin_layout Plain Layout
7582 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7583 \end_inset
7584
7585
7586 \end_layout
7587
7588 \end_inset
7589 </cell>
7590 </row>
7591 </lyxtabular>
7592
7593 \end_inset
7594
7595
7596 \end_layout
7597
7598 \begin_layout Standard
7599 In the last example it doesn't matter if 
7600 \series bold
7601
7602 \backslash
7603 overbrace
7604 \series default
7605  or 
7606 \series bold
7607
7608 \backslash
7609 underbrace
7610 \series default
7611  is inserted at first.
7612 \end_layout
7613
7614 \begin_layout Standard
7615 \begin_inset VSpace bigskip
7616 \end_inset
7617
7618 When brackets are needed that overlap each other, multiline formulas, as
7619  described in 
7620 \begin_inset CommandInset ref
7621 LatexCommand ref
7622 reference "sec:Multiline-Formulas"
7623
7624 \end_inset
7625
7626 , must be used:
7627 \begin_inset Formula \begin{eqnarray*}
7628 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7629  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}\end{eqnarray*}
7630
7631 \end_inset
7632
7633 In the first row the formula is inserted together with the first brace.
7634  It is hereby important that the space command
7635 \begin_inset Foot
7636 status collapsed
7637
7638 \begin_layout Plain Layout
7639 Space commands are explained in 
7640 \begin_inset CommandInset ref
7641 LatexCommand ref
7642 reference "sub:Predefined-Space"
7643
7644 \end_inset
7645
7646 .
7647 \end_layout
7648
7649 \end_inset
7650
7651  
7652 \series bold
7653
7654 \backslash
7655 :
7656 \series default
7657  is inserted before the first 
7658 \begin_inset Formula $d$
7659 \end_inset
7660
7661 , because the brace that ends behind the 
7662 \begin_inset Formula $q$
7663 \end_inset
7664
7665  prevents that the following 
7666 \begin_inset Quotes eld
7667 \end_inset
7668
7669 +
7670 \begin_inset Quotes erd
7671 \end_inset
7672
7673  is surrounded by space.
7674 \begin_inset Foot
7675 status collapsed
7676
7677 \begin_layout Plain Layout
7678 because a bracket is not handled as character, see 
7679 \begin_inset CommandInset ref
7680 LatexCommand ref
7681 reference "sub:Binary-Operators"
7682
7683 \end_inset
7684
7685
7686 \end_layout
7687
7688 \end_inset
7689
7690  In the second row the second brace is inserted.
7691  As it should begin before the 
7692 \begin_inset Formula $b$
7693 \end_inset
7694
7695 , first the command 
7696 \series bold
7697
7698 \backslash
7699 hphantom{gggg+
7700 \backslash
7701 :}
7702 \series default
7703  is inserted.
7704 \begin_inset Foot
7705 status collapsed
7706
7707 \begin_layout Plain Layout
7708 more about 
7709 \series bold
7710
7711 \backslash
7712 hphantom
7713 \series default
7714  see 
7715 \begin_inset CommandInset ref
7716 LatexCommand ref
7717 reference "sub:Placeholders"
7718
7719 \end_inset
7720
7721
7722 \end_layout
7723
7724 \end_inset
7725
7726  This space is needed because the 
7727 \begin_inset Quotes eld
7728 \end_inset
7729
7730 +
7731 \begin_inset Quotes erd
7732 \end_inset
7733
7734  is also surrounded by space in the formula.
7735  The brace is placed under the command 
7736 \series bold
7737
7738 \backslash
7739 hphantom{bbqq+dddd}
7740 \series default
7741 .
7742 \end_layout
7743
7744 \begin_layout Standard
7745 It gets more complicated when brackets overlap each other, like in the following
7746  example:
7747 \begin_inset ERT
7748 status collapsed
7749
7750 \begin_layout Plain Layout
7751
7752
7753 \backslash
7754 setlength{
7755 \backslash
7756 jot}{-6pt}
7757 \end_layout
7758
7759 \end_inset
7760
7761
7762 \begin_inset Formula \begin{eqnarray*}
7763  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7764 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\end{eqnarray*}
7765
7766 \end_inset
7767
7768
7769 \begin_inset ERT
7770 status collapsed
7771
7772 \begin_layout Plain Layout
7773
7774
7775 \backslash
7776 setlength{
7777 \backslash
7778 jot}{3pt}
7779 \end_layout
7780
7781 \end_inset
7782
7783 The first formula row is the same as the second row of the previous example,
7784  with the difference that the brace is above.
7785  The second row contains the formula together with the second brace.
7786  To avoid that there is space between the upper brace in the first row and
7787  the formula, the row spacing need to be reduced.
7788  This is not easily possible due to a bug in LyX
7789 \begin_inset Foot
7790 status collapsed
7791
7792 \begin_layout Plain Layout
7793 \begin_inset CommandInset href
7794 LatexCommand href
7795 name "LyX-bug #1505"
7796 target "http://bugzilla.lyx.org/show_bug.cgi?id=1505"
7797
7798 \end_inset
7799
7800
7801 \end_layout
7802
7803 \end_inset
7804
7805 .
7806  As solution for the problem, the global formula row separation 
7807 \series bold
7808
7809 \backslash
7810 jot
7811 \series default
7812
7813 \begin_inset Index
7814 status collapsed
7815
7816 \begin_layout Plain Layout
7817 Commands ! J ! 
7818 \backslash
7819 jot
7820 \end_layout
7821
7822 \end_inset
7823
7824  must be changed to -6
7825 \begin_inset space \thinspace{}
7826 \end_inset
7827
7828 pt before the formula with the command 
7829 \series bold
7830
7831 \backslash
7832 setlength{
7833 \backslash
7834 jot}{-6pt}
7835 \series default
7836  in TeX-mode.
7837  
7838 \series bold
7839
7840 \backslash
7841 jot
7842 \series default
7843  is set back after the formula to the standard value of 3
7844 \begin_inset space \thinspace{}
7845 \end_inset
7846
7847 pt using the same command.
7848  More about the row separation in formulas is explained in 
7849 \begin_inset CommandInset ref
7850 LatexCommand ref
7851 reference "sub:Line-Separation"
7852
7853 \end_inset
7854
7855 .
7856 \end_layout
7857
7858 \begin_layout Section
7859 Arrows
7860 \begin_inset Index
7861 status collapsed
7862
7863 \begin_layout Plain Layout
7864 Arrows
7865 \end_layout
7866
7867 \end_inset
7868
7869
7870 \end_layout
7871
7872 \begin_layout Standard
7873 Arrows can be inserted via the math toolbar button 
7874 \begin_inset Graphics
7875         filename ../images/math/leftarrow.png
7876         scale 85
7877
7878 \end_inset
7879
7880  or the commands listed in the following subsections.
7881 \end_layout
7882
7883 \begin_layout Standard
7884 \begin_inset Newpage newpage
7885 \end_inset
7886
7887
7888 \end_layout
7889
7890 \begin_layout Subsection
7891 Horizontal Arrows
7892 \begin_inset Index
7893 status collapsed
7894
7895 \begin_layout Plain Layout
7896 Arrows ! horizontal
7897 \end_layout
7898
7899 \end_inset
7900
7901
7902 \end_layout
7903
7904 \begin_layout Standard
7905 \begin_inset space \hfill{}
7906 \end_inset
7907
7908
7909 \begin_inset Tabular
7910 <lyxtabular version="3" rows="8" columns="2">
7911 <features>
7912 <column alignment="center" valignment="top" width="0pt">
7913 <column alignment="center" valignment="top" width="0pt">
7914 <row>
7915 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7916 \begin_inset Text
7917
7918 \begin_layout Plain Layout
7919 Command
7920 \end_layout
7921
7922 \end_inset
7923 </cell>
7924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7925 \begin_inset Text
7926
7927 \begin_layout Plain Layout
7928 Result
7929 \end_layout
7930
7931 \end_inset
7932 </cell>
7933 </row>
7934 <row>
7935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7936 \begin_inset Text
7937
7938 \begin_layout Plain Layout
7939
7940 \backslash
7941 gets
7942 \end_layout
7943
7944 \end_inset
7945 </cell>
7946 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7947 \begin_inset Text
7948
7949 \begin_layout Plain Layout
7950 \begin_inset Formula $\gets$
7951 \end_inset
7952
7953
7954 \end_layout
7955
7956 \end_inset
7957 </cell>
7958 </row>
7959 <row>
7960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7961 \begin_inset Text
7962
7963 \begin_layout Plain Layout
7964
7965 \backslash
7966 Leftarrow
7967 \end_layout
7968
7969 \end_inset
7970 </cell>
7971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7972 \begin_inset Text
7973
7974 \begin_layout Plain Layout
7975 \begin_inset Formula $\Leftarrow$
7976 \end_inset
7977
7978
7979 \end_layout
7980
7981 \end_inset
7982 </cell>
7983 </row>
7984 <row>
7985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7986 \begin_inset Text
7987
7988 \begin_layout Plain Layout
7989
7990 \backslash
7991 longleftarrow
7992 \end_layout
7993
7994 \end_inset
7995 </cell>
7996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7997 \begin_inset Text
7998
7999 \begin_layout Plain Layout
8000 \begin_inset Formula $\longleftarrow$
8001 \end_inset
8002
8003
8004 \end_layout
8005
8006 \end_inset
8007 </cell>
8008 </row>
8009 <row>
8010 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8011 \begin_inset Text
8012
8013 \begin_layout Plain Layout
8014
8015 \backslash
8016 Longleftarrow
8017 \end_layout
8018
8019 \end_inset
8020 </cell>
8021 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8022 \begin_inset Text
8023
8024 \begin_layout Plain Layout
8025 \begin_inset Formula $\Longleftarrow$
8026 \end_inset
8027
8028
8029 \end_layout
8030
8031 \end_inset
8032 </cell>
8033 </row>
8034 <row>
8035 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8036 \begin_inset Text
8037
8038 \begin_layout Plain Layout
8039
8040 \backslash
8041 leftharpoonup
8042 \end_layout
8043
8044 \end_inset
8045 </cell>
8046 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8047 \begin_inset Text
8048
8049 \begin_layout Plain Layout
8050 \begin_inset Formula $\leftharpoonup$
8051 \end_inset
8052
8053
8054 \end_layout
8055
8056 \end_inset
8057 </cell>
8058 </row>
8059 <row>
8060 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8061 \begin_inset Text
8062
8063 \begin_layout Plain Layout
8064
8065 \backslash
8066 leftharpoondown
8067 \end_layout
8068
8069 \end_inset
8070 </cell>
8071 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8072 \begin_inset Text
8073
8074 \begin_layout Plain Layout
8075 \begin_inset Formula $\leftharpoondown$
8076 \end_inset
8077
8078
8079 \end_layout
8080
8081 \end_inset
8082 </cell>
8083 </row>
8084 <row>
8085 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8086 \begin_inset Text
8087
8088 \begin_layout Plain Layout
8089
8090 \backslash
8091 hookleftarrow
8092 \end_layout
8093
8094 \end_inset
8095 </cell>
8096 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8097 \begin_inset Text
8098
8099 \begin_layout Plain Layout
8100 \begin_inset Formula $\hookleftarrow$
8101 \end_inset
8102
8103
8104 \end_layout
8105
8106 \end_inset
8107 </cell>
8108 </row>
8109 </lyxtabular>
8110
8111 \end_inset
8112
8113
8114 \begin_inset space \hfill{}
8115 \end_inset
8116
8117
8118 \begin_inset Tabular
8119 <lyxtabular version="3" rows="8" columns="2">
8120 <features>
8121 <column alignment="center" valignment="top" width="0pt">
8122 <column alignment="center" valignment="top" width="0pt">
8123 <row>
8124 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8125 \begin_inset Text
8126
8127 \begin_layout Plain Layout
8128 Command
8129 \end_layout
8130
8131 \end_inset
8132 </cell>
8133 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8134 \begin_inset Text
8135
8136 \begin_layout Plain Layout
8137 Result
8138 \end_layout
8139
8140 \end_inset
8141 </cell>
8142 </row>
8143 <row>
8144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8145 \begin_inset Text
8146
8147 \begin_layout Plain Layout
8148
8149 \backslash
8150 to
8151 \end_layout
8152
8153 \end_inset
8154 </cell>
8155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8156 \begin_inset Text
8157
8158 \begin_layout Plain Layout
8159 \begin_inset Formula $\to$
8160 \end_inset
8161
8162
8163 \end_layout
8164
8165 \end_inset
8166 </cell>
8167 </row>
8168 <row>
8169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8170 \begin_inset Text
8171
8172 \begin_layout Plain Layout
8173
8174 \backslash
8175 Rightarrow
8176 \end_layout
8177
8178 \end_inset
8179 </cell>
8180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8181 \begin_inset Text
8182
8183 \begin_layout Plain Layout
8184 \begin_inset Formula $\Rightarrow$
8185 \end_inset
8186
8187
8188 \end_layout
8189
8190 \end_inset
8191 </cell>
8192 </row>
8193 <row>
8194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8195 \begin_inset Text
8196
8197 \begin_layout Plain Layout
8198
8199 \backslash
8200 longrightarrow
8201 \end_layout
8202
8203 \end_inset
8204 </cell>
8205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8206 \begin_inset Text
8207
8208 \begin_layout Plain Layout
8209 \begin_inset Formula $\longrightarrow$
8210 \end_inset
8211
8212
8213 \end_layout
8214
8215 \end_inset
8216 </cell>
8217 </row>
8218 <row>
8219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8220 \begin_inset Text
8221
8222 \begin_layout Plain Layout
8223
8224 \backslash
8225 Longrightarrow
8226 \end_layout
8227
8228 \end_inset
8229 </cell>
8230 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8231 \begin_inset Text
8232
8233 \begin_layout Plain Layout
8234 \begin_inset Formula $\Longrightarrow$
8235 \end_inset
8236
8237
8238 \end_layout
8239
8240 \end_inset
8241 </cell>
8242 </row>
8243 <row>
8244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8245 \begin_inset Text
8246
8247 \begin_layout Plain Layout
8248
8249 \backslash
8250 rightharpoonup
8251 \end_layout
8252
8253 \end_inset
8254 </cell>
8255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8256 \begin_inset Text
8257
8258 \begin_layout Plain Layout
8259 \begin_inset Formula $\rightharpoonup$
8260 \end_inset
8261
8262
8263 \end_layout
8264
8265 \end_inset
8266 </cell>
8267 </row>
8268 <row>
8269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8270 \begin_inset Text
8271
8272 \begin_layout Plain Layout
8273
8274 \backslash
8275 rightharpoondown
8276 \end_layout
8277
8278 \end_inset
8279 </cell>
8280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8281 \begin_inset Text
8282
8283 \begin_layout Plain Layout
8284 \begin_inset Formula $\rightharpoondown$
8285 \end_inset
8286
8287
8288 \end_layout
8289
8290 \end_inset
8291 </cell>
8292 </row>
8293 <row>
8294 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8295 \begin_inset Text
8296
8297 \begin_layout Plain Layout
8298
8299 \backslash
8300 hookrightarrow
8301 \end_layout
8302
8303 \end_inset
8304 </cell>
8305 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8306 \begin_inset Text
8307
8308 \begin_layout Plain Layout
8309 \begin_inset Formula $\hookrightarrow$
8310 \end_inset
8311
8312
8313 \end_layout
8314
8315 \end_inset
8316 </cell>
8317 </row>
8318 </lyxtabular>
8319
8320 \end_inset
8321
8322
8323 \begin_inset space \hfill{}
8324 \end_inset
8325
8326
8327 \end_layout
8328
8329 \begin_layout Standard
8330 \begin_inset space \hfill{}
8331 \end_inset
8332
8333
8334 \begin_inset Tabular
8335 <lyxtabular version="3" rows="6" columns="2">
8336 <features>
8337 <column alignment="center" valignment="top" width="0pt">
8338 <column alignment="center" valignment="top" width="0pt">
8339 <row>
8340 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8341 \begin_inset Text
8342
8343 \begin_layout Plain Layout
8344 Command
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 Result
8354 \end_layout
8355
8356 \end_inset
8357 </cell>
8358 </row>
8359 <row>
8360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8361 \begin_inset Text
8362
8363 \begin_layout Plain Layout
8364
8365 \backslash
8366 leftrightarrow
8367 \end_layout
8368
8369 \end_inset
8370 </cell>
8371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8372 \begin_inset Text
8373
8374 \begin_layout Plain Layout
8375 \begin_inset Formula $\leftrightarrow$
8376 \end_inset
8377
8378
8379 \end_layout
8380
8381 \end_inset
8382 </cell>
8383 </row>
8384 <row>
8385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8386 \begin_inset Text
8387
8388 \begin_layout Plain Layout
8389
8390 \backslash
8391 Leftrightarrow
8392 \end_layout
8393
8394 \end_inset
8395 </cell>
8396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8397 \begin_inset Text
8398
8399 \begin_layout Plain Layout
8400 \begin_inset Formula $\Leftrightarrow$
8401 \end_inset
8402
8403
8404 \end_layout
8405
8406 \end_inset
8407 </cell>
8408 </row>
8409 <row>
8410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8411 \begin_inset Text
8412
8413 \begin_layout Plain Layout
8414
8415 \backslash
8416 longleftrightarrow
8417 \end_layout
8418
8419 \end_inset
8420 </cell>
8421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8422 \begin_inset Text
8423
8424 \begin_layout Plain Layout
8425 \begin_inset Formula $\longleftrightarrow$
8426 \end_inset
8427
8428
8429 \end_layout
8430
8431 \end_inset
8432 </cell>
8433 </row>
8434 <row>
8435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8436 \begin_inset Text
8437
8438 \begin_layout Plain Layout
8439
8440 \backslash
8441 Longleftrightarrow
8442 \end_layout
8443
8444 \end_inset
8445 </cell>
8446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8447 \begin_inset Text
8448
8449 \begin_layout Plain Layout
8450 \begin_inset Formula $\Longleftrightarrow$
8451 \end_inset
8452
8453
8454 \end_layout
8455
8456 \end_inset
8457 </cell>
8458 </row>
8459 <row>
8460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8461 \begin_inset Text
8462
8463 \begin_layout Plain Layout
8464
8465 \backslash
8466 rightleftharpoons
8467 \end_layout
8468
8469 \end_inset
8470 </cell>
8471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8472 \begin_inset Text
8473
8474 \begin_layout Plain Layout
8475 \begin_inset Formula $\rightleftharpoons$
8476 \end_inset
8477
8478
8479 \end_layout
8480
8481 \end_inset
8482 </cell>
8483 </row>
8484 </lyxtabular>
8485
8486 \end_inset
8487
8488
8489 \begin_inset space \hspace{}
8490 \length 25pt
8491 \end_inset
8492
8493
8494 \begin_inset space \hfill{}
8495 \end_inset
8496
8497
8498 \begin_inset Tabular
8499 <lyxtabular version="3" rows="5" columns="2">
8500 <features>
8501 <column alignment="center" valignment="top" width="0pt">
8502 <column alignment="center" valignment="top" width="0pt">
8503 <row>
8504 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8505 \begin_inset Text
8506
8507 \begin_layout Plain Layout
8508 Command
8509 \end_layout
8510
8511 \end_inset
8512 </cell>
8513 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8514 \begin_inset Text
8515
8516 \begin_layout Plain Layout
8517 Result
8518 \end_layout
8519
8520 \end_inset
8521 </cell>
8522 </row>
8523 <row>
8524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8525 \begin_inset Text
8526
8527 \begin_layout Plain Layout
8528
8529 \backslash
8530 mapsto
8531 \end_layout
8532
8533 \end_inset
8534 </cell>
8535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8536 \begin_inset Text
8537
8538 \begin_layout Plain Layout
8539 \begin_inset Formula $\mapsto$
8540 \end_inset
8541
8542
8543 \end_layout
8544
8545 \end_inset
8546 </cell>
8547 </row>
8548 <row>
8549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8550 \begin_inset Text
8551
8552 \begin_layout Plain Layout
8553
8554 \backslash
8555 longmapsto
8556 \end_layout
8557
8558 \end_inset
8559 </cell>
8560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8561 \begin_inset Text
8562
8563 \begin_layout Plain Layout
8564 \begin_inset Formula $\longmapsto$
8565 \end_inset
8566
8567
8568 \end_layout
8569
8570 \end_inset
8571 </cell>
8572 </row>
8573 <row>
8574 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8575 \begin_inset Text
8576
8577 \begin_layout Plain Layout
8578
8579 \backslash
8580 leadsto
8581 \end_layout
8582
8583 \end_inset
8584 </cell>
8585 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8586 \begin_inset Text
8587
8588 \begin_layout Plain Layout
8589 \begin_inset Formula $\leadsto$
8590 \end_inset
8591
8592
8593 \end_layout
8594
8595 \end_inset
8596 </cell>
8597 </row>
8598 <row>
8599 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8600 \begin_inset Text
8601
8602 \begin_layout Plain Layout
8603
8604 \backslash
8605 dasharrow
8606 \end_layout
8607
8608 \end_inset
8609 </cell>
8610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8611 \begin_inset Text
8612
8613 \begin_layout Plain Layout
8614 \begin_inset Formula $\dasharrow$
8615 \end_inset
8616
8617
8618 \end_layout
8619
8620 \end_inset
8621 </cell>
8622 </row>
8623 </lyxtabular>
8624
8625 \end_inset
8626
8627
8628 \begin_inset space \hfill{}
8629 \end_inset
8630
8631
8632 \end_layout
8633
8634 \begin_layout Standard
8635 \begin_inset VSpace medskip
8636 \end_inset
8637
8638 Arrows used as accent like e.
8639 \begin_inset space \thinspace{}
8640 \end_inset
8641
8642 g.
8643 \begin_inset space \space{}
8644 \end_inset
8645
8646 vector arrows are listed in 
8647 \begin_inset CommandInset ref
8648 LatexCommand ref
8649 reference "sec:Accents"
8650
8651 \end_inset
8652
8653 .
8654 \end_layout
8655
8656 \begin_layout Standard
8657 \begin_inset VSpace bigskip
8658 \end_inset
8659
8660 Furthermore there are the labeled arrows
8661 \begin_inset Index
8662 status collapsed
8663
8664 \begin_layout Plain Layout
8665 Arrows ! labeled
8666 \end_layout
8667
8668 \end_inset
8669
8670  
8671 \series bold
8672
8673 \backslash
8674 xleftarrow
8675 \series default
8676
8677 \begin_inset Index
8678 status collapsed
8679
8680 \begin_layout Plain Layout
8681 Commands ! X ! 
8682 \backslash
8683 xleftarrow
8684 \end_layout
8685
8686 \end_inset
8687
8688  and 
8689 \series bold
8690
8691 \backslash
8692 xrightarrow
8693 \series default
8694
8695 \begin_inset Index
8696 status collapsed
8697
8698 \begin_layout Plain Layout
8699 Commands ! X ! 
8700 \backslash
8701 xrightarrow
8702 \begin_inset ERT
8703 status collapsed
8704
8705 \begin_layout Plain Layout
8706
8707
8708 \backslash
8709 vspace{4mm}
8710 \end_layout
8711
8712 \end_inset
8713
8714
8715 \end_layout
8716
8717 \end_inset
8718
8719 .
8720  When inserting one of these commands in a formula, an arrow with two blue
8721  boxes appear where the label can be inserted.
8722  The length of the arrow adapts to the label width.
8723 \end_layout
8724
8725 \begin_layout Standard
8726 \align center
8727 \begin_inset Tabular
8728 <lyxtabular version="3" rows="3" columns="2">
8729 <features>
8730 <column alignment="center" valignment="top" width="0pt">
8731 <column alignment="center" valignment="top" width="0pt">
8732 <row>
8733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8734 \begin_inset Text
8735
8736 \begin_layout Plain Layout
8737 Command
8738 \end_layout
8739
8740 \end_inset
8741 </cell>
8742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8743 \begin_inset Text
8744
8745 \begin_layout Plain Layout
8746 Result
8747 \begin_inset Note Note
8748 status collapsed
8749
8750 \begin_layout Plain Layout
8751
8752 \series bold
8753
8754 \backslash
8755 raisebox
8756 \series default
8757  is only used as spacer.
8758 \end_layout
8759
8760 \end_inset
8761
8762
8763 \end_layout
8764
8765 \end_inset
8766 </cell>
8767 </row>
8768 <row>
8769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8770 \begin_inset Text
8771
8772 \begin_layout Plain Layout
8773 F(a)
8774 \backslash
8775 xleftarrow
8776 \begin_inset ERT
8777 status collapsed
8778
8779 \begin_layout Plain Layout
8780
8781
8782 \backslash
8783 spce 
8784 \end_layout
8785
8786 \end_inset
8787
8788 x=a
8789 \begin_inset Formula $\downarrow$
8790 \end_inset
8791
8792 x>0
8793 \begin_inset Formula $\to$
8794 \end_inset
8795
8796 F(x)
8797 \end_layout
8798
8799 \end_inset
8800 </cell>
8801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8802 \begin_inset Text
8803
8804 \begin_layout Plain Layout
8805 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
8806 \end_inset
8807
8808
8809 \end_layout
8810
8811 \end_inset
8812 </cell>
8813 </row>
8814 <row>
8815 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8816 \begin_inset Text
8817
8818 \begin_layout Plain Layout
8819 F(x)
8820 \backslash
8821 xrightarrow
8822 \begin_inset ERT
8823 status collapsed
8824
8825 \begin_layout Plain Layout
8826
8827
8828 \backslash
8829 spce 
8830 \end_layout
8831
8832 \end_inset
8833
8834 x=a
8835 \begin_inset Formula $\downarrow$
8836 \end_inset
8837
8838 x>0
8839 \begin_inset Formula $\to$
8840 \end_inset
8841
8842 F(a)
8843 \end_layout
8844
8845 \end_inset
8846 </cell>
8847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8848 \begin_inset Text
8849
8850 \begin_layout Plain Layout
8851 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
8852 \end_inset
8853
8854
8855 \end_layout
8856
8857 \end_inset
8858 </cell>
8859 </row>
8860 </lyxtabular>
8861
8862 \end_inset
8863
8864
8865 \end_layout
8866
8867 \begin_layout Subsection
8868 Vertical and diagonal Arrows
8869 \begin_inset Index
8870 status collapsed
8871
8872 \begin_layout Plain Layout
8873 Arrows ! diagonal
8874 \end_layout
8875
8876 \end_inset
8877
8878
8879 \begin_inset Index
8880 status collapsed
8881
8882 \begin_layout Plain Layout
8883 Arrows ! vertical
8884 \end_layout
8885
8886 \end_inset
8887
8888
8889 \end_layout
8890
8891 \begin_layout Standard
8892 \begin_inset space \hfill{}
8893 \end_inset
8894
8895
8896 \begin_inset Tabular
8897 <lyxtabular version="3" rows="7" columns="2">
8898 <features>
8899 <column alignment="center" valignment="top" width="0pt">
8900 <column alignment="center" valignment="top" width="0pt">
8901 <row>
8902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8903 \begin_inset Text
8904
8905 \begin_layout Plain Layout
8906 Command
8907 \end_layout
8908
8909 \end_inset
8910 </cell>
8911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8912 \begin_inset Text
8913
8914 \begin_layout Plain Layout
8915 Result
8916 \end_layout
8917
8918 \end_inset
8919 </cell>
8920 </row>
8921 <row>
8922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Plain Layout
8926
8927 \backslash
8928 uparrow
8929 \end_layout
8930
8931 \end_inset
8932 </cell>
8933 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8934 \begin_inset Text
8935
8936 \begin_layout Plain Layout
8937 \begin_inset Formula $\uparrow$
8938 \end_inset
8939
8940
8941 \end_layout
8942
8943 \end_inset
8944 </cell>
8945 </row>
8946 <row>
8947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8948 \begin_inset Text
8949
8950 \begin_layout Plain Layout
8951
8952 \backslash
8953 Uparrow
8954 \end_layout
8955
8956 \end_inset
8957 </cell>
8958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8959 \begin_inset Text
8960
8961 \begin_layout Plain Layout
8962 \begin_inset Formula $\Uparrow$
8963 \end_inset
8964
8965
8966 \end_layout
8967
8968 \end_inset
8969 </cell>
8970 </row>
8971 <row>
8972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8973 \begin_inset Text
8974
8975 \begin_layout Plain Layout
8976
8977 \backslash
8978 updownarrow
8979 \end_layout
8980
8981 \end_inset
8982 </cell>
8983 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8984 \begin_inset Text
8985
8986 \begin_layout Plain Layout
8987 \begin_inset Formula $\updownarrow$
8988 \end_inset
8989
8990
8991 \end_layout
8992
8993 \end_inset
8994 </cell>
8995 </row>
8996 <row>
8997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8998 \begin_inset Text
8999
9000 \begin_layout Plain Layout
9001
9002 \backslash
9003 Updownarrow
9004 \end_layout
9005
9006 \end_inset
9007 </cell>
9008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9009 \begin_inset Text
9010
9011 \begin_layout Plain Layout
9012 \begin_inset Formula $\Updownarrow$
9013 \end_inset
9014
9015
9016 \end_layout
9017
9018 \end_inset
9019 </cell>
9020 </row>
9021 <row>
9022 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9023 \begin_inset Text
9024
9025 \begin_layout Plain Layout
9026
9027 \backslash
9028 Downarrow
9029 \end_layout
9030
9031 \end_inset
9032 </cell>
9033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9034 \begin_inset Text
9035
9036 \begin_layout Plain Layout
9037 \begin_inset Formula $\Downarrow$
9038 \end_inset
9039
9040
9041 \end_layout
9042
9043 \end_inset
9044 </cell>
9045 </row>
9046 <row>
9047 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9048 \begin_inset Text
9049
9050 \begin_layout Plain Layout
9051
9052 \backslash
9053 downarrow
9054 \end_layout
9055
9056 \end_inset
9057 </cell>
9058 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9059 \begin_inset Text
9060
9061 \begin_layout Plain Layout
9062 \begin_inset Formula $\downarrow$
9063 \end_inset
9064
9065
9066 \end_layout
9067
9068 \end_inset
9069 </cell>
9070 </row>
9071 </lyxtabular>
9072
9073 \end_inset
9074
9075
9076 \begin_inset space \hfill{}
9077 \end_inset
9078
9079
9080 \begin_inset Tabular
9081 <lyxtabular version="3" rows="5" columns="2">
9082 <features>
9083 <column alignment="center" valignment="top" width="0pt">
9084 <column alignment="center" valignment="top" width="0pt">
9085 <row>
9086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9087 \begin_inset Text
9088
9089 \begin_layout Plain Layout
9090 Command
9091 \end_layout
9092
9093 \end_inset
9094 </cell>
9095 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9096 \begin_inset Text
9097
9098 \begin_layout Plain Layout
9099 Result
9100 \end_layout
9101
9102 \end_inset
9103 </cell>
9104 </row>
9105 <row>
9106 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9107 \begin_inset Text
9108
9109 \begin_layout Plain Layout
9110
9111 \backslash
9112 nearrow
9113 \end_layout
9114
9115 \end_inset
9116 </cell>
9117 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9118 \begin_inset Text
9119
9120 \begin_layout Plain Layout
9121 \begin_inset Formula $\nearrow$
9122 \end_inset
9123
9124
9125 \end_layout
9126
9127 \end_inset
9128 </cell>
9129 </row>
9130 <row>
9131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9132 \begin_inset Text
9133
9134 \begin_layout Plain Layout
9135
9136 \backslash
9137 searrow
9138 \end_layout
9139
9140 \end_inset
9141 </cell>
9142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9143 \begin_inset Text
9144
9145 \begin_layout Plain Layout
9146 \begin_inset Formula $\searrow$
9147 \end_inset
9148
9149
9150 \end_layout
9151
9152 \end_inset
9153 </cell>
9154 </row>
9155 <row>
9156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9157 \begin_inset Text
9158
9159 \begin_layout Plain Layout
9160
9161 \backslash
9162 swarrow
9163 \end_layout
9164
9165 \end_inset
9166 </cell>
9167 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9168 \begin_inset Text
9169
9170 \begin_layout Plain Layout
9171 \begin_inset Formula $\swarrow$
9172 \end_inset
9173
9174
9175 \end_layout
9176
9177 \end_inset
9178 </cell>
9179 </row>
9180 <row>
9181 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9182 \begin_inset Text
9183
9184 \begin_layout Plain Layout
9185
9186 \backslash
9187 nwarrow
9188 \end_layout
9189
9190 \end_inset
9191 </cell>
9192 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9193 \begin_inset Text
9194
9195 \begin_layout Plain Layout
9196 \begin_inset Formula $\nwarrow$
9197 \end_inset
9198
9199
9200 \end_layout
9201
9202 \end_inset
9203 </cell>
9204 </row>
9205 </lyxtabular>
9206
9207 \end_inset
9208
9209
9210 \begin_inset space \hfill{}
9211 \end_inset
9212
9213
9214 \end_layout
9215
9216 \begin_layout Standard
9217 \begin_inset VSpace medskip
9218 \end_inset
9219
9220 Vertical arrows can be used also as delimiter together with the commands
9221  described in 
9222 \begin_inset CommandInset ref
9223 LatexCommand ref
9224 reference "sub:Manual-Bracket-Size"
9225
9226 \end_inset
9227
9228  and 
9229 \begin_inset CommandInset ref
9230 LatexCommand ref
9231 reference "sub:Automatic-Bracket-Size"
9232
9233 \end_inset
9234
9235 .
9236 \end_layout
9237
9238 \begin_layout Standard
9239 \begin_inset Newpage newpage
9240 \end_inset
9241
9242
9243 \end_layout
9244
9245 \begin_layout Section
9246 Accents
9247 \begin_inset CommandInset label
9248 LatexCommand label
9249 name "sec:Accents"
9250
9251 \end_inset
9252
9253
9254 \begin_inset Index
9255 status collapsed
9256
9257 \begin_layout Plain Layout
9258 Accents
9259 \end_layout
9260
9261 \end_inset
9262
9263
9264 \end_layout
9265
9266 \begin_layout Standard
9267 Accents can be inserted via the math toolbar button 
9268 \begin_inset Graphics
9269         filename ../images/math/hat.png
9270         scale 85
9271
9272 \end_inset
9273
9274  or the commands listed in the following subsections.
9275 \end_layout
9276
9277 \begin_layout Subsection
9278 Accents for one Character
9279 \begin_inset ERT
9280 status collapsed
9281
9282 \begin_layout Plain Layout
9283
9284
9285 \backslash
9286 texorpdfstring{
9287 \end_layout
9288
9289 \end_inset
9290
9291
9292 \begin_inset Foot
9293 status collapsed
9294
9295 \begin_layout Plain Layout
9296 accents in text see 
9297 \begin_inset CommandInset ref
9298 LatexCommand ref
9299 reference "sub:Accents-in-Text"
9300
9301 \end_inset
9302
9303
9304 \end_layout
9305
9306 \end_inset
9307
9308
9309 \begin_inset ERT
9310 status collapsed
9311
9312 \begin_layout Plain Layout
9313
9314 }{}
9315 \end_layout
9316
9317 \end_inset
9318
9319
9320 \begin_inset Note Note
9321 status collapsed
9322
9323 \begin_layout Plain Layout
9324
9325 \backslash
9326 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
9327 \end_layout
9328
9329 \begin_layout Plain Layout
9330 More about 
9331 \backslash
9332 texorpdfstring is in section 
9333 \begin_inset CommandInset ref
9334 LatexCommand ref
9335 reference "sub:Formulas-in-Section"
9336
9337 \end_inset
9338
9339 .
9340 \end_layout
9341
9342 \end_inset
9343
9344
9345 \begin_inset CommandInset label
9346 LatexCommand label
9347 name "sub:Accents-for-one"
9348
9349 \end_inset
9350
9351
9352 \begin_inset Index
9353 status collapsed
9354
9355 \begin_layout Plain Layout
9356 Accents ! for one character
9357 \end_layout
9358
9359 \end_inset
9360
9361
9362 \end_layout
9363
9364 \begin_layout Standard
9365 \begin_inset space \hfill{}
9366 \end_inset
9367
9368
9369 \begin_inset Tabular
9370 <lyxtabular version="3" rows="8" columns="2">
9371 <features>
9372 <column alignment="center" valignment="top" width="0pt">
9373 <column alignment="center" valignment="top" width="0pt">
9374 <row>
9375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9376 \begin_inset Text
9377
9378 \begin_layout Plain Layout
9379 Command
9380 \end_layout
9381
9382 \end_inset
9383 </cell>
9384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9385 \begin_inset Text
9386
9387 \begin_layout Plain Layout
9388 Result
9389 \begin_inset Note Note
9390 status collapsed
9391
9392 \begin_layout Plain Layout
9393
9394 \series bold
9395
9396 \backslash
9397 raisebox
9398 \series default
9399  is only used as spacer.
9400 \end_layout
9401
9402 \end_inset
9403
9404
9405 \end_layout
9406
9407 \end_inset
9408 </cell>
9409 </row>
9410 <row>
9411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9412 \begin_inset Text
9413
9414 \begin_layout Plain Layout
9415
9416 \backslash
9417 dot
9418 \begin_inset ERT
9419 status collapsed
9420
9421 \begin_layout Plain Layout
9422
9423
9424 \backslash
9425 spce 
9426 \end_layout
9427
9428 \end_inset
9429
9430 A
9431 \end_layout
9432
9433 \end_inset
9434 </cell>
9435 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9436 \begin_inset Text
9437
9438 \begin_layout Plain Layout
9439 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9440 \end_inset
9441
9442
9443 \end_layout
9444
9445 \end_inset
9446 </cell>
9447 </row>
9448 <row>
9449 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9450 \begin_inset Text
9451
9452 \begin_layout Plain Layout
9453
9454 \backslash
9455 ddot
9456 \begin_inset ERT
9457 status collapsed
9458
9459 \begin_layout Plain Layout
9460
9461
9462 \backslash
9463 spce 
9464 \end_layout
9465
9466 \end_inset
9467
9468 A
9469 \end_layout
9470
9471 \end_inset
9472 </cell>
9473 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9474 \begin_inset Text
9475
9476 \begin_layout Plain Layout
9477 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9478 \end_inset
9479
9480
9481 \end_layout
9482
9483 \end_inset
9484 </cell>
9485 </row>
9486 <row>
9487 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9488 \begin_inset Text
9489
9490 \begin_layout Plain Layout
9491
9492 \backslash
9493 dddot
9494 \begin_inset ERT
9495 status collapsed
9496
9497 \begin_layout Plain Layout
9498
9499
9500 \backslash
9501 spce 
9502 \end_layout
9503
9504 \end_inset
9505
9506 A
9507 \end_layout
9508
9509 \end_inset
9510 </cell>
9511 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9512 \begin_inset Text
9513
9514 \begin_layout Plain Layout
9515 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9516 \end_inset
9517
9518
9519 \end_layout
9520
9521 \end_inset
9522 </cell>
9523 </row>
9524 <row>
9525 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9526 \begin_inset Text
9527
9528 \begin_layout Plain Layout
9529
9530 \backslash
9531 ddddot{A
9532 \end_layout
9533
9534 \end_inset
9535 </cell>
9536 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9537 \begin_inset Text
9538
9539 \begin_layout Plain Layout
9540 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9541 \end_inset
9542
9543
9544 \end_layout
9545
9546 \end_inset
9547 </cell>
9548 </row>
9549 <row>
9550 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9551 \begin_inset Text
9552
9553 \begin_layout Plain Layout
9554
9555 \backslash
9556 vec
9557 \begin_inset ERT
9558 status collapsed
9559
9560 \begin_layout Plain Layout
9561
9562
9563 \backslash
9564 spce 
9565 \end_layout
9566
9567 \end_inset
9568
9569 A
9570 \begin_inset Index
9571 status collapsed
9572
9573 \begin_layout Plain Layout
9574 Vectors
9575 \end_layout
9576
9577 \end_inset
9578
9579
9580 \end_layout
9581
9582 \end_inset
9583 </cell>
9584 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9585 \begin_inset Text
9586
9587 \begin_layout Plain Layout
9588 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9589 \end_inset
9590
9591
9592 \end_layout
9593
9594 \end_inset
9595 </cell>
9596 </row>
9597 <row>
9598 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9599 \begin_inset Text
9600
9601 \begin_layout Plain Layout
9602
9603 \backslash
9604 bar
9605 \begin_inset ERT
9606 status collapsed
9607
9608 \begin_layout Plain Layout
9609
9610
9611 \backslash
9612 spce 
9613 \end_layout
9614
9615 \end_inset
9616
9617 A
9618 \end_layout
9619
9620 \end_inset
9621 </cell>
9622 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9623 \begin_inset Text
9624
9625 \begin_layout Plain Layout
9626 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9627 \end_inset
9628
9629
9630 \end_layout
9631
9632 \end_inset
9633 </cell>
9634 </row>
9635 <row>
9636 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9637 \begin_inset Text
9638
9639 \begin_layout Plain Layout
9640
9641 \backslash
9642 mathring
9643 \begin_inset ERT
9644 status collapsed
9645
9646 \begin_layout Plain Layout
9647
9648
9649 \backslash
9650 spce 
9651 \end_layout
9652
9653 \end_inset
9654
9655 A
9656 \end_layout
9657
9658 \end_inset
9659 </cell>
9660 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9661 \begin_inset Text
9662
9663 \begin_layout Plain Layout
9664 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9665 \end_inset
9666
9667
9668 \end_layout
9669
9670 \end_inset
9671 </cell>
9672 </row>
9673 </lyxtabular>
9674
9675 \end_inset
9676
9677
9678 \begin_inset space \hfill{}
9679 \end_inset
9680
9681
9682 \begin_inset Tabular
9683 <lyxtabular version="3" rows="7" columns="2">
9684 <features>
9685 <column alignment="center" valignment="top" width="0pt">
9686 <column alignment="center" valignment="top" width="0pt">
9687 <row>
9688 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9689 \begin_inset Text
9690
9691 \begin_layout Plain Layout
9692 Command
9693 \end_layout
9694
9695 \end_inset
9696 </cell>
9697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9698 \begin_inset Text
9699
9700 \begin_layout Plain Layout
9701 Result
9702 \end_layout
9703
9704 \end_inset
9705 </cell>
9706 </row>
9707 <row>
9708 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9709 \begin_inset Text
9710
9711 \begin_layout Plain Layout
9712
9713 \backslash
9714 tilde
9715 \begin_inset ERT
9716 status collapsed
9717
9718 \begin_layout Plain Layout
9719
9720
9721 \backslash
9722 spce 
9723 \end_layout
9724
9725 \end_inset
9726
9727 A
9728 \end_layout
9729
9730 \end_inset
9731 </cell>
9732 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9733 \begin_inset Text
9734
9735 \begin_layout Plain Layout
9736 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9737 \end_inset
9738
9739
9740 \end_layout
9741
9742 \end_inset
9743 </cell>
9744 </row>
9745 <row>
9746 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9747 \begin_inset Text
9748
9749 \begin_layout Plain Layout
9750
9751 \backslash
9752 hat
9753 \begin_inset ERT
9754 status collapsed
9755
9756 \begin_layout Plain Layout
9757
9758
9759 \backslash
9760 spce 
9761 \end_layout
9762
9763 \end_inset
9764
9765 A
9766 \end_layout
9767
9768 \end_inset
9769 </cell>
9770 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9771 \begin_inset Text
9772
9773 \begin_layout Plain Layout
9774 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
9775 \end_inset
9776
9777
9778 \end_layout
9779
9780 \end_inset
9781 </cell>
9782 </row>
9783 <row>
9784 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9785 \begin_inset Text
9786
9787 \begin_layout Plain Layout
9788
9789 \backslash
9790 check
9791 \begin_inset ERT
9792 status collapsed
9793
9794 \begin_layout Plain Layout
9795
9796
9797 \backslash
9798 spce 
9799 \end_layout
9800
9801 \end_inset
9802
9803 A
9804 \end_layout
9805
9806 \end_inset
9807 </cell>
9808 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9809 \begin_inset Text
9810
9811 \begin_layout Plain Layout
9812 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
9813 \end_inset
9814
9815
9816 \end_layout
9817
9818 \end_inset
9819 </cell>
9820 </row>
9821 <row>
9822 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9823 \begin_inset Text
9824
9825 \begin_layout Plain Layout
9826
9827 \backslash
9828 acute
9829 \begin_inset ERT
9830 status collapsed
9831
9832 \begin_layout Plain Layout
9833
9834
9835 \backslash
9836 spce 
9837 \end_layout
9838
9839 \end_inset
9840
9841 A
9842 \end_layout
9843
9844 \end_inset
9845 </cell>
9846 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9847 \begin_inset Text
9848
9849 \begin_layout Plain Layout
9850 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
9851 \end_inset
9852
9853
9854 \end_layout
9855
9856 \end_inset
9857 </cell>
9858 </row>
9859 <row>
9860 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9861 \begin_inset Text
9862
9863 \begin_layout Plain Layout
9864
9865 \backslash
9866 grave
9867 \begin_inset ERT
9868 status collapsed
9869
9870 \begin_layout Plain Layout
9871
9872
9873 \backslash
9874 spce 
9875 \end_layout
9876
9877 \end_inset
9878
9879 A
9880 \end_layout
9881
9882 \end_inset
9883 </cell>
9884 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9885 \begin_inset Text
9886
9887 \begin_layout Plain Layout
9888 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
9889 \end_inset
9890
9891
9892 \end_layout
9893
9894 \end_inset
9895 </cell>
9896 </row>
9897 <row>
9898 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9899 \begin_inset Text
9900
9901 \begin_layout Plain Layout
9902
9903 \backslash
9904 breve
9905 \begin_inset ERT
9906 status collapsed
9907
9908 \begin_layout Plain Layout
9909
9910
9911 \backslash
9912 spce 
9913 \end_layout
9914
9915 \end_inset
9916
9917 A
9918 \end_layout
9919
9920 \end_inset
9921 </cell>
9922 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9923 \begin_inset Text
9924
9925 \begin_layout Plain Layout
9926 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
9927 \end_inset
9928
9929
9930 \end_layout
9931
9932 \end_inset
9933 </cell>
9934 </row>
9935 </lyxtabular>
9936
9937 \end_inset
9938
9939
9940 \begin_inset space \hfill{}
9941 \end_inset
9942
9943
9944 \end_layout
9945
9946 \begin_layout Standard
9947 \begin_inset VSpace bigskip
9948 \end_inset
9949
9950
9951 \end_layout
9952
9953 \begin_layout Standard
9954 You can directly insert accents like é to formulas.
9955  LyX will transform them to the corresponding accent command.
9956  For umlauts
9957 \begin_inset Index
9958 status collapsed
9959
9960 \begin_layout Plain Layout
9961 Umlauts
9962 \end_layout
9963
9964 \end_inset
9965
9966  it is better to insert a quotation mark before the vowel.
9967  These two characters are then treated by LaTeX as 
9968 \emph on
9969 one
9970 \emph default
9971  character when the formula part with the umlaut is marked as German.
9972  In contrary to 
9973 \series bold
9974
9975 \backslash
9976 ddot
9977 \series default
9978 , with this method 
9979 \begin_inset Quotes eld
9980 \end_inset
9981
9982 real
9983 \begin_inset Quotes erd
9984 \end_inset
9985
9986  umlauts are created as demonstrated in the following example:
9987 \end_layout
9988
9989 \begin_layout Standard
9990 \begin_inset VSpace -2mm
9991 \end_inset
9992
9993
9994 \end_layout
9995
9996 \begin_layout Standard
9997 \align center
9998 \begin_inset Tabular
9999 <lyxtabular version="3" rows="3" columns="2">
10000 <features>
10001 <column alignment="center" valignment="top" width="0">
10002 <column alignment="center" valignment="top" width="0">
10003 <row>
10004 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10005 \begin_inset Text
10006
10007 \begin_layout Plain Layout
10008 Command
10009 \end_layout
10010
10011 \end_inset
10012 </cell>
10013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10014 \begin_inset Text
10015
10016 \begin_layout Plain Layout
10017 Result
10018 \begin_inset Note Note
10019 status collapsed
10020
10021 \begin_layout Plain Layout
10022
10023 \series bold
10024
10025 \backslash
10026 raisebox
10027 \series default
10028  and the 0
10029 \begin_inset space \thinspace{}
10030 \end_inset
10031
10032 pt space are only used as spacer.
10033 \end_layout
10034
10035 \end_inset
10036
10037
10038 \end_layout
10039
10040 \end_inset
10041 </cell>
10042 </row>
10043 <row>
10044 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10045 \begin_inset Text
10046
10047 \begin_layout Plain Layout
10048
10049 \lang ngerman
10050 \begin_inset Quotes grd
10051 \end_inset
10052
10053 i
10054 \end_layout
10055
10056 \end_inset
10057 </cell>
10058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10059 \begin_inset Text
10060
10061 \begin_layout Plain Layout
10062 \begin_inset space \hspace{}
10063 \length 0pt
10064 \end_inset
10065
10066
10067 \lang ngerman
10068
10069 \begin_inset Formula $"i$
10070 \end_inset
10071
10072
10073 \end_layout
10074
10075 \end_inset
10076 </cell>
10077 </row>
10078 <row>
10079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10080 \begin_inset Text
10081
10082 \begin_layout Plain Layout
10083
10084 \backslash
10085 ddot
10086 \begin_inset ERT
10087 status collapsed
10088
10089 \begin_layout Plain Layout
10090
10091
10092 \backslash
10093 spce 
10094 \end_layout
10095
10096 \end_inset
10097
10098 i
10099 \end_layout
10100
10101 \end_inset
10102 </cell>
10103 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10104 \begin_inset Text
10105
10106 \begin_layout Plain Layout
10107 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10108 \end_inset
10109
10110
10111 \end_layout
10112
10113 \end_inset
10114 </cell>
10115 </row>
10116 </lyxtabular>
10117
10118 \end_inset
10119
10120
10121 \end_layout
10122
10123 \begin_layout Standard
10124 Another advantage to 
10125 \series bold
10126
10127 \backslash
10128 ddot
10129 \series default
10130  is that umlauts can directly be converted to mathematical text because
10131  the accent commands above are 
10132 \emph on
10133 not allowed
10134 \emph default
10135  
10136 \emph on
10137 in mathematical text
10138 \emph default
10139 .
10140  To convert an accented character to mathematical text, only the character
10141  under the accent may be converted.
10142  This applies also for all other conversions, e.
10143 \begin_inset space \thinspace{}
10144 \end_inset
10145
10146 g.
10147 \begin_inset space \space{}
10148 \end_inset
10149
10150 to italic or bold.
10151 \end_layout
10152
10153 \begin_layout Standard
10154 In mathematical text, umlauts and other accented characters can directly
10155  be inserted.
10156 \end_layout
10157
10158 \begin_layout Subsection
10159 Accents for Operators
10160 \begin_inset Index
10161 status collapsed
10162
10163 \begin_layout Plain Layout
10164 Accents ! for operators
10165 \end_layout
10166
10167 \end_inset
10168
10169
10170 \end_layout
10171
10172 \begin_layout Standard
10173 With the commands 
10174 \series bold
10175
10176 \backslash
10177 overset
10178 \series default
10179
10180 \begin_inset Index
10181 status collapsed
10182
10183 \begin_layout Plain Layout
10184 Commands ! O ! 
10185 \backslash
10186 overset
10187 \end_layout
10188
10189 \end_inset
10190
10191  and 
10192 \series bold
10193
10194 \backslash
10195 underset
10196 \series default
10197
10198 \begin_inset Index
10199 status collapsed
10200
10201 \begin_layout Plain Layout
10202 Commands ! U ! 
10203 \backslash
10204 underset
10205 \end_layout
10206
10207 \end_inset
10208
10209  characters can be placed above or below an operator, respectively, to accent
10210  it.
10211  With the command 
10212 \series bold
10213
10214 \backslash
10215 sideset
10216 \series default
10217
10218 \begin_inset Index
10219 status collapsed
10220
10221 \begin_layout Plain Layout
10222 Commands ! S ! 
10223 \backslash
10224 sideset
10225 \end_layout
10226
10227 \end_inset
10228
10229  characters can be set before and behind an operator.
10230  The command scheme is:
10231 \end_layout
10232
10233 \begin_layout Standard
10234
10235 \series bold
10236
10237 \backslash
10238 sideset{character
10239 \series default
10240  
10241 \series bold
10242 before}{character
10243 \series default
10244  
10245 \series bold
10246 behind}
10247 \end_layout
10248
10249 \begin_layout Standard
10250
10251 \series bold
10252
10253 \backslash
10254 sideset
10255 \series default
10256  must always be before the operator that should be accented.
10257  You can accent with several characters and even with other operators and
10258  symbols.
10259  To place with 
10260 \series bold
10261
10262 \backslash
10263 sideset
10264 \series default
10265  for example only characters behind an operator, write nothing between the
10266  first braces but don't omit the braces.
10267 \end_layout
10268
10269 \begin_layout Standard
10270 For example the command 
10271 \series bold
10272
10273 \backslash
10274 sideset{
10275 \begin_inset Formula $\to$
10276 \end_inset
10277
10278
10279 \backslash
10280 {
10281 \series default
10282 '
10283 \series bold
10284
10285 \begin_inset Formula $\to$
10286 \end_inset
10287
10288
10289 \backslash
10290 sum_k=1
10291 \begin_inset ERT
10292 status collapsed
10293
10294 \begin_layout Plain Layout
10295
10296
10297 \backslash
10298 spce 
10299 \end_layout
10300
10301 \end_inset
10302
10303
10304 \series default
10305 ^
10306 \series bold
10307 n
10308 \series default
10309  produces:
10310 \begin_inset Formula \[
10311 \sideset{}{'}\sum_{k=1}^{n}\]
10312
10313 \end_inset
10314
10315
10316 \end_layout
10317
10318 \begin_layout Standard
10319 The command 
10320 \series bold
10321
10322 \backslash
10323 overset
10324 \begin_inset ERT
10325 status collapsed
10326
10327 \begin_layout Plain Layout
10328
10329
10330 \backslash
10331 spce 
10332 \end_layout
10333
10334 \end_inset
10335
10336
10337 \backslash
10338 maltese
10339 \begin_inset ERT
10340 status collapsed
10341
10342 \begin_layout Plain Layout
10343
10344
10345 \backslash
10346 spce 
10347 \end_layout
10348
10349 \end_inset
10350
10351
10352 \series default
10353
10354 \begin_inset Formula $\uparrow$
10355 \end_inset
10356
10357
10358 \series bold
10359 a
10360 \series default
10361  produces:
10362 \begin_inset Formula \[
10363 \overset{a}{\maltese}\]
10364
10365 \end_inset
10366
10367 As seen in the last example, with 
10368 \series bold
10369
10370 \backslash
10371 overset
10372 \series default
10373  and 
10374 \series bold
10375
10376 \backslash
10377 underset
10378 \series default
10379  also symbols and characters can be accented; with 
10380 \series bold
10381
10382 \backslash
10383 sideset
10384 \series default
10385  this is not possible.
10386 \end_layout
10387
10388 \begin_layout Subsection
10389 Accents for several Characters
10390 \begin_inset Index
10391 status collapsed
10392
10393 \begin_layout Plain Layout
10394 Accents ! for several characters
10395 \end_layout
10396
10397 \end_inset
10398
10399
10400 \end_layout
10401
10402 \begin_layout Standard
10403 \begin_inset space \hfill{}
10404 \end_inset
10405
10406
10407 \begin_inset Tabular
10408 <lyxtabular version="3" rows="5" columns="2">
10409 <features>
10410 <column alignment="center" valignment="top" width="0pt">
10411 <column alignment="center" valignment="top" width="0pt">
10412 <row>
10413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10414 \begin_inset Text
10415
10416 \begin_layout Plain Layout
10417 Command
10418 \end_layout
10419
10420 \end_inset
10421 </cell>
10422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10423 \begin_inset Text
10424
10425 \begin_layout Plain Layout
10426 Result
10427 \begin_inset Note Note
10428 status collapsed
10429
10430 \begin_layout Plain Layout
10431
10432 \series bold
10433
10434 \backslash
10435 raisebox
10436 \series default
10437  is only used as spacer.
10438 \end_layout
10439
10440 \end_inset
10441
10442
10443 \end_layout
10444
10445 \end_inset
10446 </cell>
10447 </row>
10448 <row>
10449 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10450 \begin_inset Text
10451
10452 \begin_layout Plain Layout
10453
10454 \backslash
10455 overleftarrow
10456 \begin_inset ERT
10457 status collapsed
10458
10459 \begin_layout Plain Layout
10460
10461
10462 \backslash
10463 spce 
10464 \end_layout
10465
10466 \end_inset
10467
10468 A=B
10469 \end_layout
10470
10471 \end_inset
10472 </cell>
10473 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10474 \begin_inset Text
10475
10476 \begin_layout Plain Layout
10477 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10478 \end_inset
10479
10480
10481 \end_layout
10482
10483 \end_inset
10484 </cell>
10485 </row>
10486 <row>
10487 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10488 \begin_inset Text
10489
10490 \begin_layout Plain Layout
10491
10492 \backslash
10493 underleftarrow
10494 \begin_inset ERT
10495 status collapsed
10496
10497 \begin_layout Plain Layout
10498
10499
10500 \backslash
10501 spce 
10502 \end_layout
10503
10504 \end_inset
10505
10506 A=B
10507 \end_layout
10508
10509 \end_inset
10510 </cell>
10511 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10512 \begin_inset Text
10513
10514 \begin_layout Plain Layout
10515 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10516 \end_inset
10517
10518
10519 \end_layout
10520
10521 \end_inset
10522 </cell>
10523 </row>
10524 <row>
10525 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10526 \begin_inset Text
10527
10528 \begin_layout Plain Layout
10529
10530 \backslash
10531 overleftrightarrow
10532 \begin_inset ERT
10533 status collapsed
10534
10535 \begin_layout Plain Layout
10536
10537
10538 \backslash
10539 spce 
10540 \end_layout
10541
10542 \end_inset
10543
10544 A=B
10545 \end_layout
10546
10547 \end_inset
10548 </cell>
10549 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10550 \begin_inset Text
10551
10552 \begin_layout Plain Layout
10553 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10554 \end_inset
10555
10556
10557 \end_layout
10558
10559 \end_inset
10560 </cell>
10561 </row>
10562 <row>
10563 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10564 \begin_inset Text
10565
10566 \begin_layout Plain Layout
10567
10568 \backslash
10569 underleftrightarrow
10570 \begin_inset ERT
10571 status collapsed
10572
10573 \begin_layout Plain Layout
10574
10575
10576 \backslash
10577 spce 
10578 \end_layout
10579
10580 \end_inset
10581
10582 A=B
10583 \end_layout
10584
10585 \end_inset
10586 </cell>
10587 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10588 \begin_inset Text
10589
10590 \begin_layout Plain Layout
10591 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10592 \end_inset
10593
10594
10595 \end_layout
10596
10597 \end_inset
10598 </cell>
10599 </row>
10600 </lyxtabular>
10601
10602 \end_inset
10603
10604
10605 \begin_inset space \hfill{}
10606 \end_inset
10607
10608
10609 \begin_inset Tabular
10610 <lyxtabular version="3" rows="5" columns="2">
10611 <features>
10612 <column alignment="center" valignment="top" width="0pt">
10613 <column alignment="center" valignment="top" width="0pt">
10614 <row>
10615 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10616 \begin_inset Text
10617
10618 \begin_layout Plain Layout
10619 Command
10620 \end_layout
10621
10622 \end_inset
10623 </cell>
10624 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10625 \begin_inset Text
10626
10627 \begin_layout Plain Layout
10628 Result
10629 \end_layout
10630
10631 \end_inset
10632 </cell>
10633 </row>
10634 <row>
10635 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10636 \begin_inset Text
10637
10638 \begin_layout Plain Layout
10639
10640 \backslash
10641 overrightarrow
10642 \begin_inset ERT
10643 status collapsed
10644
10645 \begin_layout Plain Layout
10646
10647
10648 \backslash
10649 spce 
10650 \end_layout
10651
10652 \end_inset
10653
10654 A=B
10655 \end_layout
10656
10657 \end_inset
10658 </cell>
10659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10660 \begin_inset Text
10661
10662 \begin_layout Plain Layout
10663 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10664 \end_inset
10665
10666
10667 \end_layout
10668
10669 \end_inset
10670 </cell>
10671 </row>
10672 <row>
10673 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10674 \begin_inset Text
10675
10676 \begin_layout Plain Layout
10677
10678 \backslash
10679 underrightarrow
10680 \begin_inset ERT
10681 status collapsed
10682
10683 \begin_layout Plain Layout
10684
10685
10686 \backslash
10687 spce 
10688 \end_layout
10689
10690 \end_inset
10691
10692 A=B
10693 \end_layout
10694
10695 \end_inset
10696 </cell>
10697 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10698 \begin_inset Text
10699
10700 \begin_layout Plain Layout
10701 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10702 \end_inset
10703
10704
10705 \end_layout
10706
10707 \end_inset
10708 </cell>
10709 </row>
10710 <row>
10711 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10712 \begin_inset Text
10713
10714 \begin_layout Plain Layout
10715
10716 \backslash
10717 widetilde
10718 \begin_inset ERT
10719 status collapsed
10720
10721 \begin_layout Plain Layout
10722
10723
10724 \backslash
10725 spce 
10726 \end_layout
10727
10728 \end_inset
10729
10730 A=B
10731 \end_layout
10732
10733 \end_inset
10734 </cell>
10735 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10736 \begin_inset Text
10737
10738 \begin_layout Plain Layout
10739 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10740 \end_inset
10741
10742
10743 \end_layout
10744
10745 \end_inset
10746 </cell>
10747 </row>
10748 <row>
10749 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10750 \begin_inset Text
10751
10752 \begin_layout Plain Layout
10753
10754 \backslash
10755 widehat
10756 \begin_inset ERT
10757 status collapsed
10758
10759 \begin_layout Plain Layout
10760
10761
10762 \backslash
10763 spce 
10764 \end_layout
10765
10766 \end_inset
10767
10768 A=B
10769 \end_layout
10770
10771 \end_inset
10772 </cell>
10773 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10774 \begin_inset Text
10775
10776 \begin_layout Plain Layout
10777 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10778 \end_inset
10779
10780
10781 \end_layout
10782
10783 \end_inset
10784 </cell>
10785 </row>
10786 </lyxtabular>
10787
10788 \end_inset
10789
10790
10791 \begin_inset space \hfill{}
10792 \end_inset
10793
10794
10795 \end_layout
10796
10797 \begin_layout Standard
10798 \begin_inset VSpace medskip
10799 \end_inset
10800
10801 With these commands as many characters as you like can be accented.
10802  But the accents 
10803 \series bold
10804
10805 \backslash
10806 widetilde
10807 \series default
10808  and 
10809 \series bold
10810
10811 \backslash
10812 widehat
10813 \series default
10814  will only be set in the output with a length of three characters, as shown
10815  in the following example:
10816 \begin_inset Formula \[
10817 \widetilde{A+B=C-D}\]
10818
10819 \end_inset
10820
10821
10822 \end_layout
10823
10824 \begin_layout Standard
10825 With the commands 
10826 \series bold
10827
10828 \backslash
10829 overset
10830 \series default
10831
10832 \begin_inset Index
10833 status collapsed
10834
10835 \begin_layout Plain Layout
10836 Commands ! O ! 
10837 \backslash
10838 overset
10839 \end_layout
10840
10841 \end_inset
10842
10843  and 
10844 \series bold
10845
10846 \backslash
10847 underset
10848 \series default
10849
10850 \begin_inset Index
10851 status collapsed
10852
10853 \begin_layout Plain Layout
10854 Commands ! U ! 
10855 \backslash
10856 underset
10857 \end_layout
10858
10859 \end_inset
10860
10861  described in the previous subsection it is also possible to accent several
10862  characters.
10863  The command 
10864 \series bold
10865
10866 \backslash
10867 underset
10868 \begin_inset ERT
10869 status collapsed
10870
10871 \begin_layout Plain Layout
10872
10873
10874 \backslash
10875 spce 
10876 \end_layout
10877
10878 \end_inset
10879
10880 A=B
10881 \begin_inset Formula $\downarrow$
10882 \end_inset
10883
10884 ***
10885 \series default
10886  creates:
10887 \begin_inset Formula \[
10888 \underset{***}{A=B}\]
10889
10890 \end_inset
10891
10892
10893 \end_layout
10894
10895 \begin_layout Section
10896 Space
10897 \begin_inset CommandInset label
10898 LatexCommand label
10899 name "sub:Space"
10900
10901 \end_inset
10902
10903
10904 \begin_inset Index
10905 status collapsed
10906
10907 \begin_layout Plain Layout
10908 Space ! horizontal
10909 \end_layout
10910
10911 \end_inset
10912
10913
10914 \end_layout
10915
10916 \begin_layout Subsection
10917 Predefined Space
10918 \begin_inset CommandInset label
10919 LatexCommand label
10920 name "sub:Predefined-Space"
10921
10922 \end_inset
10923
10924
10925 \begin_inset Index
10926 status collapsed
10927
10928 \begin_layout Plain Layout
10929 Space ! horizontal ! predefined
10930 \end_layout
10931
10932 \end_inset
10933
10934
10935 \end_layout
10936
10937 \begin_layout Standard
10938 Sometimes it is necessary to insert horizontal space to a formula.
10939  This is done by inserting a protected space (shortcut 
10940 \begin_inset Info
10941 type  "shortcut"
10942 arg   "space-insert protected"
10943 \end_inset
10944
10945 ).
10946  A 
10947 \begin_inset Quotes eld
10948 \end_inset
10949
10950
10951 \color blue
10952
10953 \begin_inset ERT
10954 status collapsed
10955
10956 \begin_layout Plain Layout
10957
10958
10959 \backslash
10960 spce 
10961 \end_layout
10962
10963 \end_inset
10964
10965
10966 \color inherit
10967
10968 \begin_inset Quotes erd
10969 \end_inset
10970
10971  appears and by pressing 
10972 \family sans
10973 Space
10974 \family default
10975  several times one can select one of eight different space sizes.
10976  The spaces can also be inserted using the math toolbar button 
10977 \begin_inset Graphics
10978         filename ../images/math/space.png
10979         scale 85
10980
10981 \end_inset
10982
10983  or special commands.
10984  Independent from the inserted command, one can select the size again by
10985  pressing 
10986 \family sans
10987 Space
10988 \family default
10989  afterwards.
10990 \end_layout
10991
10992 \begin_layout Standard
10993 \noindent
10994 \align center
10995 \begin_inset VSpace -5mm
10996 \end_inset
10997
10998
10999 \begin_inset Tabular
11000 <lyxtabular version="3" rows="3" columns="7">
11001 <features>
11002 <column alignment="center" valignment="middle" width="6.8cm">
11003 <column alignment="center" valignment="top" width="0">
11004 <column alignment="center" valignment="top" width="0">
11005 <column alignment="center" valignment="top" width="0">
11006 <column alignment="center" valignment="top" width="0">
11007 <column alignment="center" valignment="top" width="0">
11008 <column alignment="center" valignment="top" width="0">
11009 <row>
11010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11011 \begin_inset Text
11012
11013 \begin_layout Plain Layout
11014 Command
11015 \end_layout
11016
11017 \end_inset
11018 </cell>
11019 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11020 \begin_inset Text
11021
11022 \begin_layout Plain Layout
11023
11024 \backslash
11025 ,
11026 \end_layout
11027
11028 \end_inset
11029 </cell>
11030 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11031 \begin_inset Text
11032
11033 \begin_layout Plain Layout
11034
11035 \backslash
11036 :
11037 \end_layout
11038
11039 \end_inset
11040 </cell>
11041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11042 \begin_inset Text
11043
11044 \begin_layout Plain Layout
11045
11046 \backslash
11047 ;
11048 \end_layout
11049
11050 \end_inset
11051 </cell>
11052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11053 \begin_inset Text
11054
11055 \begin_layout Plain Layout
11056
11057 \backslash
11058 quad
11059 \end_layout
11060
11061 \end_inset
11062 </cell>
11063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11064 \begin_inset Text
11065
11066 \begin_layout Plain Layout
11067
11068 \backslash
11069 qquad
11070 \end_layout
11071
11072 \end_inset
11073 </cell>
11074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11075 \begin_inset Text
11076
11077 \begin_layout Plain Layout
11078
11079 \backslash
11080 !
11081 \end_layout
11082
11083 \end_inset
11084 </cell>
11085 </row>
11086 <row>
11087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11088 \begin_inset Text
11089
11090 \begin_layout Plain Layout
11091 Number of 
11092 \family sans
11093 Space
11094 \family default
11095  keystrokes after inserting the protected space
11096 \end_layout
11097
11098 \end_inset
11099 </cell>
11100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11101 \begin_inset Text
11102
11103 \begin_layout Plain Layout
11104 0
11105 \end_layout
11106
11107 \end_inset
11108 </cell>
11109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11110 \begin_inset Text
11111
11112 \begin_layout Plain Layout
11113 1
11114 \end_layout
11115
11116 \end_inset
11117 </cell>
11118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11119 \begin_inset Text
11120
11121 \begin_layout Plain Layout
11122 2
11123 \end_layout
11124
11125 \end_inset
11126 </cell>
11127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11128 \begin_inset Text
11129
11130 \begin_layout Plain Layout
11131 3
11132 \end_layout
11133
11134 \end_inset
11135 </cell>
11136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11137 \begin_inset Text
11138
11139 \begin_layout Plain Layout
11140 4
11141 \end_layout
11142
11143 \end_inset
11144 </cell>
11145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11146 \begin_inset Text
11147
11148 \begin_layout Plain Layout
11149 5
11150 \end_layout
11151
11152 \end_inset
11153 </cell>
11154 </row>
11155 <row>
11156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11157 \begin_inset Text
11158
11159 \begin_layout Plain Layout
11160 Result
11161 \end_layout
11162
11163 \end_inset
11164 </cell>
11165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11166 \begin_inset Text
11167
11168 \begin_layout Plain Layout
11169 \begin_inset Formula $A\, B$
11170 \end_inset
11171
11172
11173 \end_layout
11174
11175 \end_inset
11176 </cell>
11177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11178 \begin_inset Text
11179
11180 \begin_layout Plain Layout
11181 \begin_inset Formula $A\: B$
11182 \end_inset
11183
11184
11185 \end_layout
11186
11187 \end_inset
11188 </cell>
11189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11190 \begin_inset Text
11191
11192 \begin_layout Plain Layout
11193 \begin_inset Formula $A\; B$
11194 \end_inset
11195
11196
11197 \end_layout
11198
11199 \end_inset
11200 </cell>
11201 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11202 \begin_inset Text
11203
11204 \begin_layout Plain Layout
11205 \begin_inset Formula $A\quad B$
11206 \end_inset
11207
11208
11209 \end_layout
11210
11211 \end_inset
11212 </cell>
11213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11214 \begin_inset Text
11215
11216 \begin_layout Plain Layout
11217 \begin_inset Formula $A\qquad B$
11218 \end_inset
11219
11220
11221 \end_layout
11222
11223 \end_inset
11224 </cell>
11225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11226 \begin_inset Text
11227
11228 \begin_layout Plain Layout
11229 \begin_inset Formula $A\! B$
11230 \end_inset
11231
11232
11233 \end_layout
11234
11235 \end_inset
11236 </cell>
11237 </row>
11238 </lyxtabular>
11239
11240 \end_inset
11241
11242
11243 \end_layout
11244
11245 \begin_layout Standard
11246 The last size seem to produce no space.
11247  It is displayed red in LyX contrary to the other sizes, because it is a
11248  negative space.
11249  There are two more negative spaces:
11250 \end_layout
11251
11252 \begin_layout Standard
11253 \align center
11254 \begin_inset Tabular
11255 <lyxtabular version="3" rows="3" columns="3">
11256 <features>
11257 <column alignment="center" valignment="middle" width="6.8cm">
11258 <column alignment="center" valignment="top" width="0pt">
11259 <column alignment="center" valignment="top" width="0pt">
11260 <row>
11261 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11262 \begin_inset Text
11263
11264 \begin_layout Plain Layout
11265 Command
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
11275 \backslash
11276 negmedspace
11277 \end_layout
11278
11279 \end_inset
11280 </cell>
11281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11282 \begin_inset Text
11283
11284 \begin_layout Plain Layout
11285
11286 \backslash
11287 negthickspace
11288 \end_layout
11289
11290 \end_inset
11291 </cell>
11292 </row>
11293 <row>
11294 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11295 \begin_inset Text
11296
11297 \begin_layout Plain Layout
11298 Number of 
11299 \family sans
11300 Space
11301 \family default
11302  keystrokes after inserting the protected space
11303 \end_layout
11304
11305 \end_inset
11306 </cell>
11307 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11308 \begin_inset Text
11309
11310 \begin_layout Plain Layout
11311 6
11312 \end_layout
11313
11314 \end_inset
11315 </cell>
11316 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11317 \begin_inset Text
11318
11319 \begin_layout Plain Layout
11320 7
11321 \end_layout
11322
11323 \end_inset
11324 </cell>
11325 </row>
11326 <row>
11327 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11328 \begin_inset Text
11329
11330 \begin_layout Plain Layout
11331 Result
11332 \end_layout
11333
11334 \end_inset
11335 </cell>
11336 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11337 \begin_inset Text
11338
11339 \begin_layout Plain Layout
11340 \begin_inset Formula $A\negmedspace B$
11341 \end_inset
11342
11343
11344 \end_layout
11345
11346 \end_inset
11347 </cell>
11348 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11349 \begin_inset Text
11350
11351 \begin_layout Plain Layout
11352 \begin_inset Formula $A\negthickspace B$
11353 \end_inset
11354
11355
11356 \end_layout
11357
11358 \end_inset
11359 </cell>
11360 </row>
11361 </lyxtabular>
11362
11363 \end_inset
11364
11365
11366 \end_layout
11367
11368 \begin_layout Standard
11369 Negative spaces can lead to characters overlapping each other.
11370  Thus they can be used to enforce ligatures, what is e.
11371 \begin_inset space \thinspace{}
11372 \end_inset
11373
11374 g.
11375 \begin_inset space \space{}
11376 \end_inset
11377
11378 useful for summation operators: 
11379 \end_layout
11380
11381 \begin_layout Standard
11382 \align center
11383 \begin_inset Tabular
11384 <lyxtabular version="3" rows="3" columns="2">
11385 <features>
11386 <column alignment="center" valignment="top" width="0">
11387 <column alignment="center" valignment="top" width="0">
11388 <row>
11389 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11390 \begin_inset Text
11391
11392 \begin_layout Plain Layout
11393 Command
11394 \end_layout
11395
11396 \end_inset
11397 </cell>
11398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11399 \begin_inset Text
11400
11401 \begin_layout Plain Layout
11402 Result
11403 \begin_inset Note Note
11404 status collapsed
11405
11406 \begin_layout Plain Layout
11407
11408 \series bold
11409
11410 \backslash
11411 raisebox
11412 \series default
11413  is only used as spacer.
11414 \end_layout
11415
11416 \end_inset
11417
11418
11419 \end_layout
11420
11421 \end_inset
11422 </cell>
11423 </row>
11424 <row>
11425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11426 \begin_inset Text
11427
11428 \begin_layout Plain Layout
11429
11430 \backslash
11431 sum
11432 \backslash
11433 sum
11434 \begin_inset ERT
11435 status collapsed
11436
11437 \begin_layout Plain Layout
11438
11439
11440 \backslash
11441 spce 
11442 \end_layout
11443
11444 \end_inset
11445
11446 f_kl
11447 \end_layout
11448
11449 \end_inset
11450 </cell>
11451 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11452 \begin_inset Text
11453
11454 \begin_layout Plain Layout
11455 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11456 \end_inset
11457
11458
11459 \end_layout
11460
11461 \end_inset
11462 </cell>
11463 </row>
11464 <row>
11465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11466 \begin_inset Text
11467
11468 \begin_layout Plain Layout
11469
11470 \backslash
11471 sum
11472 \backslash
11473 negmedspace
11474 \backslash
11475 sum
11476 \begin_inset ERT
11477 status collapsed
11478
11479 \begin_layout Plain Layout
11480
11481
11482 \backslash
11483 spce 
11484 \end_layout
11485
11486 \end_inset
11487
11488 f_kl
11489 \end_layout
11490
11491 \end_inset
11492 </cell>
11493 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11494 \begin_inset Text
11495
11496 \begin_layout Plain Layout
11497 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11498 \end_inset
11499
11500
11501 \end_layout
11502
11503 \end_inset
11504 </cell>
11505 </row>
11506 </lyxtabular>
11507
11508 \end_inset
11509
11510
11511 \end_layout
11512
11513 \begin_layout Standard
11514 Relations like for example equal signs, are always surrounded by space.
11515  To suppress this, the equal sign is placed into a TeX-brace.
11516  The following example demonstrates this:
11517 \end_layout
11518
11519 \begin_layout Standard
11520 \align center
11521 \begin_inset Tabular
11522 <lyxtabular version="3" rows="2" columns="2">
11523 <features>
11524 <column alignment="center" valignment="top" width="0pt">
11525 <column alignment="center" valignment="top" width="0pt">
11526 <row>
11527 <cell alignment="center" valignment="top" usebox="none">
11528 \begin_inset Text
11529
11530 \begin_layout Plain Layout
11531 normal equation
11532 \end_layout
11533
11534 \end_inset
11535 </cell>
11536 <cell alignment="center" valignment="top" usebox="none">
11537 \begin_inset Text
11538
11539 \begin_layout Plain Layout
11540 \begin_inset Formula $A=B$
11541 \end_inset
11542
11543
11544 \end_layout
11545
11546 \end_inset
11547 </cell>
11548 </row>
11549 <row>
11550 <cell alignment="center" valignment="top" usebox="none">
11551 \begin_inset Text
11552
11553 \begin_layout Plain Layout
11554 \begin_inset Note Note
11555 status collapsed
11556
11557 \begin_layout Plain Layout
11558
11559 \series bold
11560
11561 \backslash
11562 raisebox
11563 \series default
11564  is only used as spacer.
11565 \end_layout
11566
11567 \end_inset
11568
11569
11570 \begin_inset Formula $\raisebox{5mm}{}$
11571 \end_inset
11572
11573 equation without space
11574 \end_layout
11575
11576 \end_inset
11577 </cell>
11578 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11579 \begin_inset Text
11580
11581 \begin_layout Plain Layout
11582 \begin_inset Formula $A{=}B$
11583 \end_inset
11584
11585
11586 \end_layout
11587
11588 \end_inset
11589 </cell>
11590 </row>
11591 </lyxtabular>
11592
11593 \end_inset
11594
11595
11596 \end_layout
11597
11598 \begin_layout Standard
11599 \noindent
11600 The command for the last formula is: 
11601 \series bold
11602 A
11603 \backslash
11604 {=
11605 \begin_inset Formula $\to$
11606 \end_inset
11607
11608 B
11609 \end_layout
11610
11611 \begin_layout Standard
11612 \begin_inset VSpace bigskip
11613 \end_inset
11614
11615 Spaces are needed for physical units, because the space between the value
11616  and the unit is the smallest one and not a normal space.
11617  For units in text, the smallest space is inserted via the menu 
11618 \family sans
11619 Insert\SpecialChar \menuseparator
11620 Formatting\SpecialChar \menuseparator
11621 Thin
11622 \begin_inset space ~
11623 \end_inset
11624
11625 Space
11626 \family default
11627  (shortcut 
11628 \begin_inset Info
11629 type  "shortcut"
11630 arg   "space-insert thin"
11631 \end_inset
11632
11633 ).
11634 \end_layout
11635
11636 \begin_layout Standard
11637 An example to visualize the difference:
11638 \end_layout
11639
11640 \begin_layout Standard
11641 \begin_inset Tabular
11642 <lyxtabular version="3" rows="2" columns="2">
11643 <features>
11644 <column alignment="left" valignment="top" width="0">
11645 <column alignment="left" valignment="top" width="0">
11646 <row>
11647 <cell alignment="center" valignment="top" usebox="none">
11648 \begin_inset Text
11649
11650 \begin_layout Plain Layout
11651 24 kW
11652 \begin_inset Formula $\cdot$
11653 \end_inset
11654
11655 h
11656 \end_layout
11657
11658 \end_inset
11659 </cell>
11660 <cell alignment="center" valignment="top" usebox="none">
11661 \begin_inset Text
11662
11663 \begin_layout Plain Layout
11664 space between value and unit
11665 \end_layout
11666
11667 \end_inset
11668 </cell>
11669 </row>
11670 <row>
11671 <cell alignment="center" valignment="top" usebox="none">
11672 \begin_inset Text
11673
11674 \begin_layout Plain Layout
11675 24
11676 \begin_inset space \thinspace{}
11677 \end_inset
11678
11679 kW
11680 \begin_inset Formula $\cdot$
11681 \end_inset
11682
11683 h
11684 \end_layout
11685
11686 \end_inset
11687 </cell>
11688 <cell alignment="center" valignment="top" usebox="none">
11689 \begin_inset Text
11690
11691 \begin_layout Plain Layout
11692 smallest space between value and unit
11693 \end_layout
11694
11695 \end_inset
11696 </cell>
11697 </row>
11698 </lyxtabular>
11699
11700 \end_inset
11701
11702
11703 \end_layout
11704
11705 \begin_layout Subsection
11706 Variable Space
11707 \begin_inset ERT
11708 status collapsed
11709
11710 \begin_layout Plain Layout
11711
11712
11713 \backslash
11714 texorpdfstring{
11715 \end_layout
11716
11717 \end_inset
11718
11719
11720 \begin_inset Foot
11721 status collapsed
11722
11723 \begin_layout Plain Layout
11724 for vertical space in formulas see 
11725 \begin_inset CommandInset ref
11726 LatexCommand ref
11727 reference "sub:Line-Separation"
11728
11729 \end_inset
11730
11731
11732 \end_layout
11733
11734 \end_inset
11735
11736
11737 \begin_inset ERT
11738 status collapsed
11739
11740 \begin_layout Plain Layout
11741
11742 }{}
11743 \end_layout
11744
11745 \end_inset
11746
11747
11748 \begin_inset Note Note
11749 status collapsed
11750
11751 \begin_layout Plain Layout
11752
11753 \backslash
11754 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
11755 \end_layout
11756
11757 \begin_layout Plain Layout
11758 More about 
11759 \backslash
11760 texorpdfstring is in section 
11761 \begin_inset CommandInset ref
11762 LatexCommand ref
11763 reference "sub:Formulas-in-Section"
11764
11765 \end_inset
11766
11767 .
11768 \end_layout
11769
11770 \end_inset
11771
11772
11773 \begin_inset CommandInset label
11774 LatexCommand label
11775 name "sub:Variable-Space"
11776
11777 \end_inset
11778
11779
11780 \begin_inset Index
11781 status collapsed
11782
11783 \begin_layout Plain Layout
11784 Space ! horizontal ! variable
11785 \end_layout
11786
11787 \end_inset
11788
11789
11790 \end_layout
11791
11792 \begin_layout Standard
11793 Space with a defined length can be inserted with the command 
11794 \series bold
11795
11796 \backslash
11797 hspace
11798 \series default
11799
11800 \begin_inset Index
11801 status collapsed
11802
11803 \begin_layout Plain Layout
11804 Commands ! H ! 
11805 \backslash
11806 hspace
11807 \end_layout
11808
11809 \end_inset
11810
11811 .
11812  Then a long 
11813 \begin_inset Quotes eld
11814 \end_inset
11815
11816
11817 \color blue
11818
11819 \begin_inset ERT
11820 status collapsed
11821
11822 \begin_layout Plain Layout
11823
11824
11825 \backslash
11826 spce 
11827 \end_layout
11828
11829 \end_inset
11830
11831
11832 \color inherit
11833
11834 \begin_inset Quotes erd
11835 \end_inset
11836
11837  appears.
11838  The length can be specified by left-clicking on the 
11839 \begin_inset Quotes eld
11840 \end_inset
11841
11842
11843 \color blue
11844
11845 \begin_inset ERT
11846 status collapsed
11847
11848 \begin_layout Plain Layout
11849
11850
11851 \backslash
11852 spce 
11853 \end_layout
11854
11855 \end_inset
11856
11857
11858 \color inherit
11859
11860 \begin_inset Quotes erd
11861 \end_inset
11862
11863 .
11864  The length may also be negative.
11865  To insert so many space that the formula uses all available space, the
11866  command 
11867 \series bold
11868
11869 \backslash
11870 hfill
11871 \series default
11872
11873 \begin_inset Index
11874 status collapsed
11875
11876 \begin_layout Plain Layout
11877 Commands ! H ! 
11878 \backslash
11879 hfill
11880 \end_layout
11881
11882 \end_inset
11883
11884  is used.
11885 \end_layout
11886
11887 \begin_layout Standard
11888 \begin_inset VSpace -1mm
11889 \end_inset
11890
11891
11892 \end_layout
11893
11894 \begin_layout Standard
11895 \align center
11896 \begin_inset Tabular
11897 <lyxtabular version="3" rows="4" columns="2">
11898 <features>
11899 <column alignment="center" valignment="top" width="0">
11900 <column alignment="center" valignment="top" width="0">
11901 <row>
11902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11903 \begin_inset Text
11904
11905 \begin_layout Plain Layout
11906 Command (
11907 \backslash
11908 hspace length)
11909 \end_layout
11910
11911 \end_inset
11912 </cell>
11913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11914 \begin_inset Text
11915
11916 \begin_layout Plain Layout
11917 Result
11918 \end_layout
11919
11920 \end_inset
11921 </cell>
11922 </row>
11923 <row>
11924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11925 \begin_inset Text
11926
11927 \begin_layout Plain Layout
11928 A=B
11929 \backslash
11930 hspace
11931 \begin_inset ERT
11932 status collapsed
11933
11934 \begin_layout Plain Layout
11935
11936
11937 \backslash
11938 spce 
11939 \end_layout
11940
11941 \end_inset
11942
11943
11944 \begin_inset Formula $\to$
11945 \end_inset
11946
11947 A
11948 \backslash
11949 not=C (3
11950 \begin_inset space \thinspace{}
11951 \end_inset
11952
11953 cm)
11954 \end_layout
11955
11956 \end_inset
11957 </cell>
11958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11959 \begin_inset Text
11960
11961 \begin_layout Plain Layout
11962 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
11963 \end_inset
11964
11965
11966 \end_layout
11967
11968 \end_inset
11969 </cell>
11970 </row>
11971 <row>
11972 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11973 \begin_inset Text
11974
11975 \begin_layout Plain Layout
11976 A
11977 \backslash
11978 hspace
11979 \begin_inset ERT
11980 status collapsed
11981
11982 \begin_layout Plain Layout
11983
11984
11985 \backslash
11986 spce 
11987 \end_layout
11988
11989 \end_inset
11990
11991
11992 \begin_inset Formula $\to$
11993 \end_inset
11994
11995 A
11996 \backslash
11997 not=A (-1
11998 \begin_inset space \thinspace{}
11999 \end_inset
12000
12001 mm)
12002 \end_layout
12003
12004 \end_inset
12005 </cell>
12006 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12007 \begin_inset Text
12008
12009 \begin_layout Plain Layout
12010 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12011 \end_inset
12012
12013
12014 \end_layout
12015
12016 \end_inset
12017 </cell>
12018 </row>
12019 <row>
12020 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12021 \begin_inset Text
12022
12023 \begin_layout Plain Layout
12024 A=A
12025 \backslash
12026 hfill
12027 \begin_inset ERT
12028 status collapsed
12029
12030 \begin_layout Plain Layout
12031
12032
12033 \backslash
12034 spce 
12035 \end_layout
12036
12037 \end_inset
12038
12039 B=B
12040 \end_layout
12041
12042 \end_inset
12043 </cell>
12044 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12045 \begin_inset Text
12046
12047 \begin_layout Plain Layout
12048 \begin_inset Formula $A=A\hfill B=B$
12049 \end_inset
12050
12051
12052 \end_layout
12053
12054 \end_inset
12055 </cell>
12056 </row>
12057 </lyxtabular>
12058
12059 \end_inset
12060
12061
12062 \end_layout
12063
12064 \begin_layout Standard
12065 In the last example the available space is given by the longest column entry
12066  of the table.
12067  In an inline formula the space depends on the length of the line in which
12068  
12069 \series bold
12070
12071 \backslash
12072 hfill
12073 \series default
12074  is inserted.
12075  Thus, when the line uses the full width, no space will be created.
12076  
12077 \series bold
12078
12079 \backslash
12080 hfill
12081 \series default
12082  only has an effect on displayed formulas when the formula style 
12083 \series bold
12084 Indented
12085 \series default
12086  is used.
12087  (Formula styles are explained in 
12088 \begin_inset CommandInset ref
12089 LatexCommand ref
12090 reference "sec:Formula-Styles"
12091
12092 \end_inset
12093
12094 .)
12095 \end_layout
12096
12097 \begin_layout Standard
12098 Besides 
12099 \series bold
12100
12101 \backslash
12102 hfill
12103 \series default
12104 , there are the commands 
12105 \series bold
12106
12107 \backslash
12108 dotfill
12109 \series default
12110  and 
12111 \series bold
12112
12113 \backslash
12114 hrulefill
12115 \series default
12116  that fill the space with a pattern, see 
12117 \begin_inset CommandInset ref
12118 LatexCommand ref
12119 reference "sub:Ellipses"
12120
12121 \end_inset
12122
12123  for an example.
12124 \end_layout
12125
12126 \begin_layout Standard
12127 For text, variable space can be inserted via the menu 
12128 \family sans
12129 Insert\SpecialChar \menuseparator
12130 Formatting\SpecialChar \menuseparator
12131 Horizontal
12132 \begin_inset space ~
12133 \end_inset
12134
12135 Space
12136 \family default
12137 :
12138 \end_layout
12139
12140 \begin_layout Standard
12141 This is a line with
12142 \begin_inset space \hspace{}
12143 \length 2cm
12144 \end_inset
12145
12146 2
12147 \begin_inset space \thinspace{}
12148 \end_inset
12149
12150 cm space.
12151 \end_layout
12152
12153 \begin_layout Standard
12154 This is a line with
12155 \begin_inset space \hfill{}
12156 \end_inset
12157
12158 maximum space.
12159 \end_layout
12160
12161 \begin_layout Subsection
12162 Space besides inline Formulas
12163 \begin_inset Index
12164 status collapsed
12165
12166 \begin_layout Plain Layout
12167 Space ! besides inline formulas
12168 \end_layout
12169
12170 \end_inset
12171
12172
12173 \end_layout
12174
12175 \begin_layout Standard
12176 The space that surrounds inline formulas can be adjusted with the length
12177  
12178 \series bold
12179
12180 \backslash
12181 mathsurround
12182 \begin_inset Index
12183 status collapsed
12184
12185 \begin_layout Plain Layout
12186 Commands ! M ! 
12187 \backslash
12188 mathsurround
12189 \end_layout
12190
12191 \end_inset
12192
12193
12194 \series default
12195 .
12196  The value of a length is set with the command 
12197 \series bold
12198
12199 \backslash
12200 setlength
12201 \begin_inset Index
12202 status collapsed
12203
12204 \begin_layout Plain Layout
12205 Commands ! S ! 
12206 \backslash
12207 setlength
12208 \end_layout
12209
12210 \end_inset
12211
12212
12213 \series default
12214  that has the following scheme:
12215 \end_layout
12216
12217 \begin_layout Standard
12218
12219 \series bold
12220
12221 \backslash
12222 setlength{length name}{value}
12223 \end_layout
12224
12225 \begin_layout Standard
12226 To set 
12227 \series bold
12228
12229 \backslash
12230 mathsurround
12231 \series default
12232  to the value 5
12233 \begin_inset space \thinspace{}
12234 \end_inset
12235
12236 mm, the command
12237 \end_layout
12238
12239 \begin_layout Standard
12240
12241 \series bold
12242
12243 \backslash
12244 setlength{
12245 \backslash
12246 mathsurround}{5mm}
12247 \end_layout
12248
12249 \begin_layout Standard
12250 is inserted in TeX-mode.
12251  5
12252 \begin_inset space \thinspace{}
12253 \end_inset
12254
12255 mm space will now be set around all inline formulas:
12256 \begin_inset ERT
12257 status collapsed
12258
12259 \begin_layout Plain Layout
12260
12261
12262 \backslash
12263 setlength{
12264 \backslash
12265 mathsurround}{5mm}
12266 \end_layout
12267
12268 \end_inset
12269
12270
12271 \end_layout
12272
12273 \begin_layout Standard
12274 This is a line with an inline formula 
12275 \begin_inset Formula $A=B$
12276 \end_inset
12277
12278  with 5
12279 \begin_inset space \thinspace{}
12280 \end_inset
12281
12282 mm surrounding space.
12283 \begin_inset ERT
12284 status collapsed
12285
12286 \begin_layout Plain Layout
12287
12288
12289 \backslash
12290 setlength{
12291 \backslash
12292 mathsurround}{0pt}
12293 \end_layout
12294
12295 \end_inset
12296
12297
12298 \end_layout
12299
12300 \begin_layout Standard
12301 To return to the predefined value, 
12302 \series bold
12303
12304 \backslash
12305 mathsurround
12306 \series default
12307  is set to the value 0
12308 \begin_inset space \thinspace{}
12309 \end_inset
12310
12311 pt.
12312 \end_layout
12313
12314 \begin_layout Section
12315 Boxes and Frames
12316 \begin_inset Index
12317 status collapsed
12318
12319 \begin_layout Plain Layout
12320 Boxes
12321 \end_layout
12322
12323 \end_inset
12324
12325
12326 \begin_inset Index
12327 status collapsed
12328
12329 \begin_layout Plain Layout
12330 Frames | see
12331 \begin_inset ERT
12332 status collapsed
12333
12334 \begin_layout Plain Layout
12335
12336 {
12337 \end_layout
12338
12339 \end_inset
12340
12341 Boxes
12342 \begin_inset ERT
12343 status collapsed
12344
12345 \begin_layout Plain Layout
12346
12347 }
12348 \end_layout
12349
12350 \end_inset
12351
12352
12353 \end_layout
12354
12355 \end_inset
12356
12357
12358 \end_layout
12359
12360 \begin_layout Standard
12361 Boxes for text are described in chapter 
12362 \family typewriter
12363 Boxes
12364 \family default
12365  in the 
12366 \family typewriter
12367 Embedded
12368 \begin_inset space ~
12369 \end_inset
12370
12371 Objects
12372 \family default
12373  manual.
12374 \end_layout
12375
12376 \begin_layout Subsection
12377 Boxes with Frame
12378 \begin_inset CommandInset label
12379 LatexCommand label
12380 name "sub:Boxes-with-Frame"
12381
12382 \end_inset
12383
12384
12385 \begin_inset Index
12386 status collapsed
12387
12388 \begin_layout Plain Layout
12389 Boxes ! with frame
12390 \end_layout
12391
12392 \end_inset
12393
12394
12395 \end_layout
12396
12397 \begin_layout Standard
12398 It is possible to frame formulas or parts of it with the commands 
12399 \series bold
12400
12401 \backslash
12402 fbox
12403 \series default
12404
12405 \begin_inset Index
12406 status collapsed
12407
12408 \begin_layout Plain Layout
12409 Commands ! F ! 
12410 \backslash
12411 fbox
12412 \end_layout
12413
12414 \end_inset
12415
12416  and 
12417 \series bold
12418
12419 \backslash
12420 boxed
12421 \series default
12422
12423 \begin_inset Index
12424 status collapsed
12425
12426 \begin_layout Plain Layout
12427 Commands ! B ! 
12428 \backslash
12429 boxed
12430 \end_layout
12431
12432 \end_inset
12433
12434 .
12435 \end_layout
12436
12437 \begin_layout Standard
12438 When one of these commands is inserted to a formula, a blue box appears
12439  within a frame to enter formula parts.
12440  For 
12441 \series bold
12442
12443 \backslash
12444 fbox
12445 \series default
12446  an additional formula has to be created by 
12447 \family sans
12448 Ctrl+M
12449 \family default
12450  within this box
12451 \begin_inset Foot
12452 status collapsed
12453
12454 \begin_layout Plain Layout
12455 Due to a bug in LyX it is not possible to create a new formula with 
12456 \family sans
12457 Ctrl+M
12458 \family default
12459 , see 
12460 \begin_inset CommandInset href
12461 LatexCommand href
12462 name "LyX-bug #1435"
12463 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
12464
12465 \end_inset
12466
12467 .
12468 \end_layout
12469
12470 \end_inset
12471
12472 , because the box content will otherwise be treated as mathematical text.
12473  When 
12474 \series bold
12475
12476 \backslash
12477 boxed
12478 \series default
12479  is used, a new formula is automatically created inside the frame.
12480 \end_layout
12481
12482 \begin_layout Standard
12483 The command 
12484 \series bold
12485
12486 \backslash
12487 fbox
12488 \series default
12489  is not suitable to frame displayed formulas, because the formula will always
12490  be set in the size of the text.
12491  
12492 \series bold
12493
12494 \backslash
12495 boxed
12496 \series default
12497  is in contrary not suitable to frame inline formulas, because the formula
12498  will always be set in the size of a displayed formula.
12499 \end_layout
12500
12501 \begin_layout Standard
12502 As extension to 
12503 \series bold
12504
12505 \backslash
12506 fbox
12507 \series default
12508  there is the command 
12509 \series bold
12510
12511 \backslash
12512 framebox
12513 \series default
12514
12515 \begin_inset Index
12516 status collapsed
12517
12518 \begin_layout Plain Layout
12519 Commands ! F ! 
12520 \backslash
12521 framebox
12522 \end_layout
12523
12524 \end_inset
12525
12526  where additionally the frame width and the alignment can be specified.
12527  
12528 \series bold
12529
12530 \backslash
12531 framebox
12532 \series default
12533  is used in the following scheme:
12534 \end_layout
12535
12536 \begin_layout Standard
12537
12538 \series bold
12539
12540 \backslash
12541 framebox[frame width][position]{box content}
12542 \end_layout
12543
12544 \begin_layout Standard
12545 The position can either be 
12546 \emph on
12547 l
12548 \emph default
12549  or 
12550 \emph on
12551 r
12552 \emph default
12553 .
12554  
12555 \emph on
12556 l
12557 \emph default
12558  left aligns, 
12559 \emph on
12560 r
12561 \emph default
12562  right aligns the formula in the box.
12563  When no position is given, the formula will be centered.
12564 \begin_inset Newline newline
12565 \end_inset
12566
12567 Is no width given, also no position can be given.
12568  In this case the frame width is adjusted to the box content like for 
12569 \series bold
12570
12571 \backslash
12572 fbox
12573 \series default
12574 .
12575 \end_layout
12576
12577 \begin_layout Standard
12578 When the command 
12579 \series bold
12580
12581 \backslash
12582 framebox
12583 \series default
12584  is inserted, a box appears containing three blue boxes.
12585  The first two boxes are surrounded by brackets and denote the two optional
12586  arguments.
12587  The third box is for formula parts like for 
12588 \series bold
12589
12590 \backslash
12591 fbox
12592 \series default
12593 .
12594 \end_layout
12595
12596 \begin_layout Standard
12597 \align center
12598 \begin_inset Note Note
12599 status open
12600
12601 \begin_layout Plain Layout
12602 The table has been set into a minipage to make the footnote appearing.
12603  Otherwise the footnote text would not be displayed.
12604 \end_layout
12605
12606 \end_inset
12607
12608
12609 \begin_inset Box Frameless
12610 position "c"
12611 hor_pos "c"
12612 has_inner_box 1
12613 inner_pos "c"
12614 use_parbox 0
12615 width "100col%"
12616 special "none"
12617 height "1in"
12618 height_special "totalheight"
12619 status open
12620
12621 \begin_layout Plain Layout
12622 \align center
12623 \begin_inset Tabular
12624 <lyxtabular version="3" rows="5" columns="2">
12625 <features>
12626 <column alignment="center" valignment="top" width="0">
12627 <column alignment="center" valignment="top" width="0">
12628 <row>
12629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12630 \begin_inset Text
12631
12632 \begin_layout Plain Layout
12633 Command
12634 \begin_inset Foot
12635 status collapsed
12636
12637 \begin_layout Plain Layout
12638 Due to a bug in LyX it is not possible to create a new formula with 
12639 \family sans
12640 Ctrl+m
12641 \family default
12642 , see 
12643 \begin_inset CommandInset href
12644 LatexCommand href
12645 name "LyX-bug #1435"
12646 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
12647
12648 \end_inset
12649
12650 .
12651 \end_layout
12652
12653 \end_inset
12654
12655
12656 \end_layout
12657
12658 \end_inset
12659 </cell>
12660 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12661 \begin_inset Text
12662
12663 \begin_layout Plain Layout
12664 Result
12665 \begin_inset Note Note
12666 status collapsed
12667
12668 \begin_layout Plain Layout
12669
12670 \series bold
12671
12672 \backslash
12673 raisebox
12674 \series default
12675  is only used as spacer.
12676 \end_layout
12677
12678 \end_inset
12679
12680
12681 \end_layout
12682
12683 \end_inset
12684 </cell>
12685 </row>
12686 <row>
12687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12688 \begin_inset Text
12689
12690 \begin_layout Plain Layout
12691
12692 \backslash
12693 fbox
12694 \begin_inset ERT
12695 status collapsed
12696
12697 \begin_layout Plain Layout
12698
12699
12700 \backslash
12701 spce 
12702 \end_layout
12703
12704 \end_inset
12705
12706
12707 \family sans
12708 Ctrl+M
12709 \family default
12710  
12711 \backslash
12712 int
12713 \begin_inset ERT
12714 status collapsed
12715
12716 \begin_layout Plain Layout
12717
12718
12719 \backslash
12720 spce 
12721 \end_layout
12722
12723 \end_inset
12724
12725 A=B
12726 \end_layout
12727
12728 \end_inset
12729 </cell>
12730 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12731 \begin_inset Text
12732
12733 \begin_layout Plain Layout
12734 \begin_inset Formula $\raisebox{6mm}{}\fbox{$\int A=B$}\raisebox{-4mm}{}$
12735 \end_inset
12736
12737
12738 \end_layout
12739
12740 \end_inset
12741 </cell>
12742 </row>
12743 <row>
12744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12745 \begin_inset Text
12746
12747 \begin_layout Plain Layout
12748
12749 \backslash
12750 boxed
12751 \begin_inset ERT
12752 status collapsed
12753
12754 \begin_layout Plain Layout
12755
12756
12757 \backslash
12758 spce 
12759 \end_layout
12760
12761 \end_inset
12762
12763
12764 \backslash
12765 int
12766 \begin_inset ERT
12767 status collapsed
12768
12769 \begin_layout Plain Layout
12770
12771
12772 \backslash
12773 spce 
12774 \end_layout
12775
12776 \end_inset
12777
12778 A=B
12779 \end_layout
12780
12781 \end_inset
12782 </cell>
12783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12784 \begin_inset Text
12785
12786 \begin_layout Plain Layout
12787 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12788 \end_inset
12789
12790
12791 \end_layout
12792
12793 \end_inset
12794 </cell>
12795 </row>
12796 <row>
12797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12798 \begin_inset Text
12799
12800 \begin_layout Plain Layout
12801 A+
12802 \backslash
12803 fbox
12804 \begin_inset ERT
12805 status collapsed
12806
12807 \begin_layout Plain Layout
12808
12809
12810 \backslash
12811 spce 
12812 \end_layout
12813
12814 \end_inset
12815
12816 B
12817 \end_layout
12818
12819 \end_inset
12820 </cell>
12821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12822 \begin_inset Text
12823
12824 \begin_layout Plain Layout
12825 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12826 \end_inset
12827
12828
12829 \end_layout
12830
12831 \end_inset
12832 </cell>
12833 </row>
12834 <row>
12835 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12836 \begin_inset Text
12837
12838 \begin_layout Plain Layout
12839
12840 \backslash
12841 framebox
12842 \begin_inset ERT
12843 status collapsed
12844
12845 \begin_layout Plain Layout
12846
12847
12848 \backslash
12849 spce 
12850 \end_layout
12851
12852 \end_inset
12853
12854 20mm
12855 \begin_inset Formula $\to$
12856 \end_inset
12857
12858
12859 \begin_inset Formula $\to$
12860 \end_inset
12861
12862
12863 \family sans
12864 Ctrl+M
12865 \family default
12866  
12867 \backslash
12868 frac
12869 \begin_inset ERT
12870 status collapsed
12871
12872 \begin_layout Plain Layout
12873
12874
12875 \backslash
12876 spce 
12877 \end_layout
12878
12879 \end_inset
12880
12881 A
12882 \begin_inset Formula $\downarrow$
12883 \end_inset
12884
12885 B
12886 \end_layout
12887
12888 \end_inset
12889 </cell>
12890 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12891 \begin_inset Text
12892
12893 \begin_layout Plain Layout
12894 \begin_inset Formula $\raisebox{6mm}{}$
12895 \end_inset
12896
12897
12898 \begin_inset Formula $\framebox[20mm][]{$\frac{A}{B}$}$
12899 \end_inset
12900
12901
12902 \begin_inset Formula $\raisebox{-4mm}{}$
12903 \end_inset
12904
12905
12906 \end_layout
12907
12908 \end_inset
12909 </cell>
12910 </row>
12911 </lyxtabular>
12912
12913 \end_inset
12914
12915
12916 \end_layout
12917
12918 \end_inset
12919
12920
12921 \end_layout
12922
12923 \begin_layout Standard
12924 The frame thickness can also be adjusted.
12925  To do this the following commands have to be inserted in TeX-mode before
12926  the formula
12927 \end_layout
12928
12929 \begin_layout Standard
12930
12931 \series bold
12932
12933 \backslash
12934 fboxrule
12935 \series default
12936  
12937 \series bold
12938
12939 \begin_inset Quotes eld
12940 \end_inset
12941
12942 thickness
12943 \begin_inset Quotes erd
12944 \end_inset
12945
12946
12947 \series default
12948  
12949 \series bold
12950
12951 \backslash
12952 fboxsep
12953 \series default
12954  
12955 \series bold
12956
12957 \begin_inset Quotes eld
12958 \end_inset
12959
12960 distance
12961 \begin_inset Quotes erd
12962 \end_inset
12963
12964
12965 \end_layout
12966
12967 \begin_layout Standard
12968 \begin_inset Quotes eld
12969 \end_inset
12970
12971 distance
12972 \begin_inset Quotes erd
12973 \end_inset
12974
12975  specifies the minimal distance between the frame and the first character
12976  in the box.
12977  An example for this is the following framed formula:
12978 \begin_inset ERT
12979 status collapsed
12980
12981 \begin_layout Plain Layout
12982
12983
12984 \backslash
12985 fboxrule 2mm 
12986 \backslash
12987 fboxsep 3mm
12988 \end_layout
12989
12990 \end_inset
12991
12992
12993 \begin_inset Formula \[
12994 \boxed{A+B=C}\]
12995
12996 \end_inset
12997
12998 Before this formula the commands
12999 \end_layout
13000
13001 \begin_layout Standard
13002
13003 \series bold
13004
13005 \backslash
13006 fboxrule
13007 \series default
13008  
13009 \series bold
13010 2mm
13011 \series default
13012  
13013 \series bold
13014
13015 \backslash
13016 fboxsep
13017 \series default
13018  
13019 \series bold
13020 3mm
13021 \end_layout
13022
13023 \begin_layout Standard
13024 were inserted in TeX-mode.
13025  The given values are used for all following boxes.
13026 \end_layout
13027
13028 \begin_layout Standard
13029 To return to the standard frame size, the command
13030 \end_layout
13031
13032 \begin_layout Standard
13033
13034 \series bold
13035
13036 \backslash
13037 fboxrule
13038 \series default
13039  
13040 \series bold
13041 0.4pt
13042 \series default
13043  
13044 \series bold
13045
13046 \backslash
13047 fboxsep
13048 \series default
13049  
13050 \series bold
13051 3pt
13052 \series default
13053
13054 \begin_inset ERT
13055 status collapsed
13056
13057 \begin_layout Plain Layout
13058
13059
13060 \backslash
13061 fboxrule 0.4pt 
13062 \backslash
13063 fboxsep 3pt
13064 \end_layout
13065
13066 \end_inset
13067
13068
13069 \end_layout
13070
13071 \begin_layout Standard
13072 is inserted in TeX-mode before the next formula.
13073 \end_layout
13074
13075 \begin_layout Subsection
13076 Boxes without Frame
13077 \begin_inset CommandInset label
13078 LatexCommand label
13079 name "sub:Boxes-without-Frame"
13080
13081 \end_inset
13082
13083
13084 \begin_inset Index
13085 status collapsed
13086
13087 \begin_layout Plain Layout
13088 Boxes ! without frame
13089 \end_layout
13090
13091 \end_inset
13092
13093
13094 \end_layout
13095
13096 \begin_layout Standard
13097 For boxes without a frame there are the following box commands: 
13098 \series bold
13099
13100 \backslash
13101 mbox
13102 \series default
13103
13104 \begin_inset Index
13105 status collapsed
13106
13107 \begin_layout Plain Layout
13108 Commands ! M ! 
13109 \backslash
13110 mbox
13111 \end_layout
13112
13113 \end_inset
13114
13115
13116 \series bold
13117
13118 \backslash
13119 makebox
13120 \series default
13121
13122 \begin_inset Index
13123 status collapsed
13124
13125 \begin_layout Plain Layout
13126 Commands ! M ! 
13127 \backslash
13128 makebox
13129 \end_layout
13130
13131 \end_inset
13132
13133 , and 
13134 \series bold
13135
13136 \backslash
13137 raisebox
13138 \series default
13139
13140 \begin_inset Index
13141 status collapsed
13142
13143 \begin_layout Plain Layout
13144 Commands ! R ! 
13145 \backslash
13146 raisebox
13147 \end_layout
13148
13149 \end_inset
13150
13151
13152 \end_layout
13153
13154 \begin_layout Standard
13155 With 
13156 \series bold
13157
13158 \backslash
13159 raisebox
13160 \series default
13161  a box can be super- or subscripted.
13162  But in contrary to normal super- and subscripting, the characters in the
13163  box keep their font size.
13164  
13165 \series bold
13166
13167 \backslash
13168 raisebox
13169 \series default
13170  is used in the following scheme:
13171 \end_layout
13172
13173 \begin_layout Standard
13174
13175 \series bold
13176
13177 \backslash
13178 raisebox{height}{box content}
13179 \end_layout
13180
13181 \begin_layout Standard
13182 When the box should contain a formula, an extra formula is needed like for
13183  
13184 \series bold
13185
13186 \backslash
13187 fbox
13188 \series default
13189 .
13190 \end_layout
13191
13192 \begin_layout Standard
13193 \align center
13194 \begin_inset Tabular
13195 <lyxtabular version="3" rows="4" columns="2">
13196 <features>
13197 <column alignment="center" valignment="top" width="0">
13198 <column alignment="center" valignment="top" width="0">
13199 <row>
13200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13201 \begin_inset Text
13202
13203 \begin_layout Plain Layout
13204 Command
13205 \end_layout
13206
13207 \end_inset
13208 </cell>
13209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13210 \begin_inset Text
13211
13212 \begin_layout Plain Layout
13213 Result
13214 \end_layout
13215
13216 \end_inset
13217 </cell>
13218 </row>
13219 <row>
13220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13221 \begin_inset Text
13222
13223 \begin_layout Plain Layout
13224 H
13225 \backslash
13226 raisebox{2mm
13227 \begin_inset Formula $\to$
13228 \end_inset
13229
13230
13231 \backslash
13232 {al
13233 \begin_inset Formula $\to$
13234 \end_inset
13235
13236  lo
13237 \end_layout
13238
13239 \end_inset
13240 </cell>
13241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13242 \begin_inset Text
13243
13244 \begin_layout Plain Layout
13245 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13246 \end_inset
13247
13248
13249 \end_layout
13250
13251 \end_inset
13252 </cell>
13253 </row>
13254 <row>
13255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13256 \begin_inset Text
13257
13258 \begin_layout Plain Layout
13259 H
13260 \backslash
13261 raisebox{-2mm
13262 \begin_inset Formula $\to$
13263 \end_inset
13264
13265
13266 \backslash
13267 {al
13268 \begin_inset Formula $\to$
13269 \end_inset
13270
13271 lo
13272 \end_layout
13273
13274 \end_inset
13275 </cell>
13276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13277 \begin_inset Text
13278
13279 \begin_layout Plain Layout
13280 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13281 \end_inset
13282
13283
13284 \end_layout
13285
13286 \end_inset
13287 </cell>
13288 </row>
13289 <row>
13290 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13291 \begin_inset Text
13292
13293 \begin_layout Plain Layout
13294 A=
13295 \backslash
13296 raisebox{-2mm
13297 \begin_inset Formula $\to$
13298 \end_inset
13299
13300
13301 \backslash
13302 {
13303 \family sans
13304 Ctrl+M
13305 \family default
13306  
13307 \backslash
13308 sqrt
13309 \begin_inset ERT
13310 status collapsed
13311
13312 \begin_layout Plain Layout
13313
13314
13315 \backslash
13316 spce 
13317 \end_layout
13318
13319 \end_inset
13320
13321
13322 \end_layout
13323
13324 \end_inset
13325 </cell>
13326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13327 \begin_inset Text
13328
13329 \begin_layout Plain Layout
13330 \begin_inset ERT
13331 status collapsed
13332
13333 \begin_layout Plain Layout
13334
13335 $A=
13336 \backslash
13337 raisebox{-2mm}{$
13338 \backslash
13339 sqrt{B}$}$
13340 \end_layout
13341
13342 \end_inset
13343
13344
13345 \end_layout
13346
13347 \end_inset
13348 </cell>
13349 </row>
13350 </lyxtabular>
13351
13352 \end_inset
13353
13354
13355 \end_layout
13356
13357 \begin_layout Standard
13358 The last formula can currently only be created using TeX-mode because LyX
13359  inserts a box instead of the needed extra formula.
13360 \begin_inset Foot
13361 status collapsed
13362
13363 \begin_layout Plain Layout
13364 see 
13365 \begin_inset CommandInset href
13366 LatexCommand href
13367 name "LyX-bug #1435"
13368 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
13369
13370 \end_inset
13371
13372
13373 \end_layout
13374
13375 \end_inset
13376
13377
13378 \end_layout
13379
13380 \begin_layout Standard
13381 The command 
13382 \series bold
13383
13384 \backslash
13385 mbox
13386 \series default
13387  is equivalent to 
13388 \series bold
13389
13390 \backslash
13391 fbox
13392 \series default
13393  and 
13394 \series bold
13395
13396 \backslash
13397 makebox
13398 \series default
13399  is equivalent to 
13400 \series bold
13401
13402 \backslash
13403 framebox
13404 \series default
13405 , with the difference that there is no frame.
13406 \end_layout
13407
13408 \begin_layout Subsection
13409 Colored Boxes
13410 \begin_inset CommandInset label
13411 LatexCommand label
13412 name "sub:Colored-Boxes"
13413
13414 \end_inset
13415
13416
13417 \begin_inset Index
13418 status collapsed
13419
13420 \begin_layout Plain Layout
13421 Boxes ! colored
13422 \end_layout
13423
13424 \end_inset
13425
13426
13427 \end_layout
13428
13429 \begin_layout Standard
13430 To be able to use all commands explained in this section, the LaTeX-package
13431  
13432 \series bold
13433 color
13434 \series default
13435
13436 \begin_inset Foot
13437 status collapsed
13438
13439 \begin_layout Plain Layout
13440 The LaTeX-package 
13441 \series bold
13442 color
13443 \series default
13444  is part of every LaTeX standard installation.
13445 \end_layout
13446
13447 \end_inset
13448
13449
13450 \begin_inset Index
13451 status collapsed
13452
13453 \begin_layout Plain Layout
13454 Packages ! color
13455 \end_layout
13456
13457 \end_inset
13458
13459  has to be loaded in the LaTeX-preamble with the line
13460 \begin_inset Foot
13461 status collapsed
13462
13463 \begin_layout Plain Layout
13464 When text is colored somewhere in the document with a predefined color,
13465  LyX loads the LaTeX-package 
13466 \series bold
13467 color
13468 \series default
13469  automatically.
13470  Thus it is possible that the package is loaded twice, but this doesn't
13471  arise problems.
13472 \end_layout
13473
13474 \end_inset
13475
13476
13477 \begin_inset Note Note
13478 status collapsed
13479
13480 \begin_layout Plain Layout
13481 To avoid that the package is loaded twice, a macro was inserted to the LaTeX-pre
13482 amble.
13483 \end_layout
13484
13485 \end_inset
13486
13487
13488 \end_layout
13489
13490 \begin_layout Standard
13491
13492 \series bold
13493
13494 \backslash
13495 usepackage{color}
13496 \end_layout
13497
13498 \begin_layout Standard
13499 \begin_inset VSpace medskip
13500 \end_inset
13501
13502 To color boxes, the command 
13503 \series bold
13504
13505 \backslash
13506 colorbox
13507 \series default
13508
13509 \begin_inset Index
13510 status collapsed
13511
13512 \begin_layout Plain Layout
13513 Commands ! C ! 
13514 \backslash
13515 colorbox
13516 \end_layout
13517
13518 \end_inset
13519
13520  is used in the following scheme:
13521 \end_layout
13522
13523 \begin_layout Standard
13524
13525 \series bold
13526
13527 \backslash
13528 colorbox{color}{box content}
13529 \end_layout
13530
13531 \begin_layout Standard
13532 The box content can also be a box and a 
13533 \series bold
13534
13535 \backslash
13536 colorbox
13537 \series default
13538  can also be part of another box (see the 2nd and 3rd example).
13539  When the box should contain a formula, an extra formula has to be created,
13540  the same as for 
13541 \series bold
13542
13543 \backslash
13544 fbox
13545 \series default
13546 .
13547 \begin_inset Foot
13548 status collapsed
13549
13550 \begin_layout Plain Layout
13551 This also applies for the command 
13552 \series bold
13553
13554 \backslash
13555 fcolorbox
13556 \series default
13557 .
13558  Thereby note 
13559 \begin_inset CommandInset href
13560 LatexCommand href
13561 name "LyX-bug #1435"
13562 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
13563
13564 \end_inset
13565
13566 .
13567 \end_layout
13568
13569 \end_inset
13570
13571
13572 \end_layout
13573
13574 \begin_layout Standard
13575 One of the following predefined colors can be chosen:
13576 \end_layout
13577
13578 \begin_layout Standard
13579
13580 \series bold
13581 black
13582 \series default
13583
13584 \series bold
13585 blue
13586 \series default
13587
13588 \series bold
13589 cyan
13590 \series default
13591
13592 \series bold
13593 green
13594 \series default
13595
13596 \series bold
13597 magenta
13598 \series default
13599
13600 \series bold
13601 red
13602 \series default
13603
13604 \series bold
13605 white
13606 \series default
13607 , and 
13608 \series bold
13609 yellow
13610 \end_layout
13611
13612 \begin_layout Standard
13613 \align center
13614 \begin_inset Tabular
13615 <lyxtabular version="3" rows="4" columns="2">
13616 <features>
13617 <column alignment="center" valignment="top" width="0">
13618 <column alignment="center" valignment="top" width="0">
13619 <row>
13620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13621 \begin_inset Text
13622
13623 \begin_layout Plain Layout
13624 Command
13625 \end_layout
13626
13627 \end_inset
13628 </cell>
13629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13630 \begin_inset Text
13631
13632 \begin_layout Plain Layout
13633 Result
13634 \begin_inset Note Note
13635 status collapsed
13636
13637 \begin_layout Plain Layout
13638
13639 \series bold
13640
13641 \backslash
13642 raisebox
13643 \series default
13644  is only used as spacer.
13645 \end_layout
13646
13647 \end_inset
13648
13649
13650 \end_layout
13651
13652 \end_inset
13653 </cell>
13654 </row>
13655 <row>
13656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13657 \begin_inset Text
13658
13659 \begin_layout Plain Layout
13660
13661 \backslash
13662 colorbox{yellow
13663 \begin_inset Formula $\to$
13664 \end_inset
13665
13666
13667 \backslash
13668 {A=B
13669 \end_layout
13670
13671 \end_inset
13672 </cell>
13673 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13674 \begin_inset Text
13675
13676 \begin_layout Plain Layout
13677 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13678 \end_inset
13679
13680
13681 \end_layout
13682
13683 \end_inset
13684 </cell>
13685 </row>
13686 <row>
13687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13688 \begin_inset Text
13689
13690 \begin_layout Plain Layout
13691
13692 \backslash
13693 colorbox{green
13694 \begin_inset Formula $\to$
13695 \end_inset
13696
13697
13698 \backslash
13699 {
13700 \backslash
13701 fbox
13702 \begin_inset ERT
13703 status collapsed
13704
13705 \begin_layout Plain Layout
13706
13707
13708 \backslash
13709 spce 
13710 \end_layout
13711
13712 \end_inset
13713
13714 A=B
13715 \end_layout
13716
13717 \end_inset
13718 </cell>
13719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13720 \begin_inset Text
13721
13722 \begin_layout Plain Layout
13723 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13724 \end_inset
13725
13726
13727 \end_layout
13728
13729 \end_inset
13730 </cell>
13731 </row>
13732 <row>
13733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13734 \begin_inset Text
13735
13736 \begin_layout Plain Layout
13737
13738 \backslash
13739 fbox
13740 \begin_inset ERT
13741 status collapsed
13742
13743 \begin_layout Plain Layout
13744
13745
13746 \backslash
13747 spce 
13748 \end_layout
13749
13750 \end_inset
13751
13752
13753 \backslash
13754 colorbox{green
13755 \begin_inset Formula $\to$
13756 \end_inset
13757
13758
13759 \backslash
13760 {A=B
13761 \end_layout
13762
13763 \end_inset
13764 </cell>
13765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13766 \begin_inset Text
13767
13768 \begin_layout Plain Layout
13769 \begin_inset Formula $\raisebox{6mm}{}\fbox{\colorbox{green}{A=B}}\raisebox{-3mm}{}$
13770 \end_inset
13771
13772
13773 \end_layout
13774
13775 \end_inset
13776 </cell>
13777 </row>
13778 </lyxtabular>
13779
13780 \end_inset
13781
13782
13783 \end_layout
13784
13785 \begin_layout Standard
13786
13787 \series bold
13788
13789 \backslash
13790 colorbox
13791 \series default
13792  only colors the box but not the characters in the box.
13793  To color all characters, the whole formula is highlighted and the wanted
13794  color is chosen in the 
13795 \family sans
13796 Text
13797 \begin_inset space ~
13798 \end_inset
13799
13800 Style
13801 \family default
13802  dialog.
13803  The dialog can be called with the toolbar button 
13804 \begin_inset Graphics
13805         filename ../images/dialog-show_character.png
13806         scale 85
13807
13808 \end_inset
13809
13810  or the menu 
13811 \family sans
13812 Edit\SpecialChar \menuseparator
13813 Text
13814 \begin_inset space ~
13815 \end_inset
13816
13817 Style\SpecialChar \menuseparator
13818 Customized
13819 \family default
13820 .
13821  The formula number has then the same color as the formula.
13822  When the formula number should get another color than the formula characters,
13823  the color must be changed within the formula.
13824 \end_layout
13825
13826 \begin_layout Standard
13827 An example:
13828 \end_layout
13829
13830 \begin_layout Standard
13831
13832 \color red
13833 \begin_inset Formula \begin{equation}
13834 \int A=B\label{eq:red}\end{equation}
13835
13836 \end_inset
13837
13838
13839 \color green
13840
13841 \begin_inset Formula \begin{equation}
13842 \textcolor{red}{\int A=B}\label{eq:redgreen}\end{equation}
13843
13844 \end_inset
13845
13846
13847 \end_layout
13848
13849 \begin_layout Standard
13850 Formula 
13851 \begin_inset CommandInset ref
13852 LatexCommand eqref
13853 reference "eq:red"
13854
13855 \end_inset
13856
13857  is completely colored red.
13858 \begin_inset Newline newline
13859 \end_inset
13860
13861 Formula 
13862 \begin_inset CommandInset ref
13863 LatexCommand eqref
13864 reference "eq:redgreen"
13865
13866 \end_inset
13867
13868  was first completely colored green to set the color for the formula number.
13869  Subsequently the formula characters were colored red.
13870 \end_layout
13871
13872 \begin_layout Standard
13873 \begin_inset VSpace bigskip
13874 \end_inset
13875
13876 To color the frame different than the rest of the box, the command 
13877 \series bold
13878
13879 \backslash
13880 fcolorbox
13881 \series default
13882
13883 \begin_inset Index
13884 status collapsed
13885
13886 \begin_layout Plain Layout
13887 Commands ! F ! 
13888 \backslash
13889 fcolorbox
13890 \end_layout
13891
13892 \end_inset
13893
13894  is used in the following scheme:
13895 \end_layout
13896
13897 \begin_layout Standard
13898
13899 \series bold
13900
13901 \backslash
13902 fcolorbox{frame color}{color}{box content}
13903 \end_layout
13904
13905 \begin_layout Standard
13906 So 
13907 \series bold
13908
13909 \backslash
13910 fcolorbox
13911 \series default
13912  is an extension of the command 
13913 \series bold
13914
13915 \backslash
13916 colorbox
13917 \series default
13918 .
13919  The frame width is set, like for 
13920 \series bold
13921
13922 \backslash
13923 framebox
13924 \series default
13925 , with 
13926 \series bold
13927
13928 \backslash
13929 fboxrule
13930 \series default
13931  and 
13932 \series bold
13933
13934 \backslash
13935 fboxsep
13936 \series default
13937 .
13938  An example:
13939 \begin_inset ERT
13940 status collapsed
13941
13942 \begin_layout Plain Layout
13943
13944
13945 \backslash
13946 fboxrule 1mm 
13947 \backslash
13948 fboxsep 1mm
13949 \end_layout
13950
13951 \end_inset
13952
13953
13954 \begin_inset Formula \[
13955 \fcolorbox{cyan}{magenta}{A=B}\]
13956
13957 \end_inset
13958
13959
13960 \begin_inset ERT
13961 status collapsed
13962
13963 \begin_layout Plain Layout
13964
13965
13966 \backslash
13967 fboxrule 0.4pt 
13968 \backslash
13969 fboxsep 3pt
13970 \end_layout
13971
13972 \end_inset
13973
13974
13975 \end_layout
13976
13977 \begin_layout Standard
13978 This formula was created with the command
13979 \begin_inset Newline newline
13980 \end_inset
13981
13982
13983 \series bold
13984
13985 \backslash
13986 fcolorbox{cyan
13987 \begin_inset Formula $\to$
13988 \end_inset
13989
13990
13991 \backslash
13992 {magenta
13993 \begin_inset Formula $\to$
13994 \end_inset
13995
13996
13997 \backslash
13998 {A=B
13999 \series default
14000 .
14001 \end_layout
14002
14003 \begin_layout Standard
14004 \begin_inset VSpace bigskip
14005 \end_inset
14006
14007 To use other colors than the predefined ones, they have to be defined first.
14008 \end_layout
14009
14010 \begin_layout Standard
14011 One can for example define the color 
14012 \begin_inset Quotes eld
14013 \end_inset
14014
14015
14016 \series bold
14017 darkgreen
14018 \series default
14019
14020 \begin_inset Quotes erd
14021 \end_inset
14022
14023  with the LaTeX-preamble line:
14024 \end_layout
14025
14026 \begin_layout Standard
14027
14028 \series bold
14029
14030 \backslash
14031 definecolor{darkgreen}{cmyk}{0.5,
14032 \series default
14033  
14034 \series bold
14035 0,
14036 \series default
14037  
14038 \series bold
14039 1,
14040 \series default
14041  
14042 \series bold
14043 0.5}
14044 \series default
14045
14046 \begin_inset Index
14047 status collapsed
14048
14049 \begin_layout Plain Layout
14050 Commands ! D ! 
14051 \backslash
14052 definecolor
14053 \end_layout
14054
14055 \end_inset
14056
14057
14058 \end_layout
14059
14060 \begin_layout Standard
14061
14062 \series bold
14063 cmyk
14064 \series default
14065  is the color space that denotes the colors 
14066 \series bold
14067 cyan
14068 \series default
14069
14070 \series bold
14071 magenta
14072 \series default
14073
14074 \series bold
14075 yellow
14076 \series default
14077 , and 
14078 \series bold
14079 black
14080 \series default
14081 .
14082  The four comma separated numbers are the portion factor for the corresponding
14083  colors of the color space.
14084  The factors can be in the range of 0
14085 \begin_inset space \thinspace{}
14086 \end_inset
14087
14088 -
14089 \begin_inset space \thinspace{}
14090 \end_inset
14091
14092 1.
14093  Instead of 
14094 \series bold
14095 cmyk
14096 \series default
14097  also the color space 
14098 \series bold
14099 rgb
14100 \series default
14101  can be used for definitions.
14102  
14103 \series bold
14104 rgb
14105 \series default
14106  denotes 
14107 \series bold
14108 red
14109 \series default
14110
14111 \series bold
14112 green
14113 \series default
14114 , and 
14115 \series bold
14116 blue
14117 \series default
14118 , so that there are in this case three portion factors for the corresponding
14119  colors.
14120  Furthermore there is the color space 
14121 \series bold
14122 gray
14123 \series default
14124  with one portion factor for the gray value.
14125 \end_layout
14126
14127 \begin_layout Standard
14128 As example a framed box with the new defined color 
14129 \series bold
14130 darkgreen
14131 \series default
14132  where the characters have been colored 
14133 \series bold
14134 yellow
14135 \series default
14136 :
14137 \begin_inset Formula \begin{equation}
14138 \colorbox{darkgreen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
14139
14140 \end_inset
14141
14142
14143 \end_layout
14144
14145 \begin_layout Standard
14146 Self-defined colors can also be used for text with the help of the command
14147  
14148 \series bold
14149
14150 \backslash
14151 textcolor
14152 \series default
14153 :
14154 \begin_inset Index
14155 status collapsed
14156
14157 \begin_layout Plain Layout
14158 Text ! colored
14159 \end_layout
14160
14161 \end_inset
14162
14163
14164 \end_layout
14165
14166 \begin_layout Standard
14167 \begin_inset ERT
14168 status collapsed
14169
14170 \begin_layout Plain Layout
14171
14172
14173 \backslash
14174 textcolor{darkgreen}{
14175 \end_layout
14176
14177 \end_inset
14178
14179 This sentence is 
14180 \begin_inset Quotes eld
14181 \end_inset
14182
14183 darkgreen
14184 \begin_inset Quotes erd
14185 \end_inset
14186
14187 .
14188 \begin_inset ERT
14189 status collapsed
14190
14191 \begin_layout Plain Layout
14192
14193 }
14194 \end_layout
14195
14196 \end_inset
14197
14198
14199 \end_layout
14200
14201 \begin_layout Standard
14202
14203 \series bold
14204
14205 \backslash
14206 textcolor
14207 \series default
14208
14209 \begin_inset Index
14210 status collapsed
14211
14212 \begin_layout Plain Layout
14213 Commands ! T ! 
14214 \backslash
14215 textcolor
14216 \end_layout
14217
14218 \end_inset
14219
14220  is used in the scheme 
14221 \series bold
14222
14223 \backslash
14224 textcolor{color}{characters to color}
14225 \series default
14226 .
14227 \end_layout
14228
14229 \begin_layout Subsection
14230 Paragraph Boxes
14231 \begin_inset CommandInset label
14232 LatexCommand label
14233 name "sub:Paragraph-Boxes"
14234
14235 \end_inset
14236
14237
14238 \begin_inset Index
14239 status collapsed
14240
14241 \begin_layout Plain Layout
14242 Boxes ! as paragraph
14243 \end_layout
14244
14245 \end_inset
14246
14247
14248 \end_layout
14249
14250 \begin_layout Standard
14251 A box that can contain several lines and paragraphs, a so called paragraph
14252  box (parbox), can be created with the menu 
14253 \family sans
14254 Insert\SpecialChar \menuseparator
14255 Box
14256 \family default
14257  or the toolbar button 
14258 \begin_inset Graphics
14259         filename ../images/box-insert.png
14260         scale 85
14261
14262 \end_inset
14263
14264 .
14265 \end_layout
14266
14267 \begin_layout Standard
14268 The following example shows a framed parbox in a line:
14269 \end_layout
14270
14271 \begin_layout Standard
14272 \begin_inset VSpace medskip
14273 \end_inset
14274
14275 This is a line 
14276 \begin_inset Box Boxed
14277 position "c"
14278 hor_pos "c"
14279 has_inner_box 1
14280 inner_pos "t"
14281 use_parbox 1
14282 width "5cm"
14283 special "none"
14284 height "1in"
14285 height_special "totalheight"
14286 status open
14287
14288 \begin_layout Plain Layout
14289 This is a paragraph box.
14290  It is exactly 5
14291 \begin_inset space \thinspace{}
14292 \end_inset
14293
14294 cm long and can also contain formulas: 
14295 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14296 \end_inset
14297
14298
14299 \end_layout
14300
14301 \end_inset
14302
14303  with a parbox.
14304 \end_layout
14305
14306 \begin_layout Standard
14307 \begin_inset VSpace medskip
14308 \end_inset
14309
14310
14311 \end_layout
14312
14313 \begin_layout Standard
14314 Such a box is created by right-clicking on the gray box inset.
14315  A dialog pops up showing the box properties.
14316  In our case set: 
14317 \emph on
14318 Decoration
14319 \emph default
14320 : Recangular box, 
14321 \emph on
14322 Inner Box
14323 \emph default
14324 : Parbox, 
14325 \emph on
14326 Width
14327 \emph default
14328 : 5
14329 \begin_inset space \thinspace{}
14330 \end_inset
14331
14332 cm, 
14333 \emph on
14334 Vertical Box Alignment
14335 \emph default
14336 : Middle
14337 \end_layout
14338
14339 \begin_layout Standard
14340 \begin_inset VSpace medskip
14341 \end_inset
14342
14343 In LaTeX a parbox is created with the command 
14344 \series bold
14345
14346 \backslash
14347 parbox
14348 \series default
14349
14350 \begin_inset Index
14351 status collapsed
14352
14353 \begin_layout Plain Layout
14354 Commands ! P ! 
14355 \backslash
14356 parbox
14357 \end_layout
14358
14359 \end_inset
14360
14361  that has the following scheme:
14362 \end_layout
14363
14364 \begin_layout Standard
14365
14366 \series bold
14367
14368 \backslash
14369 parbox[position]{width}{box content}
14370 \end_layout
14371
14372 \begin_layout Standard
14373 The positions 
14374 \emph on
14375 b
14376 \emph default
14377  and 
14378 \emph on
14379 t
14380 \emph default
14381  are possible.
14382  
14383 \emph on
14384 b
14385 \emph default
14386  for bottom means that the box is aligned within the surrounding text with
14387  its last line.
14388  With 
14389 \emph on
14390 t
14391 \emph default
14392  for top this is done with the first line.
14393  When no position is given, the box will be vertically centered, see section
14394  
14395 \emph on
14396 Boxes
14397 \emph default
14398  of the 
14399 \emph on
14400 Embedded
14401 \begin_inset space ~
14402 \end_inset
14403
14404 Objects
14405 \emph default
14406  manual for examples.
14407 \end_layout
14408
14409 \begin_layout Standard
14410 \begin_inset VSpace bigskip
14411 \end_inset
14412
14413 To frame formulas completely, including the formula number, the formula
14414  must be set into a parbox.
14415  To do this, the command 
14416 \series bold
14417
14418 \backslash
14419 fbox{
14420 \backslash
14421 parbox{
14422 \backslash
14423 linewidth-2
14424 \backslash
14425 fboxsep-2
14426 \backslash
14427 fboxrule}{
14428 \series default
14429  is inserted in TeX-mode before the formula.
14430  
14431 \series bold
14432
14433 \backslash
14434 linewidth
14435 \begin_inset Index
14436 status collapsed
14437
14438 \begin_layout Plain Layout
14439 Commands ! L ! 
14440 \backslash
14441 linewidth
14442 \end_layout
14443
14444 \end_inset
14445
14446
14447 \series default
14448  is hereby the line width set for the document.
14449  Because the frame is outside the parbox, 2
14450 \begin_inset space \thinspace{}
14451 \end_inset
14452
14453 times the frame separation and the frame thickness must be subtracted from
14454  the line width.
14455  As this is not automatically done by LyX due to a bug
14456 \begin_inset Foot
14457 status collapsed
14458
14459 \begin_layout Plain Layout
14460 \begin_inset CommandInset href
14461 LatexCommand href
14462 name "LyX-bug #4483"
14463 target "http://bugzilla.lyx.org/show_bug.cgi?id=4483"
14464
14465 \end_inset
14466
14467
14468 \end_layout
14469
14470 \end_inset
14471
14472 , TeX-mode has to be used.
14473  To be able to multiply and subtract in arguments, the LaTeX-package 
14474 \series bold
14475 calc
14476 \series default
14477
14478 \begin_inset Foot
14479 status collapsed
14480
14481 \begin_layout Plain Layout
14482
14483 \series bold
14484 calc
14485 \series default
14486  is part of every LaTeX standard installation.
14487 \end_layout
14488
14489 \end_inset
14490
14491
14492 \begin_inset Index
14493 status collapsed
14494
14495 \begin_layout Plain Layout
14496 Packages ! calc
14497 \end_layout
14498
14499 \end_inset
14500
14501  must be loaded in the LaTeX-preamble with the line
14502 \end_layout
14503
14504 \begin_layout Standard
14505
14506 \series bold
14507
14508 \backslash
14509 usepackage{calc}
14510 \end_layout
14511
14512 \begin_layout Standard
14513 Behind the formula both boxes are closed by entering 
14514 \series bold
14515 }}
14516 \series default
14517  in TeX-mode.
14518  Here is an example:
14519 \begin_inset ERT
14520 status collapsed
14521
14522 \begin_layout Plain Layout
14523
14524
14525 \backslash
14526 fboxsep 5mm 
14527 \backslash
14528 fboxrule 5mm
14529 \end_layout
14530
14531 \end_inset
14532
14533
14534 \end_layout
14535
14536 \begin_layout Standard
14537 \begin_inset ERT
14538 status collapsed
14539
14540 \begin_layout Plain Layout
14541
14542
14543 \backslash
14544 fbox{
14545 \backslash
14546 parbox{
14547 \backslash
14548 linewidth-2
14549 \backslash
14550 fboxsep-2
14551 \backslash
14552 fboxrule}{
14553 \end_layout
14554
14555 \end_inset
14556
14557
14558 \begin_inset Formula \begin{equation}
14559 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14560
14561 \end_inset
14562
14563
14564 \begin_inset ERT
14565 status collapsed
14566
14567 \begin_layout Plain Layout
14568
14569 }}
14570 \end_layout
14571
14572 \end_inset
14573
14574
14575 \begin_inset ERT
14576 status collapsed
14577
14578 \begin_layout Plain Layout
14579
14580
14581 \backslash
14582 fboxrule 0.4pt 
14583 \backslash
14584 fboxsep 3pt
14585 \end_layout
14586
14587 \end_inset
14588
14589
14590 \end_layout
14591
14592 \begin_layout Standard
14593 \begin_inset VSpace medskip
14594 \end_inset
14595
14596 As a parbox is used as argument of 
14597 \series bold
14598
14599 \backslash
14600 fbox
14601 \series default
14602 , there is in this case no difference between 
14603 \series bold
14604
14605 \backslash
14606 fbox
14607 \series default
14608  and 
14609 \series bold
14610
14611 \backslash
14612 boxed
14613 \series default
14614 .
14615 \end_layout
14616
14617 \begin_layout Standard
14618 \begin_inset VSpace bigskip
14619 \end_inset
14620
14621 Paragraph boxes are very useful to comment formulas directly.
14622  To do this, 
14623 \series bold
14624
14625 \backslash
14626 parbox
14627 \series default
14628  is used in combination with the command 
14629 \series bold
14630
14631 \backslash
14632 tag
14633 \series default
14634 .
14635  (more about 
14636 \series bold
14637
14638 \backslash
14639 tag
14640 \series default
14641  see 
14642 \begin_inset CommandInset ref
14643 LatexCommand ref
14644 reference "sub:User-defined-Numbering"
14645
14646 \end_inset
14647
14648 )
14649 \end_layout
14650
14651 \begin_layout Standard
14652 An example of a formula commented with 
14653 \series bold
14654
14655 \backslash
14656 parbox
14657 \series default
14658 :
14659 \end_layout
14660
14661 \begin_layout Standard
14662 \begin_inset ERT
14663 status collapsed
14664
14665 \begin_layout Plain Layout
14666
14667
14668 \backslash
14669 [5x-7b=3b
14670 \backslash
14671 tag*{
14672 \backslash
14673 parbox{5cm}{
14674 \end_layout
14675
14676 \end_inset
14677
14678 This is a description.
14679  It is distinctly separated from the formula and multiline.
14680 \begin_inset ERT
14681 status collapsed
14682
14683 \begin_layout Plain Layout
14684
14685 }}
14686 \backslash
14687 ]
14688 \end_layout
14689
14690 \end_inset
14691
14692
14693 \end_layout
14694
14695 \begin_layout Standard
14696 Such a formula must be inserted completely in TeX-mode because LyX does
14697  not yet support the command 
14698 \series bold
14699
14700 \backslash
14701 parbox
14702 \series default
14703  in formulas.
14704  The formula is created with the following command sequence:
14705 \end_layout
14706
14707 \begin_layout Standard
14708 The command 
14709 \series bold
14710
14711 \backslash
14712 [5x-7b=3b
14713 \backslash
14714 tag*
14715 \backslash
14716 {
14717 \backslash
14718 parbox{5cm}{
14719 \series default
14720  is inserted in TeX-mode.
14721 \begin_inset Foot
14722 status collapsed
14723
14724 \begin_layout Plain Layout
14725 When the formula style 
14726 \series bold
14727 Indented
14728 \series default
14729  is used, 
14730 \series bold
14731
14732 \backslash
14733 tag*
14734 \backslash
14735 {
14736 \series default
14737  can also be replaced by 
14738 \series bold
14739
14740 \backslash
14741 hfill
14742 \series default
14743 .
14744  (formula styles see 
14745 \begin_inset CommandInset ref
14746 LatexCommand ref
14747 reference "sec:Formula-Styles"
14748
14749 \end_inset
14750
14751 )
14752 \end_layout
14753
14754 \end_inset
14755
14756  Then the description follows as normal text, and finally 
14757 \series bold
14758 }}
14759 \backslash
14760 ]
14761 \series default
14762  is inserted in TeX-mode.
14763  The commands 
14764 \series bold
14765
14766 \backslash
14767 [
14768 \series default
14769  and 
14770 \series bold
14771
14772 \backslash
14773 ]
14774 \series default
14775  hereby create a displayed formula.
14776 \end_layout
14777
14778 \begin_layout Standard
14779 The advantages of 
14780 \series bold
14781
14782 \backslash
14783 parbox
14784 \series default
14785  can be seen in this example that was 
14786 \begin_inset Quotes eld
14787 \end_inset
14788
14789 commented
14790 \begin_inset Quotes erd
14791 \end_inset
14792
14793  using the mathematical textmode:
14794 \begin_inset Formula \[
14795 5x-7b=3b\textrm{This is a description. It is not separated from the formula ...}\]
14796
14797 \end_inset
14798
14799
14800 \end_layout
14801
14802 \begin_layout Section
14803 Operators
14804 \begin_inset Index
14805 status collapsed
14806
14807 \begin_layout Plain Layout
14808 Operators
14809 \end_layout
14810
14811 \end_inset
14812
14813
14814 \end_layout
14815
14816 \begin_layout Subsection
14817 Big Operators
14818 \begin_inset CommandInset label
14819 LatexCommand label
14820 name "sub:Big-Operators"
14821
14822 \end_inset
14823
14824
14825 \begin_inset Index
14826 status collapsed
14827
14828 \begin_layout Plain Layout
14829 Operators ! big
14830 \end_layout
14831
14832 \end_inset
14833
14834
14835 \begin_inset Index
14836 status collapsed
14837
14838 \begin_layout Plain Layout
14839 Sums
14840 \end_layout
14841
14842 \end_inset
14843
14844
14845 \begin_inset Index
14846 status collapsed
14847
14848 \begin_layout Plain Layout
14849 Integrals
14850 \end_layout
14851
14852 \end_inset
14853
14854
14855 \end_layout
14856
14857 \begin_layout Standard
14858 To be able to use all integral operators listed here, the option 
14859 \family sans
14860 Use esint package automatically
14861 \family default
14862  must be set in the document settings under 
14863 \family sans
14864 Math
14865 \begin_inset space ~
14866 \end_inset
14867
14868 Options
14869 \family default
14870 .
14871 \end_layout
14872
14873 \begin_layout Standard
14874 \begin_inset space \hfill{}
14875 \end_inset
14876
14877
14878 \begin_inset Tabular
14879 <lyxtabular version="3" rows="11" columns="2">
14880 <features>
14881 <column alignment="center" valignment="top" width="0pt">
14882 <column alignment="center" valignment="top" width="0pt">
14883 <row>
14884 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14885 \begin_inset Text
14886
14887 \begin_layout Plain Layout
14888 Command
14889 \end_layout
14890
14891 \end_inset
14892 </cell>
14893 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14894 \begin_inset Text
14895
14896 \begin_layout Plain Layout
14897 Result
14898 \end_layout
14899
14900 \end_inset
14901 </cell>
14902 </row>
14903 <row>
14904 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14905 \begin_inset Text
14906
14907 \begin_layout Plain Layout
14908
14909 \backslash
14910 int
14911 \begin_inset Index
14912 status collapsed
14913
14914 \begin_layout Plain Layout
14915 Commands ! I ! 
14916 \backslash
14917 int
14918 \end_layout
14919
14920 \end_inset
14921
14922
14923 \end_layout
14924
14925 \end_inset
14926 </cell>
14927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14928 \begin_inset Text
14929
14930 \begin_layout Plain Layout
14931 \begin_inset Formula $\int$
14932 \end_inset
14933
14934
14935 \end_layout
14936
14937 \end_inset
14938 </cell>
14939 </row>
14940 <row>
14941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14942 \begin_inset Text
14943
14944 \begin_layout Plain Layout
14945
14946 \backslash
14947 oint
14948 \end_layout
14949
14950 \end_inset
14951 </cell>
14952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14953 \begin_inset Text
14954
14955 \begin_layout Plain Layout
14956 \begin_inset Formula $\oint$
14957 \end_inset
14958
14959
14960 \end_layout
14961
14962 \end_inset
14963 </cell>
14964 </row>
14965 <row>
14966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14967 \begin_inset Text
14968
14969 \begin_layout Plain Layout
14970
14971 \backslash
14972 ointctrclockwise
14973 \end_layout
14974
14975 \end_inset
14976 </cell>
14977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14978 \begin_inset Text
14979
14980 \begin_layout Plain Layout
14981 \begin_inset Formula $\ointctrclockwise$
14982 \end_inset
14983
14984
14985 \end_layout
14986
14987 \end_inset
14988 </cell>
14989 </row>
14990 <row>
14991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14992 \begin_inset Text
14993
14994 \begin_layout Plain Layout
14995
14996 \backslash
14997 ointclockwise
14998 \end_layout
14999
15000 \end_inset
15001 </cell>
15002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15003 \begin_inset Text
15004
15005 \begin_layout Plain Layout
15006 \begin_inset Formula $\ointclockwise$
15007 \end_inset
15008
15009
15010 \end_layout
15011
15012 \end_inset
15013 </cell>
15014 </row>
15015 <row>
15016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15017 \begin_inset Text
15018
15019 \begin_layout Plain Layout
15020
15021 \backslash
15022 sqint
15023 \end_layout
15024
15025 \end_inset
15026 </cell>
15027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15028 \begin_inset Text
15029
15030 \begin_layout Plain Layout
15031 \begin_inset Formula $\sqint$
15032 \end_inset
15033
15034
15035 \end_layout
15036
15037 \end_inset
15038 </cell>
15039 </row>
15040 <row>
15041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15042 \begin_inset Text
15043
15044 \begin_layout Plain Layout
15045
15046 \backslash
15047 fint
15048 \end_layout
15049
15050 \end_inset
15051 </cell>
15052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15053 \begin_inset Text
15054
15055 \begin_layout Plain Layout
15056  
15057 \begin_inset Formula $\fint$
15058 \end_inset
15059
15060
15061 \end_layout
15062
15063 \end_inset
15064 </cell>
15065 </row>
15066 <row>
15067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15068 \begin_inset Text
15069
15070 \begin_layout Plain Layout
15071
15072 \backslash
15073 landupint
15074 \end_layout
15075
15076 \end_inset
15077 </cell>
15078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15079 \begin_inset Text
15080
15081 \begin_layout Plain Layout
15082  
15083 \begin_inset Formula $\landupint$
15084 \end_inset
15085
15086
15087 \end_layout
15088
15089 \end_inset
15090 </cell>
15091 </row>
15092 <row>
15093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15094 \begin_inset Text
15095
15096 \begin_layout Plain Layout
15097
15098 \backslash
15099 landdownint
15100 \end_layout
15101
15102 \end_inset
15103 </cell>
15104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15105 \begin_inset Text
15106
15107 \begin_layout Plain Layout
15108  
15109 \begin_inset Formula $\landdownint$
15110 \end_inset
15111
15112
15113 \end_layout
15114
15115 \end_inset
15116 </cell>
15117 </row>
15118 <row>
15119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15120 \begin_inset Text
15121
15122 \begin_layout Plain Layout
15123
15124 \backslash
15125 bigcap
15126 \end_layout
15127
15128 \end_inset
15129 </cell>
15130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15131 \begin_inset Text
15132
15133 \begin_layout Plain Layout
15134 \begin_inset Formula $\bigcap$
15135 \end_inset
15136
15137
15138 \end_layout
15139
15140 \end_inset
15141 </cell>
15142 </row>
15143 <row>
15144 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15145 \begin_inset Text
15146
15147 \begin_layout Plain Layout
15148
15149 \backslash
15150 bigcup
15151 \end_layout
15152
15153 \end_inset
15154 </cell>
15155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15156 \begin_inset Text
15157
15158 \begin_layout Plain Layout
15159 \begin_inset Formula $\bigcup$
15160 \end_inset
15161
15162
15163 \end_layout
15164
15165 \end_inset
15166 </cell>
15167 </row>
15168 </lyxtabular>
15169
15170 \end_inset
15171
15172
15173 \begin_inset space \hfill{}
15174 \end_inset
15175
15176
15177 \begin_inset Tabular
15178 <lyxtabular version="3" rows="11" columns="2">
15179 <features>
15180 <column alignment="center" valignment="top" width="0pt">
15181 <column alignment="center" valignment="top" width="0pt">
15182 <row>
15183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15184 \begin_inset Text
15185
15186 \begin_layout Plain Layout
15187 Command
15188 \end_layout
15189
15190 \end_inset
15191 </cell>
15192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15193 \begin_inset Text
15194
15195 \begin_layout Plain Layout
15196 Result
15197 \end_layout
15198
15199 \end_inset
15200 </cell>
15201 </row>
15202 <row>
15203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15204 \begin_inset Text
15205
15206 \begin_layout Plain Layout
15207
15208 \backslash
15209 sum
15210 \begin_inset Index
15211 status collapsed
15212
15213 \begin_layout Plain Layout
15214 Commands ! S ! 
15215 \backslash
15216 sum
15217 \end_layout
15218
15219 \end_inset
15220
15221
15222 \end_layout
15223
15224 \end_inset
15225 </cell>
15226 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15227 \begin_inset Text
15228
15229 \begin_layout Plain Layout
15230 \begin_inset Formula $\sum$
15231 \end_inset
15232
15233
15234 \end_layout
15235
15236 \end_inset
15237 </cell>
15238 </row>
15239 <row>
15240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15241 \begin_inset Text
15242
15243 \begin_layout Plain Layout
15244
15245 \backslash
15246 prod
15247 \begin_inset Index
15248 status collapsed
15249
15250 \begin_layout Plain Layout
15251 Commands ! P ! 
15252 \backslash
15253 prod
15254 \end_layout
15255
15256 \end_inset
15257
15258
15259 \end_layout
15260
15261 \end_inset
15262 </cell>
15263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15264 \begin_inset Text
15265
15266 \begin_layout Plain Layout
15267 \begin_inset Formula $\prod$
15268 \end_inset
15269
15270
15271 \end_layout
15272
15273 \end_inset
15274 </cell>
15275 </row>
15276 <row>
15277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15278 \begin_inset Text
15279
15280 \begin_layout Plain Layout
15281
15282 \backslash
15283 coprod
15284 \end_layout
15285
15286 \end_inset
15287 </cell>
15288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15289 \begin_inset Text
15290
15291 \begin_layout Plain Layout
15292 \begin_inset Formula $\coprod$
15293 \end_inset
15294
15295
15296 \end_layout
15297
15298 \end_inset
15299 </cell>
15300 </row>
15301 <row>
15302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15303 \begin_inset Text
15304
15305 \begin_layout Plain Layout
15306
15307 \backslash
15308 bigodot
15309 \end_layout
15310
15311 \end_inset
15312 </cell>
15313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15314 \begin_inset Text
15315
15316 \begin_layout Plain Layout
15317 \begin_inset Formula $\bigodot$
15318 \end_inset
15319
15320
15321 \end_layout
15322
15323 \end_inset
15324 </cell>
15325 </row>
15326 <row>
15327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15328 \begin_inset Text
15329
15330 \begin_layout Plain Layout
15331
15332 \backslash
15333 bigotimes
15334 \end_layout
15335
15336 \end_inset
15337 </cell>
15338 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15339 \begin_inset Text
15340
15341 \begin_layout Plain Layout
15342 \begin_inset Formula $\bigotimes$
15343 \end_inset
15344
15345
15346 \end_layout
15347
15348 \end_inset
15349 </cell>
15350 </row>
15351 <row>
15352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15353 \begin_inset Text
15354
15355 \begin_layout Plain Layout
15356
15357 \backslash
15358 bigoplus
15359 \end_layout
15360
15361 \end_inset
15362 </cell>
15363 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15364 \begin_inset Text
15365
15366 \begin_layout Plain Layout
15367 \begin_inset Formula $\bigoplus$
15368 \end_inset
15369
15370
15371 \end_layout
15372
15373 \end_inset
15374 </cell>
15375 </row>
15376 <row>
15377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15378 \begin_inset Text
15379
15380 \begin_layout Plain Layout
15381
15382 \backslash
15383 bigwedge
15384 \end_layout
15385
15386 \end_inset
15387 </cell>
15388 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15389 \begin_inset Text
15390
15391 \begin_layout Plain Layout
15392 \begin_inset Formula $\bigwedge$
15393 \end_inset
15394
15395
15396 \end_layout
15397
15398 \end_inset
15399 </cell>
15400 </row>
15401 <row>
15402 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15403 \begin_inset Text
15404
15405 \begin_layout Plain Layout
15406
15407 \backslash
15408 bigvee
15409 \end_layout
15410
15411 \end_inset
15412 </cell>
15413 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15414 \begin_inset Text
15415
15416 \begin_layout Plain Layout
15417 \begin_inset Formula $\bigvee$
15418 \end_inset
15419
15420
15421 \end_layout
15422
15423 \end_inset
15424 </cell>
15425 </row>
15426 <row>
15427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15428 \begin_inset Text
15429
15430 \begin_layout Plain Layout
15431
15432 \backslash
15433 bigsqcup
15434 \end_layout
15435
15436 \end_inset
15437 </cell>
15438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15439 \begin_inset Text
15440
15441 \begin_layout Plain Layout
15442 \begin_inset Formula $\bigsqcup$
15443 \end_inset
15444
15445
15446 \end_layout
15447
15448 \end_inset
15449 </cell>
15450 </row>
15451 <row>
15452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15453 \begin_inset Text
15454
15455 \begin_layout Plain Layout
15456
15457 \backslash
15458 biguplus
15459 \end_layout
15460
15461 \end_inset
15462 </cell>
15463 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15464 \begin_inset Text
15465
15466 \begin_layout Plain Layout
15467 \begin_inset Formula $\biguplus$
15468 \end_inset
15469
15470
15471 \end_layout
15472
15473 \end_inset
15474 </cell>
15475 </row>
15476 </lyxtabular>
15477
15478 \end_inset
15479
15480
15481 \begin_inset space \hfill{}
15482 \end_inset
15483
15484
15485 \end_layout
15486
15487 \begin_layout Standard
15488 All big operators can also be inserted via the math toolbar button 
15489 \begin_inset Graphics
15490         filename ../images/math/intop.png
15491         scale 85
15492
15493 \end_inset
15494
15495 .
15496 \end_layout
15497
15498 \begin_layout Standard
15499 The operators are called big because they are bigger than the sometimes
15500  equal looking binary operators.
15501  All big operators can have limits as described in the next subsection.
15502 \end_layout
15503
15504 \begin_layout Standard
15505 For all integral operators there is a second version available, ending on
15506  
15507 \series bold
15508 op
15509 \series default
15510
15511 \series bold
15512
15513 \backslash
15514 intop
15515 \series default
15516
15517 \series bold
15518
15519 \backslash
15520 ointop
15521 \series default
15522  etc..
15523  These operators are different from 
15524 \series bold
15525
15526 \backslash
15527 int
15528 \series default
15529  etc.
15530 \begin_inset space \space{}
15531 \end_inset
15532
15533 in the style the operator limits are displayed, see 
15534 \begin_inset CommandInset ref
15535 LatexCommand ref
15536 reference "sub:Operator-Limits"
15537
15538 \end_inset
15539
15540 .
15541  
15542 \end_layout
15543
15544 \begin_layout Subsubsection*
15545 Advices for Integrals
15546 \end_layout
15547
15548 \begin_layout Standard
15549 The letter 
15550 \emph on
15551 d
15552 \emph default
15553  in an integral is an operator, that therefore has to be set upright.
15554  This is done by highlighting the 
15555 \emph on
15556 d
15557 \emph default
15558  and using the keyboard shortcut 
15559 \begin_inset Info
15560 type  "shortcut"
15561 arg   "font-roman"
15562 \end_inset
15563
15564
15565 \begin_inset Foot
15566 status collapsed
15567
15568 \begin_layout Plain Layout
15569 Font styles
15570 \series bold
15571  
15572 \series default
15573 see 
15574 \begin_inset CommandInset ref
15575 LatexCommand ref
15576 reference "sub:Font-Styles"
15577
15578 \end_inset
15579
15580
15581 \end_layout
15582
15583 \end_inset
15584
15585 .
15586  Finally the smallest space is inserted before the 
15587 \emph on
15588 d
15589 \emph default
15590 , as this is usual for operators.
15591  An example:
15592 \end_layout
15593
15594 \begin_layout Standard
15595 incorrect: 
15596 \begin_inset Formula $\int A(x)dx$
15597 \end_inset
15598
15599
15600 \begin_inset Newline newline
15601 \end_inset
15602
15603
15604 \begin_inset ERT
15605 status collapsed
15606
15607 \begin_layout Plain Layout
15608
15609
15610 \backslash
15611 hphantom{in}
15612 \end_layout
15613
15614 \end_inset
15615
15616 correct: 
15617 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15618 \end_inset
15619
15620
15621 \end_layout
15622
15623 \begin_layout Standard
15624 For multiple integrals there are the following commands:
15625 \begin_inset VSpace medskip
15626 \end_inset
15627
15628
15629 \end_layout
15630
15631 \begin_layout Standard
15632 \begin_inset space \hfill{}
15633 \end_inset
15634
15635
15636 \begin_inset Tabular
15637 <lyxtabular version="3" rows="4" columns="2">
15638 <features>
15639 <column alignment="center" valignment="top" width="0">
15640 <column alignment="center" valignment="top" width="0">
15641 <row>
15642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15643 \begin_inset Text
15644
15645 \begin_layout Plain Layout
15646 Command
15647 \end_layout
15648
15649 \end_inset
15650 </cell>
15651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15652 \begin_inset Text
15653
15654 \begin_layout Plain Layout
15655 Result
15656 \begin_inset Note Note
15657 status collapsed
15658
15659 \begin_layout Plain Layout
15660
15661 \series bold
15662
15663 \backslash
15664 raisebox
15665 \series default
15666  is only used as spacer.
15667 \end_layout
15668
15669 \end_inset
15670
15671
15672 \end_layout
15673
15674 \end_inset
15675 </cell>
15676 </row>
15677 <row>
15678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15679 \begin_inset Text
15680
15681 \begin_layout Plain Layout
15682
15683 \backslash
15684 iint
15685 \end_layout
15686
15687 \end_inset
15688 </cell>
15689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15690 \begin_inset Text
15691
15692 \begin_layout Plain Layout
15693 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15694 \end_inset
15695
15696
15697 \end_layout
15698
15699 \end_inset
15700 </cell>
15701 </row>
15702 <row>
15703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15704 \begin_inset Text
15705
15706 \begin_layout Plain Layout
15707
15708 \backslash
15709 oiint
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15715 \begin_inset Text
15716
15717 \begin_layout Plain Layout
15718 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15719 \end_inset
15720
15721
15722 \end_layout
15723
15724 \end_inset
15725 </cell>
15726 </row>
15727 <row>
15728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15729 \begin_inset Text
15730
15731 \begin_layout Plain Layout
15732
15733 \backslash
15734 sqiint
15735 \end_layout
15736
15737 \end_inset
15738 </cell>
15739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15740 \begin_inset Text
15741
15742 \begin_layout Plain Layout
15743 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15744 \end_inset
15745
15746
15747 \end_layout
15748
15749 \end_inset
15750 </cell>
15751 </row>
15752 </lyxtabular>
15753
15754 \end_inset
15755
15756
15757 \begin_inset space \hfill{}
15758 \end_inset
15759
15760
15761 \begin_inset Tabular
15762 <lyxtabular version="3" rows="4" columns="2">
15763 <features>
15764 <column alignment="center" valignment="top" width="0">
15765 <column alignment="center" valignment="top" width="0">
15766 <row>
15767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15768 \begin_inset Text
15769
15770 \begin_layout Plain Layout
15771 Command
15772 \end_layout
15773
15774 \end_inset
15775 </cell>
15776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15777 \begin_inset Text
15778
15779 \begin_layout Plain Layout
15780 Result
15781 \end_layout
15782
15783 \end_inset
15784 </cell>
15785 </row>
15786 <row>
15787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15788 \begin_inset Text
15789
15790 \begin_layout Plain Layout
15791
15792 \backslash
15793 iiint
15794 \end_layout
15795
15796 \end_inset
15797 </cell>
15798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15799 \begin_inset Text
15800
15801 \begin_layout Plain Layout
15802 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15803 \end_inset
15804
15805
15806 \end_layout
15807
15808 \end_inset
15809 </cell>
15810 </row>
15811 <row>
15812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15813 \begin_inset Text
15814
15815 \begin_layout Plain Layout
15816
15817 \backslash
15818 iiiint
15819 \end_layout
15820
15821 \end_inset
15822 </cell>
15823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15824 \begin_inset Text
15825
15826 \begin_layout Plain Layout
15827 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15828 \end_inset
15829
15830
15831 \end_layout
15832
15833 \end_inset
15834 </cell>
15835 </row>
15836 <row>
15837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15838 \begin_inset Text
15839
15840 \begin_layout Plain Layout
15841
15842 \backslash
15843 dotsint
15844 \end_layout
15845
15846 \end_inset
15847 </cell>
15848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15849 \begin_inset Text
15850
15851 \begin_layout Plain Layout
15852 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15853 \end_inset
15854
15855
15856 \end_layout
15857
15858 \end_inset
15859 </cell>
15860 </row>
15861 </lyxtabular>
15862
15863 \end_inset
15864
15865
15866 \begin_inset space \hfill{}
15867 \end_inset
15868
15869
15870 \end_layout
15871
15872 \begin_layout Subsection
15873 Operator Limits
15874 \begin_inset CommandInset label
15875 LatexCommand label
15876 name "sub:Operator-Limits"
15877
15878 \end_inset
15879
15880
15881 \begin_inset Index
15882 status collapsed
15883
15884 \begin_layout Plain Layout
15885 Operators ! Limits
15886 \end_layout
15887
15888 \end_inset
15889
15890
15891 \end_layout
15892
15893 \begin_layout Standard
15894 Limits are created by super- and subscripts:
15895 \end_layout
15896
15897 \begin_layout Standard
15898 \align center
15899 \begin_inset Tabular
15900 <lyxtabular version="3" rows="2" columns="2">
15901 <features>
15902 <column alignment="center" valignment="top" width="0pt">
15903 <column alignment="center" valignment="top" width="0pt">
15904 <row>
15905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15906 \begin_inset Text
15907
15908 \begin_layout Plain Layout
15909 Command
15910 \end_layout
15911
15912 \end_inset
15913 </cell>
15914 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15915 \begin_inset Text
15916
15917 \begin_layout Plain Layout
15918 Result
15919 \begin_inset Note Note
15920 status collapsed
15921
15922 \begin_layout Plain Layout
15923
15924 \series bold
15925
15926 \backslash
15927 raisebox
15928 \series default
15929  is only used as spacer.
15930 \end_layout
15931
15932 \end_inset
15933
15934
15935 \end_layout
15936
15937 \end_inset
15938 </cell>
15939 </row>
15940 <row>
15941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15942 \begin_inset Text
15943
15944 \begin_layout Plain Layout
15945
15946 \backslash
15947 prod^
15948 \backslash
15949 infty
15950 \begin_inset ERT
15951 status collapsed
15952
15953 \begin_layout Plain Layout
15954
15955
15956 \backslash
15957 spce 
15958 \end_layout
15959
15960 \end_inset
15961
15962
15963 \begin_inset Formula $\to$
15964 \end_inset
15965
15966 _0
15967 \begin_inset Formula $\to$
15968 \end_inset
15969
15970 A(x)
15971 \end_layout
15972
15973 \end_inset
15974 </cell>
15975 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15976 \begin_inset Text
15977
15978 \begin_layout Plain Layout
15979 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15980 \end_inset
15981
15982
15983 \end_layout
15984
15985 \end_inset
15986 </cell>
15987 </row>
15988 </lyxtabular>
15989
15990 \end_inset
15991
15992
15993 \end_layout
15994
15995 \begin_layout Standard
15996 Limits of inline formulas are set right beside the operator.
15997  Limits in displayed formulas are set above or below the operator, except
15998  for integral limits.
15999 \end_layout
16000
16001 \begin_layout Standard
16002 To force that the limits are set beside the operator, the cursor is set
16003  directly behind the operator and the limits type is changed with the menu
16004  
16005 \family sans
16006 Edit\SpecialChar \menuseparator
16007 Math\SpecialChar \menuseparator
16008 Change Limits Type
16009 \family default
16010  to 
16011 \family sans
16012 \series bold
16013 Inline
16014 \family default
16015 \series default
16016  (shortcut 
16017 \begin_inset Info
16018 type  "shortcut"
16019 arg   "math-limits"
16020 \end_inset
16021
16022 ).
16023  An example:
16024 \end_layout
16025
16026 \begin_layout Standard
16027 The default limits type is this:
16028 \begin_inset Formula \[
16029 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
16030
16031 \end_inset
16032
16033 This is how it looks when the limits type was changed to 
16034 \family sans
16035 \series bold
16036 Inline
16037 \family default
16038 \series default
16039 :
16040 \begin_inset Formula \[
16041 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
16042
16043 \end_inset
16044
16045 For integrals, except those ending with 
16046 \series bold
16047 op
16048 \series default
16049  like 
16050 \series bold
16051
16052 \backslash
16053 intop
16054 \series default
16055
16056 \series bold
16057
16058 \backslash
16059 ointop
16060 \series default
16061  etc., the limits are by default set beside the operator.
16062  But for multiple integrals the limits are often set below the operator.
16063  In the following example the limits type was therefore set to 
16064 \series bold
16065 Display
16066 \series default
16067  and so set below the integrals:
16068 \begin_inset Formula \begin{equation}
16069 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}\end{equation}
16070
16071 \end_inset
16072
16073
16074 \end_layout
16075
16076 \begin_layout Standard
16077 \begin_inset VSpace medskip
16078 \end_inset
16079
16080 To specify conditions for limits, the commands 
16081 \series bold
16082
16083 \backslash
16084 subarray
16085 \series default
16086
16087 \begin_inset Index
16088 status collapsed
16089
16090 \begin_layout Plain Layout
16091 Commands ! S ! 
16092 \backslash
16093 subarray
16094 \end_layout
16095
16096 \end_inset
16097
16098  and 
16099 \series bold
16100
16101 \backslash
16102 substack
16103 \series default
16104
16105 \begin_inset Index
16106 status collapsed
16107
16108 \begin_layout Plain Layout
16109 Commands ! S ! 
16110 \backslash
16111 substack
16112 \end_layout
16113
16114 \end_inset
16115
16116  are used.
16117  To create for example this expression 
16118 \begin_inset Formula \begin{equation}
16119 \sum_{\begin{subarray}{c}
16120 0<k<1000\\
16121 \\k\,\in\,\mathbb{N}\end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
16122
16123 \end_inset
16124
16125
16126 \end_layout
16127
16128 \begin_layout Standard
16129 the following has to be done:
16130 \begin_inset Newline newline
16131 \end_inset
16132
16133 First the command 
16134 \series bold
16135
16136 \backslash
16137 sum
16138 \series default
16139 ^
16140 \series bold
16141 n
16142 \begin_inset ERT
16143 status collapsed
16144
16145 \begin_layout Plain Layout
16146
16147
16148 \backslash
16149 spce 
16150 \end_layout
16151
16152 \end_inset
16153
16154 _
16155 \series default
16156  is typed in.
16157  One is now in a blue box under the summation operator and insert there
16158  the command 
16159 \series bold
16160
16161 \backslash
16162 subarray
16163 \begin_inset ERT
16164 status collapsed
16165
16166 \begin_layout Plain Layout
16167
16168
16169 \backslash
16170 spce 
16171 \end_layout
16172
16173 \end_inset
16174
16175
16176 \series default
16177 .
16178  The blue box is now within a purple box and now several lines can be written
16179  among each other.
16180  A new line is created by inserting a line break (
16181 \begin_inset Info
16182 type  "shortcut"
16183 arg   "newline-insert newline"
16184 \end_inset
16185
16186 ).
16187  When now
16188 \begin_inset Newline newline
16189 \end_inset
16190
16191
16192 \series bold
16193 0<k<1000 Ctrl+Return
16194 \begin_inset Newline newline
16195 \end_inset
16196
16197
16198 \series default
16199 is typed in, a new box appears below for the new line.
16200 \end_layout
16201
16202 \begin_layout Standard
16203 The alignment of the lines can be changed to left aligned with the 
16204 \family sans
16205 table
16206 \family default
16207  
16208 \family sans
16209 toolbar
16210 \family default
16211  or the menu 
16212 \family sans
16213 Edit\SpecialChar \menuseparator
16214 Rows &Columns
16215 \family default
16216 .
16217  To get right alignment, 
16218 \series bold
16219
16220 \backslash
16221 hfill
16222 \begin_inset ERT
16223 status collapsed
16224
16225 \begin_layout Plain Layout
16226
16227
16228 \backslash
16229 spce 
16230 \end_layout
16231
16232 \end_inset
16233
16234
16235 \series default
16236  is inserted at the beginning of the line.
16237 \end_layout
16238
16239 \begin_layout Standard
16240 The command 
16241 \series bold
16242
16243 \backslash
16244 substack
16245 \series default
16246  is equivalent to 
16247 \series bold
16248
16249 \backslash
16250 subarray
16251 \series default
16252  with the difference that the lines are always centered.
16253 \end_layout
16254
16255 \begin_layout Standard
16256 \begin_inset VSpace bigskip
16257 \end_inset
16258
16259 Like in formula 
16260 \begin_inset CommandInset ref
16261 LatexCommand eqref
16262 reference "eq:substack"
16263
16264 \end_inset
16265
16266  there can be too much space beside an operator, because the characters
16267  following the operator are set beside the limits.
16268 \end_layout
16269
16270 \begin_layout Standard
16271 To avoid this, the following macro can be used in the LaTeX-preamble:
16272 \end_layout
16273
16274 \begin_layout Standard
16275
16276 \series bold
16277
16278 \backslash
16279 def
16280 \backslash
16281 clap#1{
16282 \backslash
16283 hbox to 0pt{
16284 \backslash
16285 hss #1
16286 \backslash
16287 hss}}
16288 \begin_inset Newline newline
16289 \end_inset
16290
16291
16292 \backslash
16293 def
16294 \backslash
16295 mathclap {
16296 \backslash
16297 mathpalette 
16298 \backslash
16299 mathclapinternal}
16300 \begin_inset Newline newline
16301 \end_inset
16302
16303
16304 \backslash
16305 def
16306 \backslash
16307 mathclapinternal #1#2{
16308 \backslash
16309 clap{$
16310 \backslash
16311 mathsurround =0pt #1{#2}$}}
16312 \end_layout
16313
16314 \begin_layout Standard
16315 This defines the command 
16316 \series bold
16317
16318 \backslash
16319 mathclap
16320 \series default
16321
16322 \begin_inset Index
16323 status collapsed
16324
16325 \begin_layout Plain Layout
16326 Commands ! M ! 
16327 \backslash
16328 mathclap
16329 \end_layout
16330
16331 \end_inset
16332
16333  that sets the width of the limit to 0
16334 \begin_inset space \thinspace{}
16335 \end_inset
16336
16337 pt.
16338  The command scheme is
16339 \end_layout
16340
16341 \begin_layout Standard
16342
16343 \series bold
16344
16345 \backslash
16346 mathclap{limit}
16347 \end_layout
16348
16349 \begin_layout Standard
16350 where the limit can consist of several conditions.
16351 \end_layout
16352
16353 \begin_layout Standard
16354 Applied on formula 
16355 \begin_inset CommandInset ref
16356 LatexCommand eqref
16357 reference "eq:substack"
16358
16359 \end_inset
16360
16361 , one uses the command
16362 \end_layout
16363
16364 \begin_layout Standard
16365
16366 \series bold
16367
16368 \backslash
16369 sum_
16370 \backslash
16371 mathclap{
16372 \backslash
16373 substack
16374 \begin_inset ERT
16375 status collapsed
16376
16377 \begin_layout Plain Layout
16378
16379
16380 \backslash
16381 spce 
16382 \end_layout
16383
16384 \end_inset
16385
16386 0<k<1000 Ctrl+Return
16387 \end_layout
16388
16389 \begin_layout Standard
16390 to create the lower limit.
16391  The summand is now directly behind the summation operator:
16392 \begin_inset Formula \[
16393 \sum_{\mathclap{\substack{0<k<1000\\
16394 \\k\,\in\,\mathbb{N}}
16395 }}^{n}k^{-2}\]
16396
16397 \end_inset
16398
16399
16400 \end_layout
16401
16402 \begin_layout Standard
16403 \begin_inset VSpace bigskip
16404 \end_inset
16405
16406 How to use one limit for several operators is described in 
16407 \begin_inset CommandInset ref
16408 LatexCommand ref
16409 reference "sub:Self-defined-Operators"
16410
16411 \end_inset
16412
16413 .
16414 \end_layout
16415
16416 \begin_layout Standard
16417 \begin_inset Newpage newpage
16418 \end_inset
16419
16420
16421 \end_layout
16422
16423 \begin_layout Subsection
16424 Binary Operators
16425 \begin_inset CommandInset label
16426 LatexCommand label
16427 name "sub:Binary-Operators"
16428
16429 \end_inset
16430
16431
16432 \begin_inset Index
16433 status collapsed
16434
16435 \begin_layout Plain Layout
16436 Operators ! binary
16437 \end_layout
16438
16439 \end_inset
16440
16441
16442 \end_layout
16443
16444 \begin_layout Standard
16445 Binary operators are surrounded by space when there is a character before
16446  and behind them.
16447 \begin_inset VSpace medskip
16448 \end_inset
16449
16450
16451 \end_layout
16452
16453 \begin_layout Standard
16454 \begin_inset space \hfill{}
16455 \end_inset
16456
16457
16458 \begin_inset Tabular
16459 <lyxtabular version="3" rows="13" columns="2">
16460 <features>
16461 <column alignment="center" valignment="top" width="0pt">
16462 <column alignment="center" valignment="top" width="0pt">
16463 <row>
16464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16465 \begin_inset Text
16466
16467 \begin_layout Plain Layout
16468 Command
16469 \begin_inset Note Note
16470 status collapsed
16471
16472 \begin_layout Plain Layout
16473
16474 \series bold
16475
16476 \backslash
16477 raisebox
16478 \series default
16479  is only used as spacer.
16480 \end_layout
16481
16482 \end_inset
16483
16484
16485 \end_layout
16486
16487 \end_inset
16488 </cell>
16489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16490 \begin_inset Text
16491
16492 \begin_layout Plain Layout
16493 Result
16494 \end_layout
16495
16496 \end_inset
16497 </cell>
16498 </row>
16499 <row>
16500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16501 \begin_inset Text
16502
16503 \begin_layout Plain Layout
16504 +
16505 \end_layout
16506
16507 \end_inset
16508 </cell>
16509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16510 \begin_inset Text
16511
16512 \begin_layout Plain Layout
16513 \begin_inset Formula $+$
16514 \end_inset
16515
16516
16517 \end_layout
16518
16519 \end_inset
16520 </cell>
16521 </row>
16522 <row>
16523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16524 \begin_inset Text
16525
16526 \begin_layout Plain Layout
16527 -
16528 \end_layout
16529
16530 \end_inset
16531 </cell>
16532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16533 \begin_inset Text
16534
16535 \begin_layout Plain Layout
16536 \begin_inset Formula $-$
16537 \end_inset
16538
16539
16540 \end_layout
16541
16542 \end_inset
16543 </cell>
16544 </row>
16545 <row>
16546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16547 \begin_inset Text
16548
16549 \begin_layout Plain Layout
16550
16551 \backslash
16552 pm
16553 \end_layout
16554
16555 \end_inset
16556 </cell>
16557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16558 \begin_inset Text
16559
16560 \begin_layout Plain Layout
16561 \begin_inset Formula $\pm$
16562 \end_inset
16563
16564
16565 \end_layout
16566
16567 \end_inset
16568 </cell>
16569 </row>
16570 <row>
16571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16572 \begin_inset Text
16573
16574 \begin_layout Plain Layout
16575
16576 \backslash
16577 mp
16578 \end_layout
16579
16580 \end_inset
16581 </cell>
16582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16583 \begin_inset Text
16584
16585 \begin_layout Plain Layout
16586 \begin_inset Formula $\mp$
16587 \end_inset
16588
16589
16590 \end_layout
16591
16592 \end_inset
16593 </cell>
16594 </row>
16595 <row>
16596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16597 \begin_inset Text
16598
16599 \begin_layout Plain Layout
16600
16601 \backslash
16602 cdot
16603 \end_layout
16604
16605 \end_inset
16606 </cell>
16607 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16608 \begin_inset Text
16609
16610 \begin_layout Plain Layout
16611 \begin_inset Formula $\cdot$
16612 \end_inset
16613
16614
16615 \end_layout
16616
16617 \end_inset
16618 </cell>
16619 </row>
16620 <row>
16621 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16622 \begin_inset Text
16623
16624 \begin_layout Plain Layout
16625
16626 \backslash
16627 times
16628 \end_layout
16629
16630 \end_inset
16631 </cell>
16632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16633 \begin_inset Text
16634
16635 \begin_layout Plain Layout
16636 \begin_inset Formula $\times$
16637 \end_inset
16638
16639
16640 \end_layout
16641
16642 \end_inset
16643 </cell>
16644 </row>
16645 <row>
16646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16647 \begin_inset Text
16648
16649 \begin_layout Plain Layout
16650
16651 \backslash
16652 div
16653 \end_layout
16654
16655 \end_inset
16656 </cell>
16657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16658 \begin_inset Text
16659
16660 \begin_layout Plain Layout
16661 \begin_inset Formula $\div$
16662 \end_inset
16663
16664
16665 \end_layout
16666
16667 \end_inset
16668 </cell>
16669 </row>
16670 <row>
16671 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16672 \begin_inset Text
16673
16674 \begin_layout Plain Layout
16675 \begin_inset ERT
16676 status collapsed
16677
16678 \begin_layout Plain Layout
16679
16680
16681 \backslash
16682 raisebox{-1.2mm}{
16683 \end_layout
16684
16685 \end_inset
16686
16687 *
16688 \begin_inset ERT
16689 status collapsed
16690
16691 \begin_layout Plain Layout
16692
16693 }
16694 \end_layout
16695
16696 \end_inset
16697
16698
16699 \end_layout
16700
16701 \end_inset
16702 </cell>
16703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16704 \begin_inset Text
16705
16706 \begin_layout Plain Layout
16707 \begin_inset Formula $*$
16708 \end_inset
16709
16710
16711 \end_layout
16712
16713 \end_inset
16714 </cell>
16715 </row>
16716 <row>
16717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16718 \begin_inset Text
16719
16720 \begin_layout Plain Layout
16721
16722 \backslash
16723 star
16724 \end_layout
16725
16726 \end_inset
16727 </cell>
16728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16729 \begin_inset Text
16730
16731 \begin_layout Plain Layout
16732 \begin_inset Formula $\star$
16733 \end_inset
16734
16735
16736 \end_layout
16737
16738 \end_inset
16739 </cell>
16740 </row>
16741 <row>
16742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16743 \begin_inset Text
16744
16745 \begin_layout Plain Layout
16746
16747 \backslash
16748 circ
16749 \end_layout
16750
16751 \end_inset
16752 </cell>
16753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16754 \begin_inset Text
16755
16756 \begin_layout Plain Layout
16757 \begin_inset Formula $\circ$
16758 \end_inset
16759
16760
16761 \end_layout
16762
16763 \end_inset
16764 </cell>
16765 </row>
16766 <row>
16767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16768 \begin_inset Text
16769
16770 \begin_layout Plain Layout
16771
16772 \backslash
16773 diamond
16774 \end_layout
16775
16776 \end_inset
16777 </cell>
16778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16779 \begin_inset Text
16780
16781 \begin_layout Plain Layout
16782 \begin_inset Formula $\diamond$
16783 \end_inset
16784
16785
16786 \end_layout
16787
16788 \end_inset
16789 </cell>
16790 </row>
16791 <row>
16792 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16793 \begin_inset Text
16794
16795 \begin_layout Plain Layout
16796
16797 \backslash
16798 bullet
16799 \end_layout
16800
16801 \end_inset
16802 </cell>
16803 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16804 \begin_inset Text
16805
16806 \begin_layout Plain Layout
16807 \begin_inset Formula $\bullet$
16808 \end_inset
16809
16810
16811 \end_layout
16812
16813 \end_inset
16814 </cell>
16815 </row>
16816 </lyxtabular>
16817
16818 \end_inset
16819
16820
16821 \begin_inset space \hfill{}
16822 \end_inset
16823
16824
16825 \begin_inset Tabular
16826 <lyxtabular version="3" rows="13" columns="2">
16827 <features>
16828 <column alignment="center" valignment="top" width="0pt">
16829 <column alignment="center" valignment="top" width="0pt">
16830 <row>
16831 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16832 \begin_inset Text
16833
16834 \begin_layout Plain Layout
16835 Command
16836 \end_layout
16837
16838 \end_inset
16839 </cell>
16840 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16841 \begin_inset Text
16842
16843 \begin_layout Plain Layout
16844 Result
16845 \end_layout
16846
16847 \end_inset
16848 </cell>
16849 </row>
16850 <row>
16851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16852 \begin_inset Text
16853
16854 \begin_layout Plain Layout
16855
16856 \backslash
16857 nabla
16858 \end_layout
16859
16860 \end_inset
16861 </cell>
16862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16863 \begin_inset Text
16864
16865 \begin_layout Plain Layout
16866 \begin_inset Formula $\nabla$
16867 \end_inset
16868
16869
16870 \end_layout
16871
16872 \end_inset
16873 </cell>
16874 </row>
16875 <row>
16876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16877 \begin_inset Text
16878
16879 \begin_layout Plain Layout
16880
16881 \backslash
16882 bigtriangledown
16883 \end_layout
16884
16885 \end_inset
16886 </cell>
16887 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16888 \begin_inset Text
16889
16890 \begin_layout Plain Layout
16891 \begin_inset Formula $\bigtriangledown$
16892 \end_inset
16893
16894
16895 \end_layout
16896
16897 \end_inset
16898 </cell>
16899 </row>
16900 <row>
16901 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16902 \begin_inset Text
16903
16904 \begin_layout Plain Layout
16905
16906 \backslash
16907 bigtriangleup
16908 \end_layout
16909
16910 \end_inset
16911 </cell>
16912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16913 \begin_inset Text
16914
16915 \begin_layout Plain Layout
16916 \begin_inset Formula $\bigtriangleup$
16917 \end_inset
16918
16919
16920 \end_layout
16921
16922 \end_inset
16923 </cell>
16924 </row>
16925 <row>
16926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16927 \begin_inset Text
16928
16929 \begin_layout Plain Layout
16930
16931 \backslash
16932 Box
16933 \end_layout
16934
16935 \end_inset
16936 </cell>
16937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16938 \begin_inset Text
16939
16940 \begin_layout Plain Layout
16941 \begin_inset Formula $\Box$
16942 \end_inset
16943
16944
16945 \end_layout
16946
16947 \end_inset
16948 </cell>
16949 </row>
16950 <row>
16951 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16952 \begin_inset Text
16953
16954 \begin_layout Plain Layout
16955
16956 \backslash
16957 cap 
16958 \end_layout
16959
16960 \end_inset
16961 </cell>
16962 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16963 \begin_inset Text
16964
16965 \begin_layout Plain Layout
16966 \begin_inset Formula $\cap$
16967 \end_inset
16968
16969
16970 \end_layout
16971
16972 \end_inset
16973 </cell>
16974 </row>
16975 <row>
16976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16977 \begin_inset Text
16978
16979 \begin_layout Plain Layout
16980
16981 \backslash
16982 cup
16983 \end_layout
16984
16985 \end_inset
16986 </cell>
16987 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16988 \begin_inset Text
16989
16990 \begin_layout Plain Layout
16991 \begin_inset Formula $\cup$
16992 \end_inset
16993
16994
16995 \end_layout
16996
16997 \end_inset
16998 </cell>
16999 </row>
17000 <row>
17001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17002 \begin_inset Text
17003
17004 \begin_layout Plain Layout
17005
17006 \backslash
17007 dagger
17008 \end_layout
17009
17010 \end_inset
17011 </cell>
17012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17013 \begin_inset Text
17014
17015 \begin_layout Plain Layout
17016 \begin_inset Formula $\dagger$
17017 \end_inset
17018
17019
17020 \end_layout
17021
17022 \end_inset
17023 </cell>
17024 </row>
17025 <row>
17026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17027 \begin_inset Text
17028
17029 \begin_layout Plain Layout
17030
17031 \backslash
17032 ddagger
17033 \end_layout
17034
17035 \end_inset
17036 </cell>
17037 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17038 \begin_inset Text
17039
17040 \begin_layout Plain Layout
17041 \begin_inset Formula $\ddagger$
17042 \end_inset
17043
17044
17045 \end_layout
17046
17047 \end_inset
17048 </cell>
17049 </row>
17050 <row>
17051 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17052 \begin_inset Text
17053
17054 \begin_layout Plain Layout
17055
17056 \backslash
17057 wr
17058 \end_layout
17059
17060 \end_inset
17061 </cell>
17062 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17063 \begin_inset Text
17064
17065 \begin_layout Plain Layout
17066 \begin_inset Formula $\wr$
17067 \end_inset
17068
17069
17070 \end_layout
17071
17072 \end_inset
17073 </cell>
17074 </row>
17075 <row>
17076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17077 \begin_inset Text
17078
17079 \begin_layout Plain Layout
17080
17081 \backslash
17082 bigcirc
17083 \end_layout
17084
17085 \end_inset
17086 </cell>
17087 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17088 \begin_inset Text
17089
17090 \begin_layout Plain Layout
17091 \begin_inset Formula $\bigcirc$
17092 \end_inset
17093
17094
17095 \end_layout
17096
17097 \end_inset
17098 </cell>
17099 </row>
17100 <row>
17101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17102 \begin_inset Text
17103
17104 \begin_layout Plain Layout
17105
17106 \backslash
17107 wedge
17108 \end_layout
17109
17110 \end_inset
17111 </cell>
17112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17113 \begin_inset Text
17114
17115 \begin_layout Plain Layout
17116 \begin_inset Formula $\wedge$
17117 \end_inset
17118
17119
17120 \end_layout
17121
17122 \end_inset
17123 </cell>
17124 </row>
17125 <row>
17126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17127 \begin_inset Text
17128
17129 \begin_layout Plain Layout
17130
17131 \backslash
17132 vee
17133 \end_layout
17134
17135 \end_inset
17136 </cell>
17137 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17138 \begin_inset Text
17139
17140 \begin_layout Plain Layout
17141 \begin_inset Formula $\vee$
17142 \end_inset
17143
17144
17145 \end_layout
17146
17147 \end_inset
17148 </cell>
17149 </row>
17150 </lyxtabular>
17151
17152 \end_inset
17153
17154
17155 \begin_inset space \hfill{}
17156 \end_inset
17157
17158
17159 \begin_inset Tabular
17160 <lyxtabular version="3" rows="13" columns="2">
17161 <features>
17162 <column alignment="center" valignment="top" width="0pt">
17163 <column alignment="center" valignment="top" width="0pt">
17164 <row>
17165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17166 \begin_inset Text
17167
17168 \begin_layout Plain Layout
17169 Command
17170 \end_layout
17171
17172 \end_inset
17173 </cell>
17174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17175 \begin_inset Text
17176
17177 \begin_layout Plain Layout
17178 Result
17179 \end_layout
17180
17181 \end_inset
17182 </cell>
17183 </row>
17184 <row>
17185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17186 \begin_inset Text
17187
17188 \begin_layout Plain Layout
17189
17190 \backslash
17191 oplus
17192 \end_layout
17193
17194 \end_inset
17195 </cell>
17196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17197 \begin_inset Text
17198
17199 \begin_layout Plain Layout
17200 \begin_inset Formula $\oplus$
17201 \end_inset
17202
17203
17204 \end_layout
17205
17206 \end_inset
17207 </cell>
17208 </row>
17209 <row>
17210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17211 \begin_inset Text
17212
17213 \begin_layout Plain Layout
17214
17215 \backslash
17216 ominus
17217 \end_layout
17218
17219 \end_inset
17220 </cell>
17221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17222 \begin_inset Text
17223
17224 \begin_layout Plain Layout
17225 \begin_inset Formula $\ominus$
17226 \end_inset
17227
17228
17229 \end_layout
17230
17231 \end_inset
17232 </cell>
17233 </row>
17234 <row>
17235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17236 \begin_inset Text
17237
17238 \begin_layout Plain Layout
17239
17240 \backslash
17241 otimes
17242 \end_layout
17243
17244 \end_inset
17245 </cell>
17246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17247 \begin_inset Text
17248
17249 \begin_layout Plain Layout
17250 \begin_inset Formula $\otimes$
17251 \end_inset
17252
17253
17254 \end_layout
17255
17256 \end_inset
17257 </cell>
17258 </row>
17259 <row>
17260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17261 \begin_inset Text
17262
17263 \begin_layout Plain Layout
17264
17265 \backslash
17266 oslash
17267 \end_layout
17268
17269 \end_inset
17270 </cell>
17271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17272 \begin_inset Text
17273
17274 \begin_layout Plain Layout
17275 \begin_inset Formula $\oslash$
17276 \end_inset
17277
17278
17279 \end_layout
17280
17281 \end_inset
17282 </cell>
17283 </row>
17284 <row>
17285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17286 \begin_inset Text
17287
17288 \begin_layout Plain Layout
17289
17290 \backslash
17291 odot
17292 \end_layout
17293
17294 \end_inset
17295 </cell>
17296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17297 \begin_inset Text
17298
17299 \begin_layout Plain Layout
17300 \begin_inset Formula $\odot$
17301 \end_inset
17302
17303
17304 \end_layout
17305
17306 \end_inset
17307 </cell>
17308 </row>
17309 <row>
17310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17311 \begin_inset Text
17312
17313 \begin_layout Plain Layout
17314
17315 \backslash
17316 amalg
17317 \end_layout
17318
17319 \end_inset
17320 </cell>
17321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17322 \begin_inset Text
17323
17324 \begin_layout Plain Layout
17325 \begin_inset Formula $\amalg$
17326 \end_inset
17327
17328
17329 \end_layout
17330
17331 \end_inset
17332 </cell>
17333 </row>
17334 <row>
17335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17336 \begin_inset Text
17337
17338 \begin_layout Plain Layout
17339
17340 \backslash
17341 uplus
17342 \end_layout
17343
17344 \end_inset
17345 </cell>
17346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17347 \begin_inset Text
17348
17349 \begin_layout Plain Layout
17350 \begin_inset Formula $\uplus$
17351 \end_inset
17352
17353
17354 \end_layout
17355
17356 \end_inset
17357 </cell>
17358 </row>
17359 <row>
17360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17361 \begin_inset Text
17362
17363 \begin_layout Plain Layout
17364
17365 \backslash
17366 setminus
17367 \end_layout
17368
17369 \end_inset
17370 </cell>
17371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17372 \begin_inset Text
17373
17374 \begin_layout Plain Layout
17375 \begin_inset Formula $\setminus$
17376 \end_inset
17377
17378
17379 \end_layout
17380
17381 \end_inset
17382 </cell>
17383 </row>
17384 <row>
17385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17386 \begin_inset Text
17387
17388 \begin_layout Plain Layout
17389
17390 \backslash
17391 sqcap
17392 \end_layout
17393
17394 \end_inset
17395 </cell>
17396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17397 \begin_inset Text
17398
17399 \begin_layout Plain Layout
17400 \begin_inset Formula $\sqcap$
17401 \end_inset
17402
17403
17404 \end_layout
17405
17406 \end_inset
17407 </cell>
17408 </row>
17409 <row>
17410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17411 \begin_inset Text
17412
17413 \begin_layout Plain Layout
17414
17415 \backslash
17416 sqcup
17417 \end_layout
17418
17419 \end_inset
17420 </cell>
17421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17422 \begin_inset Text
17423
17424 \begin_layout Plain Layout
17425 \begin_inset Formula $\sqcup$
17426 \end_inset
17427
17428
17429 \end_layout
17430
17431 \end_inset
17432 </cell>
17433 </row>
17434 <row>
17435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17436 \begin_inset Text
17437
17438 \begin_layout Plain Layout
17439
17440 \backslash
17441 triangleleft
17442 \end_layout
17443
17444 \end_inset
17445 </cell>
17446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17447 \begin_inset Text
17448
17449 \begin_layout Plain Layout
17450 \begin_inset Formula $\triangleleft$
17451 \end_inset
17452
17453
17454 \end_layout
17455
17456 \end_inset
17457 </cell>
17458 </row>
17459 <row>
17460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17461 \begin_inset Text
17462
17463 \begin_layout Plain Layout
17464
17465 \backslash
17466 triangleright
17467 \end_layout
17468
17469 \end_inset
17470 </cell>
17471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17472 \begin_inset Text
17473
17474 \begin_layout Plain Layout
17475 \begin_inset Formula $\triangleright$
17476 \end_inset
17477
17478
17479 \end_layout
17480
17481 \end_inset
17482 </cell>
17483 </row>
17484 </lyxtabular>
17485
17486 \end_inset
17487
17488
17489 \begin_inset space \hfill{}
17490 \end_inset
17491
17492
17493 \end_layout
17494
17495 \begin_layout Standard
17496 All binary operators can also be inserted via the math toolbar button 
17497 \begin_inset Graphics
17498         filename ../images/math/pm.png
17499         scale 85
17500
17501 \end_inset
17502
17503 .
17504 \end_layout
17505
17506 \begin_layout Standard
17507 To typeset the Laplace operator also 
17508 \series bold
17509
17510 \backslash
17511 Delta
17512 \series default
17513  or 
17514 \series bold
17515
17516 \backslash
17517 nabla
17518 \series default
17519 ^
17520 \series bold
17521 2
17522 \series default
17523  (
17524 \begin_inset Formula $\nabla^{2}$
17525 \end_inset
17526
17527 ) can be used instead of 
17528 \series bold
17529
17530 \backslash
17531 bigtriangleup
17532 \series default
17533  .
17534 \end_layout
17535
17536 \begin_layout Standard
17537 The character 
17538 \family sans
17539 Menu Separator
17540 \family default
17541  from the menu 
17542 \family sans
17543 Insert\SpecialChar \menuseparator
17544 Special Character
17545 \family default
17546  is the operator 
17547 \series bold
17548
17549 \backslash
17550 triangleright
17551 \series default
17552 .
17553 \end_layout
17554
17555 \begin_layout Subsection
17556 Self-defined Operators
17557 \begin_inset CommandInset label
17558 LatexCommand label
17559 name "sub:Self-defined-Operators"
17560
17561 \end_inset
17562
17563
17564 \begin_inset Index
17565 status collapsed
17566
17567 \begin_layout Plain Layout
17568 Operators ! self-defined
17569 \end_layout
17570
17571 \end_inset
17572
17573
17574 \end_layout
17575
17576 \begin_layout Standard
17577 With the help of the command 
17578 \series bold
17579
17580 \backslash
17581 DeclareMathOperator
17582 \series default
17583
17584 \begin_inset Index
17585 status collapsed
17586
17587 \begin_layout Plain Layout
17588 Commands ! D ! 
17589 \backslash
17590 dbinom@
17591 \backslash
17592 DeclareMathOperator
17593 \end_layout
17594
17595 \end_inset
17596
17597  custom operators can be defined in the LaTeX-preamble.
17598  Its command scheme is:
17599 \end_layout
17600
17601 \begin_layout Standard
17602
17603 \series bold
17604
17605 \backslash
17606 DeclareMathOperator{new command}{display}
17607 \end_layout
17608
17609 \begin_layout Standard
17610 Display can be characters or symbols that define how the operator looks
17611  in the output.
17612  To define a big operator a * is set behind the command.
17613  All self-defined big operators can have limits as described in 
17614 \begin_inset CommandInset ref
17615 LatexCommand ref
17616 reference "sub:Operator-Limits"
17617
17618 \end_inset
17619
17620 .
17621 \end_layout
17622
17623 \begin_layout Standard
17624 For example the LaTeX-preamble line
17625 \end_layout
17626
17627 \begin_layout Standard
17628
17629 \series bold
17630
17631 \backslash
17632 DeclareMathOperator*{
17633 \backslash
17634 Lozenge}{
17635 \backslash
17636 blacklozenge}
17637 \end_layout
17638
17639 \begin_layout Standard
17640 defines the command 
17641 \series bold
17642
17643 \backslash
17644 Lozenge
17645 \series default
17646 , that inserts a big operator consisting of the lozenge symbol from 
17647 \begin_inset CommandInset ref
17648 LatexCommand ref
17649 reference "sub:Miscellaneous-Symbols"
17650
17651 \end_inset
17652
17653 :
17654 \begin_inset Formula \[
17655 \Lozenge_{n=1}^{\infty}\]
17656
17657 \end_inset
17658
17659 The command for this formula is: 
17660 \series bold
17661
17662 \backslash
17663 Lozenge
17664 \series default
17665 ^
17666 \series bold
17667
17668 \backslash
17669 infty
17670 \begin_inset Formula $\to$
17671 \end_inset
17672
17673 _n=1
17674 \end_layout
17675
17676 \begin_layout Standard
17677 \begin_inset VSpace bigskip
17678 \end_inset
17679
17680 When self-defined operators are not used several times in the document,
17681  they can also be defined with the commands 
17682 \series bold
17683
17684 \backslash
17685 mathop
17686 \series default
17687
17688 \begin_inset Index
17689 status collapsed
17690
17691 \begin_layout Plain Layout
17692 Commands ! M ! 
17693 \backslash
17694 mathop
17695 \end_layout
17696
17697 \end_inset
17698
17699  and 
17700 \series bold
17701
17702 \backslash
17703 mathbin
17704 \series default
17705
17706 \begin_inset Index
17707 status collapsed
17708
17709 \begin_layout Plain Layout
17710 Commands ! M ! 
17711 \backslash
17712 mathbin
17713 \end_layout
17714
17715 \end_inset
17716
17717 , which have the following scheme:
17718 \end_layout
17719
17720 \begin_layout Standard
17721
17722 \series bold
17723
17724 \backslash
17725 mathop{display}
17726 \series default
17727  and 
17728 \series bold
17729
17730 \backslash
17731 mathbin{display}
17732 \end_layout
17733
17734 \begin_layout Standard
17735
17736 \series bold
17737
17738 \backslash
17739 mathop
17740 \series default
17741  defines big operators, 
17742 \series bold
17743
17744 \backslash
17745 mathbin
17746 \series default
17747  binary operators.
17748 \end_layout
17749
17750 \begin_layout Standard
17751
17752 \series bold
17753
17754 \backslash
17755 mathop
17756 \series default
17757  can e.
17758 \begin_inset space \thinspace{}
17759 \end_inset
17760
17761 g.
17762 \begin_inset space \space{}
17763 \end_inset
17764
17765 be used to use one limit for several operators:
17766 \end_layout
17767
17768 \begin_layout Standard
17769 \begin_inset Formula \[
17770 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17771
17772 \end_inset
17773
17774
17775 \end_layout
17776
17777 \begin_layout Standard
17778 The command for the formula above is:
17779 \begin_inset Newline newline
17780 \end_inset
17781
17782
17783 \series bold
17784
17785 \backslash
17786 mathop{
17787 \backslash
17788 sum
17789 \backslash
17790 negmedspace
17791 \backslash
17792 sum
17793 \series default
17794
17795 \begin_inset ERT
17796 status collapsed
17797
17798 \begin_layout Plain Layout
17799
17800
17801 \backslash
17802 spce 
17803 \end_layout
17804
17805 \end_inset
17806
17807
17808 \series bold
17809
17810 \begin_inset Formula $\to$
17811 \end_inset
17812
17813 ^N
17814 \series default
17815
17816 \begin_inset ERT
17817 status collapsed
17818
17819 \begin_layout Plain Layout
17820
17821
17822 \backslash
17823 spce 
17824 \end_layout
17825
17826 \end_inset
17827
17828
17829 \series bold
17830 _i,j=1
17831 \end_layout
17832
17833 \begin_layout Section
17834 Fonts
17835 \begin_inset Index
17836 status collapsed
17837
17838 \begin_layout Plain Layout
17839 Fonts
17840 \end_layout
17841
17842 \end_inset
17843
17844
17845 \end_layout
17846
17847 \begin_layout Subsection
17848 Font Styles
17849 \begin_inset CommandInset label
17850 LatexCommand label
17851 name "sub:Font-Styles"
17852
17853 \end_inset
17854
17855
17856 \begin_inset Index
17857 status collapsed
17858
17859 \begin_layout Plain Layout
17860 Font ! style
17861 \end_layout
17862
17863 \end_inset
17864
17865
17866 \end_layout
17867
17868 \begin_layout Standard
17869 Latin letters in formulas can be set in one of the following font styles:
17870 \begin_inset VSpace -2mm
17871 \end_inset
17872
17873
17874 \end_layout
17875
17876 \begin_layout Standard
17877 \align center
17878 \begin_inset Tabular
17879 <lyxtabular version="3" rows="6" columns="3">
17880 <features>
17881 <column alignment="center" valignment="top" width="0">
17882 <column alignment="center" valignment="top" width="0">
17883 <column alignment="center" valignment="top" width="0">
17884 <row>
17885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17886 \begin_inset Text
17887
17888 \begin_layout Plain Layout
17889 Command
17890 \end_layout
17891
17892 \end_inset
17893 </cell>
17894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17895 \begin_inset Text
17896
17897 \begin_layout Plain Layout
17898 Result
17899 \end_layout
17900
17901 \end_inset
17902 </cell>
17903 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17904 \begin_inset Text
17905
17906 \begin_layout Plain Layout
17907 shortcut
17908 \end_layout
17909
17910 \end_inset
17911 </cell>
17912 </row>
17913 <row>
17914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17915 \begin_inset Text
17916
17917 \begin_layout Plain Layout
17918
17919 \backslash
17920 mathbb
17921 \series bold
17922
17923 \begin_inset ERT
17924 status collapsed
17925
17926 \begin_layout Plain Layout
17927
17928
17929 \backslash
17930 spce 
17931 \end_layout
17932
17933 \end_inset
17934
17935
17936 \series default
17937 ABC
17938 \end_layout
17939
17940 \end_inset
17941 </cell>
17942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17943 \begin_inset Text
17944
17945 \begin_layout Plain Layout
17946 \begin_inset Formula $\mathbb{ABC}$
17947 \end_inset
17948
17949
17950 \end_layout
17951
17952 \end_inset
17953 </cell>
17954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17955 \begin_inset Text
17956
17957 \begin_layout Plain Layout
17958 \begin_inset Info
17959 type  "shortcut"
17960 arg   "font-noun"
17961 \end_inset
17962
17963
17964 \end_layout
17965
17966 \end_inset
17967 </cell>
17968 </row>
17969 <row>
17970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17971 \begin_inset Text
17972
17973 \begin_layout Plain Layout
17974
17975 \backslash
17976 mathbf
17977 \series bold
17978
17979 \begin_inset ERT
17980 status collapsed
17981
17982 \begin_layout Plain Layout
17983
17984
17985 \backslash
17986 spce 
17987 \end_layout
17988
17989 \end_inset
17990
17991
17992 \series default
17993 AbC
17994 \end_layout
17995
17996 \end_inset
17997 </cell>
17998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17999 \begin_inset Text
18000
18001 \begin_layout Plain Layout
18002 \begin_inset Formula $\mathbf{AbC}$
18003 \end_inset
18004
18005
18006 \end_layout
18007
18008 \end_inset
18009 </cell>
18010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18011 \begin_inset Text
18012
18013 \begin_layout Plain Layout
18014 \begin_inset Info
18015 type  "shortcut"
18016 arg   "font-bold"
18017 \end_inset
18018
18019
18020 \end_layout
18021
18022 \end_inset
18023 </cell>
18024 </row>
18025 <row>
18026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18027 \begin_inset Text
18028
18029 \begin_layout Plain Layout
18030
18031 \backslash
18032 boldsymbol
18033 \series bold
18034
18035 \begin_inset ERT
18036 status collapsed
18037
18038 \begin_layout Plain Layout
18039
18040
18041 \backslash
18042 spce 
18043 \end_layout
18044
18045 \end_inset
18046
18047
18048 \series default
18049 AbC
18050 \end_layout
18051
18052 \end_inset
18053 </cell>
18054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18055 \begin_inset Text
18056
18057 \begin_layout Plain Layout
18058 \begin_inset Formula $\boldsymbol{AbC}$
18059 \end_inset
18060
18061
18062 \end_layout
18063
18064 \end_inset
18065 </cell>
18066 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18067 \begin_inset Text
18068
18069 \begin_layout Plain Layout
18070 \begin_inset Info
18071 type  "shortcuts"
18072 arg   "font-boldsymbol"
18073 \end_inset
18074
18075
18076 \end_layout
18077
18078 \end_inset
18079 </cell>
18080 </row>
18081 <row>
18082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18083 \begin_inset Text
18084
18085 \begin_layout Plain Layout
18086
18087 \backslash
18088 mathcal
18089 \series bold
18090
18091 \begin_inset ERT
18092 status collapsed
18093
18094 \begin_layout Plain Layout
18095
18096
18097 \backslash
18098 spce 
18099 \end_layout
18100
18101 \end_inset
18102
18103
18104 \series default
18105 ABC
18106 \end_layout
18107
18108 \end_inset
18109 </cell>
18110 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18111 \begin_inset Text
18112
18113 \begin_layout Plain Layout
18114 \begin_inset Formula $\mathcal{ABC}$
18115 \end_inset
18116
18117
18118 \end_layout
18119
18120 \end_inset
18121 </cell>
18122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18123 \begin_inset Text
18124
18125 \begin_layout Plain Layout
18126 \begin_inset Info
18127 type  "shortcut"
18128 arg   "font-emph"
18129 \end_inset
18130
18131
18132 \end_layout
18133
18134 \end_inset
18135 </cell>
18136 </row>
18137 <row>
18138 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18139 \begin_inset Text
18140
18141 \begin_layout Plain Layout
18142
18143 \backslash
18144 mathfrak
18145 \series bold
18146
18147 \begin_inset ERT
18148 status collapsed
18149
18150 \begin_layout Plain Layout
18151
18152
18153 \backslash
18154 spce 
18155 \end_layout
18156
18157 \end_inset
18158
18159
18160 \series default
18161 AbC
18162 \end_layout
18163
18164 \end_inset
18165 </cell>
18166 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18167 \begin_inset Text
18168
18169 \begin_layout Plain Layout
18170 \begin_inset Formula $\mathfrak{AbC}$
18171 \end_inset
18172
18173
18174 \end_layout
18175
18176 \end_inset
18177 </cell>
18178 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18179 \begin_inset Text
18180
18181 \begin_layout Plain Layout
18182 -
18183 \end_layout
18184
18185 \end_inset
18186 </cell>
18187 </row>
18188 </lyxtabular>
18189
18190 \end_inset
18191
18192
18193 \end_layout
18194
18195 \begin_layout Standard
18196 \align center
18197 \begin_inset Tabular
18198 <lyxtabular version="3" rows="5" columns="3">
18199 <features>
18200 <column alignment="center" valignment="top" width="0">
18201 <column alignment="center" valignment="top" width="0">
18202 <column alignment="center" valignment="top" width="0">
18203 <row>
18204 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18205 \begin_inset Text
18206
18207 \begin_layout Plain Layout
18208 Command
18209 \end_layout
18210
18211 \end_inset
18212 </cell>
18213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18214 \begin_inset Text
18215
18216 \begin_layout Plain Layout
18217 Result
18218 \end_layout
18219
18220 \end_inset
18221 </cell>
18222 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18223 \begin_inset Text
18224
18225 \begin_layout Plain Layout
18226 shortcut
18227 \end_layout
18228
18229 \end_inset
18230 </cell>
18231 </row>
18232 <row>
18233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18234 \begin_inset Text
18235
18236 \begin_layout Plain Layout
18237
18238 \backslash
18239 mathit
18240 \series bold
18241
18242 \begin_inset ERT
18243 status collapsed
18244
18245 \begin_layout Plain Layout
18246
18247
18248 \backslash
18249 spce 
18250 \end_layout
18251
18252 \end_inset
18253
18254
18255 \series default
18256 AbC
18257 \end_layout
18258
18259 \end_inset
18260 </cell>
18261 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18262 \begin_inset Text
18263
18264 \begin_layout Plain Layout
18265 \begin_inset Formula $\mathit{AbC}$
18266 \end_inset
18267
18268
18269 \end_layout
18270
18271 \end_inset
18272 </cell>
18273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18274 \begin_inset Text
18275
18276 \begin_layout Plain Layout
18277 -
18278 \end_layout
18279
18280 \end_inset
18281 </cell>
18282 </row>
18283 <row>
18284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18285 \begin_inset Text
18286
18287 \begin_layout Plain Layout
18288
18289 \backslash
18290 mathrm
18291 \series bold
18292
18293 \begin_inset ERT
18294 status collapsed
18295
18296 \begin_layout Plain Layout
18297
18298
18299 \backslash
18300 spce 
18301 \end_layout
18302
18303 \end_inset
18304
18305
18306 \series default
18307 AbC
18308 \end_layout
18309
18310 \end_inset
18311 </cell>
18312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18313 \begin_inset Text
18314
18315 \begin_layout Plain Layout
18316 \begin_inset Formula $\mathrm{AbC}$
18317 \end_inset
18318
18319
18320 \end_layout
18321
18322 \end_inset
18323 </cell>
18324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18325 \begin_inset Text
18326
18327 \begin_layout Plain Layout
18328 \begin_inset Info
18329 type  "shortcut"
18330 arg   "font-roman"
18331 \end_inset
18332
18333
18334 \end_layout
18335
18336 \end_inset
18337 </cell>
18338 </row>
18339 <row>
18340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18341 \begin_inset Text
18342
18343 \begin_layout Plain Layout
18344
18345 \backslash
18346 mathsf
18347 \series bold
18348
18349 \begin_inset ERT
18350 status collapsed
18351
18352 \begin_layout Plain Layout
18353
18354
18355 \backslash
18356 spce 
18357 \end_layout
18358
18359 \end_inset
18360
18361
18362 \series default
18363 AbC
18364 \end_layout
18365
18366 \end_inset
18367 </cell>
18368 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18369 \begin_inset Text
18370
18371 \begin_layout Plain Layout
18372 \begin_inset Formula $\mathsf{AbC}$
18373 \end_inset
18374
18375
18376 \end_layout
18377
18378 \end_inset
18379 </cell>
18380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18381 \begin_inset Text
18382
18383 \begin_layout Plain Layout
18384 \begin_inset Info
18385 type  "shortcut"
18386 arg   "font-sans"
18387 \end_inset
18388
18389
18390 \end_layout
18391
18392 \end_inset
18393 </cell>
18394 </row>
18395 <row>
18396 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18397 \begin_inset Text
18398
18399 \begin_layout Plain Layout
18400
18401 \backslash
18402 mathtt
18403 \series bold
18404
18405 \begin_inset ERT
18406 status collapsed
18407
18408 \begin_layout Plain Layout
18409
18410
18411 \backslash
18412 spce 
18413 \end_layout
18414
18415 \end_inset
18416
18417
18418 \series default
18419 AbC
18420 \end_layout
18421
18422 \end_inset
18423 </cell>
18424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18425 \begin_inset Text
18426
18427 \begin_layout Plain Layout
18428 \begin_inset Formula $\mathtt{AbC}$
18429 \end_inset
18430
18431
18432 \end_layout
18433
18434 \end_inset
18435 </cell>
18436 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18437 \begin_inset Text
18438
18439 \begin_layout Plain Layout
18440 \begin_inset Info
18441 type  "shortcut"
18442 arg   "font-typewriter"
18443 \end_inset
18444
18445
18446 \end_layout
18447
18448 \end_inset
18449 </cell>
18450 </row>
18451 </lyxtabular>
18452
18453 \end_inset
18454
18455
18456 \end_layout
18457
18458 \begin_layout Standard
18459 \begin_inset Note Greyedout
18460 status open
18461
18462 \begin_layout Plain Layout
18463
18464 \series bold
18465 Note:
18466 \series default
18467  The styles 
18468 \series bold
18469
18470 \backslash
18471 mathbb
18472 \series default
18473  and 
18474 \series bold
18475
18476 \backslash
18477 mathcal
18478 \series default
18479  can only be used for big letters.
18480 \end_layout
18481
18482 \end_inset
18483
18484
18485 \end_layout
18486
18487 \begin_layout Standard
18488 Predefined is the style 
18489 \series bold
18490
18491 \backslash
18492 mathnormal
18493 \series default
18494 .
18495 \end_layout
18496
18497 \begin_layout Standard
18498 The style commands work also for letters in mathematical constructs:
18499 \begin_inset Formula \[
18500 \mathfrak{A=\frac{b}{C}}\]
18501
18502 \end_inset
18503
18504
18505 \end_layout
18506
18507 \begin_layout Standard
18508 Characters in mathematical text don't appear in a math font style but in
18509  the text font style 
18510 \series bold
18511
18512 \backslash
18513 textrm
18514 \series default
18515 .
18516  That their style can't be set correctly via the text style dialog is a
18517  bug in LyX.
18518 \begin_inset Foot
18519 status collapsed
18520
18521 \begin_layout Plain Layout
18522 \begin_inset CommandInset href
18523 LatexCommand href
18524 name "LyX-bug #4091"
18525 target "http://bugzilla.lyx.org/show_bug.cgi?id=4091"
18526
18527 \end_inset
18528
18529
18530 \end_layout
18531
18532 \end_inset
18533
18534
18535 \end_layout
18536
18537 \begin_layout Standard
18538 Instead of the style commands the dialog 
18539 \family sans
18540 Edit\SpecialChar \menuseparator
18541 Math\SpecialChar \menuseparator
18542 Text Style
18543 \family default
18544  or the toolbar button 
18545 \begin_inset Graphics
18546         filename ../images/math/font.png
18547         scale 85
18548
18549 \end_inset
18550
18551  can be used.
18552 \end_layout
18553
18554 \begin_layout Subsection
18555 Bold Formulas
18556 \begin_inset CommandInset label
18557 LatexCommand label
18558 name "sub:Bold-Formulas"
18559
18560 \end_inset
18561
18562
18563 \begin_inset Index
18564 status collapsed
18565
18566 \begin_layout Plain Layout
18567 Formula ! bold
18568 \end_layout
18569
18570 \end_inset
18571
18572
18573 \end_layout
18574
18575 \begin_layout Standard
18576 To make a complete formula bold, the command 
18577 \series bold
18578
18579 \backslash
18580 mathbf
18581 \series default
18582  from the previous subsection cannot be used, because it doesn't work for
18583  small Greek letters.
18584  Furthermore it prints Latin letters always upright, like in the following
18585  equation:
18586 \end_layout
18587
18588 \begin_layout Standard
18589 \begin_inset Formula \[
18590 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{equation with \textbackslash mathbf}\]
18591
18592 \end_inset
18593
18594
18595 \end_layout
18596
18597 \begin_layout Standard
18598 To display the formula correctly, the command 
18599 \series bold
18600
18601 \backslash
18602 boldsymbol
18603 \series default
18604  is used:
18605 \begin_inset Formula \[
18606 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{equation with \textbackslash boldsymbol}}\]
18607
18608 \end_inset
18609
18610 It is also possible to set the formula in a 
18611 \series bold
18612 boldmath environment
18613 \series default
18614 .
18615  This environment is created by inserting the command 
18616 \series bold
18617
18618 \backslash
18619 boldmath
18620 \begin_inset Index
18621 status collapsed
18622
18623 \begin_layout Plain Layout
18624 Commands ! B ! 
18625 \backslash
18626 boldmath
18627 \end_layout
18628
18629 \end_inset
18630
18631
18632 \series default
18633  in TeX-mode.
18634  To end the environment, the command 
18635 \series bold
18636
18637 \backslash
18638 unboldmath
18639 \begin_inset Index
18640 status collapsed
18641
18642 \begin_layout Plain Layout
18643 Commands ! U ! 
18644 \backslash
18645 unboldmath
18646 \end_layout
18647
18648 \end_inset
18649
18650
18651 \series default
18652  is inserted in TeX-mode.
18653 \begin_inset ERT
18654 status collapsed
18655
18656 \begin_layout Plain Layout
18657
18658
18659 \backslash
18660 boldmath 
18661 \end_layout
18662
18663 \end_inset
18664
18665
18666 \begin_inset Formula \[
18667 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{equation in a boldmath environment}\]
18668
18669 \end_inset
18670
18671
18672 \begin_inset ERT
18673 status collapsed
18674
18675 \begin_layout Plain Layout
18676
18677
18678 \backslash
18679 unboldmath 
18680 \end_layout
18681
18682 \end_inset
18683
18684
18685 \end_layout
18686
18687 \begin_layout Subsection
18688 Colored Formulas
18689 \begin_inset Index
18690 status collapsed
18691
18692 \begin_layout Plain Layout
18693 Formula ! colored
18694 \end_layout
18695
18696 \end_inset
18697
18698
18699 \end_layout
18700
18701 \begin_layout Standard
18702 Formulas can be colored like normal text: Highlight a formula or a formula
18703  part and use the 
18704 \family sans
18705 Text Style
18706 \family default
18707  dialog.
18708  Here is a formula in magenta:
18709 \begin_inset Formula \[
18710 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}\]
18711
18712 \end_inset
18713
18714
18715 \end_layout
18716
18717 \begin_layout Standard
18718 You can also define your own colors as described in 
18719 \begin_inset CommandInset ref
18720 LatexCommand ref
18721 reference "sub:Colored-Boxes"
18722
18723 \end_inset
18724
18725 .
18726  They can be used with the TeX code command 
18727 \series bold
18728
18729 \backslash
18730 textcolor
18731 \series default
18732
18733 \begin_inset Index
18734 status collapsed
18735
18736 \begin_layout Plain Layout
18737 Commands ! T ! 
18738 \backslash
18739 textcolor
18740 \end_layout
18741
18742 \end_inset
18743
18744  in the scheme
18745 \end_layout
18746
18747 \begin_layout Standard
18748
18749 \series bold
18750
18751 \backslash
18752 textcolor{color}{characters or formula}
18753 \end_layout
18754
18755 \begin_layout Standard
18756 The following example was colored completely dark green and partly red:
18757 \end_layout
18758
18759 \begin_layout Standard
18760 \begin_inset ERT
18761 status collapsed
18762
18763 \begin_layout Plain Layout
18764
18765
18766 \backslash
18767 textcolor{darkgreen}{
18768 \end_layout
18769
18770 \end_inset
18771
18772
18773 \begin_inset Formula \[
18774 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}\]
18775
18776 \end_inset
18777
18778
18779 \begin_inset ERT
18780 status collapsed
18781
18782 \begin_layout Plain Layout
18783
18784 }
18785 \end_layout
18786
18787 \end_inset
18788
18789
18790 \end_layout
18791
18792 \begin_layout Standard
18793 Due to a bug in LyX only complete formulas can be colored with self-defined
18794  colors.
18795 \begin_inset Foot
18796 status collapsed
18797
18798 \begin_layout Plain Layout
18799 \begin_inset CommandInset href
18800 LatexCommand href
18801 name "LyX-bug #5269"
18802 target "http://bugzilla.lyx.org/show_bug.cgi?id=5269"
18803
18804 \end_inset
18805
18806
18807 \end_layout
18808
18809 \end_inset
18810
18811
18812 \end_layout
18813
18814 \begin_layout Subsection
18815 Font Sizes
18816 \begin_inset CommandInset label
18817 LatexCommand label
18818 name "sub:Font-Sizes"
18819
18820 \end_inset
18821
18822
18823 \begin_inset Index
18824 status collapsed
18825
18826 \begin_layout Plain Layout
18827 Font ! size
18828 \end_layout
18829
18830 \end_inset
18831
18832
18833 \end_layout
18834
18835 \begin_layout Standard
18836 For characters in formulas there are, analog to characters in text, the
18837  following size commands:
18838 \end_layout
18839
18840 \begin_layout Standard
18841
18842 \series bold
18843
18844 \backslash
18845 Huge
18846 \series default
18847
18848 \series bold
18849
18850 \backslash
18851 huge
18852 \series default
18853
18854 \series bold
18855
18856 \backslash
18857 LARGE
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 normalsize
18876 \series default
18877
18878 \series bold
18879
18880 \backslash
18881 small
18882 \series default
18883 ,
18884 \begin_inset Newline newline
18885 \end_inset
18886
18887
18888 \series bold
18889
18890 \backslash
18891 footnotesize
18892 \series default
18893
18894 \series bold
18895
18896 \backslash
18897 scriptsize
18898 \series default
18899 , and 
18900 \series bold
18901
18902 \backslash
18903 tiny
18904 \end_layout
18905
18906 \begin_layout Standard
18907 The size produced by the commands depends on the document font size, that
18908  corresponds with the command 
18909 \series bold
18910
18911 \backslash
18912 normalsize
18913 \series default
18914 .
18915  The other commands produce smaller or larger sizes than 
18916 \series bold
18917
18918 \backslash
18919 normalsize
18920 \series default
18921 .
18922  The font size can however not exceed a certain value.
18923  Is for example the document font size 12
18924 \begin_inset space \thinspace{}
18925 \end_inset
18926
18927 pt, the command 
18928 \series bold
18929
18930 \backslash
18931 Huge
18932 \series default
18933  switches to the same size as 
18934 \series bold
18935
18936 \backslash
18937 huge
18938 \series default
18939 .
18940  
18941 \end_layout
18942
18943 \begin_layout Standard
18944 A size command is inserted in TeX-mode before the formula and sets the size
18945  for all following formula and text characters.
18946  To switch back to the initial size, the command 
18947 \series bold
18948
18949 \backslash
18950 normalsize
18951 \series default
18952  is inserted behind the formula in TeX-mode.
18953 \end_layout
18954
18955 \begin_layout Standard
18956 Within a formula the size can only be changed for symbols or letters in
18957  mathematical text.
18958  To do this, the size command is inserted in mathematical text.
18959  All following characters until the end of the mathematical text or until
18960  another size command will have the selected size.
18961  Two examples:
18962 \begin_inset VSpace -2mm
18963 \end_inset
18964
18965
18966 \end_layout
18967
18968 \begin_layout Standard
18969 \begin_inset ERT
18970 status collapsed
18971
18972 \begin_layout Plain Layout
18973
18974
18975 \backslash
18976 huge 
18977 \end_layout
18978
18979 \end_inset
18980
18981
18982 \begin_inset Formula \[
18983 A=\frac{B}{c}\cdot\maltese\]
18984
18985 \end_inset
18986
18987
18988 \begin_inset Formula \[
18989 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
18990
18991 \end_inset
18992
18993
18994 \begin_inset ERT
18995 status collapsed
18996
18997 \begin_layout Plain Layout
18998
18999
19000 \backslash
19001 normalsize 
19002 \end_layout
19003
19004 \end_inset
19005
19006
19007 \end_layout
19008
19009 \begin_layout Standard
19010 \begin_inset VSpace medskip
19011 \end_inset
19012
19013 Before both formulas the command 
19014 \series bold
19015
19016 \backslash
19017 huge
19018 \series default
19019  was inserted.
19020  The command for the second formula is:
19021 \begin_inset Newline newline
19022 \end_inset
19023
19024
19025 \series bold
19026
19027 \backslash
19028 maltese
19029 \begin_inset ERT
19030 status collapsed
19031
19032 \begin_layout Plain Layout
19033
19034
19035 \backslash
19036 spce 
19037 \end_layout
19038
19039 \end_inset
19040
19041 A Alt+M M 
19042 \backslash
19043 Large
19044 \begin_inset ERT
19045 status collapsed
19046
19047 \begin_layout Plain Layout
19048
19049
19050 \backslash
19051 spce 
19052 \end_layout
19053
19054 \end_inset
19055
19056
19057 \backslash
19058 maltese
19059 \begin_inset ERT
19060 status collapsed
19061
19062 \begin_layout Plain Layout
19063
19064
19065 \backslash
19066 spce 
19067 \end_layout
19068
19069 \end_inset
19070
19071
19072 \backslash
19073 textit
19074 \begin_inset ERT
19075 status collapsed
19076
19077 \begin_layout Plain Layout
19078
19079
19080 \backslash
19081 spce 
19082 \end_layout
19083
19084 \end_inset
19085
19086 A
19087 \begin_inset Formula $\to$
19088 \end_inset
19089
19090
19091 \begin_inset Formula $\to$
19092 \end_inset
19093
19094
19095 \begin_inset Newline newline
19096 \end_inset
19097
19098
19099 \begin_inset space \hspace*{}
19100 \length 1cm
19101 \end_inset
19102
19103 Alt+M
19104 \series default
19105  
19106 \series bold
19107
19108 \backslash
19109 tiny
19110 \begin_inset ERT
19111 status collapsed
19112
19113 \begin_layout Plain Layout
19114
19115
19116 \backslash
19117 spce 
19118 \end_layout
19119
19120 \end_inset
19121
19122
19123 \backslash
19124 maltese
19125 \begin_inset ERT
19126 status collapsed
19127
19128 \begin_layout Plain Layout
19129
19130
19131 \backslash
19132 spce 
19133 \end_layout
19134
19135 \end_inset
19136
19137
19138 \backslash
19139 textit
19140 \begin_inset ERT
19141 status collapsed
19142
19143 \begin_layout Plain Layout
19144
19145
19146 \backslash
19147 spce 
19148 \end_layout
19149
19150 \end_inset
19151
19152 A
19153 \end_layout
19154
19155 \begin_layout Standard
19156 If a symbol cannot be displayed in different sizes, it will always be displayed
19157  in the default size.
19158 \end_layout
19159
19160 \begin_layout Section
19161 Greek Letters
19162 \begin_inset Index
19163 status collapsed
19164
19165 \begin_layout Plain Layout
19166 Greek letters
19167 \end_layout
19168
19169 \end_inset
19170
19171
19172 \end_layout
19173
19174 \begin_layout Standard
19175 All Greek letters can also be inserted via the toolbar button 
19176 \begin_inset Graphics
19177         filename ../images/math/alpha.png
19178         scale 85
19179
19180 \end_inset
19181
19182 .
19183 \end_layout
19184
19185 \begin_layout Subsection
19186 Small Letters
19187 \begin_inset Index
19188 status collapsed
19189
19190 \begin_layout Plain Layout
19191 Greek letters ! small
19192 \end_layout
19193
19194 \end_inset
19195
19196
19197 \end_layout
19198
19199 \begin_layout Standard
19200 \begin_inset space \hfill{}
19201 \end_inset
19202
19203
19204 \begin_inset Tabular
19205 <lyxtabular version="3" rows="11" columns="2">
19206 <features>
19207 <column alignment="center" valignment="top" width="0pt">
19208 <column alignment="center" valignment="top" width="0pt">
19209 <row>
19210 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19211 \begin_inset Text
19212
19213 \begin_layout Plain Layout
19214 Command
19215 \end_layout
19216
19217 \end_inset
19218 </cell>
19219 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19220 \begin_inset Text
19221
19222 \begin_layout Plain Layout
19223 Result
19224 \end_layout
19225
19226 \end_inset
19227 </cell>
19228 </row>
19229 <row>
19230 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19231 \begin_inset Text
19232
19233 \begin_layout Plain Layout
19234
19235 \backslash
19236 alpha
19237 \end_layout
19238
19239 \end_inset
19240 </cell>
19241 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19242 \begin_inset Text
19243
19244 \begin_layout Plain Layout
19245 \begin_inset Formula $\alpha$
19246 \end_inset
19247
19248
19249 \end_layout
19250
19251 \end_inset
19252 </cell>
19253 </row>
19254 <row>
19255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19256 \begin_inset Text
19257
19258 \begin_layout Plain Layout
19259
19260 \backslash
19261 beta
19262 \end_layout
19263
19264 \end_inset
19265 </cell>
19266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19267 \begin_inset Text
19268
19269 \begin_layout Plain Layout
19270 \begin_inset Formula $\beta$
19271 \end_inset
19272
19273
19274 \end_layout
19275
19276 \end_inset
19277 </cell>
19278 </row>
19279 <row>
19280 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19281 \begin_inset Text
19282
19283 \begin_layout Plain Layout
19284
19285 \backslash
19286 gamma
19287 \end_layout
19288
19289 \end_inset
19290 </cell>
19291 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19292 \begin_inset Text
19293
19294 \begin_layout Plain Layout
19295 \begin_inset Formula $\gamma$
19296 \end_inset
19297
19298
19299 \end_layout
19300
19301 \end_inset
19302 </cell>
19303 </row>
19304 <row>
19305 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19306 \begin_inset Text
19307
19308 \begin_layout Plain Layout
19309
19310 \backslash
19311 delta
19312 \end_layout
19313
19314 \end_inset
19315 </cell>
19316 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19317 \begin_inset Text
19318
19319 \begin_layout Plain Layout
19320 \begin_inset Formula $\delta$
19321 \end_inset
19322
19323
19324 \end_layout
19325
19326 \end_inset
19327 </cell>
19328 </row>
19329 <row>
19330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19331 \begin_inset Text
19332
19333 \begin_layout Plain Layout
19334
19335 \backslash
19336 epsilon
19337 \end_layout
19338
19339 \end_inset
19340 </cell>
19341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19342 \begin_inset Text
19343
19344 \begin_layout Plain Layout
19345 \begin_inset Formula $\epsilon$
19346 \end_inset
19347
19348
19349 \end_layout
19350
19351 \end_inset
19352 </cell>
19353 </row>
19354 <row>
19355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19356 \begin_inset Text
19357
19358 \begin_layout Plain Layout
19359
19360 \backslash
19361 varepsilon
19362 \end_layout
19363
19364 \end_inset
19365 </cell>
19366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19367 \begin_inset Text
19368
19369 \begin_layout Plain Layout
19370 \begin_inset Formula $\varepsilon$
19371 \end_inset
19372
19373
19374 \end_layout
19375
19376 \end_inset
19377 </cell>
19378 </row>
19379 <row>
19380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19381 \begin_inset Text
19382
19383 \begin_layout Plain Layout
19384
19385 \backslash
19386 zeta
19387 \end_layout
19388
19389 \end_inset
19390 </cell>
19391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19392 \begin_inset Text
19393
19394 \begin_layout Plain Layout
19395 \begin_inset Formula $\zeta$
19396 \end_inset
19397
19398
19399 \end_layout
19400
19401 \end_inset
19402 </cell>
19403 </row>
19404 <row>
19405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19406 \begin_inset Text
19407
19408 \begin_layout Plain Layout
19409
19410 \backslash
19411 eta
19412 \end_layout
19413
19414 \end_inset
19415 </cell>
19416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19417 \begin_inset Text
19418
19419 \begin_layout Plain Layout
19420 \begin_inset Formula $\eta$
19421 \end_inset
19422
19423
19424 \end_layout
19425
19426 \end_inset
19427 </cell>
19428 </row>
19429 <row>
19430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19431 \begin_inset Text
19432
19433 \begin_layout Plain Layout
19434
19435 \backslash
19436 theta
19437 \end_layout
19438
19439 \end_inset
19440 </cell>
19441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19442 \begin_inset Text
19443
19444 \begin_layout Plain Layout
19445 \begin_inset Formula $\theta$
19446 \end_inset
19447
19448
19449 \end_layout
19450
19451 \end_inset
19452 </cell>
19453 </row>
19454 <row>
19455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19456 \begin_inset Text
19457
19458 \begin_layout Plain Layout
19459
19460 \backslash
19461 vartheta
19462 \end_layout
19463
19464 \end_inset
19465 </cell>
19466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19467 \begin_inset Text
19468
19469 \begin_layout Plain Layout
19470 \begin_inset Formula $\vartheta$
19471 \end_inset
19472
19473
19474 \end_layout
19475
19476 \end_inset
19477 </cell>
19478 </row>
19479 </lyxtabular>
19480
19481 \end_inset
19482
19483
19484 \begin_inset space \hfill{}
19485 \end_inset
19486
19487
19488 \begin_inset Tabular
19489 <lyxtabular version="3" rows="12" columns="2">
19490 <features>
19491 <column alignment="center" valignment="top" width="0pt">
19492 <column alignment="center" valignment="top" width="0pt">
19493 <row>
19494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19495 \begin_inset Text
19496
19497 \begin_layout Plain Layout
19498 Command
19499 \end_layout
19500
19501 \end_inset
19502 </cell>
19503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19504 \begin_inset Text
19505
19506 \begin_layout Plain Layout
19507 Result
19508 \end_layout
19509
19510 \end_inset
19511 </cell>
19512 </row>
19513 <row>
19514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19515 \begin_inset Text
19516
19517 \begin_layout Plain Layout
19518
19519 \backslash
19520 iota
19521 \end_layout
19522
19523 \end_inset
19524 </cell>
19525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19526 \begin_inset Text
19527
19528 \begin_layout Plain Layout
19529 \begin_inset Formula $\iota$
19530 \end_inset
19531
19532
19533 \end_layout
19534
19535 \end_inset
19536 </cell>
19537 </row>
19538 <row>
19539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19540 \begin_inset Text
19541
19542 \begin_layout Plain Layout
19543
19544 \backslash
19545 kappa
19546 \end_layout
19547
19548 \end_inset
19549 </cell>
19550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19551 \begin_inset Text
19552
19553 \begin_layout Plain Layout
19554 \begin_inset Formula $\kappa$
19555 \end_inset
19556
19557
19558 \end_layout
19559
19560 \end_inset
19561 </cell>
19562 </row>
19563 <row>
19564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19565 \begin_inset Text
19566
19567 \begin_layout Plain Layout
19568
19569 \backslash
19570 varkappa
19571 \end_layout
19572
19573 \end_inset
19574 </cell>
19575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19576 \begin_inset Text
19577
19578 \begin_layout Plain Layout
19579 \begin_inset Formula $\varkappa$
19580 \end_inset
19581
19582
19583 \end_layout
19584
19585 \end_inset
19586 </cell>
19587 </row>
19588 <row>
19589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19590 \begin_inset Text
19591
19592 \begin_layout Plain Layout
19593
19594 \backslash
19595 lambda
19596 \end_layout
19597
19598 \end_inset
19599 </cell>
19600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19601 \begin_inset Text
19602
19603 \begin_layout Plain Layout
19604 \begin_inset Formula $\lambda$
19605 \end_inset
19606
19607
19608 \end_layout
19609
19610 \end_inset
19611 </cell>
19612 </row>
19613 <row>
19614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19615 \begin_inset Text
19616
19617 \begin_layout Plain Layout
19618
19619 \backslash
19620 mu
19621 \end_layout
19622
19623 \end_inset
19624 </cell>
19625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19626 \begin_inset Text
19627
19628 \begin_layout Plain Layout
19629 \begin_inset Formula $\mu$
19630 \end_inset
19631
19632
19633 \end_layout
19634
19635 \end_inset
19636 </cell>
19637 </row>
19638 <row>
19639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19640 \begin_inset Text
19641
19642 \begin_layout Plain Layout
19643
19644 \backslash
19645 nu
19646 \end_layout
19647
19648 \end_inset
19649 </cell>
19650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19651 \begin_inset Text
19652
19653 \begin_layout Plain Layout
19654 \begin_inset Formula $\nu$
19655 \end_inset
19656
19657
19658 \end_layout
19659
19660 \end_inset
19661 </cell>
19662 </row>
19663 <row>
19664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19665 \begin_inset Text
19666
19667 \begin_layout Plain Layout
19668
19669 \backslash
19670 xi
19671 \end_layout
19672
19673 \end_inset
19674 </cell>
19675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19676 \begin_inset Text
19677
19678 \begin_layout Plain Layout
19679 \begin_inset Formula $\xi$
19680 \end_inset
19681
19682
19683 \end_layout
19684
19685 \end_inset
19686 </cell>
19687 </row>
19688 <row>
19689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19690 \begin_inset Text
19691
19692 \begin_layout Plain Layout
19693 o
19694 \end_layout
19695
19696 \end_inset
19697 </cell>
19698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19699 \begin_inset Text
19700
19701 \begin_layout Plain Layout
19702 \begin_inset Formula $o$
19703 \end_inset
19704
19705
19706 \end_layout
19707
19708 \end_inset
19709 </cell>
19710 </row>
19711 <row>
19712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19713 \begin_inset Text
19714
19715 \begin_layout Plain Layout
19716
19717 \backslash
19718 pi
19719 \end_layout
19720
19721 \end_inset
19722 </cell>
19723 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19724 \begin_inset Text
19725
19726 \begin_layout Plain Layout
19727 \begin_inset Formula $\pi$
19728 \end_inset
19729
19730
19731 \end_layout
19732
19733 \end_inset
19734 </cell>
19735 </row>
19736 <row>
19737 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19738 \begin_inset Text
19739
19740 \begin_layout Plain Layout
19741
19742 \backslash
19743 varpi
19744 \end_layout
19745
19746 \end_inset
19747 </cell>
19748 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19749 \begin_inset Text
19750
19751 \begin_layout Plain Layout
19752 \begin_inset Formula $\varpi$
19753 \end_inset
19754
19755
19756 \end_layout
19757
19758 \end_inset
19759 </cell>
19760 </row>
19761 <row>
19762 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19763 \begin_inset Text
19764
19765 \begin_layout Plain Layout
19766
19767 \backslash
19768 rho
19769 \end_layout
19770
19771 \end_inset
19772 </cell>
19773 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19774 \begin_inset Text
19775
19776 \begin_layout Plain Layout
19777 \begin_inset Formula $\rho$
19778 \end_inset
19779
19780
19781 \end_layout
19782
19783 \end_inset
19784 </cell>
19785 </row>
19786 </lyxtabular>
19787
19788 \end_inset
19789
19790
19791 \begin_inset space \hfill{}
19792 \end_inset
19793
19794
19795 \begin_inset Tabular
19796 <lyxtabular version="3" rows="11" columns="2">
19797 <features>
19798 <column alignment="center" valignment="top" width="0pt">
19799 <column alignment="center" valignment="top" width="0pt">
19800 <row>
19801 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19802 \begin_inset Text
19803
19804 \begin_layout Plain Layout
19805 Command
19806 \end_layout
19807
19808 \end_inset
19809 </cell>
19810 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19811 \begin_inset Text
19812
19813 \begin_layout Plain Layout
19814 Result
19815 \end_layout
19816
19817 \end_inset
19818 </cell>
19819 </row>
19820 <row>
19821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19822 \begin_inset Text
19823
19824 \begin_layout Plain Layout
19825
19826 \backslash
19827 varrho
19828 \end_layout
19829
19830 \end_inset
19831 </cell>
19832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19833 \begin_inset Text
19834
19835 \begin_layout Plain Layout
19836 \begin_inset Formula $\varrho$
19837 \end_inset
19838
19839
19840 \end_layout
19841
19842 \end_inset
19843 </cell>
19844 </row>
19845 <row>
19846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19847 \begin_inset Text
19848
19849 \begin_layout Plain Layout
19850
19851 \backslash
19852 sigma
19853 \end_layout
19854
19855 \end_inset
19856 </cell>
19857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19858 \begin_inset Text
19859
19860 \begin_layout Plain Layout
19861 \begin_inset Formula $\sigma$
19862 \end_inset
19863
19864
19865 \end_layout
19866
19867 \end_inset
19868 </cell>
19869 </row>
19870 <row>
19871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19872 \begin_inset Text
19873
19874 \begin_layout Plain Layout
19875
19876 \backslash
19877 varsigma
19878 \end_layout
19879
19880 \end_inset
19881 </cell>
19882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19883 \begin_inset Text
19884
19885 \begin_layout Plain Layout
19886 \begin_inset Formula $\varsigma$
19887 \end_inset
19888
19889
19890 \end_layout
19891
19892 \end_inset
19893 </cell>
19894 </row>
19895 <row>
19896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19897 \begin_inset Text
19898
19899 \begin_layout Plain Layout
19900
19901 \backslash
19902 tau
19903 \end_layout
19904
19905 \end_inset
19906 </cell>
19907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19908 \begin_inset Text
19909
19910 \begin_layout Plain Layout
19911 \begin_inset Formula $\tau$
19912 \end_inset
19913
19914
19915 \end_layout
19916
19917 \end_inset
19918 </cell>
19919 </row>
19920 <row>
19921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19922 \begin_inset Text
19923
19924 \begin_layout Plain Layout
19925
19926 \backslash
19927 upsilon
19928 \end_layout
19929
19930 \end_inset
19931 </cell>
19932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19933 \begin_inset Text
19934
19935 \begin_layout Plain Layout
19936 \begin_inset Formula $\upsilon$
19937 \end_inset
19938
19939
19940 \end_layout
19941
19942 \end_inset
19943 </cell>
19944 </row>
19945 <row>
19946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19947 \begin_inset Text
19948
19949 \begin_layout Plain Layout
19950
19951 \backslash
19952 phi
19953 \end_layout
19954
19955 \end_inset
19956 </cell>
19957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19958 \begin_inset Text
19959
19960 \begin_layout Plain Layout
19961 \begin_inset Formula $\phi$
19962 \end_inset
19963
19964
19965 \end_layout
19966
19967 \end_inset
19968 </cell>
19969 </row>
19970 <row>
19971 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19972 \begin_inset Text
19973
19974 \begin_layout Plain Layout
19975
19976 \backslash
19977 varphi
19978 \end_layout
19979
19980 \end_inset
19981 </cell>
19982 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19983 \begin_inset Text
19984
19985 \begin_layout Plain Layout
19986 \begin_inset Formula $\varphi$
19987 \end_inset
19988
19989
19990 \end_layout
19991
19992 \end_inset
19993 </cell>
19994 </row>
19995 <row>
19996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19997 \begin_inset Text
19998
19999 \begin_layout Plain Layout
20000
20001 \backslash
20002 chi
20003 \end_layout
20004
20005 \end_inset
20006 </cell>
20007 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20008 \begin_inset Text
20009
20010 \begin_layout Plain Layout
20011 \begin_inset Formula $\chi$
20012 \end_inset
20013
20014
20015 \end_layout
20016
20017 \end_inset
20018 </cell>
20019 </row>
20020 <row>
20021 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20022 \begin_inset Text
20023
20024 \begin_layout Plain Layout
20025
20026 \backslash
20027 psi
20028 \end_layout
20029
20030 \end_inset
20031 </cell>
20032 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20033 \begin_inset Text
20034
20035 \begin_layout Plain Layout
20036 \begin_inset Formula $\psi$
20037 \end_inset
20038
20039
20040 \end_layout
20041
20042 \end_inset
20043 </cell>
20044 </row>
20045 <row>
20046 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20047 \begin_inset Text
20048
20049 \begin_layout Plain Layout
20050
20051 \backslash
20052 omega
20053 \end_layout
20054
20055 \end_inset
20056 </cell>
20057 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20058 \begin_inset Text
20059
20060 \begin_layout Plain Layout
20061 \begin_inset Formula $\omega$
20062 \end_inset
20063
20064
20065 \end_layout
20066
20067 \end_inset
20068 </cell>
20069 </row>
20070 </lyxtabular>
20071
20072 \end_inset
20073
20074
20075 \begin_inset space \hfill{}
20076 \end_inset
20077
20078
20079 \end_layout
20080
20081 \begin_layout Standard
20082 \begin_inset VSpace medskip
20083 \end_inset
20084
20085
20086 \end_layout
20087
20088 \begin_layout Standard
20089 How to create upright Greek letters is explained in 
20090 \begin_inset CommandInset ref
20091 LatexCommand ref
20092 reference "sub:Upright-small-Greek"
20093
20094 \end_inset
20095
20096 .
20097 \end_layout
20098
20099 \begin_layout Subsection
20100 Big Letters
20101 \begin_inset Index
20102 status collapsed
20103
20104 \begin_layout Plain Layout
20105 Greek letters ! big
20106 \end_layout
20107
20108 \end_inset
20109
20110
20111 \end_layout
20112
20113 \begin_layout Standard
20114 \begin_inset space \hfill{}
20115 \end_inset
20116
20117
20118 \begin_inset Tabular
20119 <lyxtabular version="3" rows="7" columns="2">
20120 <features>
20121 <column alignment="center" valignment="top" width="0pt">
20122 <column alignment="center" valignment="top" width="0pt">
20123 <row>
20124 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20125 \begin_inset Text
20126
20127 \begin_layout Plain Layout
20128 Command
20129 \end_layout
20130
20131 \end_inset
20132 </cell>
20133 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20134 \begin_inset Text
20135
20136 \begin_layout Plain Layout
20137 Result
20138 \end_layout
20139
20140 \end_inset
20141 </cell>
20142 </row>
20143 <row>
20144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20145 \begin_inset Text
20146
20147 \begin_layout Plain Layout
20148
20149 \backslash
20150 Gamma
20151 \end_layout
20152
20153 \end_inset
20154 </cell>
20155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20156 \begin_inset Text
20157
20158 \begin_layout Plain Layout
20159 \begin_inset Formula $\Gamma$
20160 \end_inset
20161
20162
20163 \end_layout
20164
20165 \end_inset
20166 </cell>
20167 </row>
20168 <row>
20169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20170 \begin_inset Text
20171
20172 \begin_layout Plain Layout
20173
20174 \backslash
20175 Delta
20176 \end_layout
20177
20178 \end_inset
20179 </cell>
20180 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20181 \begin_inset Text
20182
20183 \begin_layout Plain Layout
20184 \begin_inset Formula $\Delta$
20185 \end_inset
20186
20187
20188 \end_layout
20189
20190 \end_inset
20191 </cell>
20192 </row>
20193 <row>
20194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20195 \begin_inset Text
20196
20197 \begin_layout Plain Layout
20198
20199 \backslash
20200 Theta
20201 \end_layout
20202
20203 \end_inset
20204 </cell>
20205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20206 \begin_inset Text
20207
20208 \begin_layout Plain Layout
20209 \begin_inset Formula $\Theta$
20210 \end_inset
20211
20212
20213 \end_layout
20214
20215 \end_inset
20216 </cell>
20217 </row>
20218 <row>
20219 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20220 \begin_inset Text
20221
20222 \begin_layout Plain Layout
20223
20224 \backslash
20225 Lambda
20226 \end_layout
20227
20228 \end_inset
20229 </cell>
20230 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20231 \begin_inset Text
20232
20233 \begin_layout Plain Layout
20234 \begin_inset Formula $\Lambda$
20235 \end_inset
20236
20237
20238 \end_layout
20239
20240 \end_inset
20241 </cell>
20242 </row>
20243 <row>
20244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20245 \begin_inset Text
20246
20247 \begin_layout Plain Layout
20248
20249 \backslash
20250 Xi
20251 \end_layout
20252
20253 \end_inset
20254 </cell>
20255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20256 \begin_inset Text
20257
20258 \begin_layout Plain Layout
20259 \begin_inset Formula $\Xi$
20260 \end_inset
20261
20262
20263 \end_layout
20264
20265 \end_inset
20266 </cell>
20267 </row>
20268 <row>
20269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20270 \begin_inset Text
20271
20272 \begin_layout Plain Layout
20273
20274 \backslash
20275 Pi
20276 \end_layout
20277
20278 \end_inset
20279 </cell>
20280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20281 \begin_inset Text
20282
20283 \begin_layout Plain Layout
20284 \begin_inset Formula $\Pi$
20285 \end_inset
20286
20287
20288 \end_layout
20289
20290 \end_inset
20291 </cell>
20292 </row>
20293 </lyxtabular>
20294
20295 \end_inset
20296
20297
20298 \begin_inset space \hfill{}
20299 \end_inset
20300
20301
20302 \begin_inset Tabular
20303 <lyxtabular version="3" rows="6" columns="2">
20304 <features>
20305 <column alignment="center" valignment="top" width="0pt">
20306 <column alignment="center" valignment="top" width="0pt">
20307 <row>
20308 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20309 \begin_inset Text
20310
20311 \begin_layout Plain Layout
20312 Command
20313 \end_layout
20314
20315 \end_inset
20316 </cell>
20317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20318 \begin_inset Text
20319
20320 \begin_layout Plain Layout
20321 Result
20322 \end_layout
20323
20324 \end_inset
20325 </cell>
20326 </row>
20327 <row>
20328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20329 \begin_inset Text
20330
20331 \begin_layout Plain Layout
20332
20333 \backslash
20334 Sigma
20335 \end_layout
20336
20337 \end_inset
20338 </cell>
20339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20340 \begin_inset Text
20341
20342 \begin_layout Plain Layout
20343 \begin_inset Formula $\Sigma$
20344 \end_inset
20345
20346
20347 \end_layout
20348
20349 \end_inset
20350 </cell>
20351 </row>
20352 <row>
20353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20354 \begin_inset Text
20355
20356 \begin_layout Plain Layout
20357
20358 \backslash
20359 Upsilon
20360 \end_layout
20361
20362 \end_inset
20363 </cell>
20364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20365 \begin_inset Text
20366
20367 \begin_layout Plain Layout
20368 \begin_inset Formula $\Upsilon$
20369 \end_inset
20370
20371
20372 \end_layout
20373
20374 \end_inset
20375 </cell>
20376 </row>
20377 <row>
20378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20379 \begin_inset Text
20380
20381 \begin_layout Plain Layout
20382
20383 \backslash
20384 Phi
20385 \end_layout
20386
20387 \end_inset
20388 </cell>
20389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20390 \begin_inset Text
20391
20392 \begin_layout Plain Layout
20393 \begin_inset Formula $\Phi$
20394 \end_inset
20395
20396
20397 \end_layout
20398
20399 \end_inset
20400 </cell>
20401 </row>
20402 <row>
20403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20404 \begin_inset Text
20405
20406 \begin_layout Plain Layout
20407
20408 \backslash
20409 Psi
20410 \end_layout
20411
20412 \end_inset
20413 </cell>
20414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20415 \begin_inset Text
20416
20417 \begin_layout Plain Layout
20418 \begin_inset Formula $\Psi$
20419 \end_inset
20420
20421
20422 \end_layout
20423
20424 \end_inset
20425 </cell>
20426 </row>
20427 <row>
20428 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20429 \begin_inset Text
20430
20431 \begin_layout Plain Layout
20432
20433 \backslash
20434 Omega
20435 \end_layout
20436
20437 \end_inset
20438 </cell>
20439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20440 \begin_inset Text
20441
20442 \begin_layout Plain Layout
20443 \begin_inset Formula $\Omega$
20444 \end_inset
20445
20446
20447 \end_layout
20448
20449 \end_inset
20450 </cell>
20451 </row>
20452 </lyxtabular>
20453
20454 \end_inset
20455
20456
20457 \begin_inset space \hfill{}
20458 \end_inset
20459
20460
20461 \end_layout
20462
20463 \begin_layout Standard
20464 \begin_inset VSpace medskip
20465 \end_inset
20466
20467 That the big Greek letters appear upright is caused by a design bug when
20468  TeX was developed.
20469  To get correct italic big letters, begin every command with 
20470 \series bold
20471 var
20472 \series default
20473 .
20474  For example the command 
20475 \series bold
20476
20477 \backslash
20478 varGamma
20479 \series default
20480  produces: 
20481 \begin_inset Formula $\varGamma$
20482 \end_inset
20483
20484
20485 \end_layout
20486
20487 \begin_layout Subsection
20488 Bold Letters
20489 \begin_inset Index
20490 status collapsed
20491
20492 \begin_layout Plain Layout
20493 Greek letters ! bold
20494 \end_layout
20495
20496 \end_inset
20497
20498
20499 \end_layout
20500
20501 \begin_layout Standard
20502 Greek letters cannot be set with different font styles like Latin letters.
20503  They can only be made bold with the command 
20504 \series bold
20505
20506 \backslash
20507 boldsymbol
20508 \series default
20509
20510 \begin_inset Index
20511 status collapsed
20512
20513 \begin_layout Plain Layout
20514 Commands ! B ! 
20515 \backslash
20516 boldsymbol
20517 \end_layout
20518
20519 \end_inset
20520
20521 .
20522 \end_layout
20523
20524 \begin_layout Standard
20525 \align center
20526 \begin_inset Tabular
20527 <lyxtabular version="3" rows="3" columns="2">
20528 <features>
20529 <column alignment="center" valignment="top" width="0">
20530 <column alignment="center" valignment="top" width="0">
20531 <row>
20532 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20533 \begin_inset Text
20534
20535 \begin_layout Plain Layout
20536 Command
20537 \end_layout
20538
20539 \end_inset
20540 </cell>
20541 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20542 \begin_inset Text
20543
20544 \begin_layout Plain Layout
20545 Result
20546 \end_layout
20547
20548 \end_inset
20549 </cell>
20550 </row>
20551 <row>
20552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20553 \begin_inset Text
20554
20555 \begin_layout Plain Layout
20556
20557 \backslash
20558 Upsilon
20559 \backslash
20560 boldsymbol
20561 \backslash
20562 Upsilon
20563 \end_layout
20564
20565 \end_inset
20566 </cell>
20567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20568 \begin_inset Text
20569
20570 \begin_layout Plain Layout
20571 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20572 \end_inset
20573
20574
20575 \end_layout
20576
20577 \end_inset
20578 </cell>
20579 </row>
20580 <row>
20581 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20582 \begin_inset Text
20583
20584 \begin_layout Plain Layout
20585
20586 \backslash
20587 theta
20588 \backslash
20589 boldsymbol
20590 \backslash
20591 theta
20592 \end_layout
20593
20594 \end_inset
20595 </cell>
20596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20597 \begin_inset Text
20598
20599 \begin_layout Plain Layout
20600 \begin_inset Formula $\theta\boldsymbol{\theta}$
20601 \end_inset
20602
20603
20604 \end_layout
20605
20606 \end_inset
20607 </cell>
20608 </row>
20609 </lyxtabular>
20610
20611 \end_inset
20612
20613
20614 \end_layout
20615
20616 \begin_layout Section
20617 Symbols
20618 \begin_inset ERT
20619 status collapsed
20620
20621 \begin_layout Plain Layout
20622
20623
20624 \backslash
20625 texorpdfstring{
20626 \end_layout
20627
20628 \end_inset
20629
20630
20631 \begin_inset Foot
20632 status collapsed
20633
20634 \begin_layout Plain Layout
20635 A list with all symbols of most of the LaTeX-packages can be found in 
20636 \begin_inset CommandInset citation
20637 LatexCommand cite
20638 key "Symbole"
20639
20640 \end_inset
20641
20642 .
20643 \end_layout
20644
20645 \end_inset
20646
20647
20648 \begin_inset ERT
20649 status collapsed
20650
20651 \begin_layout Plain Layout
20652
20653 }{}
20654 \end_layout
20655
20656 \end_inset
20657
20658
20659 \begin_inset Note Note
20660 status collapsed
20661
20662 \begin_layout Plain Layout
20663
20664 \backslash
20665 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
20666 \end_layout
20667
20668 \begin_layout Plain Layout
20669 More about 
20670 \backslash
20671 texorpdfstring is in section 
20672 \begin_inset CommandInset ref
20673 LatexCommand ref
20674 reference "sub:Formulas-in-Section"
20675
20676 \end_inset
20677
20678 .
20679 \end_layout
20680
20681 \end_inset
20682
20683
20684 \begin_inset Index
20685 status collapsed
20686
20687 \begin_layout Plain Layout
20688 Symbols
20689 \end_layout
20690
20691 \end_inset
20692
20693
20694 \end_layout
20695
20696 \begin_layout Standard
20697 Many of the symbols listed in this section can also be inserted via the
20698  toolbar buttons 
20699 \begin_inset Graphics
20700         filename ../images/math/nabla.png
20701         scale 85
20702
20703 \end_inset
20704
20705  and 
20706 \begin_inset Graphics
20707         filename ../images/math/digamma.png
20708         scale 85
20709
20710 \end_inset
20711
20712 .
20713 \end_layout
20714
20715 \begin_layout Subsection
20716 Mathematical Symbols
20717 \begin_inset CommandInset label
20718 LatexCommand label
20719 name "sub:Mathematical-Symbols"
20720
20721 \end_inset
20722
20723
20724 \begin_inset Index
20725 status collapsed
20726
20727 \begin_layout Plain Layout
20728 Symbols ! mathematical
20729 \end_layout
20730
20731 \end_inset
20732
20733
20734 \end_layout
20735
20736 \begin_layout Standard
20737 \begin_inset space \hfill{}
20738 \end_inset
20739
20740
20741 \begin_inset Tabular
20742 <lyxtabular version="3" rows="10" columns="2">
20743 <features>
20744 <column alignment="center" valignment="top" width="0pt">
20745 <column alignment="center" valignment="top" width="0pt">
20746 <row>
20747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20748 \begin_inset Text
20749
20750 \begin_layout Plain Layout
20751 Command
20752 \end_layout
20753
20754 \end_inset
20755 </cell>
20756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20757 \begin_inset Text
20758
20759 \begin_layout Plain Layout
20760 Result
20761 \end_layout
20762
20763 \end_inset
20764 </cell>
20765 </row>
20766 <row>
20767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20768 \begin_inset Text
20769
20770 \begin_layout Plain Layout
20771
20772 \backslash
20773 neg
20774 \end_layout
20775
20776 \end_inset
20777 </cell>
20778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20779 \begin_inset Text
20780
20781 \begin_layout Plain Layout
20782 \begin_inset Formula $\neg$
20783 \end_inset
20784
20785
20786 \end_layout
20787
20788 \end_inset
20789 </cell>
20790 </row>
20791 <row>
20792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20793 \begin_inset Text
20794
20795 \begin_layout Plain Layout
20796
20797 \backslash
20798 Im
20799 \end_layout
20800
20801 \end_inset
20802 </cell>
20803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20804 \begin_inset Text
20805
20806 \begin_layout Plain Layout
20807 \begin_inset Formula $\Im$
20808 \end_inset
20809
20810
20811 \end_layout
20812
20813 \end_inset
20814 </cell>
20815 </row>
20816 <row>
20817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20818 \begin_inset Text
20819
20820 \begin_layout Plain Layout
20821
20822 \backslash
20823 Re
20824 \end_layout
20825
20826 \end_inset
20827 </cell>
20828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20829 \begin_inset Text
20830
20831 \begin_layout Plain Layout
20832 \begin_inset Formula $\Re$
20833 \end_inset
20834
20835
20836 \end_layout
20837
20838 \end_inset
20839 </cell>
20840 </row>
20841 <row>
20842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20843 \begin_inset Text
20844
20845 \begin_layout Plain Layout
20846
20847 \backslash
20848 aleph
20849 \end_layout
20850
20851 \end_inset
20852 </cell>
20853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20854 \begin_inset Text
20855
20856 \begin_layout Plain Layout
20857 \begin_inset Formula $\aleph$
20858 \end_inset
20859
20860
20861 \end_layout
20862
20863 \end_inset
20864 </cell>
20865 </row>
20866 <row>
20867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20868 \begin_inset Text
20869
20870 \begin_layout Plain Layout
20871
20872 \backslash
20873 partial
20874 \end_layout
20875
20876 \end_inset
20877 </cell>
20878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20879 \begin_inset Text
20880
20881 \begin_layout Plain Layout
20882 \begin_inset Formula $\partial$
20883 \end_inset
20884
20885
20886 \end_layout
20887
20888 \end_inset
20889 </cell>
20890 </row>
20891 <row>
20892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20893 \begin_inset Text
20894
20895 \begin_layout Plain Layout
20896
20897 \backslash
20898 infty
20899 \end_layout
20900
20901 \end_inset
20902 </cell>
20903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20904 \begin_inset Text
20905
20906 \begin_layout Plain Layout
20907 \begin_inset Formula $\infty$
20908 \end_inset
20909
20910
20911 \end_layout
20912
20913 \end_inset
20914 </cell>
20915 </row>
20916 <row>
20917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20918 \begin_inset Text
20919
20920 \begin_layout Plain Layout
20921
20922 \backslash
20923 wp
20924 \end_layout
20925
20926 \end_inset
20927 </cell>
20928 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20929 \begin_inset Text
20930
20931 \begin_layout Plain Layout
20932 \begin_inset Formula $\wp$
20933 \end_inset
20934
20935
20936 \end_layout
20937
20938 \end_inset
20939 </cell>
20940 </row>
20941 <row>
20942 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20943 \begin_inset Text
20944
20945 \begin_layout Plain Layout
20946
20947 \backslash
20948 imath
20949 \end_layout
20950
20951 \end_inset
20952 </cell>
20953 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20954 \begin_inset Text
20955
20956 \begin_layout Plain Layout
20957 \begin_inset Formula $\imath$
20958 \end_inset
20959
20960
20961 \end_layout
20962
20963 \end_inset
20964 </cell>
20965 </row>
20966 <row>
20967 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20968 \begin_inset Text
20969
20970 \begin_layout Plain Layout
20971
20972 \backslash
20973 jmath
20974 \end_layout
20975
20976 \end_inset
20977 </cell>
20978 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20979 \begin_inset Text
20980
20981 \begin_layout Plain Layout
20982 \begin_inset Formula $\jmath$
20983 \end_inset
20984
20985
20986 \end_layout
20987
20988 \end_inset
20989 </cell>
20990 </row>
20991 </lyxtabular>
20992
20993 \end_inset
20994
20995
20996 \begin_inset space \hfill{}
20997 \end_inset
20998
20999
21000 \begin_inset Tabular
21001 <lyxtabular version="3" rows="10" columns="2">
21002 <features>
21003 <column alignment="center" valignment="top" width="0pt">
21004 <column alignment="center" valignment="top" width="0pt">
21005 <row>
21006 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21007 \begin_inset Text
21008
21009 \begin_layout Plain Layout
21010 Command
21011 \end_layout
21012
21013 \end_inset
21014 </cell>
21015 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21016 \begin_inset Text
21017
21018 \begin_layout Plain Layout
21019 Result
21020 \begin_inset Note Note
21021 status collapsed
21022
21023 \begin_layout Plain Layout
21024
21025 \series bold
21026
21027 \backslash
21028 raisebox
21029 \series default
21030  is only used as spacer.
21031 \end_layout
21032
21033 \end_inset
21034
21035
21036 \end_layout
21037
21038 \end_inset
21039 </cell>
21040 </row>
21041 <row>
21042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21043 \begin_inset Text
21044
21045 \begin_layout Plain Layout
21046
21047 \backslash
21048 forall
21049 \end_layout
21050
21051 \end_inset
21052 </cell>
21053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21054 \begin_inset Text
21055
21056 \begin_layout Plain Layout
21057 \begin_inset Formula $\forall$
21058 \end_inset
21059
21060
21061 \end_layout
21062
21063 \end_inset
21064 </cell>
21065 </row>
21066 <row>
21067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21068 \begin_inset Text
21069
21070 \begin_layout Plain Layout
21071
21072 \backslash
21073 exists
21074 \end_layout
21075
21076 \end_inset
21077 </cell>
21078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21079 \begin_inset Text
21080
21081 \begin_layout Plain Layout
21082 \begin_inset Formula $\exists$
21083 \end_inset
21084
21085
21086 \end_layout
21087
21088 \end_inset
21089 </cell>
21090 </row>
21091 <row>
21092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21093 \begin_inset Text
21094
21095 \begin_layout Plain Layout
21096
21097 \backslash
21098 nexists
21099 \end_layout
21100
21101 \end_inset
21102 </cell>
21103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21104 \begin_inset Text
21105
21106 \begin_layout Plain Layout
21107 \begin_inset Formula $\nexists$
21108 \end_inset
21109
21110
21111 \end_layout
21112
21113 \end_inset
21114 </cell>
21115 </row>
21116 <row>
21117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21118 \begin_inset Text
21119
21120 \begin_layout Plain Layout
21121
21122 \backslash
21123 emptyset
21124 \end_layout
21125
21126 \end_inset
21127 </cell>
21128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21129 \begin_inset Text
21130
21131 \begin_layout Plain Layout
21132 \begin_inset Formula $\emptyset$
21133 \end_inset
21134
21135
21136 \end_layout
21137
21138 \end_inset
21139 </cell>
21140 </row>
21141 <row>
21142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21143 \begin_inset Text
21144
21145 \begin_layout Plain Layout
21146
21147 \backslash
21148 varnothing
21149 \end_layout
21150
21151 \end_inset
21152 </cell>
21153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21154 \begin_inset Text
21155
21156 \begin_layout Plain Layout
21157 \begin_inset Formula $\varnothing$
21158 \end_inset
21159
21160
21161 \end_layout
21162
21163 \end_inset
21164 </cell>
21165 </row>
21166 <row>
21167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21168 \begin_inset Text
21169
21170 \begin_layout Plain Layout
21171
21172 \backslash
21173 dag
21174 \end_layout
21175
21176 \end_inset
21177 </cell>
21178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21179 \begin_inset Text
21180
21181 \begin_layout Plain Layout
21182 \begin_inset Formula $\dag$
21183 \end_inset
21184
21185
21186 \end_layout
21187
21188 \end_inset
21189 </cell>
21190 </row>
21191 <row>
21192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21193 \begin_inset Text
21194
21195 \begin_layout Plain Layout
21196
21197 \backslash
21198 ddag
21199 \end_layout
21200
21201 \end_inset
21202 </cell>
21203 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21204 \begin_inset Text
21205
21206 \begin_layout Plain Layout
21207 \begin_inset Formula $\ddag$
21208 \end_inset
21209
21210
21211 \end_layout
21212
21213 \end_inset
21214 </cell>
21215 </row>
21216 <row>
21217 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21218 \begin_inset Text
21219
21220 \begin_layout Plain Layout
21221
21222 \backslash
21223 complement
21224 \end_layout
21225
21226 \end_inset
21227 </cell>
21228 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21229 \begin_inset Text
21230
21231 \begin_layout Plain Layout
21232 \begin_inset ERT
21233 status collapsed
21234
21235 \begin_layout Plain Layout
21236
21237
21238 \backslash
21239 raisebox{-0.8mm}{
21240 \end_layout
21241
21242 \end_inset
21243
21244
21245 \begin_inset Formula $\complement$
21246 \end_inset
21247
21248
21249 \begin_inset ERT
21250 status collapsed
21251
21252 \begin_layout Plain Layout
21253
21254 }
21255 \end_layout
21256
21257 \end_inset
21258
21259
21260 \end_layout
21261
21262 \end_inset
21263 </cell>
21264 </row>
21265 <row>
21266 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21267 \begin_inset Text
21268
21269 \begin_layout Plain Layout
21270
21271 \backslash
21272 Bbbk
21273 \end_layout
21274
21275 \end_inset
21276 </cell>
21277 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21278 \begin_inset Text
21279
21280 \begin_layout Plain Layout
21281 \begin_inset Formula $\Bbbk$
21282 \end_inset
21283
21284
21285 \end_layout
21286
21287 \end_inset
21288 </cell>
21289 </row>
21290 </lyxtabular>
21291
21292 \end_inset
21293
21294
21295 \begin_inset space \hfill{}
21296 \end_inset
21297
21298
21299 \begin_inset Tabular
21300 <lyxtabular version="3" rows="10" columns="2">
21301 <features>
21302 <column alignment="center" valignment="top" width="0pt">
21303 <column alignment="center" valignment="top" width="0pt">
21304 <row>
21305 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21306 \begin_inset Text
21307
21308 \begin_layout Plain Layout
21309 Command
21310 \end_layout
21311
21312 \end_inset
21313 </cell>
21314 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21315 \begin_inset Text
21316
21317 \begin_layout Plain Layout
21318 Result
21319 \end_layout
21320
21321 \end_inset
21322 </cell>
21323 </row>
21324 <row>
21325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21326 \begin_inset Text
21327
21328 \begin_layout Plain Layout
21329
21330 \backslash
21331 prime
21332 \end_layout
21333
21334 \end_inset
21335 </cell>
21336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21337 \begin_inset Text
21338
21339 \begin_layout Plain Layout
21340 \begin_inset Formula $\prime$
21341 \end_inset
21342
21343
21344 \end_layout
21345
21346 \end_inset
21347 </cell>
21348 </row>
21349 <row>
21350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21351 \begin_inset Text
21352
21353 \begin_layout Plain Layout
21354
21355 \backslash
21356 backprime
21357 \end_layout
21358
21359 \end_inset
21360 </cell>
21361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21362 \begin_inset Text
21363
21364 \begin_layout Plain Layout
21365 \begin_inset Formula $\backprime$
21366 \end_inset
21367
21368
21369 \end_layout
21370
21371 \end_inset
21372 </cell>
21373 </row>
21374 <row>
21375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21376 \begin_inset Text
21377
21378 \begin_layout Plain Layout
21379
21380 \backslash
21381 mho
21382 \end_layout
21383
21384 \end_inset
21385 </cell>
21386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21387 \begin_inset Text
21388
21389 \begin_layout Plain Layout
21390 \begin_inset Formula $\mho$
21391 \end_inset
21392
21393
21394 \end_layout
21395
21396 \end_inset
21397 </cell>
21398 </row>
21399 <row>
21400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21401 \begin_inset Text
21402
21403 \begin_layout Plain Layout
21404
21405 \backslash
21406 triangle
21407 \end_layout
21408
21409 \end_inset
21410 </cell>
21411 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21412 \begin_inset Text
21413
21414 \begin_layout Plain Layout
21415 \begin_inset Formula $\triangle$
21416 \end_inset
21417
21418
21419 \end_layout
21420
21421 \end_inset
21422 </cell>
21423 </row>
21424 <row>
21425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21426 \begin_inset Text
21427
21428 \begin_layout Plain Layout
21429
21430 \backslash
21431 angle
21432 \end_layout
21433
21434 \end_inset
21435 </cell>
21436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21437 \begin_inset Text
21438
21439 \begin_layout Plain Layout
21440 \begin_inset Formula $\angle$
21441 \end_inset
21442
21443
21444 \end_layout
21445
21446 \end_inset
21447 </cell>
21448 </row>
21449 <row>
21450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21451 \begin_inset Text
21452
21453 \begin_layout Plain Layout
21454
21455 \backslash
21456 measuredangle
21457 \end_layout
21458
21459 \end_inset
21460 </cell>
21461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21462 \begin_inset Text
21463
21464 \begin_layout Plain Layout
21465 \begin_inset Formula $\measuredangle$
21466 \end_inset
21467
21468
21469 \end_layout
21470
21471 \end_inset
21472 </cell>
21473 </row>
21474 <row>
21475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21476 \begin_inset Text
21477
21478 \begin_layout Plain Layout
21479
21480 \backslash
21481 sphericalangle
21482 \end_layout
21483
21484 \end_inset
21485 </cell>
21486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21487 \begin_inset Text
21488
21489 \begin_layout Plain Layout
21490 \begin_inset Formula $\sphericalangle$
21491 \end_inset
21492
21493
21494 \end_layout
21495
21496 \end_inset
21497 </cell>
21498 </row>
21499 <row>
21500 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21501 \begin_inset Text
21502
21503 \begin_layout Plain Layout
21504
21505 \backslash
21506 top
21507 \end_layout
21508
21509 \end_inset
21510 </cell>
21511 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21512 \begin_inset Text
21513
21514 \begin_layout Plain Layout
21515 \begin_inset Formula $\top$
21516 \end_inset
21517
21518
21519 \end_layout
21520
21521 \end_inset
21522 </cell>
21523 </row>
21524 <row>
21525 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21526 \begin_inset Text
21527
21528 \begin_layout Plain Layout
21529
21530 \backslash
21531 bot
21532 \end_layout
21533
21534 \end_inset
21535 </cell>
21536 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21537 \begin_inset Text
21538
21539 \begin_layout Plain Layout
21540 \begin_inset Formula $\bot$
21541 \end_inset
21542
21543
21544 \end_layout
21545
21546 \end_inset
21547 </cell>
21548 </row>
21549 </lyxtabular>
21550
21551 \end_inset
21552
21553
21554 \begin_inset space \hfill{}
21555 \end_inset
21556
21557
21558 \end_layout
21559
21560 \begin_layout Subsection
21561 Miscellaneous Symbols
21562 \begin_inset CommandInset label
21563 LatexCommand label
21564 name "sub:Miscellaneous-Symbols"
21565
21566 \end_inset
21567
21568
21569 \begin_inset Index
21570 status collapsed
21571
21572 \begin_layout Plain Layout
21573 Symbols ! miscellaneous
21574 \end_layout
21575
21576 \end_inset
21577
21578
21579 \end_layout
21580
21581 \begin_layout Standard
21582 \noindent
21583 \align center
21584 \begin_inset Tabular
21585 <lyxtabular version="3" rows="10" columns="2">
21586 <features>
21587 <column alignment="center" valignment="top" width="0pt">
21588 <column alignment="center" valignment="top" width="0pt">
21589 <row>
21590 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21591 \begin_inset Text
21592
21593 \begin_layout Plain Layout
21594 Command
21595 \end_layout
21596
21597 \end_inset
21598 </cell>
21599 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21600 \begin_inset Text
21601
21602 \begin_layout Plain Layout
21603 Result
21604 \end_layout
21605
21606 \end_inset
21607 </cell>
21608 </row>
21609 <row>
21610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21611 \begin_inset Text
21612
21613 \begin_layout Plain Layout
21614
21615 \backslash
21616 flat
21617 \end_layout
21618
21619 \end_inset
21620 </cell>
21621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21622 \begin_inset Text
21623
21624 \begin_layout Plain Layout
21625 \begin_inset Formula $\flat$
21626 \end_inset
21627
21628
21629 \end_layout
21630
21631 \end_inset
21632 </cell>
21633 </row>
21634 <row>
21635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21636 \begin_inset Text
21637
21638 \begin_layout Plain Layout
21639
21640 \backslash
21641 natural
21642 \end_layout
21643
21644 \end_inset
21645 </cell>
21646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21647 \begin_inset Text
21648
21649 \begin_layout Plain Layout
21650 \begin_inset Formula $\natural$
21651 \end_inset
21652
21653
21654 \end_layout
21655
21656 \end_inset
21657 </cell>
21658 </row>
21659 <row>
21660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21661 \begin_inset Text
21662
21663 \begin_layout Plain Layout
21664
21665 \backslash
21666 sharp
21667 \end_layout
21668
21669 \end_inset
21670 </cell>
21671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21672 \begin_inset Text
21673
21674 \begin_layout Plain Layout
21675 \begin_inset Formula $\sharp$
21676 \end_inset
21677
21678
21679 \end_layout
21680
21681 \end_inset
21682 </cell>
21683 </row>
21684 <row>
21685 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21686 \begin_inset Text
21687
21688 \begin_layout Plain Layout
21689
21690 \backslash
21691 surd
21692 \end_layout
21693
21694 \end_inset
21695 </cell>
21696 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21697 \begin_inset Text
21698
21699 \begin_layout Plain Layout
21700 \begin_inset Formula $\surd$
21701 \end_inset
21702
21703
21704 \end_layout
21705
21706 \end_inset
21707 </cell>
21708 </row>
21709 <row>
21710 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21711 \begin_inset Text
21712
21713 \begin_layout Plain Layout
21714
21715 \backslash
21716 checkmark
21717 \end_layout
21718
21719 \end_inset
21720 </cell>
21721 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21722 \begin_inset Text
21723
21724 \begin_layout Plain Layout
21725 \begin_inset Formula $\checkmark$
21726 \end_inset
21727
21728
21729 \end_layout
21730
21731 \end_inset
21732 </cell>
21733 </row>
21734 <row>
21735 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21736 \begin_inset Text
21737
21738 \begin_layout Plain Layout
21739
21740 \backslash
21741 yen
21742 \end_layout
21743
21744 \end_inset
21745 </cell>
21746 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21747 \begin_inset Text
21748
21749 \begin_layout Plain Layout
21750 \begin_inset Formula $\yen$
21751 \end_inset
21752
21753
21754 \end_layout
21755
21756 \end_inset
21757 </cell>
21758 </row>
21759 <row>
21760 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21761 \begin_inset Text
21762
21763 \begin_layout Plain Layout
21764
21765 \backslash
21766 pounds
21767 \end_layout
21768
21769 \end_inset
21770 </cell>
21771 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21772 \begin_inset Text
21773
21774 \begin_layout Plain Layout
21775 \begin_inset Formula $\pounds$
21776 \end_inset
21777
21778
21779 \end_layout
21780
21781 \end_inset
21782 </cell>
21783 </row>
21784 <row>
21785 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21786 \begin_inset Text
21787
21788 \begin_layout Plain Layout
21789 $
21790 \end_layout
21791
21792 \end_inset
21793 </cell>
21794 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21795 \begin_inset Text
21796
21797 \begin_layout Plain Layout
21798 \begin_inset Formula $\$$
21799 \end_inset
21800
21801
21802 \end_layout
21803
21804 \end_inset
21805 </cell>
21806 </row>
21807 <row>
21808 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21809 \begin_inset Text
21810
21811 \begin_layout Plain Layout
21812 §
21813 \end_layout
21814
21815 \end_inset
21816 </cell>
21817 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21818 \begin_inset Text
21819
21820 \begin_layout Plain Layout
21821 \begin_inset Formula $§$
21822 \end_inset
21823
21824
21825 \end_layout
21826
21827 \end_inset
21828 </cell>
21829 </row>
21830 </lyxtabular>
21831
21832 \end_inset
21833
21834
21835 \begin_inset Tabular
21836 <lyxtabular version="3" rows="10" columns="2">
21837 <features>
21838 <column alignment="center" valignment="top" width="0">
21839 <column alignment="center" valignment="top" width="0">
21840 <row>
21841 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21842 \begin_inset Text
21843
21844 \begin_layout Plain Layout
21845 Command
21846 \end_layout
21847
21848 \end_inset
21849 </cell>
21850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21851 \begin_inset Text
21852
21853 \begin_layout Plain Layout
21854 Result
21855 \end_layout
21856
21857 \end_inset
21858 </cell>
21859 </row>
21860 <row>
21861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21862 \begin_inset Text
21863
21864 \begin_layout Plain Layout
21865
21866 \backslash
21867 hbar
21868 \end_layout
21869
21870 \end_inset
21871 </cell>
21872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21873 \begin_inset Text
21874
21875 \begin_layout Plain Layout
21876 \begin_inset Formula $\hbar$
21877 \end_inset
21878
21879
21880 \end_layout
21881
21882 \end_inset
21883 </cell>
21884 </row>
21885 <row>
21886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21887 \begin_inset Text
21888
21889 \begin_layout Plain Layout
21890
21891 \backslash
21892 hslash
21893 \end_layout
21894
21895 \end_inset
21896 </cell>
21897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21898 \begin_inset Text
21899
21900 \begin_layout Plain Layout
21901 \begin_inset Formula $\hslash$
21902 \end_inset
21903
21904
21905 \end_layout
21906
21907 \end_inset
21908 </cell>
21909 </row>
21910 <row>
21911 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21912 \begin_inset Text
21913
21914 \begin_layout Plain Layout
21915
21916 \backslash
21917 clubsuit
21918 \end_layout
21919
21920 \end_inset
21921 </cell>
21922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21923 \begin_inset Text
21924
21925 \begin_layout Plain Layout
21926 \begin_inset Formula $\clubsuit$
21927 \end_inset
21928
21929
21930 \end_layout
21931
21932 \end_inset
21933 </cell>
21934 </row>
21935 <row>
21936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21937 \begin_inset Text
21938
21939 \begin_layout Plain Layout
21940
21941 \backslash
21942 spadesuit
21943 \end_layout
21944
21945 \end_inset
21946 </cell>
21947 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21948 \begin_inset Text
21949
21950 \begin_layout Plain Layout
21951 \begin_inset Formula $\spadesuit$
21952 \end_inset
21953
21954
21955 \end_layout
21956
21957 \end_inset
21958 </cell>
21959 </row>
21960 <row>
21961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21962 \begin_inset Text
21963
21964 \begin_layout Plain Layout
21965
21966 \backslash
21967 bigstar
21968 \end_layout
21969
21970 \end_inset
21971 </cell>
21972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21973 \begin_inset Text
21974
21975 \begin_layout Plain Layout
21976 \begin_inset Formula $\bigstar$
21977 \end_inset
21978
21979
21980 \end_layout
21981
21982 \end_inset
21983 </cell>
21984 </row>
21985 <row>
21986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21987 \begin_inset Text
21988
21989 \begin_layout Plain Layout
21990
21991 \backslash
21992 blacklozenge
21993 \end_layout
21994
21995 \end_inset
21996 </cell>
21997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21998 \begin_inset Text
21999
22000 \begin_layout Plain Layout
22001 \begin_inset Formula $\blacklozenge$
22002 \end_inset
22003
22004
22005 \end_layout
22006
22007 \end_inset
22008 </cell>
22009 </row>
22010 <row>
22011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22012 \begin_inset Text
22013
22014 \begin_layout Plain Layout
22015
22016 \backslash
22017 blacktriangle
22018 \end_layout
22019
22020 \end_inset
22021 </cell>
22022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22023 \begin_inset Text
22024
22025 \begin_layout Plain Layout
22026 \begin_inset Formula $\blacktriangle$
22027 \end_inset
22028
22029
22030 \end_layout
22031
22032 \end_inset
22033 </cell>
22034 </row>
22035 <row>
22036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22037 \begin_inset Text
22038
22039 \begin_layout Plain Layout
22040
22041 \backslash
22042 blacktiangledown
22043 \end_layout
22044
22045 \end_inset
22046 </cell>
22047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22048 \begin_inset Text
22049
22050 \begin_layout Plain Layout
22051 \begin_inset Formula $\blacktriangledown$
22052 \end_inset
22053
22054
22055 \end_layout
22056
22057 \end_inset
22058 </cell>
22059 </row>
22060 <row>
22061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22062 \begin_inset Text
22063
22064 \begin_layout Plain Layout
22065
22066 \backslash
22067 bullet
22068 \end_layout
22069
22070 \end_inset
22071 </cell>
22072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22073 \begin_inset Text
22074
22075 \begin_layout Plain Layout
22076 \begin_inset Formula $\bullet$
22077 \end_inset
22078
22079
22080 \end_layout
22081
22082 \end_inset
22083 </cell>
22084 </row>
22085 </lyxtabular>
22086
22087 \end_inset
22088
22089
22090 \begin_inset Tabular
22091 <lyxtabular version="3" rows="10" columns="2">
22092 <features>
22093 <column alignment="center" valignment="top" width="0pt">
22094 <column alignment="center" valignment="top" width="0pt">
22095 <row>
22096 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22097 \begin_inset Text
22098
22099 \begin_layout Plain Layout
22100 Command
22101 \end_layout
22102
22103 \end_inset
22104 </cell>
22105 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22106 \begin_inset Text
22107
22108 \begin_layout Plain Layout
22109 Result
22110 \end_layout
22111
22112 \end_inset
22113 </cell>
22114 </row>
22115 <row>
22116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22117 \begin_inset Text
22118
22119 \begin_layout Plain Layout
22120
22121 \backslash
22122 diamondsuit
22123 \end_layout
22124
22125 \end_inset
22126 </cell>
22127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22128 \begin_inset Text
22129
22130 \begin_layout Plain Layout
22131 \begin_inset Formula $\diamondsuit$
22132 \end_inset
22133
22134
22135 \end_layout
22136
22137 \end_inset
22138 </cell>
22139 </row>
22140 <row>
22141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22142 \begin_inset Text
22143
22144 \begin_layout Plain Layout
22145
22146 \backslash
22147 Diamond
22148 \end_layout
22149
22150 \end_inset
22151 </cell>
22152 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22153 \begin_inset Text
22154
22155 \begin_layout Plain Layout
22156 \begin_inset Formula $\Diamond$
22157 \end_inset
22158
22159
22160 \end_layout
22161
22162 \end_inset
22163 </cell>
22164 </row>
22165 <row>
22166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22167 \begin_inset Text
22168
22169 \begin_layout Plain Layout
22170
22171 \backslash
22172 heartsuit
22173 \end_layout
22174
22175 \end_inset
22176 </cell>
22177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22178 \begin_inset Text
22179
22180 \begin_layout Plain Layout
22181 \begin_inset Formula $\heartsuit$
22182 \end_inset
22183
22184
22185 \end_layout
22186
22187 \end_inset
22188 </cell>
22189 </row>
22190 <row>
22191 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22192 \begin_inset Text
22193
22194 \begin_layout Plain Layout
22195
22196 \backslash
22197 P
22198 \end_layout
22199
22200 \end_inset
22201 </cell>
22202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22203 \begin_inset Text
22204
22205 \begin_layout Plain Layout
22206 \begin_inset Formula $\P$
22207 \end_inset
22208
22209
22210 \end_layout
22211
22212 \end_inset
22213 </cell>
22214 </row>
22215 <row>
22216 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22217 \begin_inset Text
22218
22219 \begin_layout Plain Layout
22220
22221 \backslash
22222 copyright
22223 \end_layout
22224
22225 \end_inset
22226 </cell>
22227 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22228 \begin_inset Text
22229
22230 \begin_layout Plain Layout
22231 \begin_inset Formula $\copyright$
22232 \end_inset
22233
22234
22235 \end_layout
22236
22237 \end_inset
22238 </cell>
22239 </row>
22240 <row>
22241 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22242 \begin_inset Text
22243
22244 \begin_layout Plain Layout
22245
22246 \backslash
22247 circledR
22248 \end_layout
22249
22250 \end_inset
22251 </cell>
22252 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22253 \begin_inset Text
22254
22255 \begin_layout Plain Layout
22256 \begin_inset Formula $\circledR$
22257 \end_inset
22258
22259
22260 \end_layout
22261
22262 \end_inset
22263 </cell>
22264 </row>
22265 <row>
22266 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22267 \begin_inset Text
22268
22269 \begin_layout Plain Layout
22270
22271 \backslash
22272 maltese
22273 \end_layout
22274
22275 \end_inset
22276 </cell>
22277 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22278 \begin_inset Text
22279
22280 \begin_layout Plain Layout
22281 \begin_inset Formula $\maltese$
22282 \end_inset
22283
22284
22285 \end_layout
22286
22287 \end_inset
22288 </cell>
22289 </row>
22290 <row>
22291 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22292 \begin_inset Text
22293
22294 \begin_layout Plain Layout
22295
22296 \backslash
22297 diagup
22298 \end_layout
22299
22300 \end_inset
22301 </cell>
22302 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22303 \begin_inset Text
22304
22305 \begin_layout Plain Layout
22306 \begin_inset Formula $\diagup$
22307 \end_inset
22308
22309
22310 \end_layout
22311
22312 \end_inset
22313 </cell>
22314 </row>
22315 <row>
22316 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22317 \begin_inset Text
22318
22319 \begin_layout Plain Layout
22320
22321 \backslash
22322 diagdown
22323 \end_layout
22324
22325 \end_inset
22326 </cell>
22327 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22328 \begin_inset Text
22329
22330 \begin_layout Plain Layout
22331 \begin_inset Formula $\diagdown$
22332 \end_inset
22333
22334
22335 \end_layout
22336
22337 \end_inset
22338 </cell>
22339 </row>
22340 </lyxtabular>
22341
22342 \end_inset
22343
22344
22345 \end_layout
22346
22347 \begin_layout Standard
22348 \begin_inset VSpace medskip
22349 \end_inset
22350
22351 More symbols are listed in 
22352 \begin_inset CommandInset ref
22353 LatexCommand ref
22354 reference "sub:Miscellaneous-special-Characters"
22355
22356 \end_inset
22357
22358 .
22359 \end_layout
22360
22361 \begin_layout Standard
22362 Some symbols can be displayed in different sizes, see 
22363 \begin_inset CommandInset ref
22364 LatexCommand ref
22365 reference "sub:Font-Sizes"
22366
22367 \end_inset
22368
22369 .
22370 \end_layout
22371
22372 \begin_layout Subsection
22373 The Euro-Symbol €
22374 \begin_inset Index
22375 status collapsed
22376
22377 \begin_layout Plain Layout
22378 Symbols ! Euro-symbol
22379 \end_layout
22380
22381 \end_inset
22382
22383
22384 \begin_inset Index
22385 status collapsed
22386
22387 \begin_layout Plain Layout
22388
22389 \backslash
22390 @
22391 \begin_inset ERT
22392 status collapsed
22393
22394 \begin_layout Plain Layout
22395
22396
22397 \backslash
22398 officialeuro
22399 \end_layout
22400
22401 \end_inset
22402
22403
22404 \end_layout
22405
22406 \end_inset
22407
22408
22409 \end_layout
22410
22411 \begin_layout Standard
22412 To use the Euro symbol in formulas, the LaTeX-package 
22413 \series bold
22414 eurosym
22415 \series default
22416
22417 \begin_inset Index
22418 status collapsed
22419
22420 \begin_layout Plain Layout
22421 Packages ! eurosym
22422 \end_layout
22423
22424 \end_inset
22425
22426  must be installed and loaded with the LaTeX-preamble line
22427 \end_layout
22428
22429 \begin_layout Standard
22430
22431 \series bold
22432
22433 \backslash
22434 usepackage[gennarrow]{eurosym}
22435 \end_layout
22436
22437 \begin_layout Standard
22438 The Euro symbol can now be inserted with the command 
22439 \series bold
22440
22441 \backslash
22442 euro
22443 \series default
22444
22445 \begin_inset Index
22446 status collapsed
22447
22448 \begin_layout Plain Layout
22449 Commands ! E ! 
22450 \backslash
22451 euro
22452 \end_layout
22453
22454 \end_inset
22455
22456 .
22457 \end_layout
22458
22459 \begin_layout Standard
22460 The Euro symbol can directly be inserted with the € key in mathematical
22461  text, without having 
22462 \series bold
22463 eurosym
22464 \series default
22465  installed.
22466  When 
22467 \series bold
22468 eurosym
22469 \series default
22470  is installed, 
22471 \series bold
22472
22473 \backslash
22474 euro
22475 \series default
22476  can also be inserted in TeX-mode.
22477  The official currency symbol can then be inserted with the command 
22478 \series bold
22479
22480 \backslash
22481 officialeuro
22482 \series default
22483
22484 \begin_inset Index
22485 status collapsed
22486
22487 \begin_layout Plain Layout
22488 Commands ! O ! 
22489 \backslash
22490 officialeuro
22491 \end_layout
22492
22493 \end_inset
22494
22495 , that is only available in TeX-mode.
22496 \end_layout
22497
22498 \begin_layout Standard
22499 \begin_inset ERT
22500 status collapsed
22501
22502 \begin_layout Plain Layout
22503
22504
22505 \backslash
22506 ifeurosym 
22507 \end_layout
22508
22509 \end_inset
22510
22511
22512 \begin_inset Note Note
22513 status open
22514
22515 \begin_layout Plain Layout
22516 The following table will only be displayed when the LaTeX-package 
22517 \series bold
22518 eurosym
22519 \series default
22520  is installed.
22521 \end_layout
22522
22523 \end_inset
22524
22525
22526 \end_layout
22527
22528 \begin_layout Standard
22529 An overview about the different Euro symbols:
22530 \end_layout
22531
22532 \begin_layout Standard
22533 \align center
22534 \begin_inset Tabular
22535 <lyxtabular version="3" rows="4" columns="3">
22536 <features>
22537 <column alignment="center" valignment="top" width="0pt">
22538 <column alignment="center" valignment="top" width="0pt">
22539 <column alignment="center" valignment="top" width="0pt">
22540 <row>
22541 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22542 \begin_inset Text
22543
22544 \begin_layout Plain Layout
22545
22546 \end_layout
22547
22548 \end_inset
22549 </cell>
22550 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22551 \begin_inset Text
22552
22553 \begin_layout Plain Layout
22554 Command 
22555 \end_layout
22556
22557 \end_inset
22558 </cell>
22559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22560 \begin_inset Text
22561
22562 \begin_layout Plain Layout
22563 Result
22564 \end_layout
22565
22566 \end_inset
22567 </cell>
22568 </row>
22569 <row>
22570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22571 \begin_inset Text
22572
22573 \begin_layout Plain Layout
22574 formula
22575 \end_layout
22576
22577 \end_inset
22578 </cell>
22579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22580 \begin_inset Text
22581
22582 \begin_layout Plain Layout
22583
22584 \backslash
22585 euro
22586 \end_layout
22587
22588 \end_inset
22589 </cell>
22590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22591 \begin_inset Text
22592
22593 \begin_layout Plain Layout
22594 \begin_inset Formula $\euro$
22595 \end_inset
22596
22597
22598 \end_layout
22599
22600 \end_inset
22601 </cell>
22602 </row>
22603 <row>
22604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22605 \begin_inset Text
22606
22607 \begin_layout Plain Layout
22608 mathematical text
22609 \end_layout
22610
22611 \end_inset
22612 </cell>
22613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22614 \begin_inset Text
22615
22616 \begin_layout Plain Layout
22617
22618 \end_layout
22619
22620 \end_inset
22621 </cell>
22622 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22623 \begin_inset Text
22624
22625 \begin_layout Plain Layout
22626 \begin_inset Formula $\mbox{€}$
22627 \end_inset
22628
22629
22630 \end_layout
22631
22632 \end_inset
22633 </cell>
22634 </row>
22635 <row>
22636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22637 \begin_inset Text
22638
22639 \begin_layout Plain Layout
22640 TeX-mode
22641 \end_layout
22642
22643 \end_inset
22644 </cell>
22645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22646 \begin_inset Text
22647
22648 \begin_layout Plain Layout
22649
22650 \backslash
22651 officialeuro
22652 \end_layout
22653
22654 \end_inset
22655 </cell>
22656 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22657 \begin_inset Text
22658
22659 \begin_layout Plain Layout
22660 \begin_inset ERT
22661 status collapsed
22662
22663 \begin_layout Plain Layout
22664
22665
22666 \backslash
22667 officialeuro
22668 \end_layout
22669
22670 \end_inset
22671
22672
22673 \end_layout
22674
22675 \end_inset
22676 </cell>
22677 </row>
22678 </lyxtabular>
22679
22680 \end_inset
22681
22682
22683 \end_layout
22684
22685 \begin_layout Standard
22686 \begin_inset ERT
22687 status collapsed
22688
22689 \begin_layout Plain Layout
22690
22691
22692 \backslash
22693 else 
22694 \end_layout
22695
22696 \end_inset
22697
22698
22699 \begin_inset Note Note
22700 status open
22701
22702 \begin_layout Plain Layout
22703 The following will be displayed when the LaTeX-package 
22704 \series bold
22705 eurosym
22706 \series default
22707  is not installed:
22708 \end_layout
22709
22710 \end_inset
22711
22712
22713 \end_layout
22714
22715 \begin_layout Standard
22716 You need to install the LaTeX-package 
22717 \series bold
22718 eurosym
22719 \series default
22720  to see the rest of this subsection in the output.
22721 \end_layout
22722
22723 \begin_layout Standard
22724 \begin_inset ERT
22725 status collapsed
22726
22727 \begin_layout Plain Layout
22728
22729
22730 \backslash
22731 fi 
22732 \end_layout
22733
22734 \end_inset
22735
22736
22737 \end_layout
22738
22739 \begin_layout Section
22740 Relations
22741 \begin_inset CommandInset label
22742 LatexCommand label
22743 name "sec:Relations"
22744
22745 \end_inset
22746
22747
22748 \begin_inset Index
22749 status collapsed
22750
22751 \begin_layout Plain Layout
22752 Relations
22753 \end_layout
22754
22755 \end_inset
22756
22757
22758 \begin_inset Index
22759 status collapsed
22760
22761 \begin_layout Plain Layout
22762 Comparisons|see
22763 \begin_inset ERT
22764 status collapsed
22765
22766 \begin_layout Plain Layout
22767
22768 {
22769 \end_layout
22770
22771 \end_inset
22772
22773 Relations
22774 \begin_inset ERT
22775 status collapsed
22776
22777 \begin_layout Plain Layout
22778
22779 }
22780 \end_layout
22781
22782 \end_inset
22783
22784
22785 \end_layout
22786
22787 \end_inset
22788
22789
22790 \end_layout
22791
22792 \begin_layout Standard
22793 All relations can also be inserted via the toolbar button 
22794 \begin_inset Graphics
22795         filename ../images/math/leq.png
22796         scale 85
22797
22798 \end_inset
22799
22800 .
22801 \end_layout
22802
22803 \begin_layout Standard
22804 \begin_inset space \hfill{}
22805 \end_inset
22806
22807
22808 \begin_inset Tabular
22809 <lyxtabular version="3" rows="17" columns="2">
22810 <features>
22811 <column alignment="center" valignment="top" width="0pt">
22812 <column alignment="center" valignment="top" width="0pt">
22813 <row>
22814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22815 \begin_inset Text
22816
22817 \begin_layout Plain Layout
22818 Command
22819 \end_layout
22820
22821 \end_inset
22822 </cell>
22823 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22824 \begin_inset Text
22825
22826 \begin_layout Plain Layout
22827 Result
22828 \end_layout
22829
22830 \end_inset
22831 </cell>
22832 </row>
22833 <row>
22834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22835 \begin_inset Text
22836
22837 \begin_layout Plain Layout
22838 <
22839 \end_layout
22840
22841 \end_inset
22842 </cell>
22843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22844 \begin_inset Text
22845
22846 \begin_layout Plain Layout
22847 \begin_inset Formula $<$
22848 \end_inset
22849
22850
22851 \end_layout
22852
22853 \end_inset
22854 </cell>
22855 </row>
22856 <row>
22857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22858 \begin_inset Text
22859
22860 \begin_layout Plain Layout
22861
22862 \backslash
22863 le
22864 \end_layout
22865
22866 \end_inset
22867 </cell>
22868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22869 \begin_inset Text
22870
22871 \begin_layout Plain Layout
22872 \begin_inset Formula $\le$
22873 \end_inset
22874
22875
22876 \end_layout
22877
22878 \end_inset
22879 </cell>
22880 </row>
22881 <row>
22882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22883 \begin_inset Text
22884
22885 \begin_layout Plain Layout
22886
22887 \backslash
22888 ll
22889 \end_layout
22890
22891 \end_inset
22892 </cell>
22893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22894 \begin_inset Text
22895
22896 \begin_layout Plain Layout
22897 \begin_inset Formula $\ll$
22898 \end_inset
22899
22900
22901 \end_layout
22902
22903 \end_inset
22904 </cell>
22905 </row>
22906 <row>
22907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22908 \begin_inset Text
22909
22910 \begin_layout Plain Layout
22911
22912 \backslash
22913 prec
22914 \end_layout
22915
22916 \end_inset
22917 </cell>
22918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22919 \begin_inset Text
22920
22921 \begin_layout Plain Layout
22922 \begin_inset Formula $\prec$
22923 \end_inset
22924
22925
22926 \end_layout
22927
22928 \end_inset
22929 </cell>
22930 </row>
22931 <row>
22932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22933 \begin_inset Text
22934
22935 \begin_layout Plain Layout
22936
22937 \backslash
22938 preceq
22939 \end_layout
22940
22941 \end_inset
22942 </cell>
22943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22944 \begin_inset Text
22945
22946 \begin_layout Plain Layout
22947 \begin_inset Formula $\preceq$
22948 \end_inset
22949
22950
22951 \end_layout
22952
22953 \end_inset
22954 </cell>
22955 </row>
22956 <row>
22957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22958 \begin_inset Text
22959
22960 \begin_layout Plain Layout
22961
22962 \backslash
22963 subset
22964 \end_layout
22965
22966 \end_inset
22967 </cell>
22968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22969 \begin_inset Text
22970
22971 \begin_layout Plain Layout
22972 \begin_inset Formula $\subset$
22973 \end_inset
22974
22975
22976 \end_layout
22977
22978 \end_inset
22979 </cell>
22980 </row>
22981 <row>
22982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22983 \begin_inset Text
22984
22985 \begin_layout Plain Layout
22986
22987 \backslash
22988 subseteq
22989 \end_layout
22990
22991 \end_inset
22992 </cell>
22993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22994 \begin_inset Text
22995
22996 \begin_layout Plain Layout
22997 \begin_inset Formula $\subseteq$
22998 \end_inset
22999
23000
23001 \end_layout
23002
23003 \end_inset
23004 </cell>
23005 </row>
23006 <row>
23007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23008 \begin_inset Text
23009
23010 \begin_layout Plain Layout
23011
23012 \backslash
23013 sqsubseteq
23014 \end_layout
23015
23016 \end_inset
23017 </cell>
23018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23019 \begin_inset Text
23020
23021 \begin_layout Plain Layout
23022 \begin_inset Formula $\sqsubseteq$
23023 \end_inset
23024
23025
23026 \end_layout
23027
23028 \end_inset
23029 </cell>
23030 </row>
23031 <row>
23032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23033 \begin_inset Text
23034
23035 \begin_layout Plain Layout
23036
23037 \backslash
23038 in
23039 \end_layout
23040
23041 \end_inset
23042 </cell>
23043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23044 \begin_inset Text
23045
23046 \begin_layout Plain Layout
23047 \begin_inset Formula $\in$
23048 \end_inset
23049
23050
23051 \end_layout
23052
23053 \end_inset
23054 </cell>
23055 </row>
23056 <row>
23057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23058 \begin_inset Text
23059
23060 \begin_layout Plain Layout
23061
23062 \backslash
23063 vdash
23064 \end_layout
23065
23066 \end_inset
23067 </cell>
23068 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23069 \begin_inset Text
23070
23071 \begin_layout Plain Layout
23072 \begin_inset Formula $\vdash$
23073 \end_inset
23074
23075
23076 \end_layout
23077
23078 \end_inset
23079 </cell>
23080 </row>
23081 <row>
23082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23083 \begin_inset Text
23084
23085 \begin_layout Plain Layout
23086
23087 \backslash
23088 smile
23089 \end_layout
23090
23091 \end_inset
23092 </cell>
23093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23094 \begin_inset Text
23095
23096 \begin_layout Plain Layout
23097 \begin_inset Formula $\smile$
23098 \end_inset
23099
23100
23101 \end_layout
23102
23103 \end_inset
23104 </cell>
23105 </row>
23106 <row>
23107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23108 \begin_inset Text
23109
23110 \begin_layout Plain Layout
23111
23112 \backslash
23113 lhd
23114 \end_layout
23115
23116 \end_inset
23117 </cell>
23118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23119 \begin_inset Text
23120
23121 \begin_layout Plain Layout
23122 \begin_inset Formula $\lhd$
23123 \end_inset
23124
23125
23126 \end_layout
23127
23128 \end_inset
23129 </cell>
23130 </row>
23131 <row>
23132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23133 \begin_inset Text
23134
23135 \begin_layout Plain Layout
23136
23137 \backslash
23138 unlhd
23139 \end_layout
23140
23141 \end_inset
23142 </cell>
23143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23144 \begin_inset Text
23145
23146 \begin_layout Plain Layout
23147 \begin_inset Formula $\unlhd$
23148 \end_inset
23149
23150
23151 \end_layout
23152
23153 \end_inset
23154 </cell>
23155 </row>
23156 <row>
23157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23158 \begin_inset Text
23159
23160 \begin_layout Plain Layout
23161
23162 \backslash
23163 gtrless
23164 \end_layout
23165
23166 \end_inset
23167 </cell>
23168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23169 \begin_inset Text
23170
23171 \begin_layout Plain Layout
23172 \begin_inset Formula $\gtrless$
23173 \end_inset
23174
23175
23176 \end_layout
23177
23178 \end_inset
23179 </cell>
23180 </row>
23181 <row>
23182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23183 \begin_inset Text
23184
23185 \begin_layout Plain Layout
23186
23187 \backslash
23188 mid
23189 \end_layout
23190
23191 \end_inset
23192 </cell>
23193 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23194 \begin_inset Text
23195
23196 \begin_layout Plain Layout
23197 \begin_inset Formula $\mid$
23198 \end_inset
23199
23200
23201 \end_layout
23202
23203 \end_inset
23204 </cell>
23205 </row>
23206 <row>
23207 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23208 \begin_inset Text
23209
23210 \begin_layout Plain Layout
23211
23212 \backslash
23213 nmid
23214 \end_layout
23215
23216 \end_inset
23217 </cell>
23218 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23219 \begin_inset Text
23220
23221 \begin_layout Plain Layout
23222 \begin_inset Formula $\nmid$
23223 \end_inset
23224
23225
23226 \end_layout
23227
23228 \end_inset
23229 </cell>
23230 </row>
23231 </lyxtabular>
23232
23233 \end_inset
23234
23235
23236 \begin_inset space \hfill{}
23237 \end_inset
23238
23239
23240 \begin_inset Tabular
23241 <lyxtabular version="3" rows="17" columns="2">
23242 <features>
23243 <column alignment="center" valignment="top" width="0pt">
23244 <column alignment="center" valignment="top" width="0pt">
23245 <row>
23246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23247 \begin_inset Text
23248
23249 \begin_layout Plain Layout
23250 Command
23251 \end_layout
23252
23253 \end_inset
23254 </cell>
23255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23256 \begin_inset Text
23257
23258 \begin_layout Plain Layout
23259 Result
23260 \end_layout
23261
23262 \end_inset
23263 </cell>
23264 </row>
23265 <row>
23266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23267 \begin_inset Text
23268
23269 \begin_layout Plain Layout
23270 =
23271 \end_layout
23272
23273 \end_inset
23274 </cell>
23275 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23276 \begin_inset Text
23277
23278 \begin_layout Plain Layout
23279 \begin_inset Formula $=$
23280 \end_inset
23281
23282
23283 \end_layout
23284
23285 \end_inset
23286 </cell>
23287 </row>
23288 <row>
23289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23290 \begin_inset Text
23291
23292 \begin_layout Plain Layout
23293
23294 \backslash
23295 not=
23296 \end_layout
23297
23298 \end_inset
23299 </cell>
23300 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23301 \begin_inset Text
23302
23303 \begin_layout Plain Layout
23304 \begin_inset Formula $\not=$
23305 \end_inset
23306
23307
23308 \end_layout
23309
23310 \end_inset
23311 </cell>
23312 </row>
23313 <row>
23314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23315 \begin_inset Text
23316
23317 \begin_layout Plain Layout
23318
23319 \backslash
23320 equiv
23321 \end_layout
23322
23323 \end_inset
23324 </cell>
23325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23326 \begin_inset Text
23327
23328 \begin_layout Plain Layout
23329 \begin_inset Formula $\equiv$
23330 \end_inset
23331
23332
23333 \end_layout
23334
23335 \end_inset
23336 </cell>
23337 </row>
23338 <row>
23339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23340 \begin_inset Text
23341
23342 \begin_layout Plain Layout
23343
23344 \backslash
23345 sim
23346 \end_layout
23347
23348 \end_inset
23349 </cell>
23350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23351 \begin_inset Text
23352
23353 \begin_layout Plain Layout
23354 \begin_inset Formula $\sim$
23355 \end_inset
23356
23357
23358 \end_layout
23359
23360 \end_inset
23361 </cell>
23362 </row>
23363 <row>
23364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23365 \begin_inset Text
23366
23367 \begin_layout Plain Layout
23368
23369 \backslash
23370 simeq
23371 \end_layout
23372
23373 \end_inset
23374 </cell>
23375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23376 \begin_inset Text
23377
23378 \begin_layout Plain Layout
23379 \begin_inset Formula $\simeq$
23380 \end_inset
23381
23382
23383 \end_layout
23384
23385 \end_inset
23386 </cell>
23387 </row>
23388 <row>
23389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23390 \begin_inset Text
23391
23392 \begin_layout Plain Layout
23393
23394 \backslash
23395 approx
23396 \end_layout
23397
23398 \end_inset
23399 </cell>
23400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23401 \begin_inset Text
23402
23403 \begin_layout Plain Layout
23404 \begin_inset Formula $\approx$
23405 \end_inset
23406
23407
23408 \end_layout
23409
23410 \end_inset
23411 </cell>
23412 </row>
23413 <row>
23414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23415 \begin_inset Text
23416
23417 \begin_layout Plain Layout
23418
23419 \backslash
23420 cong
23421 \end_layout
23422
23423 \end_inset
23424 </cell>
23425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23426 \begin_inset Text
23427
23428 \begin_layout Plain Layout
23429 \begin_inset Formula $\cong$
23430 \end_inset
23431
23432
23433 \end_layout
23434
23435 \end_inset
23436 </cell>
23437 </row>
23438 <row>
23439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23440 \begin_inset Text
23441
23442 \begin_layout Plain Layout
23443
23444 \backslash
23445 bowtie
23446 \end_layout
23447
23448 \end_inset
23449 </cell>
23450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23451 \begin_inset Text
23452
23453 \begin_layout Plain Layout
23454 \begin_inset Formula $\bowtie$
23455 \end_inset
23456
23457
23458 \end_layout
23459
23460 \end_inset
23461 </cell>
23462 </row>
23463 <row>
23464 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23465 \begin_inset Text
23466
23467 \begin_layout Plain Layout
23468
23469 \backslash
23470 notin
23471 \end_layout
23472
23473 \end_inset
23474 </cell>
23475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23476 \begin_inset Text
23477
23478 \begin_layout Plain Layout
23479 \begin_inset Formula $\notin$
23480 \end_inset
23481
23482
23483 \end_layout
23484
23485 \end_inset
23486 </cell>
23487 </row>
23488 <row>
23489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23490 \begin_inset Text
23491
23492 \begin_layout Plain Layout
23493
23494 \backslash
23495 perp
23496 \end_layout
23497
23498 \end_inset
23499 </cell>
23500 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23501 \begin_inset Text
23502
23503 \begin_layout Plain Layout
23504 \begin_inset Formula $\perp$
23505 \end_inset
23506
23507
23508 \end_layout
23509
23510 \end_inset
23511 </cell>
23512 </row>
23513 <row>
23514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23515 \begin_inset Text
23516
23517 \begin_layout Plain Layout
23518
23519 \backslash
23520 propto
23521 \end_layout
23522
23523 \end_inset
23524 </cell>
23525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23526 \begin_inset Text
23527
23528 \begin_layout Plain Layout
23529 \begin_inset Formula $\propto$
23530 \end_inset
23531
23532
23533 \end_layout
23534
23535 \end_inset
23536 </cell>
23537 </row>
23538 <row>
23539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23540 \begin_inset Text
23541
23542 \begin_layout Plain Layout
23543
23544 \backslash
23545 asymp
23546 \end_layout
23547
23548 \end_inset
23549 </cell>
23550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23551 \begin_inset Text
23552
23553 \begin_layout Plain Layout
23554 \begin_inset Formula $\asymp$
23555 \end_inset
23556
23557
23558 \end_layout
23559
23560 \end_inset
23561 </cell>
23562 </row>
23563 <row>
23564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23565 \begin_inset Text
23566
23567 \begin_layout Plain Layout
23568
23569 \backslash
23570 doteq
23571 \end_layout
23572
23573 \end_inset
23574 </cell>
23575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23576 \begin_inset Text
23577
23578 \begin_layout Plain Layout
23579 \begin_inset Formula $\doteq$
23580 \end_inset
23581
23582
23583 \end_layout
23584
23585 \end_inset
23586 </cell>
23587 </row>
23588 <row>
23589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23590 \begin_inset Text
23591
23592 \begin_layout Plain Layout
23593
23594 \backslash
23595 circeq
23596 \end_layout
23597
23598 \end_inset
23599 </cell>
23600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23601 \begin_inset Text
23602
23603 \begin_layout Plain Layout
23604 \begin_inset Formula $\circeq$
23605 \end_inset
23606
23607
23608 \end_layout
23609
23610 \end_inset
23611 </cell>
23612 </row>
23613 <row>
23614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23615 \begin_inset Text
23616
23617 \begin_layout Plain Layout
23618
23619 \backslash
23620 models
23621 \end_layout
23622
23623 \end_inset
23624 </cell>
23625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23626 \begin_inset Text
23627
23628 \begin_layout Plain Layout
23629 \begin_inset Formula $\models$
23630 \end_inset
23631
23632
23633 \end_layout
23634
23635 \end_inset
23636 </cell>
23637 </row>
23638 <row>
23639 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23640 \begin_inset Text
23641
23642 \begin_layout Plain Layout
23643
23644 \backslash
23645 widehat=
23646 \end_layout
23647
23648 \end_inset
23649 </cell>
23650 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23651 \begin_inset Text
23652
23653 \begin_layout Plain Layout
23654 \begin_inset Formula $\widehat{=}$
23655 \end_inset
23656
23657
23658 \end_layout
23659
23660 \end_inset
23661 </cell>
23662 </row>
23663 </lyxtabular>
23664
23665 \end_inset
23666
23667
23668 \begin_inset space \hfill{}
23669 \end_inset
23670
23671
23672 \begin_inset Tabular
23673 <lyxtabular version="3" rows="17" columns="2">
23674 <features>
23675 <column alignment="center" valignment="top" width="0pt">
23676 <column alignment="center" valignment="top" width="0pt">
23677 <row>
23678 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23679 \begin_inset Text
23680
23681 \begin_layout Plain Layout
23682 Command
23683 \end_layout
23684
23685 \end_inset
23686 </cell>
23687 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23688 \begin_inset Text
23689
23690 \begin_layout Plain Layout
23691 Result
23692 \end_layout
23693
23694 \end_inset
23695 </cell>
23696 </row>
23697 <row>
23698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23699 \begin_inset Text
23700
23701 \begin_layout Plain Layout
23702 >
23703 \end_layout
23704
23705 \end_inset
23706 </cell>
23707 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23708 \begin_inset Text
23709
23710 \begin_layout Plain Layout
23711 \begin_inset Formula $>$
23712 \end_inset
23713
23714
23715 \end_layout
23716
23717 \end_inset
23718 </cell>
23719 </row>
23720 <row>
23721 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23722 \begin_inset Text
23723
23724 \begin_layout Plain Layout
23725
23726 \backslash
23727 ge
23728 \end_layout
23729
23730 \end_inset
23731 </cell>
23732 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23733 \begin_inset Text
23734
23735 \begin_layout Plain Layout
23736 \begin_inset Formula $\ge$
23737 \end_inset
23738
23739
23740 \end_layout
23741
23742 \end_inset
23743 </cell>
23744 </row>
23745 <row>
23746 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23747 \begin_inset Text
23748
23749 \begin_layout Plain Layout
23750
23751 \backslash
23752 gg
23753 \end_layout
23754
23755 \end_inset
23756 </cell>
23757 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23758 \begin_inset Text
23759
23760 \begin_layout Plain Layout
23761 \begin_inset Formula $\gg$
23762 \end_inset
23763
23764
23765 \end_layout
23766
23767 \end_inset
23768 </cell>
23769 </row>
23770 <row>
23771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23772 \begin_inset Text
23773
23774 \begin_layout Plain Layout
23775
23776 \backslash
23777 succ
23778 \end_layout
23779
23780 \end_inset
23781 </cell>
23782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23783 \begin_inset Text
23784
23785 \begin_layout Plain Layout
23786 \begin_inset Formula $\succ$
23787 \end_inset
23788
23789
23790 \end_layout
23791
23792 \end_inset
23793 </cell>
23794 </row>
23795 <row>
23796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23797 \begin_inset Text
23798
23799 \begin_layout Plain Layout
23800
23801 \backslash
23802 succeq
23803 \end_layout
23804
23805 \end_inset
23806 </cell>
23807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23808 \begin_inset Text
23809
23810 \begin_layout Plain Layout
23811 \begin_inset Formula $\succeq$
23812 \end_inset
23813
23814
23815 \end_layout
23816
23817 \end_inset
23818 </cell>
23819 </row>
23820 <row>
23821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23822 \begin_inset Text
23823
23824 \begin_layout Plain Layout
23825
23826 \backslash
23827 supset
23828 \end_layout
23829
23830 \end_inset
23831 </cell>
23832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23833 \begin_inset Text
23834
23835 \begin_layout Plain Layout
23836 \begin_inset Formula $\supset$
23837 \end_inset
23838
23839
23840 \end_layout
23841
23842 \end_inset
23843 </cell>
23844 </row>
23845 <row>
23846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23847 \begin_inset Text
23848
23849 \begin_layout Plain Layout
23850
23851 \backslash
23852 supseteq
23853 \end_layout
23854
23855 \end_inset
23856 </cell>
23857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23858 \begin_inset Text
23859
23860 \begin_layout Plain Layout
23861 \begin_inset Formula $\supseteq$
23862 \end_inset
23863
23864
23865 \end_layout
23866
23867 \end_inset
23868 </cell>
23869 </row>
23870 <row>
23871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23872 \begin_inset Text
23873
23874 \begin_layout Plain Layout
23875
23876 \backslash
23877 sqsupseteq
23878 \end_layout
23879
23880 \end_inset
23881 </cell>
23882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23883 \begin_inset Text
23884
23885 \begin_layout Plain Layout
23886 \begin_inset Formula $\sqsupseteq$
23887 \end_inset
23888
23889
23890 \end_layout
23891
23892 \end_inset
23893 </cell>
23894 </row>
23895 <row>
23896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23897 \begin_inset Text
23898
23899 \begin_layout Plain Layout
23900
23901 \backslash
23902 ni
23903 \end_layout
23904
23905 \end_inset
23906 </cell>
23907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23908 \begin_inset Text
23909
23910 \begin_layout Plain Layout
23911 \begin_inset Formula $\ni$
23912 \end_inset
23913
23914
23915 \end_layout
23916
23917 \end_inset
23918 </cell>
23919 </row>
23920 <row>
23921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23922 \begin_inset Text
23923
23924 \begin_layout Plain Layout
23925
23926 \backslash
23927 dashv
23928 \end_layout
23929
23930 \end_inset
23931 </cell>
23932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23933 \begin_inset Text
23934
23935 \begin_layout Plain Layout
23936 \begin_inset Formula $\dashv$
23937 \end_inset
23938
23939
23940 \end_layout
23941
23942 \end_inset
23943 </cell>
23944 </row>
23945 <row>
23946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23947 \begin_inset Text
23948
23949 \begin_layout Plain Layout
23950
23951 \backslash
23952 frown
23953 \end_layout
23954
23955 \end_inset
23956 </cell>
23957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23958 \begin_inset Text
23959
23960 \begin_layout Plain Layout
23961 \begin_inset Formula $\frown$
23962 \end_inset
23963
23964
23965 \end_layout
23966
23967 \end_inset
23968 </cell>
23969 </row>
23970 <row>
23971 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23972 \begin_inset Text
23973
23974 \begin_layout Plain Layout
23975
23976 \backslash
23977 rhd
23978 \end_layout
23979
23980 \end_inset
23981 </cell>
23982 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23983 \begin_inset Text
23984
23985 \begin_layout Plain Layout
23986 \begin_inset Formula $\rhd$
23987 \end_inset
23988
23989
23990 \end_layout
23991
23992 \end_inset
23993 </cell>
23994 </row>
23995 <row>
23996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23997 \begin_inset Text
23998
23999 \begin_layout Plain Layout
24000
24001 \backslash
24002 unrhd
24003 \end_layout
24004
24005 \end_inset
24006 </cell>
24007 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24008 \begin_inset Text
24009
24010 \begin_layout Plain Layout
24011 \begin_inset Formula $\unrhd$
24012 \end_inset
24013
24014
24015 \end_layout
24016
24017 \end_inset
24018 </cell>
24019 </row>
24020 <row>
24021 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24022 \begin_inset Text
24023
24024 \begin_layout Plain Layout
24025
24026 \backslash
24027 lessgtr
24028 \end_layout
24029
24030 \end_inset
24031 </cell>
24032 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24033 \begin_inset Text
24034
24035 \begin_layout Plain Layout
24036 \begin_inset Formula $\lessgtr$
24037 \end_inset
24038
24039
24040 \end_layout
24041
24042 \end_inset
24043 </cell>
24044 </row>
24045 <row>
24046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24047 \begin_inset Text
24048
24049 \begin_layout Plain Layout
24050
24051 \backslash
24052 parallel
24053 \end_layout
24054
24055 \end_inset
24056 </cell>
24057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24058 \begin_inset Text
24059
24060 \begin_layout Plain Layout
24061 \begin_inset Formula $\parallel$
24062 \end_inset
24063
24064
24065 \end_layout
24066
24067 \end_inset
24068 </cell>
24069 </row>
24070 <row>
24071 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24072 \begin_inset Text
24073
24074 \begin_layout Plain Layout
24075
24076 \backslash
24077 nparallel
24078 \end_layout
24079
24080 \end_inset
24081 </cell>
24082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24083 \begin_inset Text
24084
24085 \begin_layout Plain Layout
24086 \begin_inset Formula $\nparallel$
24087 \end_inset
24088
24089
24090 \end_layout
24091
24092 \end_inset
24093 </cell>
24094 </row>
24095 </lyxtabular>
24096
24097 \end_inset
24098
24099
24100 \begin_inset space \hfill{}
24101 \end_inset
24102
24103
24104 \end_layout
24105
24106 \begin_layout Standard
24107 \begin_inset VSpace medskip
24108 \end_inset
24109
24110 The characters 
24111 \series bold
24112
24113 \backslash
24114 lhd
24115 \series default
24116  and 
24117 \series bold
24118
24119 \backslash
24120 rhd
24121 \series default
24122  are bigger than the equal looking operators 
24123 \series bold
24124
24125 \backslash
24126 triangleleft
24127 \series default
24128  and 
24129 \series bold
24130
24131 \backslash
24132 triangleright
24133 \series default
24134 , respectively.
24135 \end_layout
24136
24137 \begin_layout Standard
24138 Relations are, in contrary to symbols, always surrounded by space.
24139 \end_layout
24140
24141 \begin_layout Standard
24142 Relations with labels can be created with the command 
24143 \series bold
24144
24145 \backslash
24146 stackrel
24147 \series default
24148
24149 \begin_inset Index
24150 status collapsed
24151
24152 \begin_layout Plain Layout
24153 Commands ! S ! 
24154 \backslash
24155 stackrel
24156 \end_layout
24157
24158 \end_inset
24159
24160 :
24161 \end_layout
24162
24163 \begin_layout Standard
24164 \align center
24165 \begin_inset Tabular
24166 <lyxtabular version="3" rows="2" columns="2">
24167 <features>
24168 <column alignment="center" valignment="top" width="0">
24169 <column alignment="center" valignment="top" width="0">
24170 <row>
24171 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24172 \begin_inset Text
24173
24174 \begin_layout Plain Layout
24175 Command
24176 \end_layout
24177
24178 \end_inset
24179 </cell>
24180 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24181 \begin_inset Text
24182
24183 \begin_layout Plain Layout
24184 Result
24185 \begin_inset Note Note
24186 status collapsed
24187
24188 \begin_layout Plain Layout
24189
24190 \series bold
24191
24192 \backslash
24193 raisebox
24194 \series default
24195  is only used as spacer.
24196 \end_layout
24197
24198 \end_inset
24199
24200
24201 \end_layout
24202
24203 \end_inset
24204 </cell>
24205 </row>
24206 <row>
24207 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24208 \begin_inset Text
24209
24210 \begin_layout Plain Layout
24211 A(r)
24212 \backslash
24213 stackrel
24214 \begin_inset ERT
24215 status collapsed
24216
24217 \begin_layout Plain Layout
24218
24219
24220 \backslash
24221 spce 
24222 \end_layout
24223
24224 \end_inset
24225
24226 r
24227 \backslash
24228 to
24229 \backslash
24230 infty
24231 \begin_inset ERT
24232 status collapsed
24233
24234 \begin_layout Plain Layout
24235
24236
24237 \backslash
24238 spce 
24239 \end_layout
24240
24241 \end_inset
24242
24243
24244 \begin_inset Formula $\downarrow$
24245 \end_inset
24246
24247
24248 \backslash
24249 approx
24250 \begin_inset ERT
24251 status collapsed
24252
24253 \begin_layout Plain Layout
24254
24255
24256 \backslash
24257 spce 
24258 \end_layout
24259
24260 \end_inset
24261
24262
24263 \begin_inset ERT
24264 status collapsed
24265
24266 \begin_layout Plain Layout
24267
24268
24269 \backslash
24270 spce 
24271 \end_layout
24272
24273 \end_inset
24274
24275 B
24276 \end_layout
24277
24278 \end_inset
24279 </cell>
24280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24281 \begin_inset Text
24282
24283 \begin_layout Plain Layout
24284 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24285 \end_inset
24286
24287
24288 \end_layout
24289
24290 \end_inset
24291 </cell>
24292 </row>
24293 </lyxtabular>
24294
24295 \end_inset
24296
24297
24298 \end_layout
24299
24300 \begin_layout Section
24301 Functions
24302 \end_layout
24303
24304 \begin_layout Subsection
24305 Predefined Functions
24306 \begin_inset CommandInset label
24307 LatexCommand label
24308 name "sub:Predefined-Functions"
24309
24310 \end_inset
24311
24312
24313 \begin_inset Index
24314 status collapsed
24315
24316 \begin_layout Plain Layout
24317 Functions ! predefined
24318 \end_layout
24319
24320 \end_inset
24321
24322
24323 \end_layout
24324
24325 \begin_layout Standard
24326 In general, variables are set 
24327 \emph on
24328 italic
24329 \emph default
24330  in mathematical expressions, but not function names, because 
24331 \begin_inset Formula $sin$
24332 \end_inset
24333
24334  could be misunderstood as 
24335 \begin_inset Formula $s\cdot i\cdot n$
24336 \end_inset
24337
24338 .
24339  Therefore there are predefined functions, that are additionally a bit separated
24340  from prefactors.
24341  They are inserted as commands starting with a backslash before their name.
24342 \end_layout
24343
24344 \begin_layout Standard
24345 \align center
24346 \begin_inset Tabular
24347 <lyxtabular version="3" rows="2" columns="4">
24348 <features>
24349 <column alignment="center" valignment="top" width="0pt">
24350 <column alignment="center" valignment="top" width="0pt">
24351 <column alignment="center" valignment="top" width="0pt">
24352 <column alignment="center" valignment="top" width="0pt">
24353 <row>
24354 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24355 \begin_inset Text
24356
24357 \begin_layout Plain Layout
24358 Command
24359 \end_layout
24360
24361 \end_inset
24362 </cell>
24363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24364 \begin_inset Text
24365
24366 \begin_layout Plain Layout
24367 Result
24368 \end_layout
24369
24370 \end_inset
24371 </cell>
24372 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24373 \begin_inset Text
24374
24375 \begin_layout Plain Layout
24376 Command
24377 \end_layout
24378
24379 \end_inset
24380 </cell>
24381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24382 \begin_inset Text
24383
24384 \begin_layout Plain Layout
24385 Result
24386 \end_layout
24387
24388 \end_inset
24389 </cell>
24390 </row>
24391 <row>
24392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24393 \begin_inset Text
24394
24395 \begin_layout Plain Layout
24396 Asin(x)+B
24397 \end_layout
24398
24399 \end_inset
24400 </cell>
24401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24402 \begin_inset Text
24403
24404 \begin_layout Plain Layout
24405 \begin_inset Formula $Asin(x)+B$
24406 \end_inset
24407
24408
24409 \end_layout
24410
24411 \end_inset
24412 </cell>
24413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24414 \begin_inset Text
24415
24416 \begin_layout Plain Layout
24417 A
24418 \backslash
24419 sin(x)+B
24420 \end_layout
24421
24422 \end_inset
24423 </cell>
24424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24425 \begin_inset Text
24426
24427 \begin_layout Plain Layout
24428 \begin_inset Formula $A\sin(x)+B$
24429 \end_inset
24430
24431
24432 \end_layout
24433
24434 \end_inset
24435 </cell>
24436 </row>
24437 </lyxtabular>
24438
24439 \end_inset
24440
24441
24442 \end_layout
24443
24444 \begin_layout Standard
24445 The following functions are predefined:
24446 \end_layout
24447
24448 \begin_layout Standard
24449 \begin_inset VSpace -2mm
24450 \end_inset
24451
24452
24453 \end_layout
24454
24455 \begin_layout Standard
24456 \align center
24457 \begin_inset Tabular
24458 <lyxtabular version="3" rows="9" columns="4">
24459 <features>
24460 <column alignment="center" valignment="top" width="0pt">
24461 <column alignment="center" valignment="top" width="0pt">
24462 <column alignment="center" valignment="top" width="0pt">
24463 <column alignment="center" valignment="top" width="0pt">
24464 <row>
24465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24466 \begin_inset Text
24467
24468 \begin_layout Plain Layout
24469 Command
24470 \end_layout
24471
24472 \end_inset
24473 </cell>
24474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24475 \begin_inset Text
24476
24477 \begin_layout Plain Layout
24478 Command
24479 \end_layout
24480
24481 \end_inset
24482 </cell>
24483 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24484 \begin_inset Text
24485
24486 \begin_layout Plain Layout
24487 Command
24488 \end_layout
24489
24490 \end_inset
24491 </cell>
24492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24493 \begin_inset Text
24494
24495 \begin_layout Plain Layout
24496 Command
24497 \end_layout
24498
24499 \end_inset
24500 </cell>
24501 </row>
24502 <row>
24503 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24504 \begin_inset Text
24505
24506 \begin_layout Plain Layout
24507
24508 \backslash
24509 sin
24510 \end_layout
24511
24512 \end_inset
24513 </cell>
24514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24515 \begin_inset Text
24516
24517 \begin_layout Plain Layout
24518
24519 \backslash
24520 sinh
24521 \end_layout
24522
24523 \end_inset
24524 </cell>
24525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24526 \begin_inset Text
24527
24528 \begin_layout Plain Layout
24529
24530 \backslash
24531 arcsin
24532 \end_layout
24533
24534 \end_inset
24535 </cell>
24536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24537 \begin_inset Text
24538
24539 \begin_layout Plain Layout
24540
24541 \backslash
24542 sup
24543 \end_layout
24544
24545 \end_inset
24546 </cell>
24547 </row>
24548 <row>
24549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24550 \begin_inset Text
24551
24552 \begin_layout Plain Layout
24553
24554 \backslash
24555 cos
24556 \end_layout
24557
24558 \end_inset
24559 </cell>
24560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24561 \begin_inset Text
24562
24563 \begin_layout Plain Layout
24564
24565 \backslash
24566 cosh
24567 \end_layout
24568
24569 \end_inset
24570 </cell>
24571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24572 \begin_inset Text
24573
24574 \begin_layout Plain Layout
24575
24576 \backslash
24577 arccos
24578 \end_layout
24579
24580 \end_inset
24581 </cell>
24582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24583 \begin_inset Text
24584
24585 \begin_layout Plain Layout
24586
24587 \backslash
24588 inf
24589 \end_layout
24590
24591 \end_inset
24592 </cell>
24593 </row>
24594 <row>
24595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24596 \begin_inset Text
24597
24598 \begin_layout Plain Layout
24599
24600 \backslash
24601 tan
24602 \end_layout
24603
24604 \end_inset
24605 </cell>
24606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24607 \begin_inset Text
24608
24609 \begin_layout Plain Layout
24610
24611 \backslash
24612 tanh
24613 \end_layout
24614
24615 \end_inset
24616 </cell>
24617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24618 \begin_inset Text
24619
24620 \begin_layout Plain Layout
24621
24622 \backslash
24623 arctan
24624 \end_layout
24625
24626 \end_inset
24627 </cell>
24628 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24629 \begin_inset Text
24630
24631 \begin_layout Plain Layout
24632
24633 \backslash
24634 lim
24635 \end_layout
24636
24637 \end_inset
24638 </cell>
24639 </row>
24640 <row>
24641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24642 \begin_inset Text
24643
24644 \begin_layout Plain Layout
24645
24646 \backslash
24647 cot
24648 \end_layout
24649
24650 \end_inset
24651 </cell>
24652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24653 \begin_inset Text
24654
24655 \begin_layout Plain Layout
24656
24657 \backslash
24658 coth
24659 \end_layout
24660
24661 \end_inset
24662 </cell>
24663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24664 \begin_inset Text
24665
24666 \begin_layout Plain Layout
24667
24668 \backslash
24669 arg
24670 \end_layout
24671
24672 \end_inset
24673 </cell>
24674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24675 \begin_inset Text
24676
24677 \begin_layout Plain Layout
24678
24679 \backslash
24680 liminf
24681 \end_layout
24682
24683 \end_inset
24684 </cell>
24685 </row>
24686 <row>
24687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24688 \begin_inset Text
24689
24690 \begin_layout Plain Layout
24691
24692 \backslash
24693 sec
24694 \end_layout
24695
24696 \end_inset
24697 </cell>
24698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24699 \begin_inset Text
24700
24701 \begin_layout Plain Layout
24702
24703 \backslash
24704 min
24705 \end_layout
24706
24707 \end_inset
24708 </cell>
24709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24710 \begin_inset Text
24711
24712 \begin_layout Plain Layout
24713
24714 \backslash
24715 deg
24716 \end_layout
24717
24718 \end_inset
24719 </cell>
24720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24721 \begin_inset Text
24722
24723 \begin_layout Plain Layout
24724
24725 \backslash
24726 limsup
24727 \end_layout
24728
24729 \end_inset
24730 </cell>
24731 </row>
24732 <row>
24733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24734 \begin_inset Text
24735
24736 \begin_layout Plain Layout
24737
24738 \backslash
24739 csc
24740 \end_layout
24741
24742 \end_inset
24743 </cell>
24744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24745 \begin_inset Text
24746
24747 \begin_layout Plain Layout
24748
24749 \backslash
24750 max
24751 \end_layout
24752
24753 \end_inset
24754 </cell>
24755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24756 \begin_inset Text
24757
24758 \begin_layout Plain Layout
24759
24760 \backslash
24761 det
24762 \end_layout
24763
24764 \end_inset
24765 </cell>
24766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24767 \begin_inset Text
24768
24769 \begin_layout Plain Layout
24770
24771 \backslash
24772 Pr
24773 \end_layout
24774
24775 \end_inset
24776 </cell>
24777 </row>
24778 <row>
24779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24780 \begin_inset Text
24781
24782 \begin_layout Plain Layout
24783
24784 \backslash
24785 ln
24786 \end_layout
24787
24788 \end_inset
24789 </cell>
24790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24791 \begin_inset Text
24792
24793 \begin_layout Plain Layout
24794
24795 \backslash
24796 exp
24797 \end_layout
24798
24799 \end_inset
24800 </cell>
24801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24802 \begin_inset Text
24803
24804 \begin_layout Plain Layout
24805
24806 \backslash
24807 dim
24808 \end_layout
24809
24810 \end_inset
24811 </cell>
24812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24813 \begin_inset Text
24814
24815 \begin_layout Plain Layout
24816
24817 \backslash
24818 hom
24819 \end_layout
24820
24821 \end_inset
24822 </cell>
24823 </row>
24824 <row>
24825 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24826 \begin_inset Text
24827
24828 \begin_layout Plain Layout
24829
24830 \backslash
24831 lg
24832 \end_layout
24833
24834 \end_inset
24835 </cell>
24836 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24837 \begin_inset Text
24838
24839 \begin_layout Plain Layout
24840
24841 \backslash
24842 log
24843 \end_layout
24844
24845 \end_inset
24846 </cell>
24847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24848 \begin_inset Text
24849
24850 \begin_layout Plain Layout
24851
24852 \backslash
24853 ker
24854 \end_layout
24855
24856 \end_inset
24857 </cell>
24858 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24859 \begin_inset Text
24860
24861 \begin_layout Plain Layout
24862
24863 \backslash
24864 gcd
24865 \end_layout
24866
24867 \end_inset
24868 </cell>
24869 </row>
24870 </lyxtabular>
24871
24872 \end_inset
24873
24874
24875 \end_layout
24876
24877 \begin_layout Standard
24878 They can also be inserted with the math toolbar button 
24879 \begin_inset Graphics
24880         filename ../images/math/functions.png
24881         scale 85
24882
24883 \end_inset
24884
24885 .
24886 \end_layout
24887
24888 \begin_layout Subsection
24889 Self-defined Functions
24890 \begin_inset Index
24891 status collapsed
24892
24893 \begin_layout Plain Layout
24894 Functions ! self-defined
24895 \end_layout
24896
24897 \end_inset
24898
24899
24900 \end_layout
24901
24902 \begin_layout Standard
24903 To use a function that is not predefined, like for example the sign function
24904  sgn(x), there are two possibilities:
24905 \end_layout
24906
24907 \begin_layout Itemize
24908 Define the function by inserting the following line to the LaTeX-preamble
24909 \begin_inset Foot
24910 status collapsed
24911
24912 \begin_layout Plain Layout
24913 For more about 
24914 \series bold
24915
24916 \backslash
24917 DeclareMathOperator
24918 \series default
24919  see 
24920 \begin_inset CommandInset ref
24921 LatexCommand ref
24922 reference "sub:Self-defined-Operators"
24923
24924 \end_inset
24925
24926 .
24927 \end_layout
24928
24929 \end_inset
24930
24931
24932 \begin_inset Newline newline
24933 \end_inset
24934
24935
24936 \begin_inset VSpace -3mm
24937 \end_inset
24938
24939
24940 \begin_inset Newline newline
24941 \end_inset
24942
24943
24944 \series bold
24945
24946 \backslash
24947 DeclareMathOperator{
24948 \backslash
24949 sgn}{sgn}
24950 \series default
24951
24952 \begin_inset Index
24953 status collapsed
24954
24955 \begin_layout Plain Layout
24956 Commands ! D ! 
24957 \backslash
24958 dbinom@
24959 \backslash
24960 DeclareMathOperator
24961 \end_layout
24962
24963 \end_inset
24964
24965
24966 \begin_inset Newline newline
24967 \end_inset
24968
24969
24970 \begin_inset VSpace -2mm
24971 \end_inset
24972
24973
24974 \begin_inset Newline newline
24975 \end_inset
24976
24977 Now the new defined function can be called with the command 
24978 \series bold
24979
24980 \backslash
24981 sgn
24982 \series default
24983 .
24984 \end_layout
24985
24986 \begin_layout Itemize
24987 Write the the formula as usual, mark the formula name, in our example the
24988  letters 
24989 \emph on
24990 sgn
24991 \emph default
24992 , and change it to mathematical text.
24993  At last a space is inserted between prefactor and function.
24994 \end_layout
24995
24996 \begin_layout Standard
24997 The result is the same with both methods as with a predefined function
24998 \begin_inset Foot
24999 status collapsed
25000
25001 \begin_layout Plain Layout
25002 In LyX self-defined functions are displayed red, predefined ones black.
25003 \end_layout
25004
25005 \end_inset
25006
25007 :
25008 \end_layout
25009
25010 \begin_layout Standard
25011 \align center
25012 \begin_inset Tabular
25013 <lyxtabular version="3" rows="3" columns="2">
25014 <features>
25015 <column alignment="center" valignment="top" width="0pt">
25016 <column alignment="center" valignment="top" width="0pt">
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 Command
25023 \end_layout
25024
25025 \end_inset
25026 </cell>
25027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25028 \begin_inset Text
25029
25030 \begin_layout Plain Layout
25031 Result
25032 \end_layout
25033
25034 \end_inset
25035 </cell>
25036 </row>
25037 <row>
25038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25039 \begin_inset Text
25040
25041 \begin_layout Plain Layout
25042 A
25043 \backslash
25044 sgn(x)+B
25045 \end_layout
25046
25047 \end_inset
25048 </cell>
25049 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25050 \begin_inset Text
25051
25052 \begin_layout Plain Layout
25053 \begin_inset Formula $A\sgn(x)+B$
25054 \end_inset
25055
25056
25057 \end_layout
25058
25059 \end_inset
25060 </cell>
25061 </row>
25062 <row>
25063 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25064 \begin_inset Text
25065
25066 \begin_layout Plain Layout
25067 A
25068 \backslash
25069 ,
25070 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt+M}\,\textrm{M}}$
25071 \end_inset
25072
25073 (x)+B
25074 \end_layout
25075
25076 \end_inset
25077 </cell>
25078 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25079 \begin_inset Text
25080
25081 \begin_layout Plain Layout
25082 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25083 \end_inset
25084
25085
25086 \end_layout
25087
25088 \end_inset
25089 </cell>
25090 </row>
25091 </lyxtabular>
25092
25093 \end_inset
25094
25095
25096 \end_layout
25097
25098 \begin_layout Standard
25099 The first method is more suitable when the self-defined function should
25100  be used several times.
25101 \end_layout
25102
25103 \begin_layout Subsection
25104 Limits
25105 \begin_inset Index
25106 status collapsed
25107
25108 \begin_layout Plain Layout
25109 Limits
25110 \end_layout
25111
25112 \end_inset
25113
25114
25115 \end_layout
25116
25117 \begin_layout Standard
25118 For limits there are defined besides 
25119 \series bold
25120
25121 \backslash
25122 lim
25123 \series default
25124
25125 \begin_inset Index
25126 status collapsed
25127
25128 \begin_layout Plain Layout
25129 Commands ! L ! 
25130 \backslash
25131 lim
25132 \end_layout
25133
25134 \end_inset
25135
25136
25137 \series bold
25138
25139 \backslash
25140 liminf
25141 \series default
25142  and 
25143 \series bold
25144
25145 \backslash
25146 limsup
25147 \series default
25148  furthermore the following functions:
25149 \end_layout
25150
25151 \begin_layout Standard
25152 \align center
25153 \begin_inset Tabular
25154 <lyxtabular version="3" rows="5" columns="2">
25155 <features>
25156 <column alignment="center" valignment="top" width="0">
25157 <column alignment="center" valignment="top" width="0">
25158 <row>
25159 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25160 \begin_inset Text
25161
25162 \begin_layout Plain Layout
25163 Command
25164 \end_layout
25165
25166 \end_inset
25167 </cell>
25168 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25169 \begin_inset Text
25170
25171 \begin_layout Plain Layout
25172 Result
25173 \begin_inset Note Note
25174 status collapsed
25175
25176 \begin_layout Plain Layout
25177
25178 \series bold
25179
25180 \backslash
25181 raisebox
25182 \series default
25183  is only used as spacer.
25184 \end_layout
25185
25186 \end_inset
25187
25188
25189 \end_layout
25190
25191 \end_inset
25192 </cell>
25193 </row>
25194 <row>
25195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25196 \begin_inset Text
25197
25198 \begin_layout Plain Layout
25199
25200 \backslash
25201 varliminf
25202 \end_layout
25203
25204 \end_inset
25205 </cell>
25206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25207 \begin_inset Text
25208
25209 \begin_layout Plain Layout
25210 \begin_inset Formula $\varliminf$
25211 \end_inset
25212
25213
25214 \end_layout
25215
25216 \end_inset
25217 </cell>
25218 </row>
25219 <row>
25220 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25221 \begin_inset Text
25222
25223 \begin_layout Plain Layout
25224
25225 \backslash
25226 varlimsup
25227 \end_layout
25228
25229 \end_inset
25230 </cell>
25231 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25232 \begin_inset Text
25233
25234 \begin_layout Plain Layout
25235 \begin_inset Formula $\varlimsup$
25236 \end_inset
25237
25238
25239 \end_layout
25240
25241 \end_inset
25242 </cell>
25243 </row>
25244 <row>
25245 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25246 \begin_inset Text
25247
25248 \begin_layout Plain Layout
25249
25250 \backslash
25251 varprojlim
25252 \end_layout
25253
25254 \end_inset
25255 </cell>
25256 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25257 \begin_inset Text
25258
25259 \begin_layout Plain Layout
25260 \begin_inset Formula $\varprojlim$
25261 \end_inset
25262
25263
25264 \end_layout
25265
25266 \end_inset
25267 </cell>
25268 </row>
25269 <row>
25270 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25271 \begin_inset Text
25272
25273 \begin_layout Plain Layout
25274
25275 \backslash
25276 varinjlim
25277 \end_layout
25278
25279 \end_inset
25280 </cell>
25281 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25282 \begin_inset Text
25283
25284 \begin_layout Plain Layout
25285 \begin_inset Formula $\varinjlim$
25286 \end_inset
25287
25288
25289 \begin_inset Formula $\raisebox{-2.5mm}{}$
25290 \end_inset
25291
25292
25293 \end_layout
25294
25295 \end_inset
25296 </cell>
25297 </row>
25298 </lyxtabular>
25299
25300 \end_inset
25301
25302
25303 \end_layout
25304
25305 \begin_layout Standard
25306 \begin_inset VSpace medskip
25307 \end_inset
25308
25309 The limit is created by inserting a subscript.
25310  It is set right beside the function in an inline formula:
25311 \end_layout
25312
25313 \begin_layout Standard
25314 \align center
25315 \begin_inset Tabular
25316 <lyxtabular version="3" rows="2" columns="2">
25317 <features>
25318 <column alignment="center" valignment="top" width="0pt">
25319 <column alignment="center" valignment="top" width="0pt">
25320 <row>
25321 <cell alignment="center" valignment="top" usebox="none">
25322 \begin_inset Text
25323
25324 \begin_layout Plain Layout
25325 Command
25326 \end_layout
25327
25328 \end_inset
25329 </cell>
25330 <cell alignment="center" valignment="top" usebox="none">
25331 \begin_inset Text
25332
25333 \begin_layout Plain Layout
25334 \begin_inset space \hspace{}
25335 \length 1cm
25336 \end_inset
25337
25338 Result
25339 \begin_inset Note Note
25340 status collapsed
25341
25342 \begin_layout Plain Layout
25343 The space and
25344 \series bold
25345  
25346 \backslash
25347 raisebox
25348 \series default
25349  are used here as spacer.
25350 \end_layout
25351
25352 \end_inset
25353
25354
25355 \end_layout
25356
25357 \end_inset
25358 </cell>
25359 </row>
25360 <row>
25361 <cell alignment="center" valignment="top" usebox="none">
25362 \begin_inset Text
25363
25364 \begin_layout Plain Layout
25365
25366 \backslash
25367 lim_x
25368 \backslash
25369 to
25370 \begin_inset ERT
25371 status collapsed
25372
25373 \begin_layout Plain Layout
25374
25375
25376 \backslash
25377 spce 
25378 \end_layout
25379
25380 \end_inset
25381
25382 A
25383 \begin_inset ERT
25384 status collapsed
25385
25386 \begin_layout Plain Layout
25387
25388
25389 \backslash
25390 spce 
25391 \end_layout
25392
25393 \end_inset
25394
25395 x=B
25396 \end_layout
25397
25398 \end_inset
25399 </cell>
25400 <cell alignment="center" valignment="top" usebox="none">
25401 \begin_inset Text
25402
25403 \begin_layout Plain Layout
25404 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25405 \end_inset
25406
25407
25408 \end_layout
25409
25410 \end_inset
25411 </cell>
25412 </row>
25413 </lyxtabular>
25414
25415 \end_inset
25416
25417
25418 \end_layout
25419
25420 \begin_layout Standard
25421 In a displayed formula the limit is set below the formula, as usual:
25422 \begin_inset Formula \[
25423 \lim_{x\to A}x=B\]
25424
25425 \end_inset
25426
25427
25428 \end_layout
25429
25430 \begin_layout Subsection
25431 Modulo-Functions
25432 \begin_inset Index
25433 status collapsed
25434
25435 \begin_layout Plain Layout
25436 Functions ! modulo-
25437 \end_layout
25438
25439 \end_inset
25440
25441
25442 \end_layout
25443
25444 \begin_layout Standard
25445 The modulo-function is special, because it exists in four variants.
25446 \end_layout
25447
25448 \begin_layout Standard
25449 The variants in a displayed formula:
25450 \begin_inset Formula \begin{align*}
25451 \underline{\textrm{Command}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Result}}\\
25452 \mathrm{a\backslash mod\textrm{\spce}b} &  & a\mod b\\
25453 \mathrm{a\backslash pmod\textrm{\spce}b} &  & a\pmod b\\
25454 \mathrm{a\backslash bmod\textrm{\spce}b} &  & a\bmod b\\
25455 \mathrm{a\backslash pod\textrm{\spce}b} &  & a\pod b\end{align*}
25456
25457 \end_inset
25458
25459
25460 \end_layout
25461
25462 \begin_layout Standard
25463 In an inline formula less space is set before the function names for all
25464  variants.
25465 \end_layout
25466
25467 \begin_layout Section
25468 Special Characters
25469 \begin_inset Index
25470 status collapsed
25471
25472 \begin_layout Plain Layout
25473 Special characters
25474 \end_layout
25475
25476 \end_inset
25477
25478
25479 \end_layout
25480
25481 \begin_layout Subsection
25482 Special Characters in Mathematical Text
25483 \end_layout
25484
25485 \begin_layout Standard
25486 The following commands can only be used in mathematical text or in TeX-mode:
25487 \end_layout
25488
25489 \begin_layout Standard
25490 \begin_inset space \hfill{}
25491 \end_inset
25492
25493
25494 \begin_inset Tabular
25495 <lyxtabular version="3" rows="8" columns="2">
25496 <features>
25497 <column alignment="block" valignment="top" width="0">
25498 <column alignment="block" valignment="top" width="0">
25499 <row>
25500 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25501 \begin_inset Text
25502
25503 \begin_layout Plain Layout
25504 Command
25505 \end_layout
25506
25507 \end_inset
25508 </cell>
25509 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25510 \begin_inset Text
25511
25512 \begin_layout Plain Layout
25513 Result
25514 \end_layout
25515
25516 \end_inset
25517 </cell>
25518 </row>
25519 <row>
25520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25521 \begin_inset Text
25522
25523 \begin_layout Plain Layout
25524
25525 \backslash
25526 oe
25527 \end_layout
25528
25529 \end_inset
25530 </cell>
25531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25532 \begin_inset Text
25533
25534 \begin_layout Plain Layout
25535 \begin_inset Formula $\textrm{œ}$
25536 \end_inset
25537
25538
25539 \end_layout
25540
25541 \end_inset
25542 </cell>
25543 </row>
25544 <row>
25545 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25546 \begin_inset Text
25547
25548 \begin_layout Plain Layout
25549
25550 \backslash
25551 OE
25552 \end_layout
25553
25554 \end_inset
25555 </cell>
25556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25557 \begin_inset Text
25558
25559 \begin_layout Plain Layout
25560 \begin_inset Formula $\textrm{Œ}$
25561 \end_inset
25562
25563
25564 \end_layout
25565
25566 \end_inset
25567 </cell>
25568 </row>
25569 <row>
25570 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25571 \begin_inset Text
25572
25573 \begin_layout Plain Layout
25574
25575 \backslash
25576 ae
25577 \end_layout
25578
25579 \end_inset
25580 </cell>
25581 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25582 \begin_inset Text
25583
25584 \begin_layout Plain Layout
25585 \begin_inset Formula $\textrm{æ}$
25586 \end_inset
25587
25588
25589 \end_layout
25590
25591 \end_inset
25592 </cell>
25593 </row>
25594 <row>
25595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25596 \begin_inset Text
25597
25598 \begin_layout Plain Layout
25599
25600 \backslash
25601 AE
25602 \end_layout
25603
25604 \end_inset
25605 </cell>
25606 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25607 \begin_inset Text
25608
25609 \begin_layout Plain Layout
25610 \begin_inset Formula $\textrm{Æ}$
25611 \end_inset
25612
25613
25614 \end_layout
25615
25616 \end_inset
25617 </cell>
25618 </row>
25619 <row>
25620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25621 \begin_inset Text
25622
25623 \begin_layout Plain Layout
25624
25625 \backslash
25626 aa
25627 \end_layout
25628
25629 \end_inset
25630 </cell>
25631 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25632 \begin_inset Text
25633
25634 \begin_layout Plain Layout
25635 \begin_inset Formula $\textrm{\aa}$
25636 \end_inset
25637
25638
25639 \end_layout
25640
25641 \end_inset
25642 </cell>
25643 </row>
25644 <row>
25645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25646 \begin_inset Text
25647
25648 \begin_layout Plain Layout
25649
25650 \backslash
25651 AA
25652 \begin_inset Index
25653 status collapsed
25654
25655 \begin_layout Plain Layout
25656
25657 \backslash
25658 @
25659 \begin_inset ERT
25660 status collapsed
25661
25662 \begin_layout Plain Layout
25663
25664
25665 \backslash
25666 textrm{
25667 \backslash
25668 AA}
25669 \end_layout
25670
25671 \end_inset
25672
25673
25674 \end_layout
25675
25676 \end_inset
25677
25678
25679 \end_layout
25680
25681 \end_inset
25682 </cell>
25683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25684 \begin_inset Text
25685
25686 \begin_layout Plain Layout
25687 \begin_inset Formula $\textrm{Å}$
25688 \end_inset
25689
25690
25691 \end_layout
25692
25693 \end_inset
25694 </cell>
25695 </row>
25696 <row>
25697 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25698 \begin_inset Text
25699
25700 \begin_layout Plain Layout
25701
25702 \backslash
25703 i
25704 \end_layout
25705
25706 \end_inset
25707 </cell>
25708 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25709 \begin_inset Text
25710
25711 \begin_layout Plain Layout
25712 \begin_inset Formula $\textrm{ı}$
25713 \end_inset
25714
25715
25716 \end_layout
25717
25718 \end_inset
25719 </cell>
25720 </row>
25721 </lyxtabular>
25722
25723 \end_inset
25724
25725
25726 \begin_inset space \hfill{}
25727 \end_inset
25728
25729
25730 \begin_inset Tabular
25731 <lyxtabular version="3" rows="8" columns="2">
25732 <features>
25733 <column alignment="block" valignment="top" width="0">
25734 <column alignment="center" valignment="top" width="0">
25735 <row>
25736 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25737 \begin_inset Text
25738
25739 \begin_layout Plain Layout
25740 command
25741 \begin_inset Note Note
25742 status collapsed
25743
25744 \begin_layout Plain Layout
25745 The space of 0
25746 \begin_inset space \thinspace{}
25747 \end_inset
25748
25749 mm is used for separation, because otherwise the output will be ¡ and ¿
25750  respectively.
25751 \end_layout
25752
25753 \end_inset
25754
25755
25756 \end_layout
25757
25758 \end_inset
25759 </cell>
25760 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25761 \begin_inset Text
25762
25763 \begin_layout Plain Layout
25764 Result
25765 \end_layout
25766
25767 \end_inset
25768 </cell>
25769 </row>
25770 <row>
25771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25772 \begin_inset Text
25773
25774 \begin_layout Plain Layout
25775
25776 \backslash
25777 o
25778 \end_layout
25779
25780 \end_inset
25781 </cell>
25782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25783 \begin_inset Text
25784
25785 \begin_layout Plain Layout
25786 \begin_inset Formula $\textrm{ø}$
25787 \end_inset
25788
25789
25790 \end_layout
25791
25792 \end_inset
25793 </cell>
25794 </row>
25795 <row>
25796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25797 \begin_inset Text
25798
25799 \begin_layout Plain Layout
25800
25801 \backslash
25802 O
25803 \end_layout
25804
25805 \end_inset
25806 </cell>
25807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25808 \begin_inset Text
25809
25810 \begin_layout Plain Layout
25811 \begin_inset Formula $\textrm{Ø}$
25812 \end_inset
25813
25814
25815 \end_layout
25816
25817 \end_inset
25818 </cell>
25819 </row>
25820 <row>
25821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25822 \begin_inset Text
25823
25824 \begin_layout Plain Layout
25825
25826 \backslash
25827 l
25828 \end_layout
25829
25830 \end_inset
25831 </cell>
25832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25833 \begin_inset Text
25834
25835 \begin_layout Plain Layout
25836 \begin_inset Formula $\textrm{ł}$
25837 \end_inset
25838
25839
25840 \end_layout
25841
25842 \end_inset
25843 </cell>
25844 </row>
25845 <row>
25846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25847 \begin_inset Text
25848
25849 \begin_layout Plain Layout
25850
25851 \backslash
25852 L
25853 \end_layout
25854
25855 \end_inset
25856 </cell>
25857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25858 \begin_inset Text
25859
25860 \begin_layout Plain Layout
25861 \begin_inset Formula $\textrm{Ł}$
25862 \end_inset
25863
25864
25865 \end_layout
25866
25867 \end_inset
25868 </cell>
25869 </row>
25870 <row>
25871 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25872 \begin_inset Text
25873
25874 \begin_layout Plain Layout
25875 !
25876 \begin_inset space \hspace{}
25877 \length 0mm
25878 \end_inset
25879
25880 `
25881 \begin_inset ERT
25882 status collapsed
25883
25884 \begin_layout Plain Layout
25885
25886
25887 \backslash
25888 spce 
25889 \end_layout
25890
25891 \end_inset
25892
25893
25894 \end_layout
25895
25896 \end_inset
25897 </cell>
25898 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25899 \begin_inset Text
25900
25901 \begin_layout Plain Layout
25902 \begin_inset Formula $\textrm{!`}$
25903 \end_inset
25904
25905
25906 \end_layout
25907
25908 \end_inset
25909 </cell>
25910 </row>
25911 <row>
25912 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25913 \begin_inset Text
25914
25915 \begin_layout Plain Layout
25916 ?
25917 \begin_inset space \hspace{}
25918 \length 0mm
25919 \end_inset
25920
25921 `
25922 \begin_inset ERT
25923 status collapsed
25924
25925 \begin_layout Plain Layout
25926
25927
25928 \backslash
25929 spce 
25930 \end_layout
25931
25932 \end_inset
25933
25934
25935 \end_layout
25936
25937 \end_inset
25938 </cell>
25939 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25940 \begin_inset Text
25941
25942 \begin_layout Plain Layout
25943 \begin_inset Formula $\textrm{?`}$
25944 \end_inset
25945
25946
25947 \end_layout
25948
25949 \end_inset
25950 </cell>
25951 </row>
25952 <row>
25953 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25954 \begin_inset Text
25955
25956 \begin_layout Plain Layout
25957
25958 \backslash
25959 j
25960 \end_layout
25961
25962 \end_inset
25963 </cell>
25964 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25965 \begin_inset Text
25966
25967 \begin_layout Plain Layout
25968 \begin_inset Formula $\textrm{ȷ}$
25969 \end_inset
25970
25971
25972 \end_layout
25973
25974 \end_inset
25975 </cell>
25976 </row>
25977 </lyxtabular>
25978
25979 \end_inset
25980
25981
25982 \begin_inset space \hfill{}
25983 \end_inset
25984
25985
25986 \end_layout
25987
25988 \begin_layout Standard
25989 The characters 
25990 \begin_inset Formula $\textrm{\textrm{Å}}$
25991 \end_inset
25992
25993  and 
25994 \begin_inset Formula $\textrm{\textrm{Ø}}$
25995 \end_inset
25996
25997  can also be inserted via the math toolbar button 
25998 \begin_inset Graphics
25999         filename ../images/math/digamma.png
26000         scale 85
26001
26002 \end_inset
26003
26004 .
26005 \end_layout
26006
26007 \begin_layout Standard
26008 An exception are the commands 
26009 \series bold
26010 !
26011 \begin_inset space \hspace{}
26012 \length 0mm
26013 \end_inset
26014
26015 `
26016 \series default
26017  and 
26018 \series bold
26019 ?
26020 \begin_inset space \hspace{}
26021 \length 0mm
26022 \end_inset
26023
26024 `
26025 \series default
26026 , because they can be inserted in LyX directly to text.
26027 \end_layout
26028
26029 \begin_layout Subsection
26030 Accents in Text
26031 \begin_inset CommandInset label
26032 LatexCommand label
26033 name "sub:Accents-in-Text"
26034
26035 \end_inset
26036
26037
26038 \begin_inset Index
26039 status collapsed
26040
26041 \begin_layout Plain Layout
26042 Accents ! in text
26043 \end_layout
26044
26045 \end_inset
26046
26047
26048 \end_layout
26049
26050 \begin_layout Standard
26051 With the following commands all letters can be accented.
26052  The commands must be inserted in TeX-mode.
26053 \end_layout
26054
26055 \begin_layout Standard
26056 \begin_inset space \hfill{}
26057 \end_inset
26058
26059
26060 \begin_inset Tabular
26061 <lyxtabular version="3" rows="8" columns="2">
26062 <features>
26063 <column alignment="block" valignment="top" width="0">
26064 <column alignment="block" valignment="top" width="0">
26065 <row>
26066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26067 \begin_inset Text
26068
26069 \begin_layout Plain Layout
26070 Command
26071 \end_layout
26072
26073 \end_inset
26074 </cell>
26075 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26076 \begin_inset Text
26077
26078 \begin_layout Plain Layout
26079 Result
26080 \end_layout
26081
26082 \end_inset
26083 </cell>
26084 </row>
26085 <row>
26086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26087 \begin_inset Text
26088
26089 \begin_layout Plain Layout
26090
26091 \backslash
26092
26093 \begin_inset Quotes grd
26094 \end_inset
26095
26096 e
26097 \end_layout
26098
26099 \end_inset
26100 </cell>
26101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26102 \begin_inset Text
26103
26104 \begin_layout Plain Layout
26105 \begin_inset ERT
26106 status collapsed
26107
26108 \begin_layout Plain Layout
26109
26110
26111 \backslash
26112 "e
26113 \end_layout
26114
26115 \end_inset
26116
26117
26118 \end_layout
26119
26120 \end_inset
26121 </cell>
26122 </row>
26123 <row>
26124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26125 \begin_inset Text
26126
26127 \begin_layout Plain Layout
26128
26129 \backslash
26130 `e
26131 \end_layout
26132
26133 \end_inset
26134 </cell>
26135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26136 \begin_inset Text
26137
26138 \begin_layout Plain Layout
26139 \begin_inset ERT
26140 status collapsed
26141
26142 \begin_layout Plain Layout
26143
26144
26145 \backslash
26146 `e
26147 \end_layout
26148
26149 \end_inset
26150
26151
26152 \end_layout
26153
26154 \end_inset
26155 </cell>
26156 </row>
26157 <row>
26158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26159 \begin_inset Text
26160
26161 \begin_layout Plain Layout
26162
26163 \backslash
26164 ^
26165 \begin_inset ERT
26166 status collapsed
26167
26168 \begin_layout Plain Layout
26169
26170
26171 \backslash
26172 spce 
26173 \end_layout
26174
26175 \end_inset
26176
26177 e
26178 \end_layout
26179
26180 \end_inset
26181 </cell>
26182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26183 \begin_inset Text
26184
26185 \begin_layout Plain Layout
26186 \begin_inset ERT
26187 status collapsed
26188
26189 \begin_layout Plain Layout
26190
26191
26192 \backslash
26193 ^e
26194 \end_layout
26195
26196 \end_inset
26197
26198
26199 \end_layout
26200
26201 \end_inset
26202 </cell>
26203 </row>
26204 <row>
26205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26206 \begin_inset Text
26207
26208 \begin_layout Plain Layout
26209
26210 \backslash
26211 =e
26212 \end_layout
26213
26214 \end_inset
26215 </cell>
26216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26217 \begin_inset Text
26218
26219 \begin_layout Plain Layout
26220 \begin_inset ERT
26221 status collapsed
26222
26223 \begin_layout Plain Layout
26224
26225
26226 \backslash
26227 =e
26228 \end_layout
26229
26230 \end_inset
26231
26232
26233 \end_layout
26234
26235 \end_inset
26236 </cell>
26237 </row>
26238 <row>
26239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26240 \begin_inset Text
26241
26242 \begin_layout Plain Layout
26243
26244 \backslash
26245 u
26246 \begin_inset ERT
26247 status collapsed
26248
26249 \begin_layout Plain Layout
26250
26251
26252 \backslash
26253 spce 
26254 \end_layout
26255
26256 \end_inset
26257
26258 e
26259 \end_layout
26260
26261 \end_inset
26262 </cell>
26263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26264 \begin_inset Text
26265
26266 \begin_layout Plain Layout
26267 \begin_inset ERT
26268 status collapsed
26269
26270 \begin_layout Plain Layout
26271
26272
26273 \backslash
26274 u e
26275 \end_layout
26276
26277 \end_inset
26278
26279
26280 \end_layout
26281
26282 \end_inset
26283 </cell>
26284 </row>
26285 <row>
26286 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26287 \begin_inset Text
26288
26289 \begin_layout Plain Layout
26290
26291 \backslash
26292 b
26293 \begin_inset ERT
26294 status collapsed
26295
26296 \begin_layout Plain Layout
26297
26298
26299 \backslash
26300 spce 
26301 \end_layout
26302
26303 \end_inset
26304
26305 e
26306 \end_layout
26307
26308 \end_inset
26309 </cell>
26310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26311 \begin_inset Text
26312
26313 \begin_layout Plain Layout
26314 \begin_inset ERT
26315 status collapsed
26316
26317 \begin_layout Plain Layout
26318
26319
26320 \backslash
26321 b e
26322 \end_layout
26323
26324 \end_inset
26325
26326
26327 \end_layout
26328
26329 \end_inset
26330 </cell>
26331 </row>
26332 <row>
26333 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26334 \begin_inset Text
26335
26336 \begin_layout Plain Layout
26337
26338 \backslash
26339 t
26340 \begin_inset ERT
26341 status collapsed
26342
26343 \begin_layout Plain Layout
26344
26345
26346 \backslash
26347 spce 
26348 \end_layout
26349
26350 \end_inset
26351
26352 ee
26353 \end_layout
26354
26355 \end_inset
26356 </cell>
26357 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26358 \begin_inset Text
26359
26360 \begin_layout Plain Layout
26361 \begin_inset ERT
26362 status collapsed
26363
26364 \begin_layout Plain Layout
26365
26366
26367 \backslash
26368 t ee
26369 \end_layout
26370
26371 \end_inset
26372
26373
26374 \end_layout
26375
26376 \end_inset
26377 </cell>
26378 </row>
26379 </lyxtabular>
26380
26381 \end_inset
26382
26383
26384 \begin_inset space \hfill{}
26385 \end_inset
26386
26387
26388 \begin_inset Tabular
26389 <lyxtabular version="3" rows="8" columns="2">
26390 <features>
26391 <column alignment="block" valignment="top" width="0">
26392 <column alignment="center" valignment="top" width="0">
26393 <row>
26394 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26395 \begin_inset Text
26396
26397 \begin_layout Plain Layout
26398 Command
26399 \end_layout
26400
26401 \end_inset
26402 </cell>
26403 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26404 \begin_inset Text
26405
26406 \begin_layout Plain Layout
26407 Result
26408 \end_layout
26409
26410 \end_inset
26411 </cell>
26412 </row>
26413 <row>
26414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26415 \begin_inset Text
26416
26417 \begin_layout Plain Layout
26418
26419 \backslash
26420 H
26421 \begin_inset ERT
26422 status collapsed
26423
26424 \begin_layout Plain Layout
26425
26426
26427 \backslash
26428 spce 
26429 \end_layout
26430
26431 \end_inset
26432
26433 e
26434 \end_layout
26435
26436 \end_inset
26437 </cell>
26438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26439 \begin_inset Text
26440
26441 \begin_layout Plain Layout
26442 \begin_inset ERT
26443 status collapsed
26444
26445 \begin_layout Plain Layout
26446
26447
26448 \backslash
26449 H e
26450 \end_layout
26451
26452 \end_inset
26453
26454
26455 \end_layout
26456
26457 \end_inset
26458 </cell>
26459 </row>
26460 <row>
26461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26462 \begin_inset Text
26463
26464 \begin_layout Plain Layout
26465
26466 \backslash
26467 'e
26468 \end_layout
26469
26470 \end_inset
26471 </cell>
26472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26473 \begin_inset Text
26474
26475 \begin_layout Plain Layout
26476 \begin_inset ERT
26477 status collapsed
26478
26479 \begin_layout Plain Layout
26480
26481
26482 \backslash
26483 'e
26484 \end_layout
26485
26486 \end_inset
26487
26488
26489 \end_layout
26490
26491 \end_inset
26492 </cell>
26493 </row>
26494 <row>
26495 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26496 \begin_inset Text
26497
26498 \begin_layout Plain Layout
26499
26500 \backslash
26501 ~e
26502 \begin_inset Index
26503 status collapsed
26504
26505 \begin_layout Plain Layout
26506 Tilde
26507 \end_layout
26508
26509 \end_inset
26510
26511
26512 \end_layout
26513
26514 \end_inset
26515 </cell>
26516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26517 \begin_inset Text
26518
26519 \begin_layout Plain Layout
26520 \begin_inset ERT
26521 status collapsed
26522
26523 \begin_layout Plain Layout
26524
26525
26526 \backslash
26527 ~e
26528 \end_layout
26529
26530 \end_inset
26531
26532
26533 \end_layout
26534
26535 \end_inset
26536 </cell>
26537 </row>
26538 <row>
26539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26540 \begin_inset Text
26541
26542 \begin_layout Plain Layout
26543
26544 \backslash
26545 .e
26546 \end_layout
26547
26548 \end_inset
26549 </cell>
26550 <cell alignment="center" valignment="top" topline="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 .e
26562 \end_layout
26563
26564 \end_inset
26565
26566
26567 \end_layout
26568
26569 \end_inset
26570 </cell>
26571 </row>
26572 <row>
26573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26574 \begin_inset Text
26575
26576 \begin_layout Plain Layout
26577
26578 \backslash
26579 v
26580 \begin_inset ERT
26581 status collapsed
26582
26583 \begin_layout Plain Layout
26584
26585
26586 \backslash
26587 spce 
26588 \end_layout
26589
26590 \end_inset
26591
26592 e
26593 \end_layout
26594
26595 \end_inset
26596 </cell>
26597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26598 \begin_inset Text
26599
26600 \begin_layout Plain Layout
26601 \begin_inset ERT
26602 status collapsed
26603
26604 \begin_layout Plain Layout
26605
26606
26607 \backslash
26608 v e
26609 \end_layout
26610
26611 \end_inset
26612
26613
26614 \end_layout
26615
26616 \end_inset
26617 </cell>
26618 </row>
26619 <row>
26620 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26621 \begin_inset Text
26622
26623 \begin_layout Plain Layout
26624
26625 \backslash
26626 d
26627 \begin_inset ERT
26628 status collapsed
26629
26630 \begin_layout Plain Layout
26631
26632
26633 \backslash
26634 spce 
26635 \end_layout
26636
26637 \end_inset
26638
26639 e
26640 \end_layout
26641
26642 \end_inset
26643 </cell>
26644 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26645 \begin_inset Text
26646
26647 \begin_layout Plain Layout
26648 \begin_inset ERT
26649 status collapsed
26650
26651 \begin_layout Plain Layout
26652
26653
26654 \backslash
26655 d e
26656 \end_layout
26657
26658 \end_inset
26659
26660
26661 \end_layout
26662
26663 \end_inset
26664 </cell>
26665 </row>
26666 <row>
26667 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26668 \begin_inset Text
26669
26670 \begin_layout Plain Layout
26671
26672 \backslash
26673 c
26674 \begin_inset ERT
26675 status collapsed
26676
26677 \begin_layout Plain Layout
26678
26679
26680 \backslash
26681 spce 
26682 \end_layout
26683
26684 \end_inset
26685
26686 e
26687 \end_layout
26688
26689 \end_inset
26690 </cell>
26691 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26692 \begin_inset Text
26693
26694 \begin_layout Plain Layout
26695 \begin_inset ERT
26696 status collapsed
26697
26698 \begin_layout Plain Layout
26699
26700
26701 \backslash
26702 c e
26703 \end_layout
26704
26705 \end_inset
26706
26707
26708 \end_layout
26709
26710 \end_inset
26711 </cell>
26712 </row>
26713 </lyxtabular>
26714
26715 \end_inset
26716
26717
26718 \begin_inset space \hfill{}
26719 \end_inset
26720
26721
26722 \end_layout
26723
26724 \begin_layout Standard
26725 \begin_inset VSpace medskip
26726 \end_inset
26727
26728 With the command 
26729 \series bold
26730
26731 \backslash
26732 t
26733 \series default
26734  also two different characters can be accented.
26735  The command 
26736 \series bold
26737
26738 \backslash
26739 t
26740 \begin_inset ERT
26741 status collapsed
26742
26743 \begin_layout Plain Layout
26744
26745
26746 \backslash
26747 spce 
26748 \end_layout
26749
26750 \end_inset
26751
26752 sz
26753 \series default
26754  creates: 
26755 \begin_inset ERT
26756 status collapsed
26757
26758 \begin_layout Plain Layout
26759
26760
26761 \backslash
26762 t sz
26763 \end_layout
26764
26765 \end_inset
26766
26767
26768 \end_layout
26769
26770 \begin_layout Standard
26771 The accents 
26772 \series bold
26773 `
26774 \series default
26775  , 
26776 \series bold
26777 '
26778 \series default
26779  , and 
26780 \series bold
26781 ^
26782 \series default
26783  can in combination with vowels directly be inserted with the keyboard without
26784  using TeX-mode.
26785  The same applies for the tilde
26786 \begin_inset Foot
26787 status collapsed
26788
26789 \begin_layout Plain Layout
26790 This only applies for keyboards where the tilde is defined as accent.
26791 \end_layout
26792
26793 \end_inset
26794
26795  
26796 \series bold
26797 ~
26798 \series default
26799  in combination with 
26800 \emph on
26801 a
26802 \emph default
26803  , 
26804 \emph on
26805 n
26806 \emph default
26807  , or 
26808 \emph on
26809 o
26810 \emph default
26811 .
26812 \end_layout
26813
26814 \begin_layout Standard
26815 The commands 
26816 \series bold
26817
26818 \backslash
26819 b
26820 \series default
26821  , 
26822 \series bold
26823
26824 \backslash
26825 c
26826 \series default
26827  , 
26828 \series bold
26829
26830 \backslash
26831 d
26832 \series default
26833  , 
26834 \series bold
26835
26836 \backslash
26837 H
26838 \series default
26839  , 
26840 \series bold
26841
26842 \backslash
26843 t
26844 \series default
26845  , 
26846 \series bold
26847
26848 \backslash
26849 u
26850 \series default
26851  , 
26852 \series bold
26853
26854 \backslash
26855 v
26856 \series default
26857 , and accents inserted directly with the keyboard are also available in
26858  mathematical text.
26859  For the other accents there are special math commands to be used in formulas,
26860  see 
26861 \begin_inset CommandInset ref
26862 LatexCommand ref
26863 reference "sub:Accents-for-one"
26864
26865 \end_inset
26866
26867 .
26868 \end_layout
26869
26870 \begin_layout Standard
26871 \begin_inset VSpace bigskip
26872 \end_inset
26873
26874 Furthermore, with the command 
26875 \series bold
26876
26877 \backslash
26878 textcircled
26879 \series default
26880
26881 \begin_inset Index
26882 status collapsed
26883
26884 \begin_layout Plain Layout
26885 Commands ! T ! 
26886 \backslash
26887 textcircled
26888 \end_layout
26889
26890 \end_inset
26891
26892  all numbers and letters can be set into a circle, quasi accented with a
26893  circle, similar to the the copyright symbol.
26894 \end_layout
26895
26896 \begin_layout Standard
26897 \align center
26898 \begin_inset Tabular
26899 <lyxtabular version="3" rows="3" columns="2">
26900 <features>
26901 <column alignment="center" valignment="top" width="0">
26902 <column alignment="center" valignment="top" width="0">
26903 <row>
26904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26905 \begin_inset Text
26906
26907 \begin_layout Plain Layout
26908 Command
26909 \end_layout
26910
26911 \end_inset
26912 </cell>
26913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26914 \begin_inset Text
26915
26916 \begin_layout Plain Layout
26917 Result
26918 \begin_inset Note Note
26919 status collapsed
26920
26921 \begin_layout Plain Layout
26922
26923 \series bold
26924
26925 \backslash
26926 raisebox
26927 \series default
26928  is only used as spacer.
26929 \end_layout
26930
26931 \end_inset
26932
26933
26934 \end_layout
26935
26936 \end_inset
26937 </cell>
26938 </row>
26939 <row>
26940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26941 \begin_inset Text
26942
26943 \begin_layout Plain Layout
26944
26945 \backslash
26946 textcircled{w}
26947 \end_layout
26948
26949 \end_inset
26950 </cell>
26951 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26952 \begin_inset Text
26953
26954 \begin_layout Plain Layout
26955 \begin_inset ERT
26956 status collapsed
26957
26958 \begin_layout Plain Layout
26959
26960
26961 \backslash
26962 textcircled{w}
26963 \end_layout
26964
26965 \end_inset
26966
26967
26968 \end_layout
26969
26970 \end_inset
26971 </cell>
26972 </row>
26973 <row>
26974 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26975 \begin_inset Text
26976
26977 \begin_layout Plain Layout
26978
26979 \backslash
26980 Large 
26981 \backslash
26982 textcircled{
26983 \backslash
26984 normalsize
26985 \backslash
26986 protect
26987 \backslash
26988 raisebox{-1.5pt}{W}}
26989 \end_layout
26990
26991 \end_inset
26992 </cell>
26993 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26994 \begin_inset Text
26995
26996 \begin_layout Plain Layout
26997 \begin_inset Formula $\raisebox{4.5mm}{}$
26998 \end_inset
26999
27000
27001 \begin_inset ERT
27002 status collapsed
27003
27004 \begin_layout Plain Layout
27005
27006
27007 \backslash
27008 Large 
27009 \backslash
27010 textcircled{
27011 \backslash
27012 normalsize
27013 \backslash
27014 protect
27015 \backslash
27016 raisebox{-1.5pt}W}
27017 \end_layout
27018
27019 \end_inset
27020
27021
27022 \begin_inset Formula $\raisebox{-2mm}{}$
27023 \end_inset
27024
27025
27026 \end_layout
27027
27028 \end_inset
27029 </cell>
27030 </row>
27031 </lyxtabular>
27032
27033 \end_inset
27034
27035
27036 \end_layout
27037
27038 \begin_layout Standard
27039 One has to take care that the character fits in the circle.
27040  
27041 \series bold
27042
27043 \backslash
27044 Large
27045 \series default
27046
27047 \begin_inset Foot
27048 status collapsed
27049
27050 \begin_layout Plain Layout
27051 see 
27052 \begin_inset CommandInset ref
27053 LatexCommand ref
27054 reference "sub:Font-Sizes"
27055
27056 \end_inset
27057
27058
27059 \end_layout
27060
27061 \end_inset
27062
27063  specifies thereby the size of the circle.
27064  With the help of 
27065 \series bold
27066
27067 \backslash
27068 raisebox
27069 \series default
27070
27071 \begin_inset Foot
27072 status collapsed
27073
27074 \begin_layout Plain Layout
27075 see 
27076 \begin_inset CommandInset ref
27077 LatexCommand ref
27078 reference "sub:Boxes-without-Frame"
27079
27080 \end_inset
27081
27082
27083 \end_layout
27084
27085 \end_inset
27086
27087  the character can be centered.
27088 \end_layout
27089
27090 \begin_layout Subsection
27091 Minuscule Numbers
27092 \begin_inset Index
27093 status collapsed
27094
27095 \begin_layout Plain Layout
27096 Minuscule numbers
27097 \end_layout
27098
27099 \end_inset
27100
27101
27102 \end_layout
27103
27104 \begin_layout Standard
27105 Minuscule numbers are created with the command 
27106 \series bold
27107
27108 \backslash
27109 oldstylenums
27110 \series default
27111
27112 \begin_inset Index
27113 status collapsed
27114
27115 \begin_layout Plain Layout
27116 Commands ! O ! 
27117 \backslash
27118 oldstylenums
27119 \end_layout
27120
27121 \end_inset
27122
27123 .
27124  The command can be used in formulas and in TeX-mode.
27125  The command scheme is:
27126 \end_layout
27127
27128 \begin_layout Standard
27129
27130 \series bold
27131
27132 \backslash
27133 oldstylenums{number}
27134 \end_layout
27135
27136 \begin_layout Standard
27137 The command 
27138 \series bold
27139
27140 \backslash
27141 oldstylenums{0123456789
27142 \series default
27143  produces: 
27144 \begin_inset Formula $\oldstylenums{0123456789}$
27145 \end_inset
27146
27147
27148 \end_layout
27149
27150 \begin_layout Subsection
27151 Miscellaneous special Characters
27152 \begin_inset CommandInset label
27153 LatexCommand label
27154 name "sub:Miscellaneous-special-Characters"
27155
27156 \end_inset
27157
27158
27159 \begin_inset Index
27160 status collapsed
27161
27162 \begin_layout Plain Layout
27163 Special characters ! miscellaneous
27164 \end_layout
27165
27166 \end_inset
27167
27168
27169 \end_layout
27170
27171 \begin_layout Standard
27172 The following characters can only be inserted to formulas by using commands:
27173 \end_layout
27174
27175 \begin_layout Standard
27176 \align center
27177 \begin_inset Tabular
27178 <lyxtabular version="3" rows="4" columns="2">
27179 <features>
27180 <column alignment="center" valignment="top" width="0">
27181 <column alignment="center" valignment="top" width="0">
27182 <row>
27183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27184 \begin_inset Text
27185
27186 \begin_layout Plain Layout
27187 Command
27188 \end_layout
27189
27190 \end_inset
27191 </cell>
27192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27193 \begin_inset Text
27194
27195 \begin_layout Plain Layout
27196 Result
27197 \end_layout
27198
27199 \end_inset
27200 </cell>
27201 </row>
27202 <row>
27203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27204 \begin_inset Text
27205
27206 \begin_layout Plain Layout
27207
27208 \backslash
27209 ^
27210 \begin_inset ERT
27211 status collapsed
27212
27213 \begin_layout Plain Layout
27214
27215
27216 \backslash
27217 spce 
27218 \end_layout
27219
27220 \end_inset
27221
27222
27223 \end_layout
27224
27225 \end_inset
27226 </cell>
27227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27228 \begin_inset Text
27229
27230 \begin_layout Plain Layout
27231 \begin_inset Formula $\mathcircumflex$
27232 \end_inset
27233
27234
27235 \end_layout
27236
27237 \end_inset
27238 </cell>
27239 </row>
27240 <row>
27241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27242 \begin_inset Text
27243
27244 \begin_layout Plain Layout
27245
27246 \backslash
27247 _
27248 \end_layout
27249
27250 \end_inset
27251 </cell>
27252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27253 \begin_inset Text
27254
27255 \begin_layout Plain Layout
27256 \begin_inset Formula $\_$
27257 \end_inset
27258
27259
27260 \end_layout
27261
27262 \end_inset
27263 </cell>
27264 </row>
27265 <row>
27266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27267 \begin_inset Text
27268
27269 \begin_layout Plain Layout
27270 ^
27271 \begin_inset ERT
27272 status collapsed
27273
27274 \begin_layout Plain Layout
27275
27276
27277 \backslash
27278 spce 
27279 \end_layout
27280
27281 \end_inset
27282
27283
27284 \backslash
27285 circ
27286 \begin_inset Index
27287 status collapsed
27288
27289 \begin_layout Plain Layout
27290
27291 \backslash
27292
27293 \end_layout
27294
27295 \end_inset
27296
27297
27298 \end_layout
27299
27300 \end_inset
27301 </cell>
27302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27303 \begin_inset Text
27304
27305 \begin_layout Plain Layout
27306 \begin_inset Formula $^{\circ}$
27307 \end_inset
27308
27309
27310 \end_layout
27311
27312 \end_inset
27313 </cell>
27314 </row>
27315 </lyxtabular>
27316
27317 \end_inset
27318
27319
27320 \end_layout
27321
27322 \begin_layout Standard
27323 The degree sign ° can nevertheless be directly inserted if the LaTeX-preamble
27324  contains the following line
27325 \begin_inset Foot
27326 status collapsed
27327
27328 \begin_layout Plain Layout
27329 More about this is described in 
27330 \begin_inset CommandInset ref
27331 LatexCommand ref
27332 reference "sub:Text-Characters-in"
27333
27334 \end_inset
27335
27336 .
27337 \end_layout
27338
27339 \end_inset
27340
27341 :
27342 \end_layout
27343
27344 \begin_layout Standard
27345
27346 \series bold
27347
27348 \backslash
27349 DeclareInputtext{176}{
27350 \backslash
27351 ifmmode^
27352 \backslash
27353 circ
27354 \backslash
27355 else
27356 \backslash
27357 textdegree
27358 \backslash
27359 fi}
27360 \end_layout
27361
27362 \begin_layout Section
27363 Formula Styles
27364 \begin_inset CommandInset label
27365 LatexCommand label
27366 name "sec:Formula-Styles"
27367
27368 \end_inset
27369
27370
27371 \begin_inset Index
27372 status collapsed
27373
27374 \begin_layout Plain Layout
27375 Formula ! styles
27376 \end_layout
27377
27378 \end_inset
27379
27380
27381 \end_layout
27382
27383 \begin_layout Itemize
27384 There are two different alignment styles:
27385 \end_layout
27386
27387 \begin_deeper
27388 \begin_layout Description
27389 Centered is the predefined standard
27390 \end_layout
27391
27392 \begin_layout Description
27393 Indented for this the option 
27394 \series bold
27395 fleqn
27396 \series default
27397  must be inserted in the menu 
27398 \family sans
27399 Document\SpecialChar \menuseparator
27400 Settings
27401 \family default
27402  under 
27403 \family sans
27404 Document
27405 \begin_inset space ~
27406 \end_inset
27407
27408 Class
27409 \end_layout
27410
27411 \begin_layout Standard
27412 When 
27413 \series bold
27414 Indented
27415 \series default
27416  is used, the indentation can be adjusted with the length 
27417 \series bold
27418
27419 \backslash
27420 mathindent
27421 \series default
27422
27423 \begin_inset Index
27424 status collapsed
27425
27426 \begin_layout Plain Layout
27427 Commands ! M ! 
27428 \backslash
27429 mathindent
27430 \end_layout
27431
27432 \end_inset
27433
27434 .
27435  Should the distance be 15
27436 \begin_inset space \thinspace{}
27437 \end_inset
27438
27439 mm, the following command line is inserted in the LaTeX-preamble
27440 \end_layout
27441
27442 \begin_layout Standard
27443
27444 \series bold
27445
27446 \backslash
27447 setlength{
27448 \backslash
27449 mathindent}{15mm}
27450 \end_layout
27451
27452 \begin_layout Standard
27453 When no length is specified, the predefined value of 30
27454 \begin_inset space \thinspace{}
27455 \end_inset
27456
27457 pt will be used.
27458 \end_layout
27459
27460 \end_deeper
27461 \begin_layout Itemize
27462 And two different numbering styles:
27463 \end_layout
27464
27465 \begin_deeper
27466 \begin_layout Description
27467 Right is the predefined standard
27468 \end_layout
27469
27470 \begin_layout Description
27471 Left for this the option 
27472 \series bold
27473 leqno
27474 \series default
27475  must be inserted in the menu 
27476 \family sans
27477 Document\SpecialChar \menuseparator
27478 Settings
27479 \family default
27480  under 
27481 \family sans
27482 Document
27483 \begin_inset space ~
27484 \end_inset
27485
27486 Class
27487 \end_layout
27488
27489 \end_deeper
27490 \begin_layout Standard
27491
27492 \series bold
27493 fleqn
27494 \series default
27495  and 
27496 \series bold
27497 leqno
27498 \series default
27499  can also be used together.
27500  In this case both options are inserted, separated by a comma.
27501 \end_layout
27502
27503 \begin_layout Standard
27504 The chosen styles are used for all displayed formulas of the document.
27505  When both, centered and indented formulas should be created in a document,
27506  the style 
27507 \series bold
27508 Centered
27509 \series default
27510  is used.
27511  The indented formulas are then set in a flalign environment, see 
27512 \begin_inset CommandInset ref
27513 LatexCommand ref
27514 reference "sub:Flalign-Environment"
27515
27516 \end_inset
27517
27518 .
27519 \end_layout
27520
27521 \begin_layout Section
27522 Multiline Formulas
27523 \begin_inset CommandInset label
27524 LatexCommand label
27525 name "sec:Multiline-Formulas"
27526
27527 \end_inset
27528
27529
27530 \begin_inset Index
27531 status collapsed
27532
27533 \begin_layout Plain Layout
27534 Formula ! multiline
27535 \end_layout
27536
27537 \end_inset
27538
27539
27540 \end_layout
27541
27542 \begin_layout Subsection
27543 General
27544 \end_layout
27545
27546 \begin_layout Standard
27547 In LyX multiline formulas are created by pressing 
27548 \series bold
27549
27550 \begin_inset Info
27551 type  "shortcut"
27552 arg   "newline-insert newline"
27553 \end_inset
27554
27555
27556 \series default
27557  inside a formula.
27558  This creates either an 
27559 \series bold
27560 eqnarray environment
27561 \series default
27562  that is described in 
27563 \begin_inset CommandInset ref
27564 LatexCommand ref
27565 reference "sub:Eqnarray-Environment"
27566
27567 \end_inset
27568
27569  or, when the option 
27570 \family sans
27571 Use AMS math package
27572 \family default
27573  in the document settings is selected, an 
27574 \series bold
27575 align environment
27576 \series default
27577  that is described in 
27578 \begin_inset CommandInset ref
27579 LatexCommand ref
27580 reference "sub:Standard-align-Environment"
27581
27582 \end_inset
27583
27584 .
27585 \end_layout
27586
27587 \begin_layout Standard
27588 There are other multiline formula environments that can be created via the
27589  menu 
27590 \family sans
27591 Insert\SpecialChar \menuseparator
27592 Math
27593 \family default
27594 .
27595  These environments are described in the following sections.
27596 \end_layout
27597
27598 \begin_layout Standard
27599 In all multiline formula environments a new line is created by pressing
27600  
27601 \begin_inset Info
27602 type  "shortcut"
27603 arg   "newline-insert newline"
27604 \end_inset
27605
27606 .
27607  To add or delete lines, the math toolbar buttons 
27608 \begin_inset Graphics
27609         filename ../images/tabular-feature_append-row.png
27610         scale 85
27611
27612 \end_inset
27613
27614  or 
27615 \begin_inset Graphics
27616         filename ../images/tabular-feature_delete-row.png
27617         scale 85
27618
27619 \end_inset
27620
27621 , respectively, or the menu 
27622 \family sans
27623 Edit\SpecialChar \menuseparator
27624 Rows & Columns
27625 \family default
27626  can be used.
27627 \end_layout
27628
27629 \begin_layout Subsubsection
27630 Line Separation
27631 \begin_inset CommandInset label
27632 LatexCommand label
27633 name "sub:Line-Separation"
27634
27635 \end_inset
27636
27637
27638 \begin_inset Index
27639 status collapsed
27640
27641 \begin_layout Plain Layout
27642 Formula ! multiline ! Line separation
27643 \end_layout
27644
27645 \end_inset
27646
27647
27648 \end_layout
27649
27650 \begin_layout Standard
27651 There is sometimes not enough space in multiline formulas between the lines:
27652 \begin_inset Formula \begin{eqnarray*}
27653 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}\\
27654 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*}
27655
27656 \end_inset
27657
27658
27659 \end_layout
27660
27661 \begin_layout Standard
27662 In LaTeX additional line space is specified as optional argument of the
27663  new line command.
27664  This is not yet possible in LyX
27665 \begin_inset Foot
27666 status collapsed
27667
27668 \begin_layout Plain Layout
27669 see 
27670 \begin_inset CommandInset href
27671 LatexCommand href
27672 name "LyX-bug #1505"
27673 target "http://bugzilla.lyx.org/show_bug.cgi?id=1505"
27674
27675 \end_inset
27676
27677
27678 \end_layout
27679
27680 \end_inset
27681
27682 , therefore the whole formula must be inserted in TeX-mode.
27683  To add in our example space, the command 
27684 \series bold
27685
27686 \backslash
27687
27688 \backslash
27689 [3mm]
27690 \series default
27691  is inserted at the end of the first line.
27692  One gets: 
27693 \begin_inset ERT
27694 status collapsed
27695
27696 \begin_layout Plain Layout
27697
27698
27699 \backslash
27700 begin{eqnarray*}
27701 \end_layout
27702
27703 \begin_layout Plain Layout
27704
27705 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
27706  = & 
27707 \backslash
27708 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
27709 \backslash
27710
27711 \backslash
27712 [3mm]
27713 \end_layout
27714
27715 \begin_layout Plain Layout
27716
27717 4x^{2}
27718 \backslash
27719 left(B^{2}+x_{0}^{2}
27720 \backslash
27721 right)+4x_{0}x
27722 \backslash
27723 left(D-B^{2}
27724 \backslash
27725 right)+B^{2}
27726 \backslash
27727 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
27728 \backslash
27729 right) & = & 0
27730 \end_layout
27731
27732 \begin_layout Plain Layout
27733
27734
27735 \backslash
27736 end{eqnarray*}
27737 \end_layout
27738
27739 \end_inset
27740
27741
27742 \end_layout
27743
27744 \begin_layout Standard
27745 \begin_inset VSpace bigskip
27746 \end_inset
27747
27748 To set the the line separation for all lines in a formula, the length 
27749 \series bold
27750
27751 \backslash
27752 jot
27753 \series default
27754
27755 \begin_inset Index
27756 status collapsed
27757
27758 \begin_layout Plain Layout
27759 Commands ! J ! 
27760 \backslash
27761 jot
27762 \end_layout
27763
27764 \end_inset
27765
27766  is changed.
27767  The definition is: 
27768 \begin_inset Formula $\mbox{line separation}=\mathrm{6\, pt+\backslash jot}$
27769 \end_inset
27770
27771 .
27772  Predefined for 
27773 \series bold
27774
27775 \backslash
27776 jot
27777 \series default
27778  is the value 3
27779 \begin_inset space \thinspace{}
27780 \end_inset
27781
27782 pt.
27783  To create 3
27784 \begin_inset space \thinspace{}
27785 \end_inset
27786
27787 mm additional line separation as in the previous example, the command
27788 \end_layout
27789
27790 \begin_layout Standard
27791
27792 \series bold
27793
27794 \backslash
27795 setlength{
27796 \backslash
27797 jot}{3mm+3pt}
27798 \end_layout
27799
27800 \begin_layout Standard
27801 is inserted in TeX-mode before the formula.
27802  This requires that the LaTeX-package 
27803 \series bold
27804 calc
27805 \series default
27806
27807 \begin_inset Foot
27808 status collapsed
27809
27810 \begin_layout Plain Layout
27811
27812 \series bold
27813 calc
27814 \series default
27815  is part of every LaTeX standard installation.
27816 \end_layout
27817
27818 \end_inset
27819
27820
27821 \begin_inset Index
27822 status collapsed
27823
27824 \begin_layout Plain Layout
27825 Packages ! calc
27826 \end_layout
27827
27828 \end_inset
27829
27830  was loaded in LaTeX-preamble with the line
27831 \end_layout
27832
27833 \begin_layout Standard
27834
27835 \series bold
27836
27837 \backslash
27838 usepackage{calc}
27839 \end_layout
27840
27841 \begin_layout Standard
27842 One gets: 
27843 \begin_inset ERT
27844 status collapsed
27845
27846 \begin_layout Plain Layout
27847
27848
27849 \backslash
27850 setlength{
27851 \backslash
27852 jot}{3mm+3pt}
27853 \end_layout
27854
27855 \end_inset
27856
27857
27858 \begin_inset Formula \begin{eqnarray*}
27859 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD & = & \textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}\\
27860 4x^{2}\left(B^{2}+x_{0}^{2}\right)+4x_{0}x\left(D-B^{2}\right)+B^{2}\left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}\right) & = & 0\end{eqnarray*}
27861
27862 \end_inset
27863
27864
27865 \end_layout
27866
27867 \begin_layout Standard
27868 \begin_inset ERT
27869 status collapsed
27870
27871 \begin_layout Plain Layout
27872
27873
27874 \backslash
27875 setlength{
27876 \backslash
27877 jot}{3pt}
27878 \end_layout
27879
27880 \end_inset
27881
27882  To get back to the predefined distance, 
27883 \series bold
27884
27885 \backslash
27886 jot
27887 \series default
27888  is set to the value 3
27889 \begin_inset space \thinspace{}
27890 \end_inset
27891
27892 pt.
27893 \end_layout
27894
27895 \begin_layout Subsubsection
27896 Column Separation
27897 \begin_inset CommandInset label
27898 LatexCommand label
27899 name "sub:Column-Separation"
27900
27901 \end_inset
27902
27903
27904 \begin_inset Index
27905 status collapsed
27906
27907 \begin_layout Plain Layout
27908 Formula ! multiline ! Column separation
27909 \end_layout
27910
27911 \end_inset
27912
27913
27914 \end_layout
27915
27916 \begin_layout Standard
27917 Multiline formulas form a matrix.
27918  A formula in the eqnarray environment is for example a matrix with three
27919  columns.
27920  By changing the column separation in this environment, the space beside
27921  the relation sign can be changed.
27922 \end_layout
27923
27924 \begin_layout Standard
27925 The column separation is specified with the length 
27926 \series bold
27927
27928 \backslash
27929 arraycolsep
27930 \series default
27931
27932 \begin_inset Index
27933 status collapsed
27934
27935 \begin_layout Plain Layout
27936 Commands ! A ! 
27937 \backslash
27938 arraycolsep
27939 \end_layout
27940
27941 \end_inset
27942
27943  according to:
27944 \begin_inset Newline newline
27945 \end_inset
27946
27947 column separation = 2
27948 \begin_inset space \thinspace{}
27949 \end_inset
27950
27951
27952 \series bold
27953
27954 \backslash
27955 arraycolsep
27956 \series default
27957
27958 \begin_inset Newline newline
27959 \end_inset
27960
27961 Thus, the command
27962 \end_layout
27963
27964 \begin_layout Standard
27965
27966 \series bold
27967
27968 \backslash
27969 setlength{
27970 \backslash
27971 arraycolsep}{1cm}
27972 \end_layout
27973
27974 \begin_layout Standard
27975 inserted in TeX-mode, sets for all following formulas a column separation
27976  of 2
27977 \begin_inset space \thinspace{}
27978 \end_inset
27979
27980 cm.
27981  To get back to the predefined distance, 
27982 \series bold
27983
27984 \backslash
27985 arraycolsep
27986 \series default
27987  is set to 5
27988 \begin_inset space \thinspace{}
27989 \end_inset
27990
27991 pt.
27992 \end_layout
27993
27994 \begin_layout Standard
27995 A formula with 2
27996 \begin_inset space \thinspace{}
27997 \end_inset
27998
27999 cm column separation:
28000 \begin_inset ERT
28001 status collapsed
28002
28003 \begin_layout Plain Layout
28004
28005
28006 \backslash
28007 setlength{
28008 \backslash
28009 arraycolsep}{1cm}
28010 \end_layout
28011
28012 \end_inset
28013
28014
28015 \begin_inset Formula \begin{eqnarray*}
28016 A & = & B\\
28017 C & \ne & A\end{eqnarray*}
28018
28019 \end_inset
28020
28021 A formula with the predefined column separation for matrices of 10
28022 \begin_inset space \thinspace{}
28023 \end_inset
28024
28025 pt:
28026 \begin_inset ERT
28027 status collapsed
28028
28029 \begin_layout Plain Layout
28030
28031
28032 \backslash
28033 setlength{
28034 \backslash
28035 arraycolsep}{5pt}
28036 \end_layout
28037
28038 \end_inset
28039
28040
28041 \begin_inset Formula \begin{eqnarray*}
28042 A & = & B\\
28043 C & \ne & A\end{eqnarray*}
28044
28045 \end_inset
28046
28047
28048 \end_layout
28049
28050 \begin_layout Subsubsection
28051 Long Formulas
28052 \begin_inset Index
28053 status collapsed
28054
28055 \begin_layout Plain Layout
28056 Formula ! long
28057 \end_layout
28058
28059 \end_inset
28060
28061
28062 \end_layout
28063
28064 \begin_layout Standard
28065 Long formulas can be typeset using these methods:
28066 \end_layout
28067
28068 \begin_layout Itemize
28069 When one side of the equation is much shorther than the line width, this
28070  one is chosen for the left side and the right side is typeset over two
28071  lines:
28072 \begin_inset Formula \begin{eqnarray}
28073 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 \\
28074  &  & -\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}
28075
28076 \end_inset
28077
28078 The minus sign at the beginning of the second line does normally not appear
28079  as operator because it is the first character of the line.
28080  Thus it would not be surrounded by space and could not be distinguished
28081  from the fraction bar.
28082  To avoid this, 3
28083 \begin_inset space \thinspace{}
28084 \end_inset
28085
28086 pt space was inserted behind the minus sign with the command 
28087 \series bold
28088
28089 \backslash
28090 hspace
28091 \series default
28092 .
28093 \begin_inset Foot
28094 status collapsed
28095
28096 \begin_layout Plain Layout
28097 more about 
28098 \series bold
28099
28100 \backslash
28101 hspace
28102 \series default
28103  see 
28104 \begin_inset CommandInset ref
28105 LatexCommand ref
28106 reference "sub:Variable-Space"
28107
28108 \end_inset
28109
28110
28111 \end_layout
28112
28113 \end_inset
28114
28115
28116 \begin_inset Index
28117 status collapsed
28118
28119 \begin_layout Plain Layout
28120 Commands ! H ! 
28121 \backslash
28122 hspace
28123 \end_layout
28124
28125 \end_inset
28126
28127
28128 \end_layout
28129
28130 \begin_layout Itemize
28131 When both sides of the equation are too long, the command 
28132 \series bold
28133
28134 \backslash
28135 lefteqn
28136 \series default
28137
28138 \begin_inset Index
28139 status collapsed
28140
28141 \begin_layout Plain Layout
28142 Commands ! L ! 
28143 \backslash
28144 lefteqn
28145 \end_layout
28146
28147 \end_inset
28148
28149  is used.
28150  It is inserted to the first column of the first line and effects that all
28151  further insertions overwrite the following columns:
28152 \begin_inset Formula \begin{eqnarray}
28153 \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 \\
28154  &  & -\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 \\
28155  &  & =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}
28156
28157 \end_inset
28158
28159 After the insertion of 
28160 \series bold
28161
28162 \backslash
28163 lefteqn
28164 \series default
28165 , the cursor is in a purple box that is a bit shifted to the left from the
28166  blue one.
28167  In this the formula is inserted.
28168 \begin_inset Newline newline
28169 \end_inset
28170
28171 The content of the further lines is inserted to the second or another formula
28172  column.
28173  The greater the column number where it was inserted, the larger the indentation.
28174 \begin_inset VSpace medskip
28175 \end_inset
28176
28177
28178 \begin_inset Newline newline
28179 \end_inset
28180
28181
28182 \begin_inset Note Greyedout
28183 status open
28184
28185 \begin_layout Plain Layout
28186 Note the following when using 
28187 \series bold
28188
28189 \backslash
28190 lefteqn
28191 \series default
28192 :
28193 \end_layout
28194
28195 \begin_layout Itemize
28196 The formula doesn't use the full page width.
28197  When e.
28198 \begin_inset space \thinspace{}
28199 \end_inset
28200
28201 g.
28202 \begin_inset space \space{}
28203 \end_inset
28204
28205 the term 
28206 \begin_inset Formula $-B^{2}$
28207 \end_inset
28208
28209  is added to the first line in the above example, it would have been outside
28210  the page margin.
28211  To better use the width, negative space can be inserted at the beginning
28212  of the first line.
28213 \end_layout
28214
28215 \begin_layout Itemize
28216 Due to a bug in LyX the cursor cannot be set with the mouse into the first
28217  line.
28218 \begin_inset Foot
28219 status collapsed
28220
28221 \begin_layout Plain Layout
28222 \begin_inset CommandInset href
28223 LatexCommand href
28224 name "LyX-bug #1429"
28225 target "http://bugzilla.lyx.org/show_bug.cgi?id=1429"
28226
28227 \end_inset
28228
28229
28230 \end_layout
28231
28232 \end_inset
28233
28234  One can only set the cursor at the beginning of the line and move it with
28235  the arrow keys.
28236 \end_layout
28237
28238 \end_inset
28239
28240
28241 \end_layout
28242
28243 \begin_layout Itemize
28244 Other methods to set long formulas are offered by the environments described
28245  in 
28246 \begin_inset CommandInset ref
28247 LatexCommand ref
28248 reference "sub:Multline-Environment"
28249
28250 \end_inset
28251
28252  and 
28253 \begin_inset CommandInset ref
28254 LatexCommand ref
28255 reference "sub:Multiline-Formula-Parts"
28256
28257 \end_inset
28258
28259 .
28260 \end_layout
28261
28262 \begin_layout Subsubsection
28263 Multiline Brackets
28264 \begin_inset CommandInset label
28265 LatexCommand label
28266 name "sub:Multiline-Brackets"
28267
28268 \end_inset
28269
28270
28271 \begin_inset Index
28272 status collapsed
28273
28274 \begin_layout Plain Layout
28275 Brackets ! for multiline expressions
28276 \end_layout
28277
28278 \end_inset
28279
28280
28281 \end_layout
28282
28283 \begin_layout Standard
28284 For brackets spanning multiple lines the following problem occurs:
28285 \begin_inset Formula \begin{eqnarray*}
28286 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28287  &  & \left.\cdots+B-D\right]\end{eqnarray*}
28288
28289 \end_inset
28290
28291
28292 \end_layout
28293
28294 \begin_layout Standard
28295 The closing bracket is smaller than the opening bracket because brackets
28296  with variable size may not span multiple lines.
28297 \end_layout
28298
28299 \begin_layout Standard
28300 To set the bracket size for the second line correctly, the first line is
28301  ended with 
28302 \series bold
28303
28304 \backslash
28305 right.
28306 \series default
28307
28308 \begin_inset Index
28309 status collapsed
28310
28311 \begin_layout Plain Layout
28312 Commands ! R ! 
28313 \backslash
28314 right
28315 \end_layout
28316
28317 \end_inset
28318
28319  and the second line with 
28320 \series bold
28321
28322 \backslash
28323 left.
28324 \begin_inset Foot
28325 status collapsed
28326
28327 \begin_layout Plain Layout
28328 for more about 
28329 \series bold
28330
28331 \backslash
28332 left
28333 \series default
28334  and 
28335 \series bold
28336
28337 \backslash
28338 right
28339 \series default
28340  see 
28341 \begin_inset CommandInset ref
28342 LatexCommand ref
28343 reference "sub:Automatic-Bracket-Size"
28344
28345 \end_inset
28346
28347
28348 \end_layout
28349
28350 \end_inset
28351
28352
28353 \series default
28354
28355 \begin_inset Index
28356 status collapsed
28357
28358 \begin_layout Plain Layout
28359 Commands ! L ! 
28360 \backslash
28361 left
28362 \end_layout
28363
28364 \end_inset
28365
28366 .
28367  After 
28368 \series bold
28369
28370 \backslash
28371 left.
28372
28373 \series default
28374  the command 
28375 \series bold
28376
28377 \backslash
28378 vphantom
28379 \series default
28380
28381 \begin_inset ERT
28382 status collapsed
28383
28384 \begin_layout Plain Layout
28385
28386
28387 \backslash
28388 spce 
28389 \end_layout
28390
28391 \end_inset
28392
28393
28394 \series bold
28395
28396 \backslash
28397 prod
28398 \series default
28399 ^
28400 \begin_inset ERT
28401 status collapsed
28402
28403 \begin_layout Plain Layout
28404
28405
28406 \backslash
28407 spce 
28408 \end_layout
28409
28410 \end_inset
28411
28412
28413 \series bold
28414
28415 \backslash
28416 infty
28417 \series default
28418
28419 \begin_inset ERT
28420 status collapsed
28421
28422 \begin_layout Plain Layout
28423
28424
28425 \backslash
28426 spce 
28427 \end_layout
28428
28429 \end_inset
28430
28431
28432 \series bold
28433
28434 \begin_inset Formula $\downarrow$
28435 \end_inset
28436
28437 _R=1}
28438 \series default
28439
28440 \begin_inset Index
28441 status collapsed
28442
28443 \begin_layout Plain Layout
28444 Commands ! V ! 
28445 \backslash
28446 vphantom
28447 \end_layout
28448
28449 \end_inset
28450
28451  is inserted, because the multiplication operator with its limits is the
28452  largest symbol in the first line and this should be the size for the bracket
28453  in the second line.
28454 \end_layout
28455
28456 \begin_layout Standard
28457 The result is this:
28458 \begin_inset Formula \begin{eqnarray*}
28459 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28460  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]\end{eqnarray*}
28461
28462 \end_inset
28463
28464
28465 \end_layout
28466
28467 \begin_layout Subsection
28468 Align Environments
28469 \end_layout
28470
28471 \begin_layout Standard
28472 Align environments can be used for every kind of multiline formulas.
28473  They are specially useful to set several formulas side by side.
28474 \end_layout
28475
28476 \begin_layout Standard
28477 Align environments consist of columns.
28478  The odd columns are right aligned, the even ones left aligned.
28479  Every line in an Align environment can be numbered.
28480 \end_layout
28481
28482 \begin_layout Standard
28483 Align environments are created via the menu 
28484 \family sans
28485 Insert\SpecialChar \menuseparator
28486 Math
28487 \family default
28488 .
28489  With the menu 
28490 \family sans
28491 Edit\SpecialChar \menuseparator
28492 Math\SpecialChar \menuseparator
28493 Change Formula Type
28494 \family default
28495  already existing formulas can be converted to Align environments.
28496 \end_layout
28497
28498 \begin_layout Standard
28499 To add or delete columns, the math toolbar buttons 
28500 \begin_inset Graphics
28501         filename ../images/tabular-feature_append-column.png
28502         scale 85
28503
28504 \end_inset
28505
28506  or 
28507 \begin_inset Graphics
28508         filename ../images/tabular-feature_delete-column.png
28509         scale 85
28510
28511 \end_inset
28512
28513 , respectively, or the menu 
28514 \family sans
28515 Edit\SpecialChar \menuseparator
28516 Rows & Columns
28517 \family default
28518  can be used.
28519 \end_layout
28520
28521 \begin_layout Subsubsection
28522 Standard align Environment
28523 \begin_inset CommandInset label
28524 LatexCommand label
28525 name "sub:Standard-align-Environment"
28526
28527 \end_inset
28528
28529
28530 \begin_inset Index
28531 status collapsed
28532
28533 \begin_layout Plain Layout
28534 Formula ! multiline ! align environment
28535 \end_layout
28536
28537 \end_inset
28538
28539
28540 \end_layout
28541
28542 \begin_layout Standard
28543 This Align environment is created by presssing 
28544 \begin_inset Info
28545 type  "shortcut"
28546 arg   "newline-insert newline"
28547 \end_inset
28548
28549  in a formula or by the menu 
28550 \family sans
28551 Insert\SpecialChar \menuseparator
28552 Math\SpecialChar \menuseparator
28553 AMS align Environment
28554 \family default
28555 .
28556 \end_layout
28557
28558 \begin_layout Standard
28559 An example for two formulas set side by side, that are created with a four
28560  column align environment:
28561 \begin_inset Formula \begin{align*}
28562 A & =\sin(B) & C & =D\\
28563 C & \ne A & B & \ne D\end{align*}
28564
28565 \end_inset
28566
28567 As it can be seen, the formulas in this environment are placed so as if
28568  there would be a 
28569 \series bold
28570
28571 \backslash
28572 hfill
28573 \begin_inset Foot
28574 status collapsed
28575
28576 \begin_layout Plain Layout
28577 more about 
28578 \series bold
28579
28580 \backslash
28581 hfill
28582 \series default
28583  see 
28584 \begin_inset CommandInset ref
28585 LatexCommand ref
28586 reference "sub:Variable-Space"
28587
28588 \end_inset
28589
28590
28591 \end_layout
28592
28593 \end_inset
28594
28595
28596 \series default
28597  before the first and after every even column.
28598  When the formula style 
28599 \series bold
28600 Indented
28601 \begin_inset Foot
28602 status collapsed
28603
28604 \begin_layout Plain Layout
28605 formula styles see 
28606 \begin_inset CommandInset ref
28607 LatexCommand ref
28608 reference "sec:Formula-Styles"
28609
28610 \end_inset
28611
28612
28613 \end_layout
28614
28615 \end_inset
28616
28617
28618 \series default
28619  is used, the formula is set without the 
28620 \series bold
28621
28622 \backslash
28623 hfill
28624 \series default
28625  before the first column.
28626 \end_layout
28627
28628 \begin_layout Subsubsection
28629 Alignat Environment
28630 \begin_inset Index
28631 status collapsed
28632
28633 \begin_layout Plain Layout
28634 Formula ! multiline ! alignat environment
28635 \end_layout
28636
28637 \end_inset
28638
28639
28640 \end_layout
28641
28642 \begin_layout Standard
28643 The alignat environment has no predefined column separation.
28644  It can be inserted manually with the spaces that are described 
28645 \begin_inset CommandInset ref
28646 LatexCommand ref
28647 reference "sub:Space"
28648
28649 \end_inset
28650
28651 .
28652 \end_layout
28653
28654 \begin_layout Standard
28655 The above example in the alignat environment where 1
28656 \begin_inset space \thinspace{}
28657 \end_inset
28658
28659 cm space was inserted at the beginning of the second formula:
28660 \begin_inset Formula \begin{alignat*}{2}
28661 A & =\sin(B) & \hspace{1cm}C & =D\\
28662 C & \ne A & B & \ne D\end{alignat*}
28663
28664 \end_inset
28665
28666 Because the column separation can be set separately for every column, this
28667  environment is especially suitable to set three and more formulas side
28668  by side.
28669 \end_layout
28670
28671 \begin_layout Subsubsection
28672 Flalign Environment
28673 \begin_inset CommandInset label
28674 LatexCommand label
28675 name "sub:Flalign-Environment"
28676
28677 \end_inset
28678
28679
28680 \begin_inset Index
28681 status collapsed
28682
28683 \begin_layout Plain Layout
28684 Formula ! multiline ! flalign environment
28685 \end_layout
28686
28687 \end_inset
28688
28689
28690 \end_layout
28691
28692 \begin_layout Standard
28693 In this environment the first two columns are always set as much as possible
28694  to the left and the last two ones to the right.
28695  An example:
28696 \begin_inset Formula \begin{flalign*}
28697 A & =1 & B & =2 & C & =3\\
28698 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4\end{flalign*}
28699
28700 \end_inset
28701
28702
28703 \end_layout
28704
28705 \begin_layout Standard
28706 By creating a flalign environment with an odd number of columns where an
28707  empty TeX-brace is inserted to the last column, several formulas in a document
28708  can be set to the left, although the formula style 
28709 \series bold
28710 Centered
28711 \series default
28712  is used.
28713  As example the indented formula 
28714 \begin_inset CommandInset ref
28715 LatexCommand eqref
28716 reference "eq:VolInt"
28717
28718 \end_inset
28719
28720 :
28721 \begin_inset Formula \begin{flalign}
28722 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}\end{flalign}
28723
28724 \end_inset
28725
28726 The first two columns contain the formula.
28727  To indent it as with the formula style 
28728 \series bold
28729 Indented
28730 \series default
28731 , 30
28732 \begin_inset space \thinspace{}
28733 \end_inset
28734
28735 pt space was inserted at the beginning of the first column.
28736 \end_layout
28737
28738 \begin_layout Subsection
28739 Eqnarray Environment
28740 \begin_inset CommandInset label
28741 LatexCommand label
28742 name "sub:Eqnarray-Environment"
28743
28744 \end_inset
28745
28746
28747 \begin_inset Index
28748 status collapsed
28749
28750 \begin_layout Plain Layout
28751 Formula ! multiline ! eqnarray environment
28752 \end_layout
28753
28754 \end_inset
28755
28756
28757 \end_layout
28758
28759 \begin_layout Standard
28760 When this environment has been created, three blue boxes appear.
28761  The content of the first box is right aligned, the content of the last
28762  one left aligned.
28763  The content of the middle box appears centered and a bit smaller, because
28764  it is designed to insert there only relation characters.
28765 \begin_inset Formula \begin{eqnarray*}
28766 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
28767 AB & AB & AB\\
28768 A & = & A\end{eqnarray*}
28769
28770 \end_inset
28771
28772
28773 \end_layout
28774
28775 \begin_layout Subsection
28776 Gather Environment
28777 \begin_inset Index
28778 status collapsed
28779
28780 \begin_layout Plain Layout
28781 Formula ! multiline ! gather environment
28782 \end_layout
28783
28784 \end_inset
28785
28786
28787 \end_layout
28788
28789 \begin_layout Standard
28790 This environment consists of only one centered column.
28791  Every line can be numbered.
28792 \begin_inset Formula \begin{gather}
28793 A=1\\
28794 X=\textrm{-}1\end{gather}
28795
28796 \end_inset
28797
28798
28799 \end_layout
28800
28801 \begin_layout Subsection
28802 Multline Environment
28803 \begin_inset CommandInset label
28804 LatexCommand label
28805 name "sub:Multline-Environment"
28806
28807 \end_inset
28808
28809
28810 \begin_inset Index
28811 status collapsed
28812
28813 \begin_layout Plain Layout
28814 Formula ! multiline ! multline environment
28815 \end_layout
28816
28817 \end_inset
28818
28819
28820 \end_layout
28821
28822 \begin_layout Standard
28823 The multline environment consists, like the gather environment, of only
28824  one column.
28825  But the first line is left aligned, the last one right aligned.
28826  All other lines are centered.
28827  Therefore this environment is suitable for long formulas.
28828  As example formula 
28829 \begin_inset CommandInset ref
28830 LatexCommand eqref
28831 reference "eq:lefteqn"
28832
28833 \end_inset
28834
28835  in the multline environment:
28836 \begin_inset Formula \begin{multline}
28837 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}\\
28838 -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}\\
28839 =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}
28840
28841 \end_inset
28842
28843
28844 \end_layout
28845
28846 \begin_layout Standard
28847 In the output only the last (first) line of a multline environment appears
28848  numbered when the document numbering is right (left).
28849 \begin_inset Foot
28850 status collapsed
28851
28852 \begin_layout Plain Layout
28853 numbering styles see 
28854 \begin_inset CommandInset ref
28855 LatexCommand ref
28856 reference "sec:Formula-Styles"
28857
28858 \end_inset
28859
28860
28861 \end_layout
28862
28863 \end_inset
28864
28865
28866 \end_layout
28867
28868 \begin_layout Standard
28869 With the commands 
28870 \series bold
28871
28872 \backslash
28873 shoveright
28874 \begin_inset Index
28875 status collapsed
28876
28877 \begin_layout Plain Layout
28878 Commands ! S ! 
28879 \backslash
28880 shoveright
28881 \end_layout
28882
28883 \end_inset
28884
28885
28886 \series default
28887  and 
28888 \series bold
28889
28890 \backslash
28891 shoveleft
28892 \begin_inset Index
28893 status collapsed
28894
28895 \begin_layout Plain Layout
28896 Commands ! S ! 
28897 \backslash
28898 shoveleft
28899 \end_layout
28900
28901 \end_inset
28902
28903
28904 \series default
28905  a centered line can be right or left aligned, respectively.
28906  The commands are used as follows:
28907 \end_layout
28908
28909 \begin_layout Standard
28910
28911 \series bold
28912
28913 \backslash
28914 shoveright{line content}
28915 \series default
28916  and 
28917 \series bold
28918
28919 \backslash
28920 shoveleft{line content}
28921 \end_layout
28922
28923 \begin_layout Standard
28924 \begin_inset VSpace medskip
28925 \end_inset
28926
28927 The length 
28928 \series bold
28929
28930 \backslash
28931 multlinegap
28932 \begin_inset Index
28933 status collapsed
28934
28935 \begin_layout Plain Layout
28936 Commands ! M ! 
28937 \backslash
28938 multlinegap
28939 \end_layout
28940
28941 \end_inset
28942
28943
28944 \series default
28945  specifies the distance of the first line from the left page margin.
28946  Predefined is the length 0
28947 \begin_inset space \thinspace{}
28948 \end_inset
28949
28950 pt.
28951 \end_layout
28952
28953 \begin_layout Standard
28954 As example the above formula where the command
28955 \end_layout
28956
28957 \begin_layout Standard
28958
28959 \series bold
28960
28961 \backslash
28962 setlength{
28963 \backslash
28964 multlinegap}{2cm}
28965 \end_layout
28966
28967 \begin_layout Standard
28968 was inserted in TeX-mode before:
28969 \begin_inset ERT
28970 status collapsed
28971
28972 \begin_layout Plain Layout
28973
28974
28975 \backslash
28976 setlength{
28977 \backslash
28978 multlinegap}{2cm}
28979 \end_layout
28980
28981 \end_inset
28982
28983
28984 \begin_inset Formula \begin{multline}
28985 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}\\
28986 \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}}\\
28987 =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}
28988
28989 \end_inset
28990
28991
28992 \begin_inset ERT
28993 status collapsed
28994
28995 \begin_layout Plain Layout
28996
28997
28998 \backslash
28999 setlength{
29000 \backslash
29001 multlinegap}{0pt}
29002 \end_layout
29003
29004 \end_inset
29005
29006 The second line was left aligned using 
29007 \series bold
29008
29009 \backslash
29010 shoveleft
29011 \series default
29012 .
29013 \end_layout
29014
29015 \begin_layout Subsection
29016 Multiline Formula Parts
29017 \begin_inset CommandInset label
29018 LatexCommand label
29019 name "sub:Multiline-Formula-Parts"
29020
29021 \end_inset
29022
29023
29024 \begin_inset Index
29025 status collapsed
29026
29027 \begin_layout Plain Layout
29028 Formula ! multiline ! formula parts
29029 \end_layout
29030
29031 \end_inset
29032
29033
29034 \end_layout
29035
29036 \begin_layout Standard
29037 To display only parts of a formula with multiple lines, one of the following
29038  environments are used: 
29039 \series bold
29040 aligned
29041 \series default
29042
29043 \series bold
29044 alignedat
29045 \series default
29046
29047 \series bold
29048 gathered
29049 \series default
29050  or 
29051 \series bold
29052 split
29053 \series default
29054 .
29055  They can be inserted via the menu 
29056 \family sans
29057 Insert\SpecialChar \menuseparator
29058 Math
29059 \family default
29060  or by using the commands described in this section.
29061 \end_layout
29062
29063 \begin_layout Standard
29064 The first three have the same properties as the corresponding multiline
29065  formula environments, but it is possible to set further formula parts beside
29066  them.
29067  An example:
29068 \begin_inset Formula \[
29069 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29070 \Delta E\Delta t & \ge\frac{\hbar}{2}\end{aligned}
29071 \right\} \textrm{Uncertainty relations}\]
29072
29073 \end_inset
29074
29075
29076 \end_layout
29077
29078 \begin_layout Standard
29079 To get this formula, a displayed formula is created where the command 
29080 \series bold
29081
29082 \backslash
29083 aligned
29084 \begin_inset Index
29085 status collapsed
29086
29087 \begin_layout Plain Layout
29088 Commands ! A ! 
29089 \backslash
29090 aligned
29091 \end_layout
29092
29093 \end_inset
29094
29095
29096 \series default
29097  is inserted.
29098  A purple box appears around the blue formula box where now columns and
29099  lines can be added.
29100  Outside the multiline environment other formula parts can be set, like
29101  the brace.
29102 \end_layout
29103
29104 \begin_layout Standard
29105 The aligned environment is also suitable for long formulas whose lines are
29106  horizontally aligned.
29107  Using aligned in a displayed formula has the advantage that the formula
29108  number is vertically centered behind the lines.
29109  As example formula 
29110 \begin_inset CommandInset ref
29111 LatexCommand eqref
29112 reference "eq:shortlong"
29113
29114 \end_inset
29115
29116  in the aligned environment:
29117 \begin_inset Formula \begin{equation}
29118 \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}|}\\
29119  & -\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}
29120 \end{equation}
29121
29122 \end_inset
29123
29124
29125 \end_layout
29126
29127 \begin_layout Standard
29128 To use the environments 
29129 \series bold
29130 alignedat
29131 \series default
29132
29133 \series bold
29134 gathered
29135 \series default
29136 , or 
29137 \series bold
29138 split
29139 \series default
29140 , the command 
29141 \series bold
29142
29143 \backslash
29144 alignedat
29145 \series default
29146 ,
29147 \begin_inset Index
29148 status collapsed
29149
29150 \begin_layout Plain Layout
29151 Commands ! A ! 
29152 \backslash
29153 alignedat
29154 \end_layout
29155
29156 \end_inset
29157
29158  
29159 \series bold
29160
29161 \backslash
29162 gathered
29163 \series default
29164
29165 \begin_inset Index
29166 status collapsed
29167
29168 \begin_layout Plain Layout
29169 Commands ! G ! 
29170 \backslash
29171 gathered
29172 \end_layout
29173
29174 \end_inset
29175
29176 , or 
29177 \series bold
29178
29179 \backslash
29180 split
29181 \series default
29182
29183 \begin_inset Index
29184 status collapsed
29185
29186 \begin_layout Plain Layout
29187 Commands ! S ! 
29188 \backslash
29189 split
29190 \end_layout
29191
29192 \end_inset
29193
29194  are inserted, respectively.
29195  The split environment has the same properties as the aligned environment
29196  but it can only have two columns.
29197 \end_layout
29198
29199 \begin_layout Subsection
29200 Text in multiline Formulas
29201 \begin_inset CommandInset label
29202 LatexCommand label
29203 name "sub:Text-in-multiline"
29204
29205 \end_inset
29206
29207
29208 \begin_inset Index
29209 status collapsed
29210
29211 \begin_layout Plain Layout
29212 Text ! in formulas
29213 \end_layout
29214
29215 \end_inset
29216
29217
29218 \begin_inset Index
29219 status collapsed
29220
29221 \begin_layout Plain Layout
29222 Formula ! multiline ! text
29223 \end_layout
29224
29225 \end_inset
29226
29227
29228 \end_layout
29229
29230 \begin_layout Standard
29231 In the Align environments, and the multline and gather environment, text
29232  can be inserted that will appear in a separate line and doesn't affect
29233  the column alignment.
29234  To do this, the command 
29235 \series bold
29236
29237 \backslash
29238 intertext
29239 \begin_inset Index
29240 status collapsed
29241
29242 \begin_layout Plain Layout
29243 Commands ! I ! 
29244 \backslash
29245 intertext
29246 \end_layout
29247
29248 \end_inset
29249
29250
29251 \series default
29252  is used in the following scheme:
29253 \end_layout
29254
29255 \begin_layout Standard
29256
29257 \series bold
29258
29259 \backslash
29260 intertext{text}
29261 \end_layout
29262
29263 \begin_layout Standard
29264 The text should not be longer than a line because it cannot be hyphenated.
29265  As LyX doesn't yet support 
29266 \series bold
29267
29268 \backslash
29269 intertext
29270 \series default
29271  directly, the text is written as mathematical text.
29272  
29273 \series bold
29274
29275 \backslash
29276 intertext
29277 \series default
29278  must hereby be at the beginning of a line and appears in the output above
29279  this line.
29280  An example where the text was inserted at the beginning of the second line:
29281 \begin_inset Formula \begin{align}
29282 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29283 \intertext{\text{integrand is symmetric to $\phi=\pi$, therefore}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\end{align}
29284
29285 \end_inset
29286
29287
29288 \end_layout
29289
29290 \begin_layout Section
29291 Formula Numbering
29292 \begin_inset Index
29293 status collapsed
29294
29295 \begin_layout Plain Layout
29296 Formula numbering
29297 \end_layout
29298
29299 \end_inset
29300
29301
29302 \begin_inset Index
29303 status collapsed
29304
29305 \begin_layout Plain Layout
29306 Formula ! numbering|see
29307 \begin_inset ERT
29308 status collapsed
29309
29310 \begin_layout Plain Layout
29311
29312 {
29313 \end_layout
29314
29315 \end_inset
29316
29317 Formula numbering
29318 \begin_inset ERT
29319 status collapsed
29320
29321 \begin_layout Plain Layout
29322
29323 }
29324 \end_layout
29325
29326 \end_inset
29327
29328
29329 \end_layout
29330
29331 \end_inset
29332
29333
29334 \end_layout
29335
29336 \begin_layout Subsection
29337 General
29338 \end_layout
29339
29340 \begin_layout Standard
29341 Numbered formulas can be created with the menu 
29342 \family sans
29343 Insert\SpecialChar \menuseparator
29344 Math\SpecialChar \menuseparator
29345 Numbered
29346 \begin_inset space ~
29347 \end_inset
29348
29349 Formula
29350 \family default
29351  (shortcut 
29352 \family sans
29353 Ctrl+Alt
29354 \begin_inset space ~
29355 \end_inset
29356
29357 N
29358 \family default
29359 ).
29360  Existing formulas can be numbered with the menu 
29361 \family sans
29362 Edit\SpecialChar \menuseparator
29363 Math\SpecialChar \menuseparator
29364 Toggle
29365 \begin_inset space ~
29366 \end_inset
29367
29368 Numbering
29369 \family default
29370  (shortcut 
29371 \begin_inset Info
29372 type  "shortcut"
29373 arg   "math-number-toggle"
29374 \end_inset
29375
29376 ).
29377  The formula number is displayed in LyX behind the formula as number sign
29378  in parentheses.
29379  The number sign is replaced in the output by the formula number.
29380 \end_layout
29381
29382 \begin_layout Standard
29383 When numbering is turned on in multiline formulas, all lines will be numbered.
29384  But the numbering can be controlled with the menu 
29385 \family sans
29386 Edit\SpecialChar \menuseparator
29387 Math\SpecialChar \menuseparator
29388 Toggle
29389 \begin_inset space ~
29390 \end_inset
29391
29392 Numbering
29393 \begin_inset space ~
29394 \end_inset
29395
29396 of
29397 \begin_inset space ~
29398 \end_inset
29399
29400 Line
29401 \family default
29402  (shortcut
29403 \begin_inset Info
29404 type  "shortcut"
29405 arg   "math-number-line-toggle"
29406 \end_inset
29407
29408 ) for every line.
29409 \end_layout
29410
29411 \begin_layout Standard
29412 Except for inline formulas, all formulas can be numbered with two different
29413  styles, see 
29414 \begin_inset CommandInset ref
29415 LatexCommand ref
29416 reference "sec:Formula-Styles"
29417
29418 \end_inset
29419
29420 .
29421 \end_layout
29422
29423 \begin_layout Subsection
29424 Cross-References
29425 \begin_inset Index
29426 status collapsed
29427
29428 \begin_layout Plain Layout
29429 Cross-references ! to formulas
29430 \end_layout
29431
29432 \end_inset
29433
29434
29435 \end_layout
29436
29437 \begin_layout Standard
29438 All labeled formulas can be cross-referenced.
29439  A label is added by the menu 
29440 \family sans
29441 Insert\SpecialChar \menuseparator
29442 Label
29443 \family default
29444  or the toolbar button 
29445 \begin_inset Graphics
29446         filename ../images/label-insert.png
29447         scale 85
29448
29449 \end_inset
29450
29451 .
29452  The cursor must hereby be inside a displayed formula.
29453  A dialog pops up displaying the prefix 
29454 \series bold
29455 eq:
29456 \series default
29457  in a text field.
29458  The label is inserted there behind the prefix.
29459  The predefined prefix means 
29460 \begin_inset Quotes eld
29461 \end_inset
29462
29463 equation
29464 \begin_inset Quotes erd
29465 \end_inset
29466
29467  and makes it easier to find labels in large documents because it marks
29468  it as formula label to divide it from e.
29469 \begin_inset space \thinspace{}
29470 \end_inset
29471
29472 g.
29473 \begin_inset space \space{}
29474 \end_inset
29475
29476 section labels.
29477  To change a label, the menu 
29478 \family sans
29479 Insert\SpecialChar \menuseparator
29480 Label
29481 \family default
29482  is used again.
29483 \end_layout
29484
29485 \begin_layout Standard
29486 The name of the label is displayed in LyX within two parentheses behind
29487  formula.
29488  A formula with a label is always numbered.
29489 \end_layout
29490
29491 \begin_layout Standard
29492 Cross-references are inserted via the menu 
29493 \family sans
29494 Insert\SpecialChar \menuseparator
29495 Cross-Reference
29496 \family default
29497  or with the toolbar button 
29498 \begin_inset Graphics
29499         filename ../images/dialog-show-new-inset_ref.png
29500         scale 85
29501
29502 \end_inset
29503
29504 .
29505  A formula cross-reference appears in the output as formula number.
29506  When in the cross-reference dialog window the format 
29507 \series bold
29508 (<reference>)
29509 \series default
29510  is chosen, the cross-reference appears in the output as formula number
29511  in parentheses.
29512 \begin_inset Newline newline
29513 \end_inset
29514
29515 By right-clicking on a cross-reference in LyX, one jumps to the formula
29516  that is referenced.
29517 \end_layout
29518
29519 \begin_layout Standard
29520 Here are as examples cross-references to formulas of the following subsections:
29521 \begin_inset Note Note
29522 status open
29523
29524 \begin_layout Plain Layout
29525 Note the different cross-reference types.
29526 \end_layout
29527
29528 \end_inset
29529
29530
29531 \end_layout
29532
29533 \begin_layout Standard
29534 The equations 
29535 \begin_inset CommandInset ref
29536 LatexCommand eqref
29537 reference "eq:tag"
29538
29539 \end_inset
29540
29541  and 
29542 \begin_inset CommandInset ref
29543 LatexCommand eqref
29544 reference "eq:c"
29545
29546 \end_inset
29547
29548  are equivalent.
29549  In (
29550 \begin_inset CommandInset ref
29551 LatexCommand ref
29552 reference "eq:Lat"
29553
29554 \end_inset
29555
29556 ) big Latin letters are used for the numbering in contrary to (
29557 \begin_inset CommandInset ref
29558 LatexCommand ref
29559 reference "eq:Rom"
29560
29561 \end_inset
29562
29563 ).
29564 \end_layout
29565
29566 \begin_layout Standard
29567 \begin_inset VSpace medskip
29568 \end_inset
29569
29570 When the argument of 
29571 \series bold
29572
29573 \backslash
29574 tag
29575 \begin_inset Foot
29576 status collapsed
29577
29578 \begin_layout Plain Layout
29579
29580 \series bold
29581
29582 \backslash
29583 tag
29584 \series default
29585  is described in 
29586 \begin_inset CommandInset ref
29587 LatexCommand ref
29588 reference "sub:User-defined-Numbering"
29589
29590 \end_inset
29591
29592 .
29593 \end_layout
29594
29595 \end_inset
29596
29597
29598 \series default
29599  contains a box like in 
29600 \begin_inset CommandInset ref
29601 LatexCommand ref
29602 reference "sub:Paragraph-Boxes"
29603
29604 \end_inset
29605
29606 , the formula cannot be referenced.
29607 \end_layout
29608
29609 \begin_layout Subsection
29610 Subnumbering
29611 \begin_inset Index
29612 status collapsed
29613
29614 \begin_layout Plain Layout
29615 Formula numbering ! subnumbering
29616 \end_layout
29617
29618 \end_inset
29619
29620
29621 \end_layout
29622
29623 \begin_layout Standard
29624 With the help of the commands 
29625 \series bold
29626
29627 \backslash
29628 begin{subequations}
29629 \series default
29630  and 
29631 \series bold
29632
29633 \backslash
29634 end{subequations}
29635 \series default
29636  formulas can be subnumbered.
29637  Both commands are inserted in TeX-mode.
29638 \end_layout
29639
29640 \begin_layout Standard
29641 An example:
29642 \begin_inset Formula \begin{equation}
29643 A=C-B\label{eq:a}\end{equation}
29644
29645 \end_inset
29646
29647
29648 \begin_inset ERT
29649 status collapsed
29650
29651 \begin_layout Plain Layout
29652
29653
29654 \backslash
29655 addtocounter{equation}{-1}
29656 \end_layout
29657
29658 \end_inset
29659
29660
29661 \begin_inset ERT
29662 status collapsed
29663
29664 \begin_layout Plain Layout
29665
29666
29667 \backslash
29668 begin{subequations}
29669 \end_layout
29670
29671 \end_inset
29672
29673
29674 \begin_inset VSpace -5mm
29675 \end_inset
29676
29677
29678 \begin_inset Formula \begin{equation}
29679 B=C-A\label{eq:b}\end{equation}
29680
29681 \end_inset
29682
29683
29684 \begin_inset Formula \begin{equation}
29685 C=A+B\label{eq:c}\end{equation}
29686
29687 \end_inset
29688
29689
29690 \end_layout
29691
29692 \begin_layout Standard
29693 \begin_inset ERT
29694 status collapsed
29695
29696 \begin_layout Plain Layout
29697
29698
29699 \backslash
29700 end{subequations}
29701 \end_layout
29702
29703 \end_inset
29704
29705
29706 \end_layout
29707
29708 \begin_layout Standard
29709 To create the example, the following is done:
29710 \end_layout
29711
29712 \begin_layout Enumerate
29713 first formula is inserted
29714 \end_layout
29715
29716 \begin_layout Enumerate
29717
29718 \series bold
29719
29720 \backslash
29721 addtocounter{equation}{-1} 
29722 \backslash
29723 begin{subequations}
29724 \begin_inset Index
29725 status collapsed
29726
29727 \begin_layout Plain Layout
29728 Commands ! A ! 
29729 \backslash
29730 addtocounter
29731 \end_layout
29732
29733 \end_inset
29734
29735
29736 \begin_inset Newline newline
29737 \end_inset
29738
29739
29740 \series default
29741 is inserted after the first formula
29742 \end_layout
29743
29744 \begin_layout Enumerate
29745 second formula is inserted
29746 \end_layout
29747
29748 \begin_layout Enumerate
29749 third formula is inserted
29750 \end_layout
29751
29752 \begin_layout Enumerate
29753
29754 \series bold
29755
29756 \backslash
29757 end{subequations}
29758 \series default
29759  is inserted after the third formula
29760 \end_layout
29761
29762 \begin_layout Standard
29763 Every formula between the commands 
29764 \series bold
29765
29766 \backslash
29767 begin
29768 \series default
29769  and 
29770 \series bold
29771
29772 \backslash
29773 end
29774 \series default
29775  is subnumbered as a, b, 
29776 \begin_inset Newline linebreak
29777 \end_inset
29778
29779 c, \SpecialChar \ldots{}
29780  For multiline formulas every line will be subnumbered.
29781  All subnumbered formulas are treated as 
29782 \emph on
29783 one
29784 \emph default
29785  numbered formula.
29786  But as every numbered formula increases the counter 
29787 \series bold
29788 equation
29789 \series default
29790  by one, the command 
29791 \series bold
29792
29793 \backslash
29794 addtocounter
29795 \series default
29796  is needed to decrease it.
29797  Otherwise the formulas 
29798 \begin_inset CommandInset ref
29799 LatexCommand eqref
29800 reference "eq:a"
29801
29802 \end_inset
29803
29804
29805 \begin_inset CommandInset ref
29806 LatexCommand eqref
29807 reference "eq:b"
29808
29809 \end_inset
29810
29811
29812 \begin_inset CommandInset ref
29813 LatexCommand eqref
29814 reference "eq:c"
29815
29816 \end_inset
29817
29818  would be numbered as 
29819 \begin_inset CommandInset ref
29820 LatexCommand eqref
29821 reference "eq:a"
29822
29823 \end_inset
29824
29825
29826 \begin_inset CommandInset ref
29827 LatexCommand eqref
29828 reference "eq:d"
29829
29830 \end_inset
29831
29832
29833 \begin_inset CommandInset ref
29834 LatexCommand eqref
29835 reference "eq:f"
29836
29837 \end_inset
29838
29839 .
29840 \end_layout
29841
29842 \begin_layout Standard
29843 By inserting the commands in TeX-mode, a space is created between the first
29844  two formulas.
29845  To revert this -5
29846 \begin_inset space \thinspace{}
29847 \end_inset
29848
29849 mm vertical space is inserted after the command 
29850 \series bold
29851
29852 \backslash
29853 begin{subequations}
29854 \series default
29855 .
29856  When the formula style 
29857 \series bold
29858 Indented
29859 \begin_inset Foot
29860 status collapsed
29861
29862 \begin_layout Plain Layout
29863 formula styles see 
29864 \begin_inset CommandInset ref
29865 LatexCommand ref
29866 reference "sec:Formula-Styles"
29867
29868 \end_inset
29869
29870
29871 \end_layout
29872
29873 \end_inset
29874
29875
29876 \series default
29877  is used, -7
29878 \begin_inset space \thinspace{}
29879 \end_inset
29880
29881 mm space is inserted instead.
29882 \end_layout
29883
29884 \begin_layout Standard
29885 Here is an example for a multiline formula where the numbering was turned
29886  off for the second line:
29887 \begin_inset ERT
29888 status collapsed
29889
29890 \begin_layout Plain Layout
29891
29892
29893 \backslash
29894 begin{subequations}
29895 \end_layout
29896
29897 \end_inset
29898
29899
29900 \begin_inset Formula \begin{eqnarray}
29901 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
29902  & = & B^{2}-ZB-BZ+Z^{2}\nonumber \\
29903  & = & B^{2}-2BZ+Z^{2}\label{eq:f}\end{eqnarray}
29904
29905 \end_inset
29906
29907
29908 \begin_inset ERT
29909 status collapsed
29910
29911 \begin_layout Plain Layout
29912
29913
29914 \backslash
29915 end{subequations}
29916 \end_layout
29917
29918 \end_inset
29919
29920
29921 \end_layout
29922
29923 \begin_layout Subsection
29924 User-defined Numbering
29925 \begin_inset CommandInset label
29926 LatexCommand label
29927 name "sub:User-defined-Numbering"
29928
29929 \end_inset
29930
29931
29932 \begin_inset Index
29933 status collapsed
29934
29935 \begin_layout Plain Layout
29936 Formula numbering ! user-defined
29937 \end_layout
29938
29939 \end_inset
29940
29941
29942 \end_layout
29943
29944 \begin_layout Standard
29945 \begin_inset Index
29946 status collapsed
29947
29948 \begin_layout Plain Layout
29949 Formula numbering ! self-defined delimiters
29950 \end_layout
29951
29952 \end_inset
29953
29954 With the standard numbering parentheses are set around the formula number.
29955  To replace the parentheses for example by vertical bars, the following
29956  line is added to the LaTeX-preamble:
29957 \end_layout
29958
29959 \begin_layout Standard
29960
29961 \series bold
29962
29963 \backslash
29964 def
29965 \backslash
29966 tagform@#1{
29967 \backslash
29968 maketag@@@{|#1|}}
29969 \series default
29970
29971 \begin_inset Note Note
29972 status collapsed
29973
29974 \begin_layout Plain Layout
29975 This macro is already declared in the LaTeX-preamble for testing.
29976  To activate it, remove the percent sign at the beginning.
29977 \end_layout
29978
29979 \end_inset
29980
29981
29982 \end_layout
29983
29984 \begin_layout Standard
29985 To use other characters, the vertical bars besides the 
29986 \series bold
29987 #1
29988 \series default
29989  are replaced by one ore more characters.
29990  To get only the formula number the vertical bars are omitted.
29991 \end_layout
29992
29993 \begin_layout Standard
29994 \begin_inset VSpace bigskip
29995 \end_inset
29996
29997 When there should be an expression of your choice instead of the consecutive
29998  formula number in parentheses behind the formula, the command 
29999 \series bold
30000
30001 \backslash
30002 tag
30003 \series default
30004
30005 \begin_inset Index
30006 status collapsed
30007
30008 \begin_layout Plain Layout
30009 Commands ! T ! 
30010 \backslash
30011 tag
30012 \end_layout
30013
30014 \end_inset
30015
30016  is used:
30017 \begin_inset Formula \begin{equation}
30018 A+B=C\tag{something}\label{eq:tag}\end{equation}
30019
30020 \end_inset
30021
30022 In this example the command 
30023 \series bold
30024
30025 \backslash
30026 tag
30027 \begin_inset ERT
30028 status collapsed
30029
30030 \begin_layout Plain Layout
30031
30032
30033 \backslash
30034 spce 
30035 \end_layout
30036
30037 \end_inset
30038
30039 something
30040 \series default
30041  was inserted to the formula.
30042 \end_layout
30043
30044 \begin_layout Standard
30045 When the command 
30046 \series bold
30047
30048 \backslash
30049 tag*
30050 \begin_inset ERT
30051 status collapsed
30052
30053 \begin_layout Plain Layout
30054
30055
30056 \backslash
30057 spce 
30058 \end_layout
30059
30060 \end_inset
30061
30062 something
30063 \series default
30064  is inserted instead, the star prevents the parentheses around the expression:
30065 \begin_inset Formula \[
30066 A+B=C\tag*{something}\]
30067
30068 \end_inset
30069
30070
30071 \end_layout
30072
30073 \begin_layout Standard
30074 \begin_inset VSpace bigskip
30075 \end_inset
30076
30077 To restart the formula numbering with new document parts or sections, the
30078  following command is used:
30079 \end_layout
30080
30081 \begin_layout Standard
30082
30083 \series bold
30084
30085 \backslash
30086 @addtoreset{equation}{part}
30087 \series default
30088
30089 \begin_inset Index
30090 status collapsed
30091
30092 \begin_layout Plain Layout
30093 Commands ! 
30094 \begin_inset ERT
30095 status collapsed
30096
30097 \begin_layout Plain Layout
30098
30099 "
30100 \end_layout
30101
30102 \end_inset
30103
30104 @
30105 \begin_inset ERT
30106 status collapsed
30107
30108 \begin_layout Plain Layout
30109
30110 "
30111 \end_layout
30112
30113 \end_inset
30114
30115  ! 
30116 \backslash
30117
30118 \begin_inset ERT
30119 status collapsed
30120
30121 \begin_layout Plain Layout
30122
30123 "
30124 \end_layout
30125
30126 \end_inset
30127
30128 @
30129 \begin_inset ERT
30130 status collapsed
30131
30132 \begin_layout Plain Layout
30133
30134 "
30135 \end_layout
30136
30137 \end_inset
30138
30139 addtoreset
30140 \end_layout
30141
30142 \end_inset
30143
30144
30145 \begin_inset Newline newline
30146 \end_inset
30147
30148 resp.
30149 \begin_inset Newline newline
30150 \end_inset
30151
30152
30153 \series bold
30154
30155 \backslash
30156 @addtoreset{equation}{section}
30157 \end_layout
30158
30159 \begin_layout Standard
30160 To be able to use these commands in TeX-mode, the 
30161 \begin_inset Quotes eld
30162 \end_inset
30163
30164 @
30165 \begin_inset Quotes erd
30166 \end_inset
30167
30168  character has to be made 
30169 \begin_inset Quotes eld
30170 \end_inset
30171
30172 active
30173 \begin_inset Quotes erd
30174 \end_inset
30175
30176  for LaTeX using the command 
30177 \series bold
30178
30179 \backslash
30180 makeatletter.
30181
30182 \series default
30183  The command 
30184 \series bold
30185
30186 \backslash
30187 makeatother
30188 \series default
30189  reverts this.
30190  So the command sequence in TeX-mode is:
30191 \end_layout
30192
30193 \begin_layout Standard
30194
30195 \series bold
30196
30197 \backslash
30198 makeatletter
30199 \begin_inset Newline newline
30200 \end_inset
30201
30202
30203 \backslash
30204 @addtoreset{equation}{section}
30205 \begin_inset Newline newline
30206 \end_inset
30207
30208
30209 \backslash
30210 makeatother
30211 \end_layout
30212
30213 \begin_layout Standard
30214 In the LaTeX-preamble 
30215 \series bold
30216
30217 \backslash
30218 makeatletter
30219 \series default
30220  and 
30221 \series bold
30222
30223 \backslash
30224 makeatother
30225 \series default
30226  can be omitted as they are automatically internally inserted by LyX.
30227 \end_layout
30228
30229 \begin_layout Standard
30230 To revert 
30231 \series bold
30232
30233 \backslash
30234 @addtoreset
30235 \series default
30236 , the file 
30237 \series bold
30238 remreset.sty
30239 \series default
30240
30241 \begin_inset Foot
30242 status collapsed
30243
30244 \begin_layout Plain Layout
30245
30246 \series bold
30247 remreset
30248 \series default
30249  is part of the LaTeX-package 
30250 \series bold
30251 carlisle
30252 \series default
30253
30254 \begin_inset Index
30255 status collapsed
30256
30257 \begin_layout Plain Layout
30258 Packages ! carlisle
30259 \end_layout
30260
30261 \end_inset
30262
30263  that is part of every LaTeX standard installation.
30264 \end_layout
30265
30266 \end_inset
30267
30268
30269 \begin_inset Index
30270 status collapsed
30271
30272 \begin_layout Plain Layout
30273 Packages ! remreset
30274 \end_layout
30275
30276 \end_inset
30277
30278  has to be loaded in the LaTeX-preamble with the line
30279 \end_layout
30280
30281 \begin_layout Standard
30282
30283 \series bold
30284
30285 \backslash
30286 usepackage{remreset}
30287 \end_layout
30288
30289 \begin_layout Standard
30290 Then the command 
30291 \series bold
30292
30293 \backslash
30294 @removefromreset
30295 \series default
30296
30297 \begin_inset Index
30298 status collapsed
30299
30300 \begin_layout Plain Layout
30301 Commands ! 
30302 \begin_inset ERT
30303 status collapsed
30304
30305 \begin_layout Plain Layout
30306
30307 "
30308 \end_layout
30309
30310 \end_inset
30311
30312 @
30313 \begin_inset ERT
30314 status collapsed
30315
30316 \begin_layout Plain Layout
30317
30318 "
30319 \end_layout
30320
30321 \end_inset
30322
30323  ! 
30324 \backslash
30325
30326 \begin_inset ERT
30327 status collapsed
30328
30329 \begin_layout Plain Layout
30330
30331 "
30332 \end_layout
30333
30334 \end_inset
30335
30336 @
30337 \begin_inset ERT
30338 status collapsed
30339
30340 \begin_layout Plain Layout
30341
30342 "
30343 \end_layout
30344
30345 \end_inset
30346
30347 removefromreset
30348 \end_layout
30349
30350 \end_inset
30351
30352  can be used with the same scheme as 
30353 \series bold
30354
30355 \backslash
30356 @addtoreset
30357 \series default
30358 .
30359 \end_layout
30360
30361 \begin_layout Standard
30362 \begin_inset VSpace bigskip
30363 \end_inset
30364
30365 Sometimes formulas should be numbered in the following form:
30366 \end_layout
30367
30368 \begin_layout Standard
30369
30370 \family typewriter
30371 (section number.formula number)
30372 \end_layout
30373
30374 \begin_layout Standard
30375 The formula number should start with every section with 
30376 \begin_inset Quotes eld
30377 \end_inset
30378
30379 1
30380 \begin_inset Quotes erd
30381 \end_inset
30382
30383 .
30384 \end_layout
30385
30386 \begin_layout Standard
30387 For this case there is the command 
30388 \series bold
30389
30390 \backslash
30391 numberwithin
30392 \series default
30393
30394 \begin_inset Index
30395 status collapsed
30396
30397 \begin_layout Plain Layout
30398 Commands ! N ! 
30399 \backslash
30400 numberwithin
30401 \end_layout
30402
30403 \end_inset
30404
30405 , which is used with the following scheme:
30406 \end_layout
30407
30408 \begin_layout Standard
30409
30410 \series bold
30411
30412 \backslash
30413 numberwithin{counter}{sectioning}
30414 \end_layout
30415
30416 \begin_layout Standard
30417 Counter denotes what kind of numbering is affected, sectioning denotes what
30418  number is before the dot.
30419 \end_layout
30420
30421 \begin_layout Standard
30422 Thus in our case the following LaTeX-preamble or TeX-Code line is used:
30423 \end_layout
30424
30425 \begin_layout Standard
30426
30427 \series bold
30428
30429 \backslash
30430 numberwithin{equation}{section}
30431 \end_layout
30432
30433 \begin_layout Standard
30434 This is the result:
30435 \begin_inset ERT
30436 status collapsed
30437
30438 \begin_layout Plain Layout
30439
30440
30441 \backslash
30442 numberwithin{equation}{section}
30443 \end_layout
30444
30445 \end_inset
30446
30447
30448 \begin_inset Formula \begin{equation}
30449 A+B=C\end{equation}
30450
30451 \end_inset
30452
30453
30454 \end_layout
30455
30456 \begin_layout Standard
30457 To number e.
30458 \begin_inset space \thinspace{}
30459 \end_inset
30460
30461 g.
30462 \begin_inset space \space{}
30463 \end_inset
30464
30465 tables so that the number of the part is the sectioning,
30466 \begin_inset Newline newline
30467 \end_inset
30468
30469
30470 \series bold
30471
30472 \backslash
30473 numberwithin{table}{part}
30474 \series default
30475  is used.
30476 \end_layout
30477
30478 \begin_layout Standard
30479 To go back to the standard numbering or to prevent this kind of numbering
30480  when it is defined by the document class, the following command is inserted
30481  as TeX-Code or to the LaTeX-preamble:
30482 \end_layout
30483
30484 \begin_layout Standard
30485
30486 \series bold
30487
30488 \backslash
30489 renewcommand{
30490 \backslash
30491 theequation}{
30492 \backslash
30493 arabic{equation}}
30494 \begin_inset Index
30495 status collapsed
30496
30497 \begin_layout Plain Layout
30498 Commands ! A ! 
30499 \backslash
30500 arabic
30501 \end_layout
30502
30503 \end_inset
30504
30505
30506 \series default
30507
30508 \begin_inset ERT
30509 status collapsed
30510
30511 \begin_layout Plain Layout
30512
30513
30514 \backslash
30515 renewcommand{
30516 \backslash
30517 theequation}{
30518 \backslash
30519 arabic{equation}}
30520 \end_layout
30521
30522 \end_inset
30523
30524
30525 \series bold
30526
30527 \begin_inset Newline newline
30528 \end_inset
30529
30530
30531 \series default
30532 or
30533 \series bold
30534
30535 \begin_inset Newline newline
30536 \end_inset
30537
30538
30539 \backslash
30540 renewcommand{
30541 \backslash
30542 thetable}{
30543 \backslash
30544 arabic{table}}
30545 \end_layout
30546
30547 \begin_layout Standard
30548
30549 \series bold
30550
30551 \backslash
30552 numberwithin
30553 \series default
30554  uses internally the command 
30555 \series bold
30556
30557 \backslash
30558 @addtoreset
30559 \series default
30560 , described above, that also needs to be reverted.
30561 \begin_inset ERT
30562 status collapsed
30563
30564 \begin_layout Plain Layout
30565
30566
30567 \backslash
30568 makeatletter
30569 \end_layout
30570
30571 \begin_layout Plain Layout
30572
30573
30574 \backslash
30575 @removefromreset{equation}{section}
30576 \end_layout
30577
30578 \begin_layout Plain Layout
30579
30580
30581 \backslash
30582 makeatother
30583 \end_layout
30584
30585 \end_inset
30586
30587
30588 \end_layout
30589
30590 \begin_layout Subsection
30591 Numbering with Roman Numbers and Letters
30592 \begin_inset Index
30593 status collapsed
30594
30595 \begin_layout Plain Layout
30596 Formula numbering ! with letters
30597 \end_layout
30598
30599 \end_inset
30600
30601
30602 \begin_inset Index
30603 status collapsed
30604
30605 \begin_layout Plain Layout
30606 Formula numbering ! with Roman numbers
30607 \end_layout
30608
30609 \end_inset
30610
30611
30612 \end_layout
30613
30614 \begin_layout Standard
30615 Formulas can also be numbered with Roman numbers and Latin letters.
30616  To number for example with small Roman numbers, the command
30617 \end_layout
30618
30619 \begin_layout Standard
30620
30621 \series bold
30622
30623 \backslash
30624 renewcommand{
30625 \backslash
30626 theequation}{
30627 \backslash
30628 roman{equation}}
30629 \end_layout
30630
30631 \begin_layout Standard
30632 is inserted before the formula in TeX-mode.
30633  
30634 \series bold
30635
30636 \backslash
30637 renewcommand
30638 \series default
30639
30640 \begin_inset Index
30641 status collapsed
30642
30643 \begin_layout Plain Layout
30644 Commands ! R ! 
30645 \backslash
30646 renewcommand
30647 \end_layout
30648
30649 \end_inset
30650
30651  redefines the predefined command 
30652 \series bold
30653
30654 \backslash
30655 theequation
30656 \series default
30657  to the command 
30658 \series bold
30659
30660 \backslash
30661 roman{equation}
30662 \series default
30663 .
30664 \begin_inset Foot
30665 status collapsed
30666
30667 \begin_layout Plain Layout
30668 The command 
30669 \series bold
30670
30671 \backslash
30672 renewcommand
30673 \series default
30674  has the same scheme like the command 
30675 \series bold
30676
30677 \backslash
30678 newcommand
30679 \series default
30680  that is described in 
30681 \begin_inset CommandInset ref
30682 LatexCommand ref
30683 reference "sub:The-Command-newcommand"
30684
30685 \end_inset
30686
30687 .
30688 \end_layout
30689
30690 \end_inset
30691
30692  
30693 \series bold
30694 equation
30695 \series default
30696  is the formula counter.
30697  When the command 
30698 \series bold
30699
30700 \backslash
30701 the
30702 \series default
30703  is used as prefix for a counter, the value of the counter is output as
30704  Arabic number.
30705  When a formula is numbered, LaTeX sets internally the command 
30706 \series bold
30707
30708 \backslash
30709 theequation
30710 \series default
30711  behind the formula.
30712  
30713 \series bold
30714
30715 \backslash
30716 roman{equation}
30717 \begin_inset Index
30718 status collapsed
30719
30720 \begin_layout Plain Layout
30721 Commands ! R ! 
30722 \backslash
30723 roman
30724 \end_layout
30725
30726 \end_inset
30727
30728
30729 \series default
30730  outputs the counter as small Roman number.
30731 \end_layout
30732
30733 \begin_layout Standard
30734 All formulas behind the command 
30735 \series bold
30736
30737 \backslash
30738 renew
30739 \series default
30740 c
30741 \series bold
30742 ommand
30743 \series default
30744  are now numbered Roman.
30745  To switch to numbering with big Roman numbers, the command is inserted
30746  again, but 
30747 \series bold
30748
30749 \backslash
30750 roman
30751 \series default
30752  is replaced by 
30753 \series bold
30754
30755 \backslash
30756 Roman
30757 \series default
30758
30759 \begin_inset Index
30760 status collapsed
30761
30762 \begin_layout Plain Layout
30763 Commands ! R ! 
30764 \backslash
30765 roman@
30766 \backslash
30767 Roman
30768 \end_layout
30769
30770 \end_inset
30771
30772 .
30773  To 
30774 \begin_inset Quotes eld
30775 \end_inset
30776
30777 number
30778 \begin_inset Quotes erd
30779 \end_inset
30780
30781  with small Latin letters there is the command 
30782 \series bold
30783
30784 \backslash
30785 alph
30786 \series default
30787
30788 \begin_inset Index
30789 status collapsed
30790
30791 \begin_layout Plain Layout
30792 Commands ! A ! 
30793 \backslash
30794 alph
30795 \end_layout
30796
30797 \end_inset
30798
30799 , for big ones there is the command 
30800 \series bold
30801
30802 \backslash
30803 Alph
30804 \series default
30805
30806 \begin_inset Index
30807 status open
30808
30809 \begin_layout Plain Layout
30810 Commands ! A ! 
30811 \backslash
30812 alph@
30813 \backslash
30814 Alph
30815 \end_layout
30816
30817 \end_inset
30818
30819 .
30820 \end_layout
30821
30822 \begin_layout Standard
30823 \begin_inset Note Greyedout
30824 status open
30825
30826 \begin_layout Plain Layout
30827
30828 \series bold
30829 Note:
30830 \series default
30831  Only maximal 26 formulas can be numbered with Latin letters in one document.
30832 \end_layout
30833
30834 \end_inset
30835
30836
30837 \end_layout
30838
30839 \begin_layout Standard
30840 \begin_inset ERT
30841 status collapsed
30842
30843 \begin_layout Plain Layout
30844
30845
30846 \backslash
30847 renewcommand{
30848 \backslash
30849 theequation}{
30850 \backslash
30851 roman{equation}}
30852 \end_layout
30853
30854 \end_inset
30855
30856
30857 \end_layout
30858
30859 \begin_layout Standard
30860 \begin_inset Formula \begin{equation}
30861 A=\textrm{small roman}\label{eq:rom}\end{equation}
30862
30863 \end_inset
30864
30865
30866 \begin_inset ERT
30867 status collapsed
30868
30869 \begin_layout Plain Layout
30870
30871
30872 \backslash
30873 renewcommand{
30874 \backslash
30875 theequation}{
30876 \backslash
30877 Roman{equation}}
30878 \end_layout
30879
30880 \end_inset
30881
30882
30883 \begin_inset Formula \begin{equation}
30884 B=\textrm{big Roman}\label{eq:Rom}\end{equation}
30885
30886 \end_inset
30887
30888
30889 \begin_inset ERT
30890 status collapsed
30891
30892 \begin_layout Plain Layout
30893
30894
30895 \backslash
30896 renewcommand{
30897 \backslash
30898 theequation}{
30899 \backslash
30900 alph{equation}}
30901 \end_layout
30902
30903 \end_inset
30904
30905
30906 \begin_inset Formula \begin{equation}
30907 C=\textrm{small Latin}\label{eq:lat}\end{equation}
30908
30909 \end_inset
30910
30911
30912 \begin_inset ERT
30913 status collapsed
30914
30915 \begin_layout Plain Layout
30916
30917
30918 \backslash
30919 renewcommand{
30920 \backslash
30921 theequation}{
30922 \backslash
30923 Alph{equation}}
30924 \end_layout
30925
30926 \end_inset
30927
30928
30929 \begin_inset Formula \begin{equation}
30930 D=\textrm{big Latin}\label{eq:Lat}\end{equation}
30931
30932 \end_inset
30933
30934
30935 \end_layout
30936
30937 \begin_layout Standard
30938 To switch back to the default numbering, insert the command:
30939 \end_layout
30940
30941 \begin_layout Standard
30942
30943 \series bold
30944
30945 \backslash
30946 renewcommand{
30947 \backslash
30948 theequation}{
30949 \backslash
30950 arabic{equation}}
30951 \begin_inset Index
30952 status collapsed
30953
30954 \begin_layout Plain Layout
30955 Commands ! A ! 
30956 \backslash
30957 arabic
30958 \end_layout
30959
30960 \end_inset
30961
30962
30963 \end_layout
30964
30965 \begin_layout Standard
30966 \begin_inset ERT
30967 status collapsed
30968
30969 \begin_layout Plain Layout
30970
30971
30972 \backslash
30973 renewcommand{
30974 \backslash
30975 theequation}{
30976 \backslash
30977 arabic{equation}}
30978 \end_layout
30979
30980 \end_inset
30981
30982
30983 \begin_inset Formula \begin{equation}
30984 E=\textrm{Arabic}\label{eq:arab}\end{equation}
30985
30986 \end_inset
30987
30988
30989 \end_layout
30990
30991 \begin_layout Standard
30992 \begin_inset VSpace medskip
30993 \end_inset
30994
30995 As you see, formulas are numbered serially independent from the numbering
30996  style.
30997  When then numbering should start with 
30998 \begin_inset Quotes eld
30999 \end_inset
31000
31001 1
31002 \begin_inset Quotes erd
31003 \end_inset
31004
31005  when the style is changed, new equation counters have to be defined.
31006  A description about this can be found in the file 
31007 \begin_inset CommandInset href
31008 LatexCommand href
31009 target "Formula-numbering.lyx"
31010
31011 \end_inset
31012
31013 .
31014 \end_layout
31015
31016 \begin_layout Section
31017 User-defined Commands
31018 \begin_inset Index
31019 status collapsed
31020
31021 \begin_layout Plain Layout
31022 User-defined commands
31023 \end_layout
31024
31025 \end_inset
31026
31027
31028 \end_layout
31029
31030 \begin_layout Standard
31031 \begin_inset Note Greyedout
31032 status open
31033
31034 \begin_layout Plain Layout
31035
31036 \series bold
31037 Note:
31038 \series default
31039  The names of user-defined commands and macros may only consist of Latin
31040  letters.
31041 \end_layout
31042
31043 \end_inset
31044
31045
31046 \end_layout
31047
31048 \begin_layout Subsection
31049 The Command 
31050 \backslash
31051 newcommand
31052 \begin_inset CommandInset label
31053 LatexCommand label
31054 name "sub:The-Command-newcommand"
31055
31056 \end_inset
31057
31058
31059 \begin_inset Index
31060 status collapsed
31061
31062 \begin_layout Plain Layout
31063 User-defined commands ! 
31064 \backslash
31065 newcommand
31066 \end_layout
31067
31068 \end_inset
31069
31070
31071 \begin_inset Index
31072 status collapsed
31073
31074 \begin_layout Plain Layout
31075 Commands ! N ! 
31076 \backslash
31077 newcommand
31078 \end_layout
31079
31080 \end_inset
31081
31082
31083 \end_layout
31084
31085 \begin_layout Standard
31086 Many LaTeX-commands are too long to be used frequently.
31087  But it is possible to define with the command 
31088 \series bold
31089
31090 \backslash
31091 newcommand
31092 \series default
31093  new shorter commands.
31094 \end_layout
31095
31096 \begin_layout Standard
31097 The command scheme of 
31098 \series bold
31099
31100 \backslash
31101 newcommand
31102 \series default
31103  is:
31104 \end_layout
31105
31106 \begin_layout Standard
31107
31108 \series bold
31109
31110 \backslash
31111 newcommand{new command name}[number of arguments][optional
31112 \series default
31113  
31114 \series bold
31115 value]
31116 \begin_inset Newline newline
31117 \end_inset
31118
31119
31120 \begin_inset ERT
31121 status collapsed
31122
31123 \begin_layout Plain Layout
31124
31125
31126 \backslash
31127 phantom{
31128 \end_layout
31129
31130 \end_inset
31131
31132
31133 \backslash
31134 newcommand
31135 \begin_inset ERT
31136 status collapsed
31137
31138 \begin_layout Plain Layout
31139
31140 }
31141 \end_layout
31142
31143 \end_inset
31144
31145 {command definition}
31146 \end_layout
31147
31148 \begin_layout Standard
31149 \begin_inset Note Greyedout
31150 status open
31151
31152 \begin_layout Plain Layout
31153
31154 \series bold
31155 Note:
31156 \series default
31157  Assure that the name of the new command is not already used in your document
31158  or by LaTeX-packages that you use.
31159  When you for example define the command 
31160 \series bold
31161
31162 \backslash
31163 le
31164 \series default
31165  for 
31166 \series bold
31167
31168 \backslash
31169 Leftarrow
31170 \series default
31171 , you get an error message because 
31172 \series bold
31173
31174 \backslash
31175 le
31176 \series default
31177  is already defined as command for 
31178 \begin_inset Quotes eld
31179 \end_inset
31180
31181
31182 \begin_inset Formula $\le$
31183 \end_inset
31184
31185
31186 \begin_inset Quotes erd
31187 \end_inset
31188
31189 .
31190 \end_layout
31191
31192 \end_inset
31193
31194
31195 \end_layout
31196
31197 \begin_layout Standard
31198 The number of arguments is an integer in the range 0
31199 \begin_inset space \thinspace{}
31200 \end_inset
31201
31202 -
31203 \begin_inset space \thinspace{}
31204 \end_inset
31205
31206 9 and specifies how many arguments the new command should have.
31207  With the optional value a value for an optional argument can be predefined.
31208  When this is done, the 
31209 \emph on
31210 first
31211 \emph default
31212  
31213 \emph on
31214 a
31215 \emph default
31216 rgument of the new command is automatically an optional one.
31217 \end_layout
31218
31219 \begin_layout Standard
31220 Here are some examples:
31221 \end_layout
31222
31223 \begin_layout Itemize
31224 To define the command 
31225 \series bold
31226
31227 \backslash
31228 gr
31229 \series default
31230  for 
31231 \series bold
31232
31233 \backslash
31234 Longrightarrow
31235 \series default
31236 , the LaTeX-preamble line is:
31237 \begin_inset VSpace medskip
31238 \end_inset
31239
31240
31241 \begin_inset Newline newline
31242 \end_inset
31243
31244
31245 \series bold
31246
31247 \backslash
31248 newcommand{
31249 \backslash
31250 gr}{
31251 \backslash
31252 Longrightarrow}
31253 \end_layout
31254
31255 \begin_layout Itemize
31256 To define the command 
31257 \series bold
31258
31259 \backslash
31260 us
31261 \series default
31262  for 
31263 \series bold
31264
31265 \backslash
31266 underline
31267 \series default
31268 , the argument (that should be underlined) must be taken into account.
31269  For this the preamble line is:
31270 \begin_inset VSpace medskip
31271 \end_inset
31272
31273
31274 \begin_inset Newline newline
31275 \end_inset
31276
31277
31278 \series bold
31279
31280 \backslash
31281 newcommand{
31282 \backslash
31283 us}[1]{
31284 \backslash
31285 underline{#1}}
31286 \series default
31287
31288 \begin_inset VSpace medskip
31289 \end_inset
31290
31291
31292 \begin_inset Newline newline
31293 \end_inset
31294
31295 The character 
31296 \series bold
31297 #
31298 \series default
31299  acts as argument placeholder, the 
31300 \series bold
31301 1
31302 \series default
31303  behind it denotes that it is the placeholder for the first argument.
31304 \end_layout
31305
31306 \begin_layout Itemize
31307 For 
31308 \series bold
31309
31310 \backslash
31311 framebox
31312 \series default
31313  one can e.
31314 \begin_inset space \thinspace{}
31315 \end_inset
31316
31317 g.
31318 \begin_inset space \space{}
31319 \end_inset
31320
31321 define the command 
31322 \series bold
31323
31324 \backslash
31325 fb
31326 \series default
31327 :
31328 \begin_inset VSpace medskip
31329 \end_inset
31330
31331
31332 \begin_inset Newline newline
31333 \end_inset
31334
31335
31336 \series bold
31337
31338 \backslash
31339 newcommand{
31340 \backslash
31341 fb}[3]{
31342 \backslash
31343 framebox#1#2{$#3$}}
31344 \series default
31345
31346 \begin_inset VSpace medskip
31347 \end_inset
31348
31349
31350 \begin_inset Newline newline
31351 \end_inset
31352
31353 The two Dollar signs creates the extra formula needed for 
31354 \series bold
31355
31356 \backslash
31357 framebox
31358 \series default
31359 , see 
31360 \begin_inset CommandInset ref
31361 LatexCommand ref
31362 reference "sub:Boxes-with-Frame"
31363
31364 \end_inset
31365
31366 .
31367 \end_layout
31368
31369 \begin_layout Itemize
31370 To create a new command for 
31371 \series bold
31372
31373 \backslash
31374 fcolorbox
31375 \series default
31376  where the color for the box needn't to be specified, the argument for the
31377  color is defined optional:
31378 \begin_inset VSpace medskip
31379 \end_inset
31380
31381
31382 \begin_inset Newline newline
31383 \end_inset
31384
31385
31386 \series bold
31387
31388 \backslash
31389 newcommand{
31390 \backslash
31391 cb}[3][white]{
31392 \backslash
31393 fcolorbox{#2}{#1}{$#3$}}
31394 \series default
31395
31396 \begin_inset VSpace medskip
31397 \end_inset
31398
31399
31400 \begin_inset Newline newline
31401 \end_inset
31402
31403 When the color is not specified when using 
31404 \series bold
31405
31406 \backslash
31407 cb
31408 \series default
31409 , the predefined color 
31410 \series bold
31411 white
31412 \series default
31413  will be used.
31414 \end_layout
31415
31416 \begin_layout Standard
31417 A test of the new defined commands:
31418 \end_layout
31419
31420 \begin_layout Standard
31421 \align center
31422 \begin_inset Tabular
31423 <lyxtabular version="3" rows="6" columns="2">
31424 <features>
31425 <column alignment="center" valignment="top" width="0">
31426 <column alignment="center" valignment="top" width="0">
31427 <row>
31428 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31429 \begin_inset Text
31430
31431 \begin_layout Plain Layout
31432 Command
31433 \end_layout
31434
31435 \end_inset
31436 </cell>
31437 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31438 \begin_inset Text
31439
31440 \begin_layout Plain Layout
31441 Result
31442 \begin_inset Note Note
31443 status collapsed
31444
31445 \begin_layout Plain Layout
31446
31447 \series bold
31448
31449 \backslash
31450 raisebox
31451 \series default
31452  is only used as spacer.
31453 \end_layout
31454
31455 \end_inset
31456
31457
31458 \end_layout
31459
31460 \end_inset
31461 </cell>
31462 </row>
31463 <row>
31464 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31465 \begin_inset Text
31466
31467 \begin_layout Plain Layout
31468 A
31469 \backslash
31470 gr
31471 \begin_inset ERT
31472 status collapsed
31473
31474 \begin_layout Plain Layout
31475
31476
31477 \backslash
31478 spce 
31479 \end_layout
31480
31481 \end_inset
31482
31483 B
31484 \end_layout
31485
31486 \end_inset
31487 </cell>
31488 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31489 \begin_inset Text
31490
31491 \begin_layout Plain Layout
31492 \begin_inset Formula $A\gr B$
31493 \end_inset
31494
31495
31496 \end_layout
31497
31498 \end_inset
31499 </cell>
31500 </row>
31501 <row>
31502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31503 \begin_inset Text
31504
31505 \begin_layout Plain Layout
31506
31507 \backslash
31508 us{ABcd
31509 \end_layout
31510
31511 \end_inset
31512 </cell>
31513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31514 \begin_inset Text
31515
31516 \begin_layout Plain Layout
31517 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
31518 \end_inset
31519
31520
31521 \end_layout
31522
31523 \end_inset
31524 </cell>
31525 </row>
31526 <row>
31527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31528 \begin_inset Text
31529
31530 \begin_layout Plain Layout
31531
31532 \backslash
31533 fb{[2cm]
31534 \begin_inset Formula $\to$
31535 \end_inset
31536
31537
31538 \backslash
31539 {
31540 \begin_inset Formula $\to$
31541 \end_inset
31542
31543
31544 \backslash
31545 {
31546 \backslash
31547 int
31548 \begin_inset ERT
31549 status collapsed
31550
31551 \begin_layout Plain Layout
31552
31553
31554 \backslash
31555 spce 
31556 \end_layout
31557
31558 \end_inset
31559
31560 A=B
31561 \end_layout
31562
31563 \end_inset
31564 </cell>
31565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31566 \begin_inset Text
31567
31568 \begin_layout Plain Layout
31569 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
31570 \end_inset
31571
31572
31573 \end_layout
31574
31575 \end_inset
31576 </cell>
31577 </row>
31578 <row>
31579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31580 \begin_inset Text
31581
31582 \begin_layout Plain Layout
31583
31584 \backslash
31585 cb{red
31586 \begin_inset Formula $\to$
31587 \end_inset
31588
31589
31590 \backslash
31591 {
31592 \backslash
31593 int
31594 \begin_inset ERT
31595 status collapsed
31596
31597 \begin_layout Plain Layout
31598
31599
31600 \backslash
31601 spce 
31602 \end_layout
31603
31604 \end_inset
31605
31606 A=B
31607 \end_layout
31608
31609 \end_inset
31610 </cell>
31611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31612 \begin_inset Text
31613
31614 \begin_layout Plain Layout
31615 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
31616 \end_inset
31617
31618
31619 \end_layout
31620
31621 \end_inset
31622 </cell>
31623 </row>
31624 <row>
31625 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31626 \begin_inset Text
31627
31628 \begin_layout Plain Layout
31629
31630 \backslash
31631 cb[green]
31632 \backslash
31633 {red
31634 \begin_inset Formula $\to$
31635 \end_inset
31636
31637
31638 \backslash
31639 {
31640 \backslash
31641 int
31642 \begin_inset ERT
31643 status collapsed
31644
31645 \begin_layout Plain Layout
31646
31647
31648 \backslash
31649 spce 
31650 \end_layout
31651
31652 \end_inset
31653
31654 A=B
31655 \end_layout
31656
31657 \end_inset
31658 </cell>
31659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31660 \begin_inset Text
31661
31662 \begin_layout Plain Layout
31663 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
31664 \end_inset
31665
31666
31667 \end_layout
31668
31669 \end_inset
31670 </cell>
31671 </row>
31672 </lyxtabular>
31673
31674 \end_inset
31675
31676
31677 \end_layout
31678
31679 \begin_layout Subsection
31680 Math Macros
31681 \begin_inset Index
31682 status collapsed
31683
31684 \begin_layout Plain Layout
31685 User-defined commands! Math macros
31686 \end_layout
31687
31688 \end_inset
31689
31690
31691 \begin_inset Index
31692 status collapsed
31693
31694 \begin_layout Plain Layout
31695 Macros
31696 \end_layout
31697
31698 \end_inset
31699
31700
31701 \end_layout
31702
31703 \begin_layout Standard
31704 User-defined commands are especially convenient for complex expressions.
31705  When you are for example dealing in a document with quadratic equations,
31706  the same solution type occurs several times.
31707  The general form of a quadratic equation is
31708 \begin_inset Formula \[
31709 0=\lambda^{2}+p\lambda+q\]
31710
31711 \end_inset
31712
31713 The general form of the solution is
31714 \begin_inset Formula \[
31715 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}\]
31716
31717 \end_inset
31718
31719
31720 \end_layout
31721
31722 \begin_layout Standard
31723 To define a command for the solution formula where only the three parameters
31724  
31725 \begin_inset Formula $\lambda$
31726 \end_inset
31727
31728
31729 \begin_inset Formula $p$
31730 \end_inset
31731
31732 , and 
31733 \begin_inset Formula $q$
31734 \end_inset
31735
31736  need to be specified and the index of 
31737 \begin_inset Formula $\lambda$
31738 \end_inset
31739
31740  can be given optionally, the LaTeX-preamble line is
31741 \begin_inset Newline newline
31742 \end_inset
31743
31744
31745 \series bold
31746
31747 \backslash
31748 newcommand{
31749 \backslash
31750 qG}[4][1,
31751 \backslash
31752 ,2]{#2_{#1}=-
31753 \backslash
31754 frac{#3}{2}
31755 \backslash
31756 pm
31757 \begin_inset Newline newline
31758 \end_inset
31759
31760
31761 \begin_inset ERT
31762 status collapsed
31763
31764 \begin_layout Plain Layout
31765
31766
31767 \backslash
31768 hphantom{
31769 \end_layout
31770
31771 \end_inset
31772
31773
31774 \backslash
31775 newcommand
31776 \begin_inset ERT
31777 status collapsed
31778
31779 \begin_layout Plain Layout
31780
31781 }
31782 \end_layout
31783
31784 \end_inset
31785
31786
31787 \backslash
31788 sqrt{
31789 \backslash
31790 frac{#3^{2}}{4}-#4}}
31791 \end_layout
31792
31793 \begin_layout Standard
31794 To create with this the solution formula, the command
31795 \begin_inset Newline newline
31796 \end_inset
31797
31798
31799 \series bold
31800
31801 \backslash
31802 qG{
31803 \backslash
31804 lambda
31805 \begin_inset Formula $\to$
31806 \end_inset
31807
31808
31809 \backslash
31810 {p
31811 \begin_inset Formula $\to$
31812 \end_inset
31813
31814
31815 \backslash
31816 {q
31817 \series default
31818  is inserted to a formula
31819 \series bold
31820 .
31821 \end_layout
31822
31823 \begin_layout Standard
31824 The definition of the new command is unintuitive because one has to know
31825  the schemes of all used LaTeX commands, e.
31826 \begin_inset space \thinspace{}
31827 \end_inset
31828
31829 g.
31830 \begin_inset space \space{}
31831 \end_inset
31832
31833 that a fraction is inserted in LaTeX as 
31834 \series bold
31835
31836 \backslash
31837 frac{numerator}{denominator}
31838 \series default
31839 .
31840  Furthermore one can easily forget a brace in the definition and cannot
31841  see in LyX what the new command is doing.
31842  To avoid these problems LyX offers the possibility to use math macros instead
31843  of the command 
31844 \series bold
31845
31846 \backslash
31847 newcommand
31848 \series default
31849 .
31850 \end_layout
31851
31852 \begin_layout Standard
31853 \begin_inset ERT
31854 status collapsed
31855
31856 \begin_layout Plain Layout
31857
31858
31859 \backslash
31860 ifxargs 
31861 \end_layout
31862
31863 \end_inset
31864
31865
31866 \begin_inset Note Note
31867 status open
31868
31869 \begin_layout Plain Layout
31870 The following table will only be displayed when the LaTeX-package 
31871 \series bold
31872 xargs
31873 \series default
31874  is installed.
31875 \end_layout
31876
31877 \end_inset
31878
31879
31880 \begin_inset Note Note
31881 status collapsed
31882
31883 \begin_layout Plain Layout
31884 xargs is default since TeXLive 2008, so this construct here can be deleted
31885  when TeXLive 2009 is out.
31886 \end_layout
31887
31888 \end_inset
31889
31890
31891 \end_layout
31892
31893 \begin_layout Standard
31894 A math macro is created by using the menu 
31895 \family sans
31896 Insert\SpecialChar \menuseparator
31897 Math\SpecialChar \menuseparator
31898 Macro
31899 \family default
31900  or the toolbar button 
31901 \begin_inset Graphics
31902         filename ../images/math-macro_newmacroname_newcommand.png
31903         scale 85
31904
31905 \end_inset
31906
31907 .
31908  The math macro toolbar appears together with the following box where the
31909  macro is defined:
31910 \begin_inset Newline newline
31911 \end_inset
31912
31913
31914 \begin_inset space \hspace*{\fill}
31915 \end_inset
31916
31917
31918 \begin_inset Graphics
31919         filename clipart/macrobox.png
31920
31921 \end_inset
31922
31923
31924 \begin_inset space \hspace*{\fill}
31925 \end_inset
31926
31927
31928 \begin_inset Newline newline
31929 \end_inset
31930
31931
31932 \begin_inset FormulaMacro
31933 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
31934 \end_inset
31935
31936
31937 \backslash
31938 newmacroname is the default name of the macro that should be changed to
31939  something sensible.
31940  The wanted formula is inserted in the first blue box.
31941  An argument placeholder is inserted with the command 
31942 \series bold
31943
31944 \backslash
31945 #argumentnumber
31946 \series default
31947 , e.
31948 \begin_inset space \thinspace{}
31949 \end_inset
31950
31951 g
31952 \begin_inset space \space{}
31953 \end_inset
31954
31955
31956 \series bold
31957
31958 \backslash
31959 #1
31960 \series default
31961  or by using the macro toolbar button 
31962 \begin_inset Graphics
31963         filename ../images/math-macro-add-param.png
31964         scale 85
31965
31966 \end_inset
31967
31968 .
31969  Argument placeholders are displayed red.
31970  Maximum 9 arguments are possible.
31971  Optional arguments are created with the toolbar button 
31972 \begin_inset Graphics
31973         filename ../images/math-macro-add-optional-param.png
31974         scale 85
31975
31976 \end_inset
31977
31978 .
31979  The first non-optional argument can be transformed to an optional one with
31980  the toolbar button 
31981 \begin_inset Graphics
31982         filename ../images/math-macro-make-optional.png
31983         scale 85
31984
31985 \end_inset
31986
31987 .
31988  In the second blue box the appearance of the macro in LyX can be defined.
31989  Normally you want to see it as it is defined, so the box is kept empty.
31990  But when you have created a macro that needs lot of space on the screen,
31991  you can insert in the box for example
31992 \begin_inset Newline newline
31993 \end_inset
31994
31995
31996 \series bold
31997 qG: 
31998 \backslash
31999 #1
32000 \series default
32001  
32002 \series bold
32003 ,
32004 \series default
32005  
32006 \series bold
32007
32008 \backslash
32009 #2
32010 \series default
32011  
32012 \series bold
32013 ,
32014 \series default
32015  
32016 \series bold
32017
32018 \backslash
32019 #3, 
32020 \backslash
32021 #4
32022 \begin_inset Newline newline
32023 \end_inset
32024
32025
32026 \series default
32027 For the macro only the arguments with the macro name in front of them will
32028  then be displayed in LyX, leading to a better overview.
32029  The formula appears in the output as defined in the first box.
32030 \begin_inset Newline newline
32031 \end_inset
32032
32033 The appearance of macros in formulas can furthermore be changed for single
32034  macros by setting the cursor in the macro and using the menu 
32035 \family sans
32036 View\SpecialChar \menuseparator
32037 (Un)fold
32038 \begin_inset space ~
32039 \end_inset
32040
32041 Math
32042 \begin_inset space ~
32043 \end_inset
32044
32045 Macro
32046 \family default
32047 .
32048 \end_layout
32049
32050 \begin_layout Standard
32051 To use a macro, the macro name is inserted as command to a formula, in our
32052  case 
32053 \series bold
32054
32055 \backslash
32056 qG
32057 \series default
32058 .
32059  Our macro looks in LyX like this:
32060 \begin_inset Newline newline
32061 \end_inset
32062
32063
32064 \begin_inset space \hspace*{\fill}
32065 \end_inset
32066
32067
32068 \begin_inset Graphics
32069         filename clipart/macrouse.png
32070
32071 \end_inset
32072
32073
32074 \begin_inset space \hspace*{\fill}
32075 \end_inset
32076
32077
32078 \begin_inset Newline newline
32079 \end_inset
32080
32081 Here is our macro example with the arguments 
32082 \begin_inset Formula $x$
32083 \end_inset
32084
32085
32086 \begin_inset Formula $\ln(x)$
32087 \end_inset
32088
32089 , and 
32090 \begin_inset Formula $B$
32091 \end_inset
32092
32093 :
32094 \end_layout
32095
32096 \begin_layout Standard
32097 \begin_inset Formula \[
32098 \qG x{\ln(x)}B\]
32099
32100 \end_inset
32101
32102
32103 \end_layout
32104
32105 \begin_layout Standard
32106 A math macro is transformed internally to a 
32107 \series bold
32108
32109 \backslash
32110 newcommand
32111 \series default
32112  command when exporting the document.
32113  The created 
32114 \series bold
32115
32116 \backslash
32117 newcommand
32118 \series default
32119  command is not placed in the LaTeX-preamble, therefore macros can only
32120  be used in formulas that are in the document below the macro definition
32121  box.
32122 \end_layout
32123
32124 \begin_layout Standard
32125 Math macros can also be directly be created from a 
32126 \series bold
32127
32128 \backslash
32129 newcommand
32130 \series default
32131  command.
32132  When writing for example the command
32133 \series bold
32134
32135 \begin_inset Newline newline
32136 \end_inset
32137
32138
32139 \backslash
32140 newcommand{
32141 \backslash
32142 larrow}[2]{
32143 \backslash
32144 xleftarrow[#2]{#1}}
32145 \begin_inset Newline newline
32146 \end_inset
32147
32148
32149 \series default
32150 in LyX as normal text, highlighting it completely and using then the shortcut
32151  
32152 \family sans
32153 Ctrl+M
32154 \family default
32155 , the command will be transformed to a math macro.
32156  Using this method you need to be careful that the 
32157 \series bold
32158
32159 \backslash
32160 newcommand
32161 \series default
32162  command is typed correctly, otherwise you get a faulty macro leading to
32163  LaTeX errors.
32164 \end_layout
32165
32166 \begin_layout Standard
32167 Math macros currently yet have the problem that further formulas in macro
32168  definitions are handled wrongly.
32169  Therefore the example 
32170 \series bold
32171
32172 \backslash
32173 fb
32174 \series default
32175  from 
32176 \begin_inset CommandInset ref
32177 LatexCommand ref
32178 reference "sub:The-Command-newcommand"
32179
32180 \end_inset
32181
32182  cannot be created as macro.
32183 \end_layout
32184
32185 \begin_layout Standard
32186 When the cursor is in a macro definition box, you will see the macro toolbar
32187  in LyX:
32188 \end_layout
32189
32190 \begin_layout Standard
32191 \begin_inset VSpace defskip
32192 \end_inset
32193
32194
32195 \end_layout
32196
32197 \begin_layout Standard
32198 \begin_inset Graphics
32199         filename clipart/MacroToolbar.png
32200
32201 \end_inset
32202
32203
32204 \begin_inset Index
32205 status collapsed
32206
32207 \begin_layout Plain Layout
32208 Macros ! Toolbar
32209 \end_layout
32210
32211 \end_inset
32212
32213
32214 \end_layout
32215
32216 \begin_layout Standard
32217 \begin_inset VSpace defskip
32218 \end_inset
32219
32220
32221 \end_layout
32222
32223 \begin_layout Standard
32224 The macro toolbar contains from left to right the following buttons:
32225 \end_layout
32226
32227 \begin_layout Standard
32228 \begin_inset VSpace defskip
32229 \end_inset
32230
32231
32232 \end_layout
32233
32234 \begin_layout Standard
32235 \begin_inset Tabular
32236 <lyxtabular version="3" rows="9" columns="2">
32237 <features islongtable="true">
32238 <column alignment="left" valignment="top" width="0">
32239 <column alignment="left" valignment="top" width="85col%">
32240 <row interlinespace="2.5mm">
32241 <cell alignment="center" valignment="top" usebox="none">
32242 \begin_inset Text
32243
32244 \begin_layout Plain Layout
32245 \begin_inset Graphics
32246         filename ../images/math-macro-remove-param.png
32247         BoundingBox 0bp 5bp 20bp 25bp
32248         rotateOrigin center
32249
32250 \end_inset
32251
32252
32253 \end_layout
32254
32255 \end_inset
32256 </cell>
32257 <cell alignment="center" valignment="top" usebox="none">
32258 \begin_inset Text
32259
32260 \begin_layout Plain Layout
32261
32262 \family sans
32263 Edit\SpecialChar \menuseparator
32264 Math\SpecialChar \menuseparator
32265 Macro
32266 \begin_inset space ~
32267 \end_inset
32268
32269 Definition\SpecialChar \menuseparator
32270 Remove Last Argument
32271 \end_layout
32272
32273 \end_inset
32274 </cell>
32275 </row>
32276 <row interlinespace="2.5mm">
32277 <cell alignment="center" valignment="top" usebox="none">
32278 \begin_inset Text
32279
32280 \begin_layout Plain Layout
32281 \begin_inset Graphics
32282         filename ../images/math-macro-add-param.png
32283         BoundingBox 0bp 5bp 20bp 25bp
32284         rotateOrigin center
32285
32286 \end_inset
32287
32288
32289 \end_layout
32290
32291 \end_inset
32292 </cell>
32293 <cell alignment="center" valignment="top" usebox="none">
32294 \begin_inset Text
32295
32296 \begin_layout Plain Layout
32297
32298 \family sans
32299 Edit\SpecialChar \menuseparator
32300 Math\SpecialChar \menuseparator
32301 Macro
32302 \begin_inset space ~
32303 \end_inset
32304
32305 Definition\SpecialChar \menuseparator
32306 Append Argument
32307 \end_layout
32308
32309 \end_inset
32310 </cell>
32311 </row>
32312 <row interlinespace="2.5mm">
32313 <cell alignment="center" valignment="top" usebox="none">
32314 \begin_inset Text
32315
32316 \begin_layout Plain Layout
32317 \begin_inset Graphics
32318         filename ../images/math-macro-make-optional.png
32319         BoundingBox 0bp 5bp 20bp 25bp
32320         rotateOrigin center
32321
32322 \end_inset
32323
32324
32325 \end_layout
32326
32327 \end_inset
32328 </cell>
32329 <cell alignment="center" valignment="top" usebox="none">
32330 \begin_inset Text
32331
32332 \begin_layout Plain Layout
32333
32334 \family sans
32335 Edit\SpecialChar \menuseparator
32336 Math\SpecialChar \menuseparator
32337 Macro
32338 \begin_inset space ~
32339 \end_inset
32340
32341 Definition\SpecialChar \menuseparator
32342 Make First Non-Optional into
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 Edit\SpecialChar \menuseparator
32360 Math\SpecialChar \menuseparator
32361 Macro
32362 \begin_inset space ~
32363 \end_inset
32364
32365 Definition\SpecialChar \menuseparator
32366
32367 \begin_inset ERT
32368 status collapsed
32369
32370 \begin_layout Plain Layout
32371
32372 }
32373 \end_layout
32374
32375 \end_inset
32376
32377 Optional Argument
32378 \end_layout
32379
32380 \end_inset
32381 </cell>
32382 </row>
32383 <row interlinespace="2.5mm">
32384 <cell alignment="center" valignment="top" usebox="none">
32385 \begin_inset Text
32386
32387 \begin_layout Plain Layout
32388 \begin_inset Graphics
32389         filename ../images/math-macro-make-nonoptional.png
32390         BoundingBox 0bp 5bp 20bp 25bp
32391         rotateOrigin center
32392
32393 \end_inset
32394
32395
32396 \end_layout
32397
32398 \end_inset
32399 </cell>
32400 <cell alignment="center" valignment="top" usebox="none">
32401 \begin_inset Text
32402
32403 \begin_layout Plain Layout
32404
32405 \family sans
32406 Edit\SpecialChar \menuseparator
32407 Math\SpecialChar \menuseparator
32408 Macro
32409 \begin_inset space ~
32410 \end_inset
32411
32412 Definition\SpecialChar \menuseparator
32413 Make Last Optional into
32414 \begin_inset Newline newline
32415 \end_inset
32416
32417
32418 \begin_inset ERT
32419 status collapsed
32420
32421 \begin_layout Plain Layout
32422
32423
32424 \backslash
32425 hphantom{
32426 \end_layout
32427
32428 \end_inset
32429
32430 Edit\SpecialChar \menuseparator
32431 Math\SpecialChar \menuseparator
32432 Macro
32433 \begin_inset space ~
32434 \end_inset
32435
32436 Definition\SpecialChar \menuseparator
32437
32438 \begin_inset ERT
32439 status collapsed
32440
32441 \begin_layout Plain Layout
32442
32443 }
32444 \end_layout
32445
32446 \end_inset
32447
32448 Non-Optional Argument
32449 \end_layout
32450
32451 \end_inset
32452 </cell>
32453 </row>
32454 <row interlinespace="2.5mm">
32455 <cell alignment="center" valignment="top" usebox="none">
32456 \begin_inset Text
32457
32458 \begin_layout Plain Layout
32459 \begin_inset Graphics
32460         filename ../images/math-macro-remove-optional-param.png
32461         BoundingBox 0bp 5bp 20bp 25bp
32462         rotateOrigin center
32463
32464 \end_inset
32465
32466
32467 \end_layout
32468
32469 \end_inset
32470 </cell>
32471 <cell alignment="center" valignment="top" usebox="none">
32472 \begin_inset Text
32473
32474 \begin_layout Plain Layout
32475
32476 \family sans
32477 Edit\SpecialChar \menuseparator
32478 Math\SpecialChar \menuseparator
32479 Macro
32480 \begin_inset space ~
32481 \end_inset
32482
32483 Definition\SpecialChar \menuseparator
32484 Remove Optional Argument
32485 \end_layout
32486
32487 \end_inset
32488 </cell>
32489 </row>
32490 <row interlinespace="2.5mm">
32491 <cell alignment="center" valignment="top" usebox="none">
32492 \begin_inset Text
32493
32494 \begin_layout Plain Layout
32495 \begin_inset Graphics
32496         filename ../images/math-macro-add-optional-param.png
32497         BoundingBox 0bp 5bp 20bp 25bp
32498         rotateOrigin center
32499
32500 \end_inset
32501
32502
32503 \end_layout
32504
32505 \end_inset
32506 </cell>
32507 <cell alignment="center" valignment="top" usebox="none">
32508 \begin_inset Text
32509
32510 \begin_layout Plain Layout
32511
32512 \family sans
32513 Edit\SpecialChar \menuseparator
32514 Math\SpecialChar \menuseparator
32515 Macro
32516 \begin_inset space ~
32517 \end_inset
32518
32519 Definition\SpecialChar \menuseparator
32520 Insert Optional Argument
32521 \end_layout
32522
32523 \end_inset
32524 </cell>
32525 </row>
32526 <row interlinespace="2.5mm">
32527 <cell alignment="center" valignment="top" usebox="none">
32528 \begin_inset Text
32529
32530 \begin_layout Plain Layout
32531 \begin_inset Graphics
32532         filename ../images/math-macro-remove-greedy-param.png
32533         BoundingBox 0bp 5bp 20bp 25bp
32534         rotateOrigin center
32535
32536 \end_inset
32537
32538
32539 \end_layout
32540
32541 \end_inset
32542 </cell>
32543 <cell alignment="center" valignment="top" usebox="none">
32544 \begin_inset Text
32545
32546 \begin_layout Plain Layout
32547
32548 \family sans
32549 Edit\SpecialChar \menuseparator
32550 Math\SpecialChar \menuseparator
32551 Macro
32552 \begin_inset space ~
32553 \end_inset
32554
32555 Definition\SpecialChar \menuseparator
32556 Remove Last Argument
32557 \begin_inset Newline newline
32558 \end_inset
32559
32560
32561 \begin_inset ERT
32562 status collapsed
32563
32564 \begin_layout Plain Layout
32565
32566
32567 \backslash
32568 hphantom{
32569 \end_layout
32570
32571 \end_inset
32572
32573 Edit\SpecialChar \menuseparator
32574 Math\SpecialChar \menuseparator
32575 Macro
32576 \begin_inset space ~
32577 \end_inset
32578
32579 Definition\SpecialChar \menuseparator
32580
32581 \begin_inset ERT
32582 status collapsed
32583
32584 \begin_layout Plain Layout
32585
32586 }
32587 \end_layout
32588
32589 \end_inset
32590
32591 Spitting Out To The Right
32592 \end_layout
32593
32594 \end_inset
32595 </cell>
32596 </row>
32597 <row interlinespace="2.5mm">
32598 <cell alignment="center" valignment="top" usebox="none">
32599 \begin_inset Text
32600
32601 \begin_layout Plain Layout
32602 \begin_inset Graphics
32603         filename ../images/math-macro-append-greedy-param.png
32604         BoundingBox 0bp 5bp 20bp 25bp
32605         rotateOrigin center
32606
32607 \end_inset
32608
32609
32610 \end_layout
32611
32612 \end_inset
32613 </cell>
32614 <cell alignment="center" valignment="top" usebox="none">
32615 \begin_inset Text
32616
32617 \begin_layout Plain Layout
32618
32619 \family sans
32620 Edit\SpecialChar \menuseparator
32621 Math\SpecialChar \menuseparator
32622 Macro
32623 \begin_inset space ~
32624 \end_inset
32625
32626 Definition\SpecialChar \menuseparator
32627 Append Argument
32628 \begin_inset Newline newline
32629 \end_inset
32630
32631
32632 \begin_inset ERT
32633 status collapsed
32634
32635 \begin_layout Plain Layout
32636
32637
32638 \backslash
32639 hphantom{
32640 \end_layout
32641
32642 \end_inset
32643
32644 Edit\SpecialChar \menuseparator
32645 Math\SpecialChar \menuseparator
32646 Macro
32647 \begin_inset space ~
32648 \end_inset
32649
32650 Definition\SpecialChar \menuseparator
32651
32652 \begin_inset ERT
32653 status collapsed
32654
32655 \begin_layout Plain Layout
32656
32657 }
32658 \end_layout
32659
32660 \end_inset
32661
32662 Eating From The Right
32663 \end_layout
32664
32665 \end_inset
32666 </cell>
32667 </row>
32668 <row interlinespace="2.5mm">
32669 <cell alignment="center" valignment="top" usebox="none">
32670 \begin_inset Text
32671
32672 \begin_layout Plain Layout
32673 \begin_inset Graphics
32674         filename ../images/math-macro-add-greedy-optional-param.png
32675         BoundingBox 0bp 5bp 20bp 25bp
32676         rotateOrigin center
32677
32678 \end_inset
32679
32680
32681 \end_layout
32682
32683 \end_inset
32684 </cell>
32685 <cell alignment="center" valignment="top" usebox="none">
32686 \begin_inset Text
32687
32688 \begin_layout Plain Layout
32689
32690 \family sans
32691 Edit\SpecialChar \menuseparator
32692 Math\SpecialChar \menuseparator
32693 Macro
32694 \begin_inset space ~
32695 \end_inset
32696
32697 Definition\SpecialChar \menuseparator
32698 Append Optional Argument
32699 \begin_inset Newline newline
32700 \end_inset
32701
32702
32703 \begin_inset ERT
32704 status collapsed
32705
32706 \begin_layout Plain Layout
32707
32708
32709 \backslash
32710 hphantom{
32711 \end_layout
32712
32713 \end_inset
32714
32715 Edit\SpecialChar \menuseparator
32716 Math\SpecialChar \menuseparator
32717 Macro
32718 \begin_inset space ~
32719 \end_inset
32720
32721 Definition\SpecialChar \menuseparator
32722
32723 \begin_inset ERT
32724 status collapsed
32725
32726 \begin_layout Plain Layout
32727
32728 }
32729 \end_layout
32730
32731 \end_inset
32732
32733 Eating From The Right
32734 \end_layout
32735
32736 \end_inset
32737 </cell>
32738 </row>
32739 </lyxtabular>
32740
32741 \end_inset
32742
32743
32744 \end_layout
32745
32746 \begin_layout Standard
32747 \begin_inset ERT
32748 status collapsed
32749
32750 \begin_layout Plain Layout
32751
32752
32753 \backslash
32754 else 
32755 \end_layout
32756
32757 \end_inset
32758
32759
32760 \begin_inset Note Note
32761 status open
32762
32763 \begin_layout Plain Layout
32764 The following will be displayed when the LaTeX-package 
32765 \series bold
32766 xargs
32767 \series default
32768  is not installed:
32769 \end_layout
32770
32771 \end_inset
32772
32773
32774 \end_layout
32775
32776 \begin_layout Standard
32777 You need to install the LaTeX-package 
32778 \series bold
32779 xargs
32780 \series default
32781  to see the rest of this subsection in the output.
32782 \end_layout
32783
32784 \begin_layout Standard
32785 \begin_inset ERT
32786 status collapsed
32787
32788 \begin_layout Plain Layout
32789
32790
32791 \backslash
32792 fi 
32793 \end_layout
32794
32795 \end_inset
32796
32797
32798 \end_layout
32799
32800 \begin_layout Standard
32801 \begin_inset Newpage newpage
32802 \end_inset
32803
32804
32805 \end_layout
32806
32807 \begin_layout Section
32808 Diagrams
32809 \end_layout
32810
32811 \begin_layout Standard
32812 LyX supports two types of commutative diagrams: 
32813 \series bold
32814 amscd
32815 \series default
32816  and 
32817 \series bold
32818 xymatrix
32819 \series default
32820  that are explained in the following.
32821 \end_layout
32822
32823 \begin_layout Subsection
32824 Amscd Diagrams
32825 \begin_inset Index
32826 status collapsed
32827
32828 \begin_layout Plain Layout
32829 Diagrams ! amscd
32830 \end_layout
32831
32832 \end_inset
32833
32834
32835 \end_layout
32836
32837 \begin_layout Standard
32838 Diagrams of this type visualize relations by vertical and horizontal lines
32839  or arrows:
32840 \begin_inset Formula \[
32841 \begin{CD}A@>>>B@>>>C\\
32842 @AAA@.@VVV\\
32843 F@<<<E@<<<D\end{CD}\]
32844
32845 \end_inset
32846
32847
32848 \end_layout
32849
32850 \begin_layout Standard
32851 To get them, the command 
32852 \series bold
32853
32854 \backslash
32855 CD
32856 \begin_inset Index
32857 status collapsed
32858
32859 \begin_layout Plain Layout
32860 Commands ! C ! 
32861 \backslash
32862 CD
32863 \end_layout
32864
32865 \end_inset
32866
32867
32868 \series default
32869  is inserted to a formula.
32870  A blue box appears with two dashed lines where further commands can be
32871  inserted.
32872  With 
32873 \begin_inset Info
32874 type  "shortcut"
32875 arg   "newline-insert newline"
32876 \end_inset
32877
32878  a new line is created.
32879  Horizontal relations are inserted in odd, vertical in even formula lines.
32880 \end_layout
32881
32882 \begin_layout Standard
32883 To create the relations there are the following commands:
32884 \end_layout
32885
32886 \begin_layout Itemize
32887
32888 \series bold
32889 @<<<
32890 \series default
32891  creates a left arrow, 
32892 \series bold
32893 @>>>
32894 \series default
32895  a right arrow, and 
32896 \series bold
32897 @=
32898 \series default
32899  a long equal sign
32900 \end_layout
32901
32902 \begin_layout Itemize
32903
32904 \series bold
32905 @AAA
32906 \series default
32907  creates an up arrow, 
32908 \series bold
32909 @VVV
32910 \series default
32911  an down arrow, and 
32912 \series bold
32913 @|
32914 \series default
32915  a vertical equal sign
32916 \end_layout
32917
32918 \begin_layout Itemize
32919
32920 \series bold
32921 @.
32922
32923 \series default
32924  is a placeholder for non-existent relations
32925 \end_layout
32926
32927 \begin_layout Standard
32928 All arrows can be labeled as follows:
32929 \end_layout
32930
32931 \begin_layout Itemize
32932 Is text inserted between the first and second < or >, resp., it is placed
32933  above the arrow.
32934  When it is inserted between the second and third one, it appears under
32935  the arrow.
32936 \end_layout
32937
32938 \begin_layout Itemize
32939 When text for vertical arrows is inserted between the first and second A
32940  or V, resp., it is placed left beside the arrow.
32941  When it is inserted between the second and third one, it appears right
32942  beside the arrow.
32943  If the text contains an A or V, these letters must be set into a TeX-brace.
32944 \end_layout
32945
32946 \begin_layout Standard
32947 As example a diagram with all possible relations:
32948 \end_layout
32949
32950 \begin_layout Standard
32951 \begin_inset Formula \[
32952 \begin{CD}A@>j>>B@>>k>C@=F\\
32953 @AmAA@.@VV{V}V@|\\
32954 D@<<j<E@>k>>F@=C\end{CD}\]
32955
32956 \end_inset
32957
32958
32959 \end_layout
32960
32961 \begin_layout Standard
32962 The command for this is:
32963 \begin_inset Newline newline
32964 \end_inset
32965
32966
32967 \series bold
32968
32969 \backslash
32970 CD
32971 \begin_inset ERT
32972 status collapsed
32973
32974 \begin_layout Plain Layout
32975
32976
32977 \backslash
32978 spce 
32979 \end_layout
32980
32981 \end_inset
32982
32983 A@>j>>B@>>k>C@=F Ctrl+Return
32984 \begin_inset Newline newline
32985 \end_inset
32986
32987
32988 \begin_inset ERT
32989 status collapsed
32990
32991 \begin_layout Plain Layout
32992
32993
32994 \backslash
32995 hphantom{
32996 \end_layout
32997
32998 \end_inset
32999
33000
33001 \backslash
33002 CD
33003 \begin_inset ERT
33004 status collapsed
33005
33006 \begin_layout Plain Layout
33007
33008
33009 \backslash
33010 spce 
33011 \end_layout
33012
33013 \end_inset
33014
33015
33016 \begin_inset ERT
33017 status collapsed
33018
33019 \begin_layout Plain Layout
33020
33021 }
33022 \end_layout
33023
33024 \end_inset
33025
33026 @AmAA@.@VV
33027 \backslash
33028 {V
33029 \series default
33030
33031 \begin_inset Formula $\to$
33032 \end_inset
33033
33034
33035 \series bold
33036 V@| Ctrl+Return
33037 \begin_inset Newline newline
33038 \end_inset
33039
33040
33041 \begin_inset ERT
33042 status collapsed
33043
33044 \begin_layout Plain Layout
33045
33046
33047 \backslash
33048 hphantom{
33049 \end_layout
33050
33051 \end_inset
33052
33053
33054 \backslash
33055 CD
33056 \begin_inset ERT
33057 status collapsed
33058
33059 \begin_layout Plain Layout
33060
33061
33062 \backslash
33063 spce 
33064 \end_layout
33065
33066 \end_inset
33067
33068
33069 \begin_inset ERT
33070 status collapsed
33071
33072 \begin_layout Plain Layout
33073
33074 }
33075 \end_layout
33076
33077 \end_inset
33078
33079 D@<<j<E@>k>>F@=C
33080 \end_layout
33081
33082 \begin_layout Subsection
33083 Xymatrix Diagrams
33084 \begin_inset Index
33085 status collapsed
33086
33087 \begin_layout Plain Layout
33088 Diagrams ! xymatrix
33089 \end_layout
33090
33091 \end_inset
33092
33093
33094 \end_layout
33095
33096 \begin_layout Standard
33097 To be able to use xymatrices, the LaTeX-package 
33098 \series bold
33099 xypic
33100 \series default
33101  must be installed.
33102  A xymatrix is created by inserting the command 
33103 \series bold
33104
33105 \backslash
33106 xymatrix
33107 \series default
33108  in a formula.
33109  Then you are able to add new matrix columns and rows like for normal matrices,
33110  see 
33111 \begin_inset CommandInset ref
33112 LatexCommand ref
33113 reference "sec:Matrices"
33114
33115 \end_inset
33116
33117 .
33118 \end_layout
33119
33120 \begin_layout Standard
33121 In contrary to amscd diagrams, xymatrices supports diagonal and curved arrows,
33122  and much more.
33123  All possibilities to create commutative diagrams and decorations are explained
33124  in detail in the 
33125 \emph on
33126 XY-pic manual
33127 \emph default
33128  that you find in the menu 
33129 \family sans
33130 Help\SpecialChar \menuseparator
33131 Specific
33132 \begin_inset space ~
33133 \end_inset
33134
33135 Manuals\SpecialChar \menuseparator
33136 XY-pic
33137 \begin_inset space ~
33138 \end_inset
33139
33140 Manual
33141 \family default
33142 .
33143 \end_layout
33144
33145 \begin_layout Standard
33146 \begin_inset Newpage newpage
33147 \end_inset
33148
33149
33150 \end_layout
33151
33152 \begin_layout Section
33153 Tips
33154 \begin_inset ERT
33155 status collapsed
33156
33157 \begin_layout Plain Layout
33158
33159
33160 \backslash
33161 texorpdfstring{
33162 \end_layout
33163
33164 \end_inset
33165
33166
33167 \begin_inset Foot
33168 status collapsed
33169
33170 \begin_layout Plain Layout
33171 Other useful math tips can be found in 
33172 \begin_inset CommandInset citation
33173 LatexCommand cite
33174 key "Voss"
33175
33176 \end_inset
33177
33178 .
33179 \end_layout
33180
33181 \end_inset
33182
33183
33184 \begin_inset ERT
33185 status collapsed
33186
33187 \begin_layout Plain Layout
33188
33189 }{}
33190 \end_layout
33191
33192 \end_inset
33193
33194
33195 \begin_inset Note Note
33196 status collapsed
33197
33198 \begin_layout Plain Layout
33199
33200 \backslash
33201 texorpdfstring is used to avoid that the footnote appears in the PDF-bookmark.
33202 \end_layout
33203
33204 \begin_layout Plain Layout
33205 More about 
33206 \backslash
33207 texorpdfstring is in section 
33208 \begin_inset CommandInset ref
33209 LatexCommand ref
33210 reference "sub:Formulas-in-Section"
33211
33212 \end_inset
33213
33214 .
33215 \end_layout
33216
33217 \end_inset
33218
33219
33220 \begin_inset Index
33221 status collapsed
33222
33223 \begin_layout Plain Layout
33224 Tips
33225 \end_layout
33226
33227 \end_inset
33228
33229
33230 \begin_inset Index
33231 status collapsed
33232
33233 \begin_layout Plain Layout
33234 Ions|see
33235 \begin_inset ERT
33236 status collapsed
33237
33238 \begin_layout Plain Layout
33239
33240 {
33241 \end_layout
33242
33243 \end_inset
33244
33245 Chemical characters
33246 \begin_inset ERT
33247 status collapsed
33248
33249 \begin_layout Plain Layout
33250
33251 }
33252 \end_layout
33253
33254 \end_inset
33255
33256
33257 \end_layout
33258
33259 \end_inset
33260
33261
33262 \end_layout
33263
33264 \begin_layout Subsection
33265 Chemical Symbols and Equations
33266 \begin_inset CommandInset label
33267 LatexCommand label
33268 name "sub:Chemical-Symbols-and"
33269
33270 \end_inset
33271
33272
33273 \begin_inset Index
33274 status collapsed
33275
33276 \begin_layout Plain Layout
33277 Chemical characters ! Symbols
33278 \end_layout
33279
33280 \end_inset
33281
33282
33283 \begin_inset Index
33284 status collapsed
33285
33286 \begin_layout Plain Layout
33287 Chemical equations
33288 \end_layout
33289
33290 \end_inset
33291
33292
33293 \begin_inset Index
33294 status collapsed
33295
33296 \begin_layout Plain Layout
33297 Symbols ! chemical
33298 \end_layout
33299
33300 \end_inset
33301
33302
33303 \end_layout
33304
33305 \begin_layout Standard
33306 An example text from chemistry:
33307 \end_layout
33308
33309 \begin_layout Quote
33310 The 
33311 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
33312 \end_inset
33313
33314 -ion reacts with two 
33315 \begin_inset Formula $\mathrm{Na^{+}}$
33316 \end_inset
33317
33318 -ions to sodium sulfate 
33319 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
33320 \end_inset
33321
33322 .
33323  The chemical equation for this is:
33324 \begin_inset Formula \[
33325 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\]
33326
33327 \end_inset
33328
33329
33330 \end_layout
33331
33332 \begin_layout Standard
33333 This chemical equation can directly be created as formula.
33334  To avoid that the symbols appear italic, everything is highlighted and
33335  changed by the shortcut 
33336 \begin_inset Info
33337 type  "shortcut"
33338 arg   "font-roman"
33339 \end_inset
33340
33341  to the upright font style.
33342 \begin_inset Foot
33343 status collapsed
33344
33345 \begin_layout Plain Layout
33346 font styles
33347 \series bold
33348  
33349 \series default
33350 see 
33351 \begin_inset CommandInset ref
33352 LatexCommand ref
33353 reference "sub:Font-Styles"
33354
33355 \end_inset
33356
33357
33358 \end_layout
33359
33360 \end_inset
33361
33362
33363 \end_layout
33364
33365 \begin_layout Subsection
33366 Negative Numbers
33367 \begin_inset Index
33368 status collapsed
33369
33370 \begin_layout Plain Layout
33371 Numbers ! negative
33372 \end_layout
33373
33374 \end_inset
33375
33376
33377 \end_layout
33378
33379 \begin_layout Standard
33380 Negative numbers often look ugly in formulas because the minus sign before
33381  the number is set with the same length as the minus operator sign.
33382  When writing the negative number in normal text, the minus sign appears
33383  correctly.
33384 \end_layout
33385
33386 \begin_layout Standard
33387 Thus, the problem disappears when converting the minus sign to mathematical
33388  text.
33389 \end_layout
33390
33391 \begin_layout Standard
33392 An example to visualize the problem:
33393 \end_layout
33394
33395 \begin_layout Standard
33396 \align center
33397 \begin_inset Tabular
33398 <lyxtabular version="3" rows="3" columns="2">
33399 <features>
33400 <column alignment="right" valignment="top" width="0">
33401 <column alignment="left" valignment="top" width="0">
33402 <row>
33403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33404 \begin_inset Text
33405
33406 \begin_layout Plain Layout
33407 normal text:
33408 \end_layout
33409
33410 \end_inset
33411 </cell>
33412 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
33413 \begin_inset Text
33414
33415 \begin_layout Plain Layout
33416 x = -2
33417 \end_layout
33418
33419 \end_inset
33420 </cell>
33421 </row>
33422 <row>
33423 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33424 \begin_inset Text
33425
33426 \begin_layout Plain Layout
33427 formula:
33428 \end_layout
33429
33430 \end_inset
33431 </cell>
33432 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
33433 \begin_inset Text
33434
33435 \begin_layout Plain Layout
33436 \begin_inset Formula $x=-2$
33437 \end_inset
33438
33439
33440 \end_layout
33441
33442 \end_inset
33443 </cell>
33444 </row>
33445 <row>
33446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33447 \begin_inset Text
33448
33449 \begin_layout Plain Layout
33450 solution:
33451 \end_layout
33452
33453 \end_inset
33454 </cell>
33455 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
33456 \begin_inset Text
33457
33458 \begin_layout Plain Layout
33459 \begin_inset Formula $x=\textrm{-}2$
33460 \end_inset
33461
33462
33463 \end_layout
33464
33465 \end_inset
33466 </cell>
33467 </row>
33468 </lyxtabular>
33469
33470 \end_inset
33471
33472
33473 \end_layout
33474
33475 \begin_layout Subsection
33476 Comma as decimal Separator
33477 \begin_inset Index
33478 status collapsed
33479
33480 \begin_layout Plain Layout
33481 Comma
33482 \end_layout
33483
33484 \end_inset
33485
33486
33487 \end_layout
33488
33489 \begin_layout Standard
33490 In LaTeX a comma inside a formula is used, according to the English convention,
33491  as number group separator.
33492  So there will be space added behind all commas in formulas.
33493 \end_layout
33494
33495 \begin_layout Standard
33496 To avoid this, the comma is highlighted and changed to mathematical text
33497  (shortcut 
33498 \begin_inset Info
33499 type  "shortcut"
33500 arg   "math-mode"
33501 \end_inset
33502
33503 ).
33504 \end_layout
33505
33506 \begin_layout Standard
33507 To use all formula commas in the document as decimal separator, the file
33508  
33509 \series bold
33510 icomma.sty
33511 \series default
33512
33513 \begin_inset Foot
33514 status collapsed
33515
33516 \begin_layout Plain Layout
33517
33518 \series bold
33519 icomma
33520 \series default
33521  is part of the LaTeX-package 
33522 \series bold
33523 was
33524 \series default
33525
33526 \begin_inset Index
33527 status collapsed
33528
33529 \begin_layout Plain Layout
33530 Packages ! was
33531 \begin_inset ERT
33532 status collapsed
33533
33534 \begin_layout Plain Layout
33535
33536
33537 \backslash
33538 vspace{4mm}
33539 \end_layout
33540
33541 \end_inset
33542
33543
33544 \end_layout
33545
33546 \end_inset
33547
33548 .
33549 \end_layout
33550
33551 \end_inset
33552
33553
33554 \begin_inset Index
33555 status collapsed
33556
33557 \begin_layout Plain Layout
33558 Packages ! icomma
33559 \end_layout
33560
33561 \end_inset
33562
33563  is loaded with the LaTeX-preamble line
33564 \end_layout
33565
33566 \begin_layout Standard
33567
33568 \series bold
33569
33570 \backslash
33571 usepackage{icomma}
33572 \end_layout
33573
33574 \begin_layout Subsection
33575 Physical Vectors
33576 \begin_inset CommandInset label
33577 LatexCommand label
33578 name "sub:Physical-Vectors"
33579
33580 \end_inset
33581
33582
33583 \begin_inset Index
33584 status collapsed
33585
33586 \begin_layout Plain Layout
33587 Vectors ! physical
33588 \end_layout
33589
33590 \end_inset
33591
33592
33593 \end_layout
33594
33595 \begin_layout Standard
33596 Predefined vectors are offered by the LaTeX-package 
33597 \series bold
33598 braket
33599 \series default
33600
33601 \begin_inset Foot
33602 status collapsed
33603
33604 \begin_layout Plain Layout
33605
33606 \series bold
33607 braket
33608 \series default
33609  should be part of every LaTeX standard installation.
33610 \end_layout
33611
33612 \end_inset
33613
33614
33615 \begin_inset Index
33616 status collapsed
33617
33618 \begin_layout Plain Layout
33619 Packages ! braket
33620 \end_layout
33621
33622 \end_inset
33623
33624  that is loaded with the LaTeX-preamble line
33625 \end_layout
33626
33627 \begin_layout Standard
33628
33629 \series bold
33630
33631 \backslash
33632 usepackage{braket}
33633 \end_layout
33634
33635 \begin_layout Standard
33636 \begin_inset ERT
33637 status collapsed
33638
33639 \begin_layout Plain Layout
33640
33641
33642 \backslash
33643 ifbraket 
33644 \end_layout
33645
33646 \end_inset
33647
33648
33649 \begin_inset Note Note
33650 status open
33651
33652 \begin_layout Plain Layout
33653 The following table will only be displayed when the LaTeX-package 
33654 \series bold
33655 braket
33656 \series default
33657  is installed.
33658 \end_layout
33659
33660 \end_inset
33661
33662 The following commands are defined:
33663 \end_layout
33664
33665 \begin_layout Standard
33666 \align center
33667 \begin_inset Tabular
33668 <lyxtabular version="3" rows="4" columns="2">
33669 <features>
33670 <column alignment="center" valignment="top" width="0">
33671 <column alignment="center" valignment="top" width="0">
33672 <row>
33673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33674 \begin_inset Text
33675
33676 \begin_layout Plain Layout
33677 Command
33678 \end_layout
33679
33680 \end_inset
33681 </cell>
33682 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33683 \begin_inset Text
33684
33685 \begin_layout Plain Layout
33686 Result
33687 \end_layout
33688
33689 \end_inset
33690 </cell>
33691 </row>
33692 <row>
33693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33694 \begin_inset Text
33695
33696 \begin_layout Plain Layout
33697
33698 \backslash
33699 Bra{
33700 \backslash
33701 psi
33702 \end_layout
33703
33704 \end_inset
33705 </cell>
33706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33707 \begin_inset Text
33708
33709 \begin_layout Plain Layout
33710 \begin_inset Formula $\Bra{\psi}$
33711 \end_inset
33712
33713
33714 \end_layout
33715
33716 \end_inset
33717 </cell>
33718 </row>
33719 <row>
33720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33721 \begin_inset Text
33722
33723 \begin_layout Plain Layout
33724
33725 \backslash
33726 Ket{
33727 \backslash
33728 psi
33729 \end_layout
33730
33731 \end_inset
33732 </cell>
33733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33734 \begin_inset Text
33735
33736 \begin_layout Plain Layout
33737 \begin_inset Formula $\Ket{\psi}$
33738 \end_inset
33739
33740
33741 \end_layout
33742
33743 \end_inset
33744 </cell>
33745 </row>
33746 <row>
33747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33748 \begin_inset Text
33749
33750 \begin_layout Plain Layout
33751
33752 \backslash
33753 Braket{
33754 \backslash
33755 psi|
33756 \backslash
33757 phi
33758 \end_layout
33759
33760 \end_inset
33761 </cell>
33762 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33763 \begin_inset Text
33764
33765 \begin_layout Plain Layout
33766 \begin_inset Formula $\Braket{\psi|\phi}$
33767 \end_inset
33768
33769
33770 \end_layout
33771
33772 \end_inset
33773 </cell>
33774 </row>
33775 </lyxtabular>
33776
33777 \end_inset
33778
33779
33780 \end_layout
33781
33782 \begin_layout Standard
33783 The command 
33784 \series bold
33785
33786 \backslash
33787 Braket
33788 \series default
33789  assures that all vertical bars are set in the size of the surrounding brackets:
33790 \begin_inset Formula \[
33791 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
33792
33793 \end_inset
33794
33795
33796 \begin_inset ERT
33797 status collapsed
33798
33799 \begin_layout Plain Layout
33800
33801
33802 \backslash
33803 else 
33804 \end_layout
33805
33806 \end_inset
33807
33808
33809 \begin_inset Note Note
33810 status open
33811
33812 \begin_layout Plain Layout
33813 The following will be displayed when the LaTeX-package 
33814 \series bold
33815 braket
33816 \series default
33817  is not installed:
33818 \end_layout
33819
33820 \end_inset
33821
33822
33823 \end_layout
33824
33825 \begin_layout Standard
33826 You need to install the LaTeX-package 
33827 \series bold
33828 braket
33829 \series default
33830  to see the rest of this subsection in the output.
33831 \end_layout
33832
33833 \begin_layout Standard
33834 \begin_inset ERT
33835 status collapsed
33836
33837 \begin_layout Plain Layout
33838
33839
33840 \backslash
33841 fi 
33842 \end_layout
33843
33844 \end_inset
33845
33846
33847 \end_layout
33848
33849 \begin_layout Standard
33850 The effect of 
33851 \series bold
33852
33853 \backslash
33854 Braket
33855 \series default
33856  can also be achieved using the command 
33857 \series bold
33858
33859 \backslash
33860 middle
33861 \series default
33862 , that is described in 
33863 \begin_inset CommandInset ref
33864 LatexCommand ref
33865 reference "sub:Automatic-Bracket-Size"
33866
33867 \end_inset
33868
33869 .
33870 \end_layout
33871
33872 \begin_layout Subsection
33873 Self-defined Fractions
33874 \begin_inset CommandInset label
33875 LatexCommand label
33876 name "sub:Self-defined-Fractions"
33877
33878 \end_inset
33879
33880
33881 \begin_inset Index
33882 status collapsed
33883
33884 \begin_layout Plain Layout
33885 Fractions ! self-defined
33886 \end_layout
33887
33888 \end_inset
33889
33890
33891 \end_layout
33892
33893 \begin_layout Standard
33894 To define custom commands for fractions, the command 
33895 \series bold
33896
33897 \backslash
33898 genfrac
33899 \series default
33900
33901 \begin_inset Index
33902 status collapsed
33903
33904 \begin_layout Plain Layout
33905 Commands ! G ! 
33906 \backslash
33907 genfrac
33908 \end_layout
33909
33910 \end_inset
33911
33912  is used in the following scheme:
33913 \end_layout
33914
33915 \begin_layout Standard
33916
33917 \series bold
33918
33919 \backslash
33920 genfrac{left
33921 \series default
33922  
33923 \series bold
33924 bracket}{right
33925 \series default
33926  
33927 \series bold
33928 bracket}{fraction bar thickness}{style}
33929 \begin_inset Newline newline
33930 \end_inset
33931
33932
33933 \begin_inset ERT
33934 status collapsed
33935
33936 \begin_layout Plain Layout
33937
33938
33939 \backslash
33940 phantom{
33941 \end_layout
33942
33943 \end_inset
33944
33945
33946 \backslash
33947 genfrac
33948 \begin_inset ERT
33949 status collapsed
33950
33951 \begin_layout Plain Layout
33952
33953 }
33954 \end_layout
33955
33956 \end_inset
33957
33958 {numerator}{denominator}
33959 \end_layout
33960
33961 \begin_layout Standard
33962 The style is a number in the range of 0
33963 \begin_inset space \thinspace{}
33964 \end_inset
33965
33966 -
33967 \begin_inset space \thinspace{}
33968 \end_inset
33969
33970 3.
33971 \end_layout
33972
33973 \begin_layout Standard
33974 \align center
33975 \begin_inset Tabular
33976 <lyxtabular version="3" rows="5" columns="2">
33977 <features>
33978 <column alignment="center" valignment="top" width="0">
33979 <column alignment="center" valignment="top" width="0">
33980 <row>
33981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33982 \begin_inset Text
33983
33984 \begin_layout Plain Layout
33985 Number
33986 \end_layout
33987
33988 \end_inset
33989 </cell>
33990 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33991 \begin_inset Text
33992
33993 \begin_layout Plain Layout
33994 Style (Size)
33995 \end_layout
33996
33997 \end_inset
33998 </cell>
33999 </row>
34000 <row>
34001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34002 \begin_inset Text
34003
34004 \begin_layout Plain Layout
34005 0
34006 \end_layout
34007
34008 \end_inset
34009 </cell>
34010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34011 \begin_inset Text
34012
34013 \begin_layout Plain Layout
34014 display style formula
34015 \end_layout
34016
34017 \end_inset
34018 </cell>
34019 </row>
34020 <row>
34021 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34022 \begin_inset Text
34023
34024 \begin_layout Plain Layout
34025 1
34026 \end_layout
34027
34028 \end_inset
34029 </cell>
34030 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34031 \begin_inset Text
34032
34033 \begin_layout Plain Layout
34034 inline formula
34035 \end_layout
34036
34037 \end_inset
34038 </cell>
34039 </row>
34040 <row>
34041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34042 \begin_inset Text
34043
34044 \begin_layout Plain Layout
34045 2
34046 \end_layout
34047
34048 \end_inset
34049 </cell>
34050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34051 \begin_inset Text
34052
34053 \begin_layout Plain Layout
34054 small
34055 \end_layout
34056
34057 \end_inset
34058 </cell>
34059 </row>
34060 <row>
34061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34062 \begin_inset Text
34063
34064 \begin_layout Plain Layout
34065 3
34066 \end_layout
34067
34068 \end_inset
34069 </cell>
34070 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34071 \begin_inset Text
34072
34073 \begin_layout Plain Layout
34074 tiny
34075 \end_layout
34076
34077 \end_inset
34078 </cell>
34079 </row>
34080 </lyxtabular>
34081
34082 \end_inset
34083
34084
34085 \end_layout
34086
34087 \begin_layout Standard
34088 When no style is given, the size is adjusted to the surrounding environment
34089  like for the command 
34090 \series bold
34091
34092 \backslash
34093 frac
34094 \series default
34095 .
34096 \end_layout
34097
34098 \begin_layout Standard
34099 When no fraction bar thickness is given, the predefined value of 0.4
34100 \begin_inset space \thinspace{}
34101 \end_inset
34102
34103 pt will be used.
34104 \end_layout
34105
34106 \begin_layout Standard
34107 \begin_inset VSpace medskip
34108 \end_inset
34109
34110 For example, the commands 
34111 \series bold
34112
34113 \backslash
34114 dfrac
34115 \series default
34116  and 
34117 \series bold
34118
34119 \backslash
34120 tbinom
34121 \series default
34122  from 
34123 \begin_inset CommandInset ref
34124 LatexCommand ref
34125 reference "sub:Fractions"
34126
34127 \end_inset
34128
34129  are defined with the commands
34130 \end_layout
34131
34132 \begin_layout Standard
34133
34134 \series bold
34135
34136 \backslash
34137 newcommand{
34138 \backslash
34139 dfrac}[2]{
34140 \backslash
34141 genfrac{}{}{}{0}{#1}{#2}}
34142 \end_layout
34143
34144 \begin_layout Standard
34145 and
34146 \end_layout
34147
34148 \begin_layout Standard
34149
34150 \series bold
34151
34152 \backslash
34153 newcommand{
34154 \backslash
34155 tbinom}[2]{
34156 \backslash
34157 genfrac{(}{)}{0pt}{1}{#1}{#2}}
34158 \end_layout
34159
34160 \begin_layout Standard
34161 \begin_inset VSpace medskip
34162 \end_inset
34163
34164 To define a fraction where the fraction bar thickness can be given as optional
34165  argument, the following line is inserted to the LaTeX-preamble:
34166 \end_layout
34167
34168 \begin_layout Standard
34169
34170 \series bold
34171
34172 \backslash
34173 newcommand{
34174 \backslash
34175 fracS}[3][]{
34176 \backslash
34177 genfrac{}{}{#1}{}{#2}{#3}}
34178 \end_layout
34179
34180 \begin_layout Standard
34181 A test:
34182 \begin_inset Formula \begin{align*}
34183 \text{Command} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
34184 \text{Result} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}\end{align*}
34185
34186 \end_inset
34187
34188 As one can see, the distance of the numerator and the denominator to the
34189  fraction bar is round about three times the bar thickness.
34190 \end_layout
34191
34192 \begin_layout Subsection
34193 Canceled Formulas
34194 \begin_inset Index
34195 status collapsed
34196
34197 \begin_layout Plain Layout
34198 Formula ! canceled
34199 \end_layout
34200
34201 \end_inset
34202
34203
34204 \end_layout
34205
34206 \begin_layout Standard
34207 To cancel formulas or formula parts, the LaTeX-package 
34208 \series bold
34209 cancel
34210 \series default
34211
34212 \begin_inset Foot
34213 status collapsed
34214
34215 \begin_layout Plain Layout
34216
34217 \series bold
34218 cancel
34219 \series default
34220  is part of every LaTeX standard installation.
34221 \end_layout
34222
34223 \end_inset
34224
34225
34226 \begin_inset Index
34227 status collapsed
34228
34229 \begin_layout Plain Layout
34230 Packages ! cancel
34231 \end_layout
34232
34233 \end_inset
34234
34235  has to be loaded with the LaTeX-preamble line
34236 \end_layout
34237
34238 \begin_layout Standard
34239
34240 \series bold
34241
34242 \backslash
34243 usepackage[samesize]{cancel}
34244 \end_layout
34245
34246 \begin_layout Standard
34247 There are four ways to cancel formulas:
34248 \end_layout
34249
34250 \begin_layout Standard
34251 \align center
34252 \begin_inset Tabular
34253 <lyxtabular version="3" rows="5" columns="2">
34254 <features>
34255 <column alignment="center" valignment="top" width="0">
34256 <column alignment="center" valignment="top" width="0">
34257 <row>
34258 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34259 \begin_inset Text
34260
34261 \begin_layout Plain Layout
34262 Command
34263 \end_layout
34264
34265 \end_inset
34266 </cell>
34267 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34268 \begin_inset Text
34269
34270 \begin_layout Plain Layout
34271 Result
34272 \begin_inset Note Note
34273 status collapsed
34274
34275 \begin_layout Plain Layout
34276 The space and
34277 \series bold
34278  
34279 \backslash
34280 raisebox
34281 \series default
34282  are used here as spacer.
34283 \end_layout
34284
34285 \end_inset
34286
34287
34288 \end_layout
34289
34290 \end_inset
34291 </cell>
34292 </row>
34293 <row>
34294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34295 \begin_inset Text
34296
34297 \begin_layout Plain Layout
34298
34299 \backslash
34300 cancel{
34301 \backslash
34302 int
34303 \begin_inset ERT
34304 status collapsed
34305
34306 \begin_layout Plain Layout
34307
34308
34309 \backslash
34310 spce 
34311 \end_layout
34312
34313 \end_inset
34314
34315 A=B
34316 \end_layout
34317
34318 \end_inset
34319 </cell>
34320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34321 \begin_inset Text
34322
34323 \begin_layout Plain Layout
34324 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
34325 \end_inset
34326
34327
34328 \end_layout
34329
34330 \end_inset
34331 </cell>
34332 </row>
34333 <row>
34334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34335 \begin_inset Text
34336
34337 \begin_layout Plain Layout
34338
34339 \backslash
34340 bcancel{
34341 \backslash
34342 int
34343 \begin_inset ERT
34344 status collapsed
34345
34346 \begin_layout Plain Layout
34347
34348
34349 \backslash
34350 spce 
34351 \end_layout
34352
34353 \end_inset
34354
34355 A=B
34356 \end_layout
34357
34358 \end_inset
34359 </cell>
34360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34361 \begin_inset Text
34362
34363 \begin_layout Plain Layout
34364 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
34365 \end_inset
34366
34367
34368 \end_layout
34369
34370 \end_inset
34371 </cell>
34372 </row>
34373 <row>
34374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34375 \begin_inset Text
34376
34377 \begin_layout Plain Layout
34378
34379 \backslash
34380 xcancel{
34381 \backslash
34382 int
34383 \begin_inset ERT
34384 status collapsed
34385
34386 \begin_layout Plain Layout
34387
34388
34389 \backslash
34390 spce 
34391 \end_layout
34392
34393 \end_inset
34394
34395 A=B
34396 \end_layout
34397
34398 \end_inset
34399 </cell>
34400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34401 \begin_inset Text
34402
34403 \begin_layout Plain Layout
34404 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
34405 \end_inset
34406
34407
34408 \end_layout
34409
34410 \end_inset
34411 </cell>
34412 </row>
34413 <row>
34414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34415 \begin_inset Text
34416
34417 \begin_layout Plain Layout
34418
34419 \backslash
34420 cancelto{1
34421 \begin_inset Formula $\to$
34422 \end_inset
34423
34424
34425 \backslash
34426 {
34427 \backslash
34428 int
34429 \begin_inset ERT
34430 status collapsed
34431
34432 \begin_layout Plain Layout
34433
34434
34435 \backslash
34436 spce 
34437 \end_layout
34438
34439 \end_inset
34440
34441 A=B
34442 \end_layout
34443
34444 \end_inset
34445 </cell>
34446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34447 \begin_inset Text
34448
34449 \begin_layout Plain Layout
34450 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
34451 \end_inset
34452
34453
34454 \end_layout
34455
34456 \end_inset
34457 </cell>
34458 </row>
34459 </lyxtabular>
34460
34461 \end_inset
34462
34463
34464 \end_layout
34465
34466 \begin_layout Standard
34467
34468 \series bold
34469
34470 \backslash
34471 cancelto
34472 \series default
34473  is especially suitable to visualize the reduction of fractions within formulas:
34474 \begin_inset Formula \[
34475 \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}}}\]
34476
34477 \end_inset
34478
34479
34480 \end_layout
34481
34482 \begin_layout Subsection
34483 Formulas in Section Headings
34484 \begin_inset CommandInset label
34485 LatexCommand label
34486 name "sub:Formulas-in-Section"
34487
34488 \end_inset
34489
34490
34491 \begin_inset Index
34492 status collapsed
34493
34494 \begin_layout Plain Layout
34495 Formula ! in section headings
34496 \end_layout
34497
34498 \end_inset
34499
34500
34501 \end_layout
34502
34503 \begin_layout Standard
34504 When formulas are used in section headings, the following has to be taken
34505  into account:
34506 \end_layout
34507
34508 \begin_layout Standard
34509 \begin_inset Note Greyedout
34510 status open
34511
34512 \begin_layout Plain Layout
34513 When 
34514 \series bold
34515 hyperref
34516 \series default
34517
34518 \begin_inset Index
34519 status collapsed
34520
34521 \begin_layout Plain Layout
34522 Packages ! hyperref
34523 \end_layout
34524
34525 \end_inset
34526
34527  support is enabled in the document settings dialog under 
34528 \family sans
34529 PDF
34530 \begin_inset space ~
34531 \end_inset
34532
34533 Properties
34534 \family default
34535 , PDF-bookmarks are created for every section heading in the table of contents.
34536  If a section heading contains formulas, they are incorrectly displayed
34537  in the bookmark text, because formulas in bookmarks infringe the PDF convention
34538 s.
34539 \end_layout
34540
34541 \end_inset
34542
34543
34544 \end_layout
34545
34546 \begin_layout Standard
34547 Both problems can be solved by inserting at the end of the section heading
34548  a short title with the menu 
34549 \family sans
34550 Insert\SpecialChar \menuseparator
34551 Short
34552 \begin_inset space ~
34553 \end_inset
34554
34555 Title
34556 \family default
34557 .
34558  Short titles are used as alternative for multiline section headings to
34559  keep the table of contents clearly arranged.
34560  Only the short title appears in the table of contents and therefore also
34561  in the PDF-bookmark.
34562 \end_layout
34563
34564 \begin_layout Standard
34565 When formulas should be used in the table of contents but 
34566 \series bold
34567 hyperref
34568 \series default
34569  is used, one can use the following command in TeX-mode:
34570 \end_layout
34571
34572 \begin_layout Standard
34573
34574 \series bold
34575
34576 \backslash
34577 texorpdfstring{part}{alternative}
34578 \begin_inset Index
34579 status collapsed
34580
34581 \begin_layout Plain Layout
34582 Commands ! T ! 
34583 \backslash
34584 texorpdfstring
34585 \end_layout
34586
34587 \end_inset
34588
34589
34590 \end_layout
34591
34592 \begin_layout Standard
34593 Part is the part of the heading that shouldn't appear in the PDF-bookmark.
34594  This can be characters, formulas, footnotes, but also cross-references.
34595  The alternative is used instead of the part for the bookmark.
34596 \end_layout
34597
34598 \begin_layout Standard
34599 Here are two example headings:
34600 \begin_inset VSpace -3mm
34601 \end_inset
34602
34603
34604 \begin_inset ERT
34605 status collapsed
34606
34607 \begin_layout Plain Layout
34608
34609
34610 \backslash
34611 boldmath 
34612 \end_layout
34613
34614 \end_inset
34615
34616
34617 \end_layout
34618
34619 \begin_layout Subsubsection
34620 Heading without formula in table of contents 
34621 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
34622 \end_inset
34623
34624
34625 \begin_inset OptArg
34626 status collapsed
34627
34628 \begin_layout Plain Layout
34629 Heading without formula in table of contents
34630 \end_layout
34631
34632 \end_inset
34633
34634
34635 \end_layout
34636
34637 \begin_layout Subsubsection
34638 Heading with formula in table of contents
34639 \begin_inset ERT
34640 status collapsed
34641
34642 \begin_layout Plain Layout
34643
34644
34645 \backslash
34646 texorpdfstring{
34647 \end_layout
34648
34649 \end_inset
34650
34651  
34652 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
34653 \end_inset
34654
34655
34656 \begin_inset ERT
34657 status collapsed
34658
34659 \begin_layout Plain Layout
34660
34661 }{}
34662 \end_layout
34663
34664 \end_inset
34665
34666
34667 \end_layout
34668
34669 \begin_layout Standard
34670 \begin_inset ERT
34671 status collapsed
34672
34673 \begin_layout Plain Layout
34674
34675
34676 \backslash
34677 unboldmath 
34678 \end_layout
34679
34680 \end_inset
34681
34682 In the first heading a short title was used, in the second one 
34683 \series bold
34684
34685 \backslash
34686 texorpdfstring
34687 \series default
34688 .
34689 \end_layout
34690
34691 \begin_layout Standard
34692 To get the same formatting as for the other headings, the complete heading
34693  was set into a 
34694 \series bold
34695 boldmath
34696 \series default
34697  environment
34698 \begin_inset Foot
34699 status collapsed
34700
34701 \begin_layout Plain Layout
34702 see 
34703 \begin_inset CommandInset ref
34704 LatexCommand ref
34705 reference "sub:Bold-Formulas"
34706
34707 \end_inset
34708
34709
34710 \end_layout
34711
34712 \end_inset
34713
34714 .
34715 \end_layout
34716
34717 \begin_layout Subsection
34718 Formulas in multi-column Text
34719 \begin_inset Index
34720 status collapsed
34721
34722 \begin_layout Plain Layout
34723 Formula ! in multi-column text
34724 \end_layout
34725
34726 \end_inset
34727
34728
34729 \end_layout
34730
34731 \begin_layout Standard
34732 Formulas in multi-column text are often too wide to fit into a column and
34733  thus need to be set over the whole page width.
34734  This is done by using the LaTeX-package 
34735 \series bold
34736 multicol
34737 \series default
34738
34739 \begin_inset Foot
34740 status collapsed
34741
34742 \begin_layout Plain Layout
34743
34744 \series bold
34745 multicol
34746 \series default
34747  is part of every LaTeX standard installation.
34748 \end_layout
34749
34750 \end_inset
34751
34752
34753 \begin_inset Index
34754 status collapsed
34755
34756 \begin_layout Plain Layout
34757 Packages ! multicol
34758 \end_layout
34759
34760 \end_inset
34761
34762 , that is loaded with the LaTeX-preamble line
34763 \end_layout
34764
34765 \begin_layout Standard
34766
34767 \series bold
34768
34769 \backslash
34770 usepackage{multicol}
34771 \end_layout
34772
34773 \begin_layout Standard
34774 \begin_inset Note Greyedout
34775 status open
34776
34777 \begin_layout Plain Layout
34778 Note herby that the setting 
34779 \family sans
34780 Two-column
34781 \begin_inset space ~
34782 \end_inset
34783
34784 document
34785 \family default
34786  in the menu 
34787 \family sans
34788 Document\SpecialChar \menuseparator
34789 Settings
34790 \family default
34791  under 
34792 \family sans
34793 Text
34794 \begin_inset space ~
34795 \end_inset
34796
34797 Layout
34798 \family default
34799 \emph on
34800  
34801 \emph default
34802 must 
34803 \emph on
34804 not
34805 \emph default
34806  be selected.
34807 \end_layout
34808
34809 \end_inset
34810
34811
34812 \end_layout
34813
34814 \begin_layout Standard
34815 Before the multi-column text the command
34816 \end_layout
34817
34818 \begin_layout Standard
34819
34820 \series bold
34821
34822 \backslash
34823 begin{multicols}{column number}
34824 \end_layout
34825
34826 \begin_layout Standard
34827 is written in TeX-mode.
34828  The column number is a number in the range of 2
34829 \begin_inset space \thinspace{}
34830 \end_inset
34831
34832 -
34833 \begin_inset space \thinspace{}
34834 \end_inset
34835
34836 10.
34837  Before the formula the multi-column text is ended by inserting the command
34838 \end_layout
34839
34840 \begin_layout Standard
34841
34842 \series bold
34843
34844 \backslash
34845 end{multicols}
34846 \end_layout
34847
34848 \begin_layout Standard
34849 in TeX-mode.
34850 \end_layout
34851
34852 \begin_layout Standard
34853 Due to the command some space is automatically added before the formula.
34854  To revert this, -6
34855 \begin_inset space \thinspace{}
34856 \end_inset
34857
34858 mm vertical space is inserted before the formula.
34859  When the formula style 
34860 \series bold
34861 Indented
34862 \begin_inset Foot
34863 status collapsed
34864
34865 \begin_layout Plain Layout
34866 formula styles see 
34867 \begin_inset CommandInset ref
34868 LatexCommand ref
34869 reference "sec:Formula-Styles"
34870
34871 \end_inset
34872
34873
34874 \end_layout
34875
34876 \end_inset
34877
34878
34879 \series default
34880  is used, -9
34881 \begin_inset space \thinspace{}
34882 \end_inset
34883
34884 mm space is inserted instead.
34885 \end_layout
34886
34887 \begin_layout Standard
34888 As example a multi-column text with a displayed formula:
34889 \end_layout
34890
34891 \begin_layout Standard
34892 \begin_inset ERT
34893 status collapsed
34894
34895 \begin_layout Plain Layout
34896
34897
34898 \backslash
34899 begin{multicols}{2}
34900 \end_layout
34901
34902 \end_inset
34903
34904 Das Spektrum wird fouriertransformiert.
34905  the Fouriertransformation wird verwendet, um the überlagerten Signale (Netzwerk
34906 , Lösungsmittel) zu trennen.
34907  Nachdem wir the Phasenverschiebung bestimmen konnten, interessiert uns
34908  nun das Aussehen des Ausgangssignals.
34909  Im Experiment haben wir es with sehr vielen Teilchen zu tun, so that man
34910  über alle Phasen integrieren muss.
34911  Sei nun 
34912 \begin_inset Formula $S$
34913 \end_inset
34914
34915  unser normiertes Ausgangssignal and 
34916 \begin_inset Formula $P$
34917 \end_inset
34918
34919  the Phasenverteilungsfunktion, so ergibt sich the Beziehung
34920 \begin_inset ERT
34921 status collapsed
34922
34923 \begin_layout Plain Layout
34924
34925
34926 \backslash
34927 end{multicols}
34928 \end_layout
34929
34930 \end_inset
34931
34932
34933 \begin_inset VSpace -6mm
34934 \end_inset
34935
34936
34937 \begin_inset Formula \begin{equation}
34938 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\end{equation}
34939
34940 \end_inset
34941
34942
34943 \begin_inset ERT
34944 status collapsed
34945
34946 \begin_layout Plain Layout
34947
34948
34949 \backslash
34950 begin{multicols}{2}
34951 \end_layout
34952
34953 \end_inset
34954
34955 wobei 
34956 \begin_inset Formula $S_{0}$
34957 \end_inset
34958
34959  das Signal ohne Gradient ist and the Normierungsbedingung 
34960 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
34961 \end_inset
34962
34963  gilt.
34964  Nun dürfen wir aber nicht the Relaxationsprozess außer Acht lassen.
34965  Direkt nach the 
34966 \begin_inset Formula $\nicefrac{\pi}{2}$
34967 \end_inset
34968
34969
34970 \begin_inset space \thinspace{}
34971 \end_inset
34972
34973 -rf-Puls beginnt sich the Magnetisierung zu entfokussieren, wodurch sich
34974  das Signal zusätzlich abschwächt.
34975  Diese Abschwächung verläuft exponentiell in Abhängigkeit the so genannten
34976  
34977 \begin_inset Formula $T_{2}$
34978 \end_inset
34979
34980 -Zeit.
34981 \end_layout
34982
34983 \begin_layout Standard
34984 \begin_inset ERT
34985 status collapsed
34986
34987 \begin_layout Plain Layout
34988
34989
34990 \backslash
34991 end{multicols}
34992 \end_layout
34993
34994 \end_inset
34995
34996  
34997 \end_layout
34998
34999 \begin_layout Subsection
35000 Formulas with Description of Variables
35001 \begin_inset Index
35002 status collapsed
35003
35004 \begin_layout Plain Layout
35005 Formula ! with description of variables
35006 \end_layout
35007
35008 \end_inset
35009
35010
35011 \end_layout
35012
35013 \begin_layout Standard
35014 To describe variables within a formula, like in formula 
35015 \begin_inset CommandInset ref
35016 LatexCommand eqref
35017 reference "eq:within"
35018
35019 \end_inset
35020
35021 , a 2
35022 \series bold
35023 ×
35024 \series default
35025
35026 \begin_inset Formula $n$
35027 \end_inset
35028
35029
35030 \begin_inset space ~
35031 \end_inset
35032
35033 matrix is used with left aligned columns for the 
35034 \begin_inset Formula $n$
35035 \end_inset
35036
35037  used variables.
35038 \begin_inset Foot
35039 status collapsed
35040
35041 \begin_layout Plain Layout
35042 matrices see 
35043 \begin_inset CommandInset ref
35044 LatexCommand ref
35045 reference "sec:Matrices"
35046
35047 \end_inset
35048
35049
35050 \end_layout
35051
35052 \end_inset
35053
35054  To set the description in a smaller size, before the matrix e.
35055 \begin_inset space \thinspace{}
35056 \end_inset
35057
35058 g.
35059 \begin_inset space \space{}
35060 \end_inset
35061
35062 the command 
35063 \series bold
35064
35065 \backslash
35066 footnotesize
35067 \series default
35068  is inserted.
35069 \begin_inset Foot
35070 status collapsed
35071
35072 \begin_layout Plain Layout
35073 font sizes see 
35074 \begin_inset CommandInset ref
35075 LatexCommand ref
35076 reference "sub:Font-Sizes"
35077
35078 \end_inset
35079
35080
35081 \end_layout
35082
35083 \end_inset
35084
35085
35086 \end_layout
35087
35088 \begin_layout Standard
35089 When the formula style 
35090 \series bold
35091 Indented
35092 \begin_inset Foot
35093 status collapsed
35094
35095 \begin_layout Plain Layout
35096 formula styles see 
35097 \begin_inset CommandInset ref
35098 LatexCommand ref
35099 reference "sec:Formula-Styles"
35100
35101 \end_inset
35102
35103
35104 \end_layout
35105
35106 \end_inset
35107
35108
35109 \series default
35110  is used, a 
35111 \series bold
35112
35113 \backslash
35114 hfill
35115 \series default
35116
35117 \begin_inset Foot
35118 status collapsed
35119
35120 \begin_layout Plain Layout
35121
35122 \series bold
35123
35124 \backslash
35125 hfill
35126 \series default
35127  only works in formulas with the style 
35128 \series bold
35129 Indented
35130 \series default
35131 , see 
35132 \begin_inset CommandInset ref
35133 LatexCommand ref
35134 reference "sub:Variable-Space"
35135
35136 \end_inset
35137
35138 .
35139 \end_layout
35140
35141 \end_inset
35142
35143  is inserted before and after the matrix to have the same separation of
35144  the matrix from the equation and the side margin.
35145 \end_layout
35146
35147 \begin_layout Standard
35148 When the formula style 
35149 \series bold
35150 Centered
35151 \series default
35152  is used, the method described in 
35153 \begin_inset CommandInset ref
35154 LatexCommand ref
35155 reference "sub:Flalign-Environment"
35156
35157 \end_inset
35158
35159  is used to indent formulas.
35160  Formula 
35161 \begin_inset CommandInset ref
35162 LatexCommand eqref
35163 reference "eq:within"
35164
35165 \end_inset
35166
35167  consists of five columns whereas in the first two columns contain the equation,
35168  the third the matrix, and the last one an empty TeX-brace.
35169 \begin_inset Formula \begin{flalign}
35170 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
35171 \rho & \textrm{density}\\
35172 V & \textrm{volume}\\
35173 g & \textrm{gravitational acceleration}\end{array} &  & {}\label{eq:within}\end{flalign}
35174
35175 \end_inset
35176
35177
35178 \end_layout
35179
35180 \begin_layout Subsection
35181 Upright small Greek Letters
35182 \begin_inset CommandInset label
35183 LatexCommand label
35184 name "sub:Upright-small-Greek"
35185
35186 \end_inset
35187
35188
35189 \begin_inset Index
35190 status collapsed
35191
35192 \begin_layout Plain Layout
35193 Greek letters ! upright
35194 \end_layout
35195
35196 \end_inset
35197
35198
35199 \end_layout
35200
35201 \begin_layout Standard
35202 Most of the math fonts only provide italic small Greek letters.
35203  But for symbols of elementary particles like pions and neutrinos, upright
35204  Greek letters are needed.
35205  The file 
35206 \series bold
35207 upgreek.sty
35208 \series default
35209
35210 \begin_inset Foot
35211 status collapsed
35212
35213 \begin_layout Plain Layout
35214
35215 \series bold
35216 upgreek
35217 \series default
35218  is part of the LaTeX-package 
35219 \series bold
35220 was
35221 \series default
35222
35223 \begin_inset Index
35224 status collapsed
35225
35226 \begin_layout Plain Layout
35227 Packages ! was
35228 \begin_inset ERT
35229 status collapsed
35230
35231 \begin_layout Plain Layout
35232
35233
35234 \backslash
35235 vspace{4mm}
35236 \end_layout
35237
35238 \end_inset
35239
35240
35241 \end_layout
35242
35243 \end_inset
35244
35245 .
35246 \end_layout
35247
35248 \end_inset
35249
35250
35251 \begin_inset Index
35252 status collapsed
35253
35254 \begin_layout Plain Layout
35255 Packages ! upgreek
35256 \end_layout
35257
35258 \end_inset
35259
35260  that is loaded with the LaTeX-preamble line
35261 \end_layout
35262
35263 \begin_layout Standard
35264
35265 \series bold
35266
35267 \backslash
35268 usepackage{upgreek}
35269 \end_layout
35270
35271 \begin_layout Standard
35272 provides them.
35273  
35274 \begin_inset ERT
35275 status collapsed
35276
35277 \begin_layout Plain Layout
35278
35279
35280 \backslash
35281 ifupgreek 
35282 \end_layout
35283
35284 \end_inset
35285
35286
35287 \begin_inset Note Note
35288 status open
35289
35290 \begin_layout Plain Layout
35291 The following table will only be displayed when the LaTeX-package 
35292 \series bold
35293 upgreek
35294 \series default
35295  is installed.
35296 \end_layout
35297
35298 \end_inset
35299
35300  They are created when the command for a small Greek letters is started
35301  with 
35302 \series bold
35303 up
35304 \series default
35305 .
35306  For example the command 
35307 \series bold
35308
35309 \backslash
35310 uptau
35311 \series default
35312  creates this: 
35313 \begin_inset Formula $\uptau$
35314 \end_inset
35315
35316
35317 \end_layout
35318
35319 \begin_layout Standard
35320 With these commands reactions of elementary particles can be typeset:
35321 \begin_inset Formula \[
35322 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}\]
35323
35324 \end_inset
35325
35326
35327 \end_layout
35328
35329 \begin_layout Standard
35330 The upright letters are more bold and wider than the italic ones.
35331  They should therefore not be used for units like 
35332 \begin_inset Quotes eld
35333 \end_inset
35334
35335 µm
35336 \begin_inset Quotes erd
35337 \end_inset
35338
35339 .
35340 \end_layout
35341
35342 \begin_layout Standard
35343 \begin_inset ERT
35344 status collapsed
35345
35346 \begin_layout Plain Layout
35347
35348
35349 \backslash
35350 else 
35351 \end_layout
35352
35353 \end_inset
35354
35355
35356 \begin_inset Note Note
35357 status open
35358
35359 \begin_layout Plain Layout
35360 The following will be displayed when the LaTeX-package 
35361 \series bold
35362 upgreek
35363 \series default
35364  is not installed:
35365 \end_layout
35366
35367 \end_inset
35368
35369
35370 \end_layout
35371
35372 \begin_layout Standard
35373 You need to install the LaTeX-package 
35374 \series bold
35375 upgreek
35376 \series default
35377  to see the rest of this subsection in the output.
35378 \end_layout
35379
35380 \begin_layout Standard
35381 \begin_inset ERT
35382 status collapsed
35383
35384 \begin_layout Plain Layout
35385
35386
35387 \backslash
35388 fi 
35389 \end_layout
35390
35391 \end_inset
35392
35393
35394 \end_layout
35395
35396 \begin_layout Subsection
35397 Text Characters in Formulas
35398 \begin_inset CommandInset label
35399 LatexCommand label
35400 name "sub:Text-Characters-in"
35401
35402 \end_inset
35403
35404
35405 \begin_inset Index
35406 status collapsed
35407
35408 \begin_layout Plain Layout
35409 Text ! in formulas
35410 \end_layout
35411
35412 \end_inset
35413
35414
35415 \end_layout
35416
35417 \begin_layout Standard
35418 In some cases you might want to insert text characters directly into formulas.
35419  When for example the centered dot · is often used in formulas like 
35420 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
35421 \end_inset
35422
35423 , one would have to insert the command 
35424 \series bold
35425
35426 \backslash
35427 cdot
35428 \series default
35429
35430 \begin_inset Foot
35431 status collapsed
35432
35433 \begin_layout Plain Layout
35434 see 
35435 \begin_inset CommandInset ref
35436 LatexCommand ref
35437 reference "sub:Binary-Operators"
35438
35439 \end_inset
35440
35441
35442 \end_layout
35443
35444 \end_inset
35445
35446  all the time, because this character is defined in all encodings as text
35447  character.
35448  But the encoding can be changed by this LaTeX-preamble line:
35449 \end_layout
35450
35451 \begin_layout Standard
35452
35453 \series bold
35454
35455 \backslash
35456 Declare Inputtext{183}{
35457 \backslash
35458 ifmmode
35459 \backslash
35460 cdot
35461 \backslash
35462 else
35463 \backslash
35464 textperiodcentered
35465 \backslash
35466 f\SpecialChar \textcompwordmark{}
35467 i}
35468 \end_layout
35469
35470 \begin_layout Standard
35471 The character encoding (menu 
35472 \family sans
35473 Document\SpecialChar \menuseparator
35474 Settings\SpecialChar \menuseparator
35475 Language
35476 \family default
35477 ) specifies what character appears when a keyboard key is pressed.
35478  When the key for the character '·' is pressed, internally the command 
35479 \series bold
35480
35481 \backslash
35482 textperiodcentered
35483 \series default
35484  is used.
35485  But this command is not available in a formula so that you would get LaTeX-erro
35486 rs.
35487  With the changed encoding the right command is chosen automatically, depending
35488  on if the character was inserted into a formula or not.
35489 \end_layout
35490
35491 \begin_layout Standard
35492 The encoding of several characters is saved in definition files.
35493  Fore example the encoding 
35494 \series bold
35495 latin9
35496 \series default
35497  is defined in the file 
35498 \series bold
35499 latin9.def
35500 \series default
35501  that is in the installation folder of LaTeX.
35502  Encodings should only be changed via the LaTeX-preamble and not in the
35503  definition files.
35504  Otherwise own documents could not be edited by other LyX users working
35505  on other computers.
35506 \end_layout
35507
35508 \begin_layout Standard
35509 \begin_inset VSpace medskip
35510 \end_inset
35511
35512 Besides the centered dot, in this document the degree sign ° is defined
35513  with the following LaTeX-preamble line so that it can directly be inserted
35514  to a formula:
35515 \end_layout
35516
35517 \begin_layout Standard
35518
35519 \series bold
35520
35521 \backslash
35522 DeclareInputtext{176}{
35523 \backslash
35524 ifmmode^
35525 \backslash
35526 circ
35527 \backslash
35528 else
35529 \backslash
35530 textdegree
35531 \backslash
35532 f\SpecialChar \textcompwordmark{}
35533 i}
35534 \end_layout
35535
35536 \begin_layout Standard
35537 \begin_inset Newpage newpage
35538 \end_inset
35539
35540
35541 \end_layout
35542
35543 \begin_layout Section
35544 \start_of_appendix
35545 Typographic Advice
35546 \begin_inset Index
35547 status collapsed
35548
35549 \begin_layout Plain Layout
35550 Typographic advice
35551 \end_layout
35552
35553 \end_inset
35554
35555
35556 \end_layout
35557
35558 \begin_layout Standard
35559 This section is a summary of the most important typographic rules, listed
35560  in ISO norms.
35561 \begin_inset Foot
35562 status collapsed
35563
35564 \begin_layout Plain Layout
35565 This collection was partly taken from the German semi-official dictionary
35566  called 
35567 \begin_inset Quotes eld
35568 \end_inset
35569
35570 Duden
35571 \begin_inset Quotes erd
35572 \end_inset
35573
35574  
35575 \begin_inset CommandInset citation
35576 LatexCommand cite
35577 key "Duden"
35578
35579 \end_inset
35580
35581  that lists some of the ISO rules.
35582 \end_layout
35583
35584 \end_inset
35585
35586
35587 \end_layout
35588
35589 \begin_layout Itemize
35590 Physical units are 
35591 \emph on
35592 always
35593 \emph default
35594  set upright
35595 \begin_inset Foot
35596 status collapsed
35597
35598 \begin_layout Plain Layout
35599 done with font styles, see 
35600 \begin_inset CommandInset ref
35601 LatexCommand ref
35602 reference "sub:Font-Styles"
35603
35604 \end_inset
35605
35606
35607 \end_layout
35608
35609 \end_inset
35610
35611 : 30
35612 \begin_inset space \thinspace{}
35613 \end_inset
35614
35615 km/h
35616 \begin_inset Newline newline
35617 \end_inset
35618
35619 Between the value and the unit is the smallest space, see 
35620 \begin_inset CommandInset ref
35621 LatexCommand ref
35622 reference "sub:Predefined-Space"
35623
35624 \end_inset
35625
35626 .
35627 \begin_inset Newline newline
35628 \end_inset
35629
35630 This convention is automatically fulfilled when the command 
35631 \series bold
35632
35633 \backslash
35634 unittwo
35635 \series default
35636  is used.
35637  When it is entered to a formula, two boxes appear.
35638  In the first one the value is inserted, in the second one the unit, and
35639  one gets as above: 
35640 \begin_inset Formula $\unit[30]{km/h}$
35641 \end_inset
35642
35643
35644 \begin_inset space \thinspace{}
35645 \end_inset
35646
35647 .
35648  Note that 
35649 \series bold
35650
35651 \backslash
35652 unittwo
35653 \series default
35654  is not a real LaTeX command but the command 
35655 \series bold
35656
35657 \backslash
35658 unit[value]{unit}
35659 \series default
35660 , therefore you cannot use it in TeX code.
35661 \end_layout
35662
35663 \begin_layout Itemize
35664 Percent and perthousand signs are set like physical units:
35665 \begin_inset Newline newline
35666 \end_inset
35667
35668 1,2
35669 \begin_inset space \thinspace{}
35670 \end_inset
35671
35672 ‰ alcohol in blood
35673 \end_layout
35674
35675 \begin_layout Itemize
35676 The degree sign follows directly on the value: 15°, but not when it is used
35677  in units: 15
35678 \begin_inset space \thinspace{}
35679 \end_inset
35680
35681 °C
35682 \end_layout
35683
35684 \begin_layout Itemize
35685 In numbers with more than four digits the smallest space is inserted before
35686  every third digit to group them: 
35687 \family roman
35688 \series medium
35689 \shape up
35690 \size normal
35691 \emph off
35692 \bar no
35693 \noun off
35694 \color none
35695 18
35696 \begin_inset space \thinspace{}
35697 \end_inset
35698
35699 473
35700 \begin_inset space \thinspace{}
35701 \end_inset
35702
35703 588
35704 \end_layout
35705
35706 \begin_layout Itemize
35707 For dimensions like 120×90×40
35708 \begin_inset space \thinspace{}
35709 \end_inset
35710
35711 cm the multiplication sign 
35712 \begin_inset Quotes eld
35713 \end_inset
35714
35715 ×
35716 \begin_inset Quotes erd
35717 \end_inset
35718
35719  is used.
35720  It is available via the menu 
35721 \family sans
35722 Insert\SpecialChar \menuseparator
35723 Special Character\SpecialChar \menuseparator
35724 Symbols
35725 \family default
35726 .
35727  With some keyboard definitions it can also be inserted directly.
35728 \end_layout
35729
35730 \begin_layout Itemize
35731 Functions with names consisting of several letters are set upright to avoid
35732  confusions, see 
35733 \begin_inset CommandInset ref
35734 LatexCommand ref
35735 reference "sub:Predefined-Functions"
35736
35737 \end_inset
35738
35739 .
35740 \end_layout
35741
35742 \begin_layout Itemize
35743 Indices consisting of several letters, are set upright: 
35744 \begin_inset Formula $E_{\mathrm{kin}}$
35745 \end_inset
35746
35747
35748 \begin_inset Newline newline
35749 \end_inset
35750
35751 Components of matrices are set italic: 
35752 \begin_inset Formula $\hat{H}_{kl}$
35753 \end_inset
35754
35755
35756 \end_layout
35757
35758 \begin_layout Itemize
35759 The differentiation/integration operator 'd', the Euler's number 'e', and
35760  the imaginary unit 'i' should be set upright, to avoid mixing them up with
35761  other variables.
35762 \end_layout
35763
35764 \begin_layout Standard
35765 \begin_inset Newpage newpage
35766 \end_inset
35767
35768
35769 \end_layout
35770
35771 \begin_layout Section
35772 Synonyms
35773 \begin_inset Index
35774 status collapsed
35775
35776 \begin_layout Plain Layout
35777 Synonyms
35778 \end_layout
35779
35780 \end_inset
35781
35782
35783 \end_layout
35784
35785 \begin_layout Standard
35786 Some characters and symbols can be created with several commands.
35787  Here is a list of the synonym commands:
35788 \end_layout
35789
35790 \begin_layout Standard
35791 \begin_inset VSpace bigskip
35792 \end_inset
35793
35794
35795 \begin_inset space \hfill{}
35796 \end_inset
35797
35798
35799 \begin_inset Tabular
35800 <lyxtabular version="3" rows="12" columns="2">
35801 <features>
35802 <column alignment="center" valignment="top" width="0pt">
35803 <column alignment="center" valignment="top" width="0pt">
35804 <row>
35805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35806 \begin_inset Text
35807
35808 \begin_layout Plain Layout
35809 Command
35810 \end_layout
35811
35812 \end_inset
35813 </cell>
35814 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35815 \begin_inset Text
35816
35817 \begin_layout Plain Layout
35818 equivalent to
35819 \begin_inset Note Note
35820 status collapsed
35821
35822 \begin_layout Plain Layout
35823
35824 \series bold
35825
35826 \backslash
35827 raisebox
35828 \series default
35829  is only used as spacer.
35830 \end_layout
35831
35832 \end_inset
35833
35834
35835 \end_layout
35836
35837 \end_inset
35838 </cell>
35839 </row>
35840 <row>
35841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35842 \begin_inset Text
35843
35844 \begin_layout Plain Layout
35845
35846 \backslash
35847 ast
35848 \end_layout
35849
35850 \end_inset
35851 </cell>
35852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35853 \begin_inset Text
35854
35855 \begin_layout Plain Layout
35856 \begin_inset ERT
35857 status collapsed
35858
35859 \begin_layout Plain Layout
35860
35861
35862 \backslash
35863 raisebox{-1.2mm}{
35864 \end_layout
35865
35866 \end_inset
35867
35868 *
35869 \begin_inset ERT
35870 status collapsed
35871
35872 \begin_layout Plain Layout
35873
35874 }
35875 \end_layout
35876
35877 \end_inset
35878
35879
35880 \end_layout
35881
35882 \end_inset
35883 </cell>
35884 </row>
35885 <row>
35886 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35887 \begin_inset Text
35888
35889 \begin_layout Plain Layout
35890
35891 \backslash
35892 choose
35893 \end_layout
35894
35895 \end_inset
35896 </cell>
35897 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35898 \begin_inset Text
35899
35900 \begin_layout Plain Layout
35901
35902 \backslash
35903 binom
35904 \end_layout
35905
35906 \end_inset
35907 </cell>
35908 </row>
35909 <row>
35910 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35911 \begin_inset Text
35912
35913 \begin_layout Plain Layout
35914
35915 \backslash
35916 geq
35917 \end_layout
35918
35919 \end_inset
35920 </cell>
35921 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35922 \begin_inset Text
35923
35924 \begin_layout Plain Layout
35925
35926 \backslash
35927 ge
35928 \end_layout
35929
35930 \end_inset
35931 </cell>
35932 </row>
35933 <row>
35934 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35935 \begin_inset Text
35936
35937 \begin_layout Plain Layout
35938
35939 \backslash
35940 lbrace
35941 \end_layout
35942
35943 \end_inset
35944 </cell>
35945 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35946 \begin_inset Text
35947
35948 \begin_layout Plain Layout
35949 {
35950 \end_layout
35951
35952 \end_inset
35953 </cell>
35954 </row>
35955 <row>
35956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35957 \begin_inset Text
35958
35959 \begin_layout Plain Layout
35960
35961 \backslash
35962 lbracket
35963 \end_layout
35964
35965 \end_inset
35966 </cell>
35967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35968 \begin_inset Text
35969
35970 \begin_layout Plain Layout
35971 [
35972 \end_layout
35973
35974 \end_inset
35975 </cell>
35976 </row>
35977 <row>
35978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35979 \begin_inset Text
35980
35981 \begin_layout Plain Layout
35982
35983 \backslash
35984 leftarrow
35985 \end_layout
35986
35987 \end_inset
35988 </cell>
35989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35990 \begin_inset Text
35991
35992 \begin_layout Plain Layout
35993
35994 \backslash
35995 gets
35996 \end_layout
35997
35998 \end_inset
35999 </cell>
36000 </row>
36001 <row>
36002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36003 \begin_inset Text
36004
36005 \begin_layout Plain Layout
36006
36007 \backslash
36008 leq
36009 \end_layout
36010
36011 \end_inset
36012 </cell>
36013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36014 \begin_inset Text
36015
36016 \begin_layout Plain Layout
36017
36018 \backslash
36019 le
36020 \end_layout
36021
36022 \end_inset
36023 </cell>
36024 </row>
36025 <row>
36026 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36027 \begin_inset Text
36028
36029 \begin_layout Plain Layout
36030
36031 \backslash
36032 lor
36033 \end_layout
36034
36035 \end_inset
36036 </cell>
36037 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36038 \begin_inset Text
36039
36040 \begin_layout Plain Layout
36041
36042 \backslash
36043 vee
36044 \end_layout
36045
36046 \end_inset
36047 </cell>
36048 </row>
36049 <row>
36050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36051 \begin_inset Text
36052
36053 \begin_layout Plain Layout
36054
36055 \backslash
36056 neq
36057 \end_layout
36058
36059 \end_inset
36060 </cell>
36061 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36062 \begin_inset Text
36063
36064 \begin_layout Plain Layout
36065
36066 \backslash
36067 not=
36068 \end_layout
36069
36070 \end_inset
36071 </cell>
36072 </row>
36073 <row>
36074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36075 \begin_inset Text
36076
36077 \begin_layout Plain Layout
36078
36079 \backslash
36080 slash
36081 \end_layout
36082
36083 \end_inset
36084 </cell>
36085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36086 \begin_inset Text
36087
36088 \begin_layout Plain Layout
36089 /
36090 \end_layout
36091
36092 \end_inset
36093 </cell>
36094 </row>
36095 <row>
36096 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36097 \begin_inset Text
36098
36099 \begin_layout Plain Layout
36100
36101 \backslash
36102 vert
36103 \end_layout
36104
36105 \end_inset
36106 </cell>
36107 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36108 \begin_inset Text
36109
36110 \begin_layout Plain Layout
36111 |
36112 \end_layout
36113
36114 \end_inset
36115 </cell>
36116 </row>
36117 </lyxtabular>
36118
36119 \end_inset
36120
36121
36122 \begin_inset space \hfill{}
36123 \end_inset
36124
36125
36126 \begin_inset Tabular
36127 <lyxtabular version="3" rows="12" columns="2">
36128 <features>
36129 <column alignment="center" valignment="top" width="0pt">
36130 <column alignment="center" valignment="top" width="0pt">
36131 <row>
36132 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36133 \begin_inset Text
36134
36135 \begin_layout Plain Layout
36136 Command
36137 \end_layout
36138
36139 \end_inset
36140 </cell>
36141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36142 \begin_inset Text
36143
36144 \begin_layout Plain Layout
36145 equivalent to
36146 \end_layout
36147
36148 \end_inset
36149 </cell>
36150 </row>
36151 <row>
36152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36153 \begin_inset Text
36154
36155 \begin_layout Plain Layout
36156
36157 \backslash
36158 backslash
36159 \end_layout
36160
36161 \end_inset
36162 </cell>
36163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36164 \begin_inset Text
36165
36166 \begin_layout Plain Layout
36167
36168 \backslash
36169
36170 \backslash
36171
36172 \end_layout
36173
36174 \end_inset
36175 </cell>
36176 </row>
36177 <row>
36178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36179 \begin_inset Text
36180
36181 \begin_layout Plain Layout
36182
36183 \backslash
36184 dasharrow
36185 \end_layout
36186
36187 \end_inset
36188 </cell>
36189 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36190 \begin_inset Text
36191
36192 \begin_layout Plain Layout
36193
36194 \backslash
36195 dashrightarrow
36196 \end_layout
36197
36198 \end_inset
36199 </cell>
36200 </row>
36201 <row>
36202 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36203 \begin_inset Text
36204
36205 \begin_layout Plain Layout
36206
36207 \backslash
36208 land
36209 \end_layout
36210
36211 \end_inset
36212 </cell>
36213 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36214 \begin_inset Text
36215
36216 \begin_layout Plain Layout
36217
36218 \backslash
36219 wedge
36220 \end_layout
36221
36222 \end_inset
36223 </cell>
36224 </row>
36225 <row>
36226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36227 \begin_inset Text
36228
36229 \begin_layout Plain Layout
36230
36231 \backslash
36232 rbrace
36233 \end_layout
36234
36235 \end_inset
36236 </cell>
36237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36238 \begin_inset Text
36239
36240 \begin_layout Plain Layout
36241 }
36242 \end_layout
36243
36244 \end_inset
36245 </cell>
36246 </row>
36247 <row>
36248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36249 \begin_inset Text
36250
36251 \begin_layout Plain Layout
36252
36253 \backslash
36254 rbracket
36255 \end_layout
36256
36257 \end_inset
36258 </cell>
36259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36260 \begin_inset Text
36261
36262 \begin_layout Plain Layout
36263 ]
36264 \end_layout
36265
36266 \end_inset
36267 </cell>
36268 </row>
36269 <row>
36270 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36271 \begin_inset Text
36272
36273 \begin_layout Plain Layout
36274
36275 \backslash
36276 rightarrow
36277 \end_layout
36278
36279 \end_inset
36280 </cell>
36281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36282 \begin_inset Text
36283
36284 \begin_layout Plain Layout
36285
36286 \backslash
36287 to
36288 \end_layout
36289
36290 \end_inset
36291 </cell>
36292 </row>
36293 <row>
36294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36295 \begin_inset Text
36296
36297 \begin_layout Plain Layout
36298
36299 \backslash
36300 lnot
36301 \end_layout
36302
36303 \end_inset
36304 </cell>
36305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36306 \begin_inset Text
36307
36308 \begin_layout Plain Layout
36309
36310 \backslash
36311 neg
36312 \end_layout
36313
36314 \end_inset
36315 </cell>
36316 </row>
36317 <row>
36318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36319 \begin_inset Text
36320
36321 \begin_layout Plain Layout
36322
36323 \backslash
36324 ne
36325 \end_layout
36326
36327 \end_inset
36328 </cell>
36329 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36330 \begin_inset Text
36331
36332 \begin_layout Plain Layout
36333
36334 \backslash
36335 not=
36336 \end_layout
36337
36338 \end_inset
36339 </cell>
36340 </row>
36341 <row>
36342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36343 \begin_inset Text
36344
36345 \begin_layout Plain Layout
36346
36347 \backslash
36348 owns
36349 \end_layout
36350
36351 \end_inset
36352 </cell>
36353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36354 \begin_inset Text
36355
36356 \begin_layout Plain Layout
36357
36358 \backslash
36359 ni
36360 \end_layout
36361
36362 \end_inset
36363 </cell>
36364 </row>
36365 <row>
36366 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36367 \begin_inset Text
36368
36369 \begin_layout Plain Layout
36370
36371 \backslash
36372 square
36373 \end_layout
36374
36375 \end_inset
36376 </cell>
36377 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36378 \begin_inset Text
36379
36380 \begin_layout Plain Layout
36381
36382 \backslash
36383 Box
36384 \end_layout
36385
36386 \end_inset
36387 </cell>
36388 </row>
36389 <row>
36390 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36391 \begin_inset Text
36392
36393 \begin_layout Plain Layout
36394
36395 \backslash
36396 Vert
36397 \end_layout
36398
36399 \end_inset
36400 </cell>
36401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36402 \begin_inset Text
36403
36404 \begin_layout Plain Layout
36405
36406 \backslash
36407 |
36408 \end_layout
36409
36410 \end_inset
36411 </cell>
36412 </row>
36413 </lyxtabular>
36414
36415 \end_inset
36416
36417
36418 \begin_inset space \hfill{}
36419 \end_inset
36420
36421
36422 \end_layout
36423
36424 \begin_layout Standard
36425 \begin_inset Newpage newpage
36426 \end_inset
36427
36428
36429 \end_layout
36430
36431 \begin_layout Bibliography
36432 \begin_inset CommandInset bibitem
36433 LatexCommand bibitem
36434 key "TLC2"
36435
36436 \end_inset
36437
36438
36439 \shape smallcaps
36440 Mittelbach, F.
36441  ; Goossens, M.
36442 \shape default
36443
36444 \shape italic
36445 The LaTeX Companion
36446 \shape default
36447 .
36448  Addison Wesley, 2004
36449 \end_layout
36450
36451 \begin_layout Bibliography
36452 \begin_inset CommandInset bibitem
36453 LatexCommand bibitem
36454 key "Mathmode"
36455
36456 \end_inset
36457
36458
36459 \begin_inset CommandInset href
36460 LatexCommand href
36461 name "Description"
36462 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
36463
36464 \end_inset
36465
36466  of LaTeX's math abilities
36467 \end_layout
36468
36469 \begin_layout Bibliography
36470 \begin_inset CommandInset bibitem
36471 LatexCommand bibitem
36472 key "Voss"
36473
36474 \end_inset
36475
36476 LaTeX tips and tricks-
36477 \begin_inset CommandInset href
36478 LatexCommand href
36479 name "page"
36480 target "http://tug.org/TeXnik/"
36481
36482 \end_inset
36483
36484
36485 \end_layout
36486
36487 \begin_layout Bibliography
36488 \begin_inset CommandInset bibitem
36489 LatexCommand bibitem
36490 key "AMS"
36491
36492 \end_inset
36493
36494
36495 \begin_inset CommandInset href
36496 LatexCommand href
36497 name "Description"
36498 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
36499
36500 \end_inset
36501
36502  of 
36503 \begin_inset ERT
36504 status collapsed
36505
36506 \begin_layout Plain Layout
36507
36508
36509 \backslash
36510 AmS
36511 \end_layout
36512
36513 \end_inset
36514
36515 -LaTeX
36516 \end_layout
36517
36518 \begin_layout Bibliography
36519 \begin_inset CommandInset bibitem
36520 LatexCommand bibitem
36521 key "Symbole"
36522
36523 \end_inset
36524
36525
36526 \begin_inset CommandInset href
36527 LatexCommand href
36528 name "List"
36529 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
36530
36531 \end_inset
36532
36533  of all symbols available with LaTeX-packages
36534 \end_layout
36535
36536 \begin_layout Bibliography
36537 \begin_inset CommandInset bibitem
36538 LatexCommand bibitem
36539 key "hyperref"
36540
36541 \end_inset
36542
36543
36544 \begin_inset CommandInset href
36545 LatexCommand href
36546 name "Documentation"
36547 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
36548
36549 \end_inset
36550
36551  of the LaTeX-package 
36552 \series bold
36553 hyperref
36554 \series default
36555
36556 \begin_inset Index
36557 status collapsed
36558
36559 \begin_layout Plain Layout
36560 Packages ! hyperref
36561 \end_layout
36562
36563 \end_inset
36564
36565
36566 \end_layout
36567
36568 \begin_layout Bibliography
36569 \begin_inset CommandInset bibitem
36570 LatexCommand bibitem
36571 key "Mathclap"
36572
36573 \end_inset
36574
36575
36576 \begin_inset CommandInset href
36577 LatexCommand href
36578 name "Description"
36579 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
36580
36581 \end_inset
36582
36583  of the command 
36584 \series bold
36585
36586 \backslash
36587 mathclap
36588 \series default
36589 , described in 
36590 \begin_inset CommandInset ref
36591 LatexCommand ref
36592 reference "sub:Operator-Limits"
36593
36594 \end_inset
36595
36596
36597 \begin_inset Index
36598 status collapsed
36599
36600 \begin_layout Plain Layout
36601 Commands ! M ! 
36602 \backslash
36603 mathclap
36604 \end_layout
36605
36606 \end_inset
36607
36608
36609 \end_layout
36610
36611 \begin_layout Bibliography
36612 \begin_inset CommandInset bibitem
36613 LatexCommand bibitem
36614 key "Duden"
36615
36616 \end_inset
36617
36618
36619 \emph on
36620 Duden Band 1
36621 \emph default
36622 .
36623  22.
36624  Auflage, Duden 2001
36625 \end_layout
36626
36627 \begin_layout Subsubsection*
36628 \begin_inset CommandInset index_print
36629 LatexCommand printindex
36630
36631 \end_inset
36632
36633
36634 \end_layout
36635
36636 \end_body
36637 \end_document