]> git.lyx.org Git - lyx.git/blob - lib/doc/ja/Math.lyx
EmbeddedObjects.lyx: describe the new multirow feature
[lyx.git] / lib / doc / ja / Math.lyx
1 #LyX 2.0.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 404
3 \begin_document
4 \begin_header
5 \textclass jarticle
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 \ifnum 42146=\euc"A4A2 \AtBeginDvi{\special{pdf:tounicode EUC-UCS2}}\else
17 \AtBeginDvi{\special{pdf:tounicode 90ms-RKSJ-UCS2}}\fi
18
19 % if pdflatex is used
20 \usepackage{ifpdf}
21 \ifpdf
22
23 % set fonts for nicer pdf view
24 \IfFileExists{lmodern.sty}
25  {\usepackage{lmodern}}{}
26
27 \fi % end if pdflatex is used
28
29 % Folgendes Problem losen:
30 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
31 % Kapiteluberschrift im Inhaltsverzeichnis direkt an oder uber
32 % die Kapitelnummer geschrieben.
33 % Als Losung wird mehr Platz zwischen Nummer und
34 % Uberschrift eingefugt.
35 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
36 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
37
38 % To be able to enter some characters directly in LyX,
39 % see sec. 22.11
40 %\DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
41 %\DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
42
43 % increase link area for cross-references and autoname them,
44 %\AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
45 \newlength{\abc}
46 \settowidth{\abc}{\space}
47 \addto\extrasenglish{
48  \renewcommand{\equationautorefname}{\hspace{-\abc}}
49  \renewcommand{\sectionautorefname}{sec.\negthinspace}
50  \renewcommand{\subsectionautorefname}{sec.\negthinspace}
51  \renewcommand{\subsubsectionautorefname}{sec.\negthinspace}}
52
53 % don't load packages twice
54 % see first footnote in sec. 9.3
55 \@ifundefined{textcolor}{\usepackage{color}}{}
56
57 % the pages of the TOC are numbered roman
58 % and a PDF-bookmark for the TOC is added
59 \pagenumbering{roman}
60 \let\myTOC\tableofcontents
61 \renewcommand{\tableofcontents}{%
62  \vspace{1cm}
63  \pdfbookmark[1]{\contentsname}{}
64  \myTOC
65  \cleardoublepage
66  \pagenumbering{arabic}}
67
68 % insert additional vertical space of 1.5 mm between footnotes,
69 \let\myFoot\footnote
70 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
71
72 % provides caption formatting
73 %\setkomafont{captionlabel}{\bfseries}
74
75 % used in Kap. 22.6
76 \usepackage[samesize]{cancel}
77
78 % enables calculation of values,
79 \usepackage{calc}
80
81 % for multiple table row and column cells
82 \usepackage{multirow}
83 \usepackage{multicol}
84
85 % needed in sec. 19.4
86 \usepackage{remreset}
87
88 % center multirows (e.g. in sec. 13.3)
89 \renewcommand{\multirowsetup}{\centering}
90
91 % define a color, used in sec.9.3
92 \definecolor{darkgreen}{cmyk}{0.5, 0, 1, 0.5}
93
94 % declare operators (see sec. 10.4 and sec. 15.2)
95 \DeclareMathOperator*{\Lozenge}{\blacklozenge}
96 \DeclareMathOperator{\sgn}{sgn}
97
98 \newcommand{\spce}{\textvisiblespace}
99
100 % example definitions for sec. 20.1 
101 \newcommand{\gr}{\Longrightarrow}
102 \newcommand{\us}[1]{\underline{#1}}
103 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
104 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
105 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
106
107 % example macro from sec. 19.4
108 %\def\tagform@#1{\maketag@@@{|#1|}}
109
110 % macro from sec. 10.2
111 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
112 \def\mathclap {\mathpalette \mathclapinternal}
113 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
114
115
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 in sec. 22.4
129 % check for package braket
130 \newboolean{braket}
131 \IfFileExists{braket.sty}
132  {\usepackage{braket}
133   \setboolean{braket}{true}}
134  {\setboolean{braket}{false}}
135
136 % needed in sec. 22.10
137 % check for package upgreek
138 \newboolean{upgreek}
139 \IfFileExists{upgreek.sty}
140  {\usepackage{upgreek}
141   \setboolean{upgreek}{true}}
142  {\setboolean{upgreek}{false}}
143
144 % make pdf bookmark sane with Japanese
145 \AtBeginDvi{\special{pdf:tounicode EUC-UCS2}}
146 \end_preamble
147 \options bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading
148 \use_default_options true
149 \maintain_unincluded_children false
150 \language japanese
151 \inputencoding auto
152 \fontencoding global
153 \font_roman default
154 \font_sans default
155 \font_typewriter default
156 \font_default_family default
157 \use_xetex false
158 \font_sc false
159 \font_osf false
160 \font_sf_scale 100
161 \font_tt_scale 100
162
163 \graphics default
164 \default_output_format default
165 \output_sync 0
166 \bibtex_command default
167 \index_command default
168 \paperfontsize default
169 \spacing single
170 \use_hyperref true
171 \pdf_title "LyX数式説明書"
172 \pdf_author "LyXプロジェクトチーム・Uwe Stohr"
173 \pdf_subject "LyXの数式機能に関する説明書"
174 \pdf_keywords "LyX, Mathed"
175 \pdf_bookmarks true
176 \pdf_bookmarksnumbered true
177 \pdf_bookmarksopen true
178 \pdf_bookmarksopenlevel 1
179 \pdf_breaklinks false
180 \pdf_pdfborder false
181 \pdf_colorlinks true
182 \pdf_backref false
183 \pdf_pdfusetitle false
184 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
185 \papersize a4paper
186 \use_geometry true
187 \use_amsmath 2
188 \use_esint 1
189 \use_mhchem 1
190 \use_mathdots 1
191 \cite_engine basic
192 \use_bibtopic false
193 \use_indices false
194 \paperorientation portrait
195 \suppress_date false
196 \use_refstyle 0
197 \notefontcolor #0000ff
198 \index 索引
199 \shortcut idx
200 \color #008000
201 \end_index
202 \leftmargin 3.5cm
203 \topmargin 3cm
204 \rightmargin 3cm
205 \bottommargin 3.5cm
206 \secnumdepth 4
207 \tocdepth 3
208 \paragraph_separation skip
209 \defskip medskip
210 \quotes_language english
211 \papercolumns 1
212 \papersides 2
213 \paperpagestyle plain
214 \tracking_changes false
215 \output_changes false
216 \html_math_output 0
217 \html_be_strict false
218 \end_header
219
220 \begin_body
221
222 \begin_layout Title
223 LyXの数式詳細説明書
224 \end_layout
225
226 \begin_layout Author
227 LyXプロジェクトチーム
228 \begin_inset Foot
229 status collapsed
230
231 \begin_layout Plain Layout
232 \noindent
233 コメントや誤りの修正などがございましたら、LyX文書化メーリングリスト
234 \family typewriter
235
236 \begin_inset CommandInset href
237 LatexCommand href
238 name "lyx-docs@lists.lyx.org"
239 target "lyx-docs@lists.lyx.org?subject=LyX's Math manual"
240 type "mailto:"
241
242 \end_inset
243
244
245 \family default
246 までお知らせください。
247 \end_layout
248
249 \end_inset
250
251
252 \begin_inset Note Note
253 status collapsed
254
255 \begin_layout Plain Layout
256 著者:Uwe Stöhr
257 \end_layout
258
259 \end_inset
260
261
262 \begin_inset Newline newline
263 \end_inset
264
265
266 \begin_inset Newline newline
267 \end_inset
268
269
270 \family sans
271 第2.0.x版
272 \end_layout
273
274 \begin_layout Standard
275 \begin_inset CommandInset toc
276 LatexCommand tableofcontents
277
278 \end_inset
279
280
281 \end_layout
282
283 \begin_layout Standard
284 \begin_inset Note Note
285 status collapsed
286
287 \begin_layout Plain Layout
288 この文書をPDFやPS、DVIに書き出すには、LaTeXパッケージの
289 \series bold
290 eurosym
291 \series default
292
293 \series bold
294 mhchem
295 \series default
296
297 \series bold
298 multirow
299 \series default
300
301 \series bold
302 wasが導入されている必要があります。
303 \series default
304 これらが導入されていなくても文書はエクスポートできますが、パッケージを必要とする節は出力には現れません。また、
305 \series bold
306 mhchem
307 \series default
308 が導入されていないと、本ファイルを書き出すことができません。
309 \end_layout
310
311 \begin_layout Plain Layout
312 この文書の最新のPDF版は
313 \begin_inset Newline newline
314 \end_inset
315
316
317 \series bold
318 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
319 \begin_inset Newline newline
320 \end_inset
321
322
323 \series default
324 にあります。
325 \end_layout
326
327 \end_inset
328
329
330 \end_layout
331
332 \begin_layout Standard
333 \begin_inset Newpage newpage
334 \end_inset
335
336
337 \end_layout
338
339 \begin_layout Section
340 はじめに
341 \end_layout
342
343 \begin_layout Standard
344 この文書は、LyXの数式機能の説明書であると同時に、なによりも数式記号および数式要素に使用されるLaTeXコマンドのコレクションでもあります。説明は、コマンドの
345 使用を念頭に置いています。したがいまして、ユーザーの手引きの
346 \family typewriter
347 数式
348 \family default
349 の節をすでにお読みになっていることを前提としています。
350 \end_layout
351
352 \begin_layout Standard
353 この説明書で説明されている、ほとんどの数式記号と、数式要素の多くは、
354 \family sans
355 挿入\SpecialChar \menuseparator
356 数式
357 \family default
358 メニューか
359 \family sans
360 数式ツールバー
361 \family default
362 からアクセスすることが可能です。しかし、たくさんの数式を書かなくてはならない人はみな、数式ツールバーを使うよりもコマンドを使った方がずっと速いことに気付くことに
363 なるのです。したがって、この説明書はコマンドに焦点を当てますが、対応するツールバーボタンが利用可能なときには、それにも言及することにします。
364 \end_layout
365
366 \begin_layout Standard
367 とくに断らなければ、コマンドは数式内からのみ利用可能です。この文書で説明されているすべてのコマンドを利用できるようにするためには、文書設定(
368 \family sans
369 文書\SpecialChar \menuseparator
370 設定\SpecialChar \menuseparator
371 数式オプション
372 \family default
373 メニュー)で
374 \family sans
375 AMS mathパッケージを使う
376 \family default
377 オプションを有効にしなくてはなりません
378 \begin_inset Foot
379 status collapsed
380
381 \begin_layout Plain Layout
382
383 \family sans
384 AMS mathパッケージを自動的に使う
385 \family default
386 オプションは、LyXでサポートされている数式要素が見つかったときのみ、
387 \begin_inset ERT
388 status collapsed
389
390 \begin_layout Plain Layout
391
392
393 \backslash
394 AmS 
395 \end_layout
396
397 \end_inset
398
399 -mathパッケージを使用します。
400 \end_layout
401
402 \end_inset
403
404
405 \end_layout
406
407 \begin_layout Standard
408 説明を明瞭にするために、この文書はすべての
409 \begin_inset ERT
410 status collapsed
411
412 \begin_layout Plain Layout
413
414
415 \backslash
416 AmS 
417 \end_layout
418
419 \end_inset
420
421 -mathコマンド
422 \begin_inset Foot
423 status collapsed
424
425 \begin_layout Plain Layout
426 すべての
427 \begin_inset ERT
428 status collapsed
429
430 \begin_layout Plain Layout
431
432
433 \backslash
434 AmS
435 \end_layout
436
437 \end_inset
438
439 -mathコマンドの一覧は、
440 \family sans
441
442 \begin_inset CommandInset href
443 LatexCommand href
444 name "amsguide.ps"
445 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
446
447 \end_inset
448
449
450 \family default
451 ファイルに収録されています。このファイルは、すべてのLaTeX標準頒布版に含まれています。
452 \end_layout
453
454 \end_inset
455
456 を列挙はしません。
457 \end_layout
458
459 \begin_layout Section
460 一般的な説明
461 \end_layout
462
463 \begin_layout Standard
464 本文に埋め込まれた行内数式
465 \begin_inset Index idx
466 status collapsed
467
468 \begin_layout Plain Layout
469 すうしき ! ぎょうない @ 数式 ! 行内
470 \end_layout
471
472 \end_inset
473
474 を作成するには、短絡キー
475 \begin_inset Info
476 type  "shortcuts"
477 arg   "math-mode"
478 \end_inset
479
480 のうちのいずれか、あるいはツールバーボタン
481 \begin_inset Graphics
482         filename ../../images/math-mode.png
483         scale 85
484
485 \end_inset
486
487 を使用してください。
488 \begin_inset Newline newline
489 \end_inset
490
491 大きく別の段落として表示される別行建て数式
492 \begin_inset Index idx
493 status collapsed
494
495 \begin_layout Plain Layout
496 すうしき ! べつぎょうだてようしき @ 数式 ! 別行建て様式
497 \end_layout
498
499 \end_inset
500
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 別行建て様式の数式を行内数式に変更するには、カーソルを数式内に合わせて
512 \begin_inset Info
513 type  "shortcuts"
514 arg   "math-mode"
515 \end_inset
516
517 のいずれかの短絡キーか、
518 \family sans
519 編集\SpecialChar \menuseparator
520 数式\SpecialChar \menuseparator
521 数式の表記を変更
522 \family default
523 メニューを使用して下さい。同じ方法が、行内数式を別行建て数式に変更するのにも使用できます。
524 \end_layout
525
526 \begin_layout Standard
527 行内数式の一部を別行建て数式の大きさで表示するには、
528 \series bold
529
530 \backslash
531 displaystyle
532 \begin_inset Index idx
533 status collapsed
534
535 \begin_layout Plain Layout
536
537 \size normal
538 こまんど@コマンド ! D ! 
539 \backslash
540 displaystyle
541 \end_layout
542
543 \end_inset
544
545
546 \series default
547 を数式に入力して下さい。すると、青いボックスが新規に現れて、希望する数式の箇所を挿入することができます。
548 \end_layout
549
550 \begin_layout Standard
551 表の中では、行内数式のみの使用が許されています。
552 \end_layout
553
554 \begin_layout Standard
555
556 \family sans
557 数式ツールバー
558 \family default
559 は、
560 \family sans
561 表示\SpecialChar \menuseparator
562 ツールバー
563 \family default
564 メニューで表示することができます。そのメニューで「数式」をクリックすると、ツールバーが下部に永続的に表示されます。この状態は、
565 \family sans
566 ツールバー
567 \family default
568 メニューの中ではチェック印で表されます。この状態から、
569 \family sans
570 ツールバー
571 \family default
572 メニューの「数式」をもう一度クリックすると、数式ツールバーは、カーソルが数式内部にあるときのみ表示されるようになります。この状態は、メニュー項目が「数式」から「
573 数式(自動)」に変わることで表されます。
574 \end_layout
575
576 \begin_layout Standard
577 TeXモード
578 \begin_inset Index idx
579 status collapsed
580
581 \begin_layout Plain Layout
582 T@TeXモード
583 \end_layout
584
585 \end_inset
586
587 は、ツールバーボタン
588 \begin_inset Graphics
589         filename ../../images/ert-insert.png
590         scale 85
591
592 \end_inset
593
594 を押すか、
595 \family sans
596 挿入\SpecialChar \menuseparator
597 Te
598 \begin_inset ERT
599 status collapsed
600
601 \begin_layout Plain Layout
602
603 {}
604 \end_layout
605
606 \end_inset
607
608 Xコード
609 \family default
610 (短絡キー
611 \begin_inset Info
612 type  "shortcut"
613 arg   "ert-insert"
614 \end_inset
615
616 )メニューを使うことで、起動できます。
617 \begin_inset Note Note
618 status collapsed
619
620 \begin_layout Plain Layout
621 LyXには、出力においては上付き文字と下付き文字とで表示される三つの「固有名詞」、TeX・LaTeX・LyXがあります。これらの名称が、固有名詞として認識される
622 のを防ぐために、ここではTeX括弧が挿入されています。
623 \end_layout
624
625 \end_inset
626
627
628 \end_layout
629
630 \begin_layout Standard
631 LaTeXプリアンブル
632 \begin_inset Index idx
633 status collapsed
634
635 \begin_layout Plain Layout
636 L@LaTeXプリアンブル
637 \end_layout
638
639 \end_inset
640
641 を変更するには、
642 \family sans
643 文書\SpecialChar \menuseparator
644 設定\SpecialChar \menuseparator
645 LaT
646 \begin_inset ERT
647 status collapsed
648
649 \begin_layout Plain Layout
650
651 {}
652 \end_layout
653
654 \end_inset
655
656 eXプリアンブル
657 \family default
658 メニューを使用してください。
659 \end_layout
660
661 \begin_layout Standard
662 行列や場合分け、多行数式を続けて編集するには、
663 \family sans
664 編集\SpecialChar \menuseparator
665 数式
666 \family default
667 メニューと
668 \family sans
669 編集\SpecialChar \menuseparator
670 行と列
671 \family default
672 メニューを使うか、表ツールバーを使用することができます。メニューから行や列を交換するように指定されたときには、カーソルのある列や行は、それぞれ右側の列や下の行と
673 交換されます。カーソルが最後の列や行にあるときには、左の列や上の行と交換されることになります。
674 \end_layout
675
676 \begin_layout Standard
677 数式内で文章を書く
678 \begin_inset Foot
679 status collapsed
680
681 \begin_layout Plain Layout
682 多行数式では、
683 \series bold
684
685 \backslash
686 intertext
687 \series default
688 コマンドが使用されます。
689 \begin_inset CommandInset ref
690 LatexCommand ref
691 reference "sub:多行数式中のテキスト"
692
693 \end_inset
694
695 を参照のこと。
696 \end_layout
697
698 \end_inset
699
700 には、
701 \emph on
702 数式テキスト
703 \emph default
704
705 \begin_inset Index idx
706 status collapsed
707
708 \begin_layout Plain Layout
709 てきすと ! すうしきないの @ テキスト ! 数式内の
710 \end_layout
711
712 \end_inset
713
714
715 \begin_inset Index idx
716 status collapsed
717
718 \begin_layout Plain Layout
719 すうしきてきすと @ 数式テキスト
720 \end_layout
721
722 \end_inset
723
724 が使用されます。このモードには、短絡キー
725 \begin_inset Info
726 type  "shortcut"
727 arg   "math-mode"
728 \end_inset
729
730 を使うか、
731 \series bold
732
733 \backslash
734 text
735 \series default
736
737 \begin_inset Index idx
738 status collapsed
739
740 \begin_layout Plain Layout
741 こまんど @ コマンド ! T ! 
742 \backslash
743 text
744 \end_layout
745
746 \end_inset
747
748 コマンドを挿入することで入ることができます。テキストは、LyX中では黒字で表示されるので、青字で表示される他の数式部分とは区別することができます。出力においては
749 、数式テキストは、他の数式部分とは違って、アップライト体に組まれます。
750 \end_layout
751
752 \begin_layout Subsection*
753 コマンドの構成
754 \end_layout
755
756 \begin_layout Standard
757 数式要素に使われるほとんどのLaTeXコマンドは、以下のような構成になっています。
758 \end_layout
759
760 \begin_layout Standard
761
762 \series bold
763
764 \backslash
765 コマンド名[非必須引数]{必須引数}
766 \end_layout
767
768 \begin_layout Standard
769 コマンドは、つねにバックスラッシュ「
770 \series bold
771
772 \backslash
773
774 \series default
775 」で始まります。非必須の引数を省略するときには、随伴する括弧も省略しなくてはなりません。必須引数の前後の括弧は、この文書中では、TeX括弧
776 \begin_inset Index idx
777 status collapsed
778
779 \begin_layout Plain Layout
780 T@TeX括弧
781 \end_layout
782
783 \end_inset
784
785 と呼ぶことにします。数式中でコマンド名に左括弧を付けると、LyXは自動的にTeX括弧を生成します。数式中ではそれ以外に、
786 \series bold
787
788 \backslash
789 {
790 \series default
791 コマンドを使えば、つねにTeX括弧を生成することができます。LyX中で、青字で表示される通常の括弧とは違って、TeX括弧は赤字で表示されます。TeXモード中では
792 、TeX括弧を得るのに、とくにコマンドは必要としません。また、TeX括弧は出力中では表示されません。
793 \end_layout
794
795 \begin_layout Standard
796 記号のコマンドのように引数のないコマンドをTeXモードに入力するときには、コマンドの終わりを表すために、コマンドの後に空白が
797 \emph on
798 かならず
799 \emph default
800 入力されなくてはなりません。この空白は出力中には現れません。空白を出力中に表示したいときには、空白の後に、通常テキストモードの保護された空白が来なくてはなりませ
801 ん。
802 \end_layout
803
804 \begin_layout Standard
805 保護された空白は、
806 \begin_inset Info
807 type  "shortcut"
808 arg   "space-insert protected"
809 \end_inset
810
811 で入力できます。
812 \end_layout
813
814 \begin_layout Subsection*
815 \begin_inset Newpage newpage
816 \end_inset
817
818 文法の説明
819 \end_layout
820
821 \begin_layout Itemize
822 記号
823 \begin_inset Foot
824 status collapsed
825
826 \begin_layout Plain Layout
827 この可視化された空白文字は、
828 \series bold
829
830 \backslash
831 textvisiblespace
832 \series default
833
834 \begin_inset Index idx
835 status collapsed
836
837 \begin_layout Plain Layout
838 こまんど@コマンド ! T ! 
839 \backslash
840 textvisiblespace
841 \end_layout
842
843 \end_inset
844
845 コマンドをTeXモード中に挿入することで作ることができます。
846 \end_layout
847
848 \end_inset
849
850
851 \begin_inset ERT
852 status collapsed
853
854 \begin_layout Plain Layout
855
856
857 \backslash
858 spce 
859 \end_layout
860
861 \end_inset
862
863 は、空白文字を入力することを表します。
864 \end_layout
865
866 \begin_layout Itemize
867 \begin_inset Formula $\to$
868 \end_inset
869
870 のような矢印は、キーボードから対応する矢印キーを押すことを表します。
871 \end_layout
872
873 \begin_layout Subsection*
874 使用できる単位
875 \end_layout
876
877 \begin_layout Standard
878 \align center
879 \begin_inset Float table
880 placement H
881 wide false
882 sideways false
883 status open
884
885 \begin_layout Plain Layout
886 \align center
887 \begin_inset Caption
888
889 \begin_layout Plain Layout
890 \begin_inset CommandInset label
891 LatexCommand label
892 name "tab:使用できる単位"
893
894 \end_inset
895
896 使用できる単位
897 \end_layout
898
899 \end_inset
900
901
902 \end_layout
903
904 \begin_layout Plain Layout
905 \align center
906 \begin_inset Tabular
907 <lyxtabular version="3" rows="13" columns="2">
908 <features tabularvalignment="middle">
909 <column alignment="center" valignment="top" width="0">
910 <column alignment="center" valignment="top" width="0">
911 <row>
912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
913 \begin_inset Text
914
915 \begin_layout Plain Layout
916 単位
917 \end_layout
918
919 \end_inset
920 </cell>
921 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
922 \begin_inset Text
923
924 \begin_layout Plain Layout
925 名称/摘要
926 \end_layout
927
928 \end_inset
929 </cell>
930 </row>
931 <row>
932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
933 \begin_inset Text
934
935 \begin_layout Plain Layout
936 mm
937 \end_layout
938
939 \end_inset
940 </cell>
941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
942 \begin_inset Text
943
944 \begin_layout Plain Layout
945 ミリメートル
946 \end_layout
947
948 \end_inset
949 </cell>
950 </row>
951 <row>
952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
953 \begin_inset Text
954
955 \begin_layout Plain Layout
956 cm
957 \end_layout
958
959 \end_inset
960 </cell>
961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
962 \begin_inset Text
963
964 \begin_layout Plain Layout
965 センチメートル
966 \end_layout
967
968 \end_inset
969 </cell>
970 </row>
971 <row>
972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
973 \begin_inset Text
974
975 \begin_layout Plain Layout
976 in
977 \end_layout
978
979 \end_inset
980 </cell>
981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
982 \begin_inset Text
983
984 \begin_layout Plain Layout
985 インチ
986 \end_layout
987
988 \end_inset
989 </cell>
990 </row>
991 <row>
992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
993 \begin_inset Text
994
995 \begin_layout Plain Layout
996 pt
997 \end_layout
998
999 \end_inset
1000 </cell>
1001 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1002 \begin_inset Text
1003
1004 \begin_layout Plain Layout
1005 ポイント (72.27
1006 \begin_inset Formula $\,$
1007 \end_inset
1008
1009 pt = 1
1010 \begin_inset Formula $\,$
1011 \end_inset
1012
1013 in)
1014 \end_layout
1015
1016 \end_inset
1017 </cell>
1018 </row>
1019 <row>
1020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1021 \begin_inset Text
1022
1023 \begin_layout Plain Layout
1024 pc
1025 \end_layout
1026
1027 \end_inset
1028 </cell>
1029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1030 \begin_inset Text
1031
1032 \begin_layout Plain Layout
1033 パイカ (1
1034 \begin_inset Formula $\,$
1035 \end_inset
1036
1037 pc = 12
1038 \begin_inset Formula $\,$
1039 \end_inset
1040
1041 pt)
1042 \end_layout
1043
1044 \end_inset
1045 </cell>
1046 </row>
1047 <row>
1048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1049 \begin_inset Text
1050
1051 \begin_layout Plain Layout
1052 sp
1053 \end_layout
1054
1055 \end_inset
1056 </cell>
1057 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1058 \begin_inset Text
1059
1060 \begin_layout Plain Layout
1061 スケールポイント (65536
1062 \begin_inset Formula $\,$
1063 \end_inset
1064
1065 sp = 1
1066 \begin_inset Formula $\,$
1067 \end_inset
1068
1069 pt)
1070 \end_layout
1071
1072 \end_inset
1073 </cell>
1074 </row>
1075 <row>
1076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1077 \begin_inset Text
1078
1079 \begin_layout Plain Layout
1080 bp
1081 \end_layout
1082
1083 \end_inset
1084 </cell>
1085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1086 \begin_inset Text
1087
1088 \begin_layout Plain Layout
1089 ビッグポイント (72
1090 \begin_inset Formula $\,$
1091 \end_inset
1092
1093 bp = 1
1094 \begin_inset Formula $\,$
1095 \end_inset
1096
1097 in)
1098 \end_layout
1099
1100 \end_inset
1101 </cell>
1102 </row>
1103 <row>
1104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1105 \begin_inset Text
1106
1107 \begin_layout Plain Layout
1108 dd
1109 \end_layout
1110
1111 \end_inset
1112 </cell>
1113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1114 \begin_inset Text
1115
1116 \begin_layout Plain Layout
1117 ディドー (72
1118 \begin_inset Formula $\,$
1119 \end_inset
1120
1121 dd 
1122 \begin_inset Formula $\approx$
1123 \end_inset
1124
1125  37.6
1126 \begin_inset Formula $\,$
1127 \end_inset
1128
1129 mm)
1130 \end_layout
1131
1132 \end_inset
1133 </cell>
1134 </row>
1135 <row>
1136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1137 \begin_inset Text
1138
1139 \begin_layout Plain Layout
1140 cc
1141 \end_layout
1142
1143 \end_inset
1144 </cell>
1145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1146 \begin_inset Text
1147
1148 \begin_layout Plain Layout
1149 シセロ (1
1150 \begin_inset Formula $\,$
1151 \end_inset
1152
1153 cc = 12
1154 \begin_inset Formula $\,$
1155 \end_inset
1156
1157 dd)
1158 \end_layout
1159
1160 \end_inset
1161 </cell>
1162 </row>
1163 <row>
1164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1165 \begin_inset Text
1166
1167 \begin_layout Plain Layout
1168 ex
1169 \end_layout
1170
1171 \end_inset
1172 </cell>
1173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1174 \begin_inset Text
1175
1176 \begin_layout Plain Layout
1177 現在のフォントの文字「x」の高さ
1178 \end_layout
1179
1180 \end_inset
1181 </cell>
1182 </row>
1183 <row>
1184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1185 \begin_inset Text
1186
1187 \begin_layout Plain Layout
1188 em
1189 \end_layout
1190
1191 \end_inset
1192 </cell>
1193 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1194 \begin_inset Text
1195
1196 \begin_layout Plain Layout
1197 現在のフォントの文字「M」の幅
1198 \end_layout
1199
1200 \end_inset
1201 </cell>
1202 </row>
1203 <row>
1204 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1205 \begin_inset Text
1206
1207 \begin_layout Plain Layout
1208 mu
1209 \end_layout
1210
1211 \end_inset
1212 </cell>
1213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1214 \begin_inset Text
1215
1216 \begin_layout Plain Layout
1217 数式単位(1
1218 \begin_inset space \thinspace{}
1219 \end_inset
1220
1221 mu = 
1222 \begin_inset Formula $\nicefrac{1}{18}$
1223 \end_inset
1224
1225
1226 \begin_inset space \thinspace{}
1227 \end_inset
1228
1229 em)
1230 \end_layout
1231
1232 \end_inset
1233 </cell>
1234 </row>
1235 </lyxtabular>
1236
1237 \end_inset
1238
1239
1240 \end_layout
1241
1242 \end_inset
1243
1244
1245 \end_layout
1246
1247 \begin_layout Standard
1248 \begin_inset Newpage newpage
1249 \end_inset
1250
1251
1252 \end_layout
1253
1254 \begin_layout Section
1255 基礎的な函数
1256 \end_layout
1257
1258 \begin_layout Subsection
1259 指数
1260 \begin_inset Index idx
1261 status collapsed
1262
1263 \begin_layout Plain Layout
1264 しすう@指数
1265 \end_layout
1266
1267 \end_inset
1268
1269 および添字
1270 \begin_inset Index idx
1271 status collapsed
1272
1273 \begin_layout Plain Layout
1274 そえじ@添字
1275 \end_layout
1276
1277 \end_inset
1278
1279
1280 \begin_inset Index idx
1281 status collapsed
1282
1283 \begin_layout Plain Layout
1284 うえつきもじ@上付き文字|see
1285 \begin_inset ERT
1286 status collapsed
1287
1288 \begin_layout Plain Layout
1289
1290 {
1291 \end_layout
1292
1293 \end_inset
1294
1295 指数
1296 \begin_inset ERT
1297 status collapsed
1298
1299 \begin_layout Plain Layout
1300
1301 }
1302 \end_layout
1303
1304 \end_inset
1305
1306
1307 \end_layout
1308
1309 \end_inset
1310
1311
1312 \begin_inset Index idx
1313 status collapsed
1314
1315 \begin_layout Plain Layout
1316 したつきもじ@下付き文字|see
1317 \begin_inset ERT
1318 status collapsed
1319
1320 \begin_layout Plain Layout
1321
1322 {
1323 \end_layout
1324
1325 \end_inset
1326
1327 添字
1328 \begin_inset ERT
1329 status collapsed
1330
1331 \begin_layout Plain Layout
1332
1333 }
1334 \end_layout
1335
1336 \end_inset
1337
1338
1339 \end_layout
1340
1341 \end_inset
1342
1343
1344 \end_layout
1345
1346 \begin_layout Standard
1347 添字は、アンダースコア「_」を打鍵するか、数式ツールバーボタン
1348 \begin_inset Graphics
1349         filename ../../images/math-subscript.png
1350         scale 85
1351
1352 \end_inset
1353
1354 を使って入力することができ、指数は、キャレット「^」を打鍵するか、数式ツールバーボタン
1355 \begin_inset Graphics
1356         filename ../../images/math-superscript.png
1357         scale 85
1358
1359 \end_inset
1360
1361 を使って入力することができます。
1362 \end_layout
1363
1364 \begin_layout Standard
1365 \align center
1366 \begin_inset Tabular
1367 <lyxtabular version="3" rows="4" columns="2">
1368 <features tabularvalignment="middle">
1369 <column alignment="center" valignment="top" width="0pt">
1370 <column alignment="center" valignment="top" width="0pt">
1371 <row>
1372 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1373 \begin_inset Text
1374
1375 \begin_layout Plain Layout
1376 コマンド
1377 \end_layout
1378
1379 \end_inset
1380 </cell>
1381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1382 \begin_inset Text
1383
1384 \begin_layout Plain Layout
1385 結果
1386 \begin_inset Note Note
1387 status collapsed
1388
1389 \begin_layout Plain Layout
1390 ここで使われている
1391 \series bold
1392
1393 \backslash
1394 raisebox
1395 \series default
1396 は単なるスペーサーです。
1397 \end_layout
1398
1399 \end_inset
1400
1401
1402 \end_layout
1403
1404 \end_inset
1405 </cell>
1406 </row>
1407 <row>
1408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1409 \begin_inset Text
1410
1411 \begin_layout Plain Layout
1412 B_V
1413 \end_layout
1414
1415 \end_inset
1416 </cell>
1417 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1418 \begin_inset Text
1419
1420 \begin_layout Plain Layout
1421 \begin_inset Formula $B_{V}$
1422 \end_inset
1423
1424
1425 \end_layout
1426
1427 \end_inset
1428 </cell>
1429 </row>
1430 <row>
1431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1432 \begin_inset Text
1433
1434 \begin_layout Plain Layout
1435 B^V
1436 \end_layout
1437
1438 \end_inset
1439 </cell>
1440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1441 \begin_inset Text
1442
1443 \begin_layout Plain Layout
1444 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1445 \end_inset
1446
1447
1448 \end_layout
1449
1450 \end_inset
1451 </cell>
1452 </row>
1453 <row>
1454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1455 \begin_inset Text
1456
1457 \begin_layout Plain Layout
1458 B^
1459 \begin_inset ERT
1460 status collapsed
1461
1462 \begin_layout Plain Layout
1463
1464
1465 \backslash
1466 spce 
1467 \end_layout
1468
1469 \end_inset
1470
1471 A
1472 \end_layout
1473
1474 \end_inset
1475 </cell>
1476 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1477 \begin_inset Text
1478
1479 \begin_layout Plain Layout
1480 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1481 \end_inset
1482
1483
1484 \end_layout
1485
1486 \end_inset
1487 </cell>
1488 </row>
1489 </lyxtabular>
1490
1491 \end_inset
1492
1493
1494 \end_layout
1495
1496 \begin_layout Standard
1497 キャレットは、言語によってはアクセント記号として使用されているので、そのような場合には、母音字の後でキャレットを押すと、指数にならずにアクセントをつけることにな
1498 ってしまいます
1499 \begin_inset Foot
1500 status collapsed
1501
1502 \begin_layout Plain Layout
1503 使用しているキーボード設定によっては、同様のことが母音以外の文字でも起こることがあります。
1504 \end_layout
1505
1506 \end_inset
1507
1508 。この場合に指数を作るには、上記の最後の例のように、キャレットの後に
1509 \family sans
1510 Space
1511 \family default
1512 を押してください。
1513 \end_layout
1514
1515 \begin_layout Subsection
1516 分数
1517 \begin_inset CommandInset label
1518 LatexCommand label
1519 name "sub:分数"
1520
1521 \end_inset
1522
1523
1524 \begin_inset Index idx
1525 status collapsed
1526
1527 \begin_layout Plain Layout
1528 ぶんすう@分数
1529 \end_layout
1530
1531 \end_inset
1532
1533
1534 \end_layout
1535
1536 \begin_layout Standard
1537 分数は、コマンド
1538 \series bold
1539
1540 \backslash
1541 frac
1542 \series default
1543
1544 \begin_inset Index idx
1545 status collapsed
1546
1547 \begin_layout Plain Layout
1548 こまんど@コマンド ! F ! 
1549 \backslash
1550 frac
1551 \end_layout
1552
1553 \end_inset
1554
1555 か数式ツールバーボタン
1556 \begin_inset Graphics
1557         filename ../../images/math/frac.png
1558         scale 50
1559
1560 \end_inset
1561
1562 で作ることができます。フォント寸法は、分数が行内数式にあるか別行建て数式にあるかに応じて、自動的に調整されます。数式ツールバーボタン
1563 \begin_inset Graphics
1564         filename ../../images/math/frac-square.png
1565         scale 85
1566
1567 \end_inset
1568
1569 を使えば、分数の種類を選ぶことができます。
1570 \end_layout
1571
1572 \begin_layout Standard
1573 コマンド
1574 \series bold
1575
1576 \backslash
1577 dfrac
1578 \begin_inset Index idx
1579 status collapsed
1580
1581 \begin_layout Plain Layout
1582 こまんど@コマンド ! D ! 
1583 \backslash
1584 dfrac
1585 \end_layout
1586
1587 \end_inset
1588
1589 を使えば、つねに別行建て数式の大きさを持つ分数を作成することができます。また、コマンド
1590 \backslash
1591 tfrac
1592 \begin_inset Index idx
1593 status collapsed
1594
1595 \begin_layout Plain Layout
1596 こまんど@コマンド ! T ! 
1597 \backslash
1598 tfrac
1599 \end_layout
1600
1601 \end_inset
1602
1603 では、つねに行内数式の大きさで分数が表示されます。以下はこれらの例です。
1604 \end_layout
1605
1606 \begin_layout Standard
1607 これは、コマンド
1608 \series bold
1609
1610 \backslash
1611 frac
1612 \series default
1613 を使用して作った分数
1614 \begin_inset Formula $\frac{1}{2}$
1615 \end_inset
1616
1617 を含む行です。
1618 \end_layout
1619
1620 \begin_layout Standard
1621 これは、コマンド
1622 \series bold
1623
1624 \backslash
1625 dfrac
1626 \series default
1627 を使用して作った分数
1628 \begin_inset Formula $\dfrac{1}{2}$
1629 \end_inset
1630
1631 を含む行です。
1632 \end_layout
1633
1634 \begin_layout Standard
1635 \align center
1636 \begin_inset Tabular
1637 <lyxtabular version="3" rows="4" columns="2">
1638 <features tabularvalignment="middle">
1639 <column alignment="center" valignment="top" width="0pt">
1640 <column alignment="center" valignment="top" width="0pt">
1641 <row>
1642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1643 \begin_inset Text
1644
1645 \begin_layout Plain Layout
1646 コマンド
1647 \end_layout
1648
1649 \end_inset
1650 </cell>
1651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1652 \begin_inset Text
1653
1654 \begin_layout Plain Layout
1655 出力
1656 \begin_inset Note Note
1657 status collapsed
1658
1659 \begin_layout Plain Layout
1660 ここで
1661 \series bold
1662
1663 \backslash
1664 raisebox
1665 \series default
1666 はスペーサーとして使用しているだけです。
1667 \end_layout
1668
1669 \end_inset
1670
1671
1672 \end_layout
1673
1674 \end_inset
1675 </cell>
1676 </row>
1677 <row>
1678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1679 \begin_inset Text
1680
1681 \begin_layout Plain Layout
1682
1683 \backslash
1684 frac
1685 \begin_inset ERT
1686 status collapsed
1687
1688 \begin_layout Plain Layout
1689
1690
1691 \backslash
1692 spce 
1693 \end_layout
1694
1695 \end_inset
1696
1697 A
1698 \begin_inset Formula $\downarrow$
1699 \end_inset
1700
1701 B
1702 \end_layout
1703
1704 \end_inset
1705 </cell>
1706 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1707 \begin_inset Text
1708
1709 \begin_layout Plain Layout
1710 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1711 \end_inset
1712
1713
1714 \end_layout
1715
1716 \end_inset
1717 </cell>
1718 </row>
1719 <row>
1720 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1721 \begin_inset Text
1722
1723 \begin_layout Plain Layout
1724
1725 \backslash
1726 dfrac
1727 \begin_inset ERT
1728 status collapsed
1729
1730 \begin_layout Plain Layout
1731
1732
1733 \backslash
1734 spce 
1735 \end_layout
1736
1737 \end_inset
1738
1739 A
1740 \begin_inset Formula $\downarrow$
1741 \end_inset
1742
1743 B
1744 \end_layout
1745
1746 \end_inset
1747 </cell>
1748 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1749 \begin_inset Text
1750
1751 \begin_layout Plain Layout
1752 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1753 \end_inset
1754
1755
1756 \end_layout
1757
1758 \end_inset
1759 </cell>
1760 </row>
1761 <row>
1762 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1763 \begin_inset Text
1764
1765 \begin_layout Plain Layout
1766
1767 \backslash
1768 dfrac
1769 \begin_inset ERT
1770 status collapsed
1771
1772 \begin_layout Plain Layout
1773
1774
1775 \backslash
1776 spce 
1777 \end_layout
1778
1779 \end_inset
1780
1781 e^
1782 \begin_inset ERT
1783 status collapsed
1784
1785 \begin_layout Plain Layout
1786
1787
1788 \backslash
1789 spce 
1790 \end_layout
1791
1792 \end_inset
1793
1794
1795 \backslash
1796 frac
1797 \begin_inset ERT
1798 status collapsed
1799
1800 \begin_layout Plain Layout
1801
1802
1803 \backslash
1804 spce 
1805 \end_layout
1806
1807 \end_inset
1808
1809 1
1810 \begin_inset Formula $\downarrow$
1811 \end_inset
1812
1813 2
1814 \begin_inset Formula $\downarrow\downarrow$
1815 \end_inset
1816
1817 3
1818 \end_layout
1819
1820 \end_inset
1821 </cell>
1822 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1823 \begin_inset Text
1824
1825 \begin_layout Plain Layout
1826 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
1827 \end_inset
1828
1829
1830 \end_layout
1831
1832 \end_inset
1833 </cell>
1834 </row>
1835 </lyxtabular>
1836
1837 \end_inset
1838
1839
1840 \end_layout
1841
1842 \begin_layout Standard
1843 \begin_inset VSpace bigskip
1844 \end_inset
1845
1846
1847 \begin_inset Newpage newpage
1848 \end_inset
1849
1850 入れ子の分数を作るには、コマンド
1851 \series bold
1852
1853 \backslash
1854 cfrac
1855 \series default
1856
1857 \begin_inset Index idx
1858 status collapsed
1859
1860 \begin_layout Plain Layout
1861 こまんど@コマンド ! C ! 
1862 \backslash
1863 cfrac
1864 \end_layout
1865
1866 \end_inset
1867
1868 が使えます。以下がその例です。
1869 \begin_inset VSpace -3mm
1870 \end_inset
1871
1872
1873 \end_layout
1874
1875 \begin_layout Standard
1876 \begin_inset Formula \begin{align*}
1877 \textrm{\textbf{\textbackslash frac}を使用して作成} &  & \textrm{\textbf{\textbackslash cfrac}を使用して作成}\\
1878 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
1879 \end{align*}
1880
1881 \end_inset
1882
1883
1884 \end_layout
1885
1886 \begin_layout Standard
1887 上記の例で使用したコマンドは、
1888 \end_layout
1889
1890 \begin_layout Standard
1891
1892 \series bold
1893
1894 \backslash
1895 cfrac
1896 \begin_inset ERT
1897 status collapsed
1898
1899 \begin_layout Plain Layout
1900
1901
1902 \backslash
1903 space 
1904 \end_layout
1905
1906 \end_inset
1907
1908 A
1909 \begin_inset Formula $\downarrow$
1910 \end_inset
1911
1912 B+
1913 \backslash
1914 cfrac
1915 \begin_inset ERT
1916 status collapsed
1917
1918 \begin_layout Plain Layout
1919
1920
1921 \backslash
1922 space 
1923 \end_layout
1924
1925 \end_inset
1926
1927 C+
1928 \backslash
1929 cfrac
1930 \begin_inset ERT
1931 status collapsed
1932
1933 \begin_layout Plain Layout
1934
1935
1936 \backslash
1937 space 
1938 \end_layout
1939
1940 \end_inset
1941
1942 E
1943 \begin_inset Formula $\downarrow$
1944 \end_inset
1945
1946 F
1947 \begin_inset Formula $\downarrow$
1948 \end_inset
1949
1950 D
1951 \end_layout
1952
1953 \begin_layout Standard
1954 です。
1955 \end_layout
1956
1957 \begin_layout Standard
1958 \begin_inset VSpace medskip
1959 \end_inset
1960
1961
1962 \end_layout
1963
1964 \begin_layout Standard
1965
1966 \series bold
1967
1968 \backslash
1969 cfrac
1970 \series default
1971 は、他の分数中に入れ子になっている場合も含め、分数をつねに別行建て数式の大きさに設定します。
1972 \end_layout
1973
1974 \begin_layout Standard
1975 分子の揃え方は、指定することができます。
1976 \series bold
1977
1978 \backslash
1979 cfracleft
1980 \series default
1981 コマンドは左揃えにし、
1982 \series bold
1983
1984 \backslash
1985 cfracright
1986 \series default
1987 は右揃えにします。
1988 \series bold
1989
1990 \backslash
1991 cfrac
1992 \series default
1993 は中央揃えです。以下の各分数は、それぞれの揃え位置を示しています。
1994 \begin_inset Newline newline
1995 \end_inset
1996
1997
1998 \series bold
1999
2000 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2001 \end_inset
2002
2003
2004 \begin_inset Formula $\cfrac{A}{B+C}$
2005 \end_inset
2006
2007
2008 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2009 \end_inset
2010
2011
2012 \end_layout
2013
2014 \begin_layout Standard
2015 \begin_inset Note Greyedout
2016 status open
2017
2018 \begin_layout Plain Layout
2019
2020 \series bold
2021 (註)
2022 \backslash
2023 cfracleft
2024 \series default
2025
2026 \series bold
2027
2028 \backslash
2029 cfracright
2030 \series default
2031 は、生粋のLaTeXコマンドではなく、実体は、コマンド
2032 \series bold
2033
2034 \backslash
2035 cfrac[揃え位置]{分子}{分母}
2036 \series default
2037 です。したがって、これらをTeXモードで使うことはできません。
2038 \end_layout
2039
2040 \end_inset
2041
2042
2043 \end_layout
2044
2045 \begin_layout Standard
2046 \begin_inset VSpace medskip
2047 \end_inset
2048
2049 ときに、以下のように
2050 \series bold
2051
2052 \backslash
2053 cfrac
2054 \series default
2055
2056 \series bold
2057
2058 \backslash
2059 frac
2060 \series default
2061 を組み合わせて使うと便利です。
2062 \begin_inset Formula \[
2063 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}\]
2064
2065 \end_inset
2066
2067
2068 \end_layout
2069
2070 \begin_layout Standard
2071 斜めの分数線を持つ行内分数を作るには、コマンド
2072 \series bold
2073
2074 \backslash
2075 nicefrac
2076 \series default
2077
2078 \begin_inset Index idx
2079 status collapsed
2080
2081 \begin_layout Plain Layout
2082 こまんど@コマンド ! N ! 
2083 \backslash
2084 nicefrac
2085 \end_layout
2086
2087 \end_inset
2088
2089 (例:
2090 \begin_inset Formula $\nicefrac{5}{31}$
2091 \end_inset
2092
2093 )を使うか、コマンド
2094 \series bold
2095
2096 \backslash
2097 unitfrac
2098 \series default
2099
2100 \begin_inset Index idx
2101 status collapsed
2102
2103 \begin_layout Plain Layout
2104 こまんど@コマンド ! U ! 
2105 \backslash
2106 unitfrac
2107 \end_layout
2108
2109 \end_inset
2110
2111 (例:
2112 \begin_inset Formula $\unitfrac{5}{31}$
2113 \end_inset
2114
2115 )を使います。さらに、
2116 \begin_inset Formula $\unitfrac[2]{1}{3}$
2117 \end_inset
2118
2119 のような帯分数を作るコマンド
2120 \series bold
2121
2122 \backslash
2123 unitfracthree
2124 \series default
2125 もあります。
2126 \end_layout
2127
2128 \begin_layout Standard
2129 \begin_inset Note Greyedout
2130 status open
2131
2132 \begin_layout Plain Layout
2133
2134 \series bold
2135 (註)
2136 \series default
2137 実は、
2138 \series bold
2139
2140 \backslash
2141 unitfracthree
2142 \series default
2143 は生粋のLaTeXコマンドではなく、実体は
2144 \begin_inset Newline newline
2145 \end_inset
2146
2147
2148 \series bold
2149
2150 \backslash
2151 unitfrac[自然数]{分子}{分母}
2152 \series default
2153 というコマンドなので、TeXコードでは使用できません。
2154 \end_layout
2155
2156 \end_inset
2157
2158
2159 \end_layout
2160
2161 \begin_layout Standard
2162 分数線を変更できるような独自の分数の定義のしかたは、第
2163 \begin_inset CommandInset ref
2164 LatexCommand ref
2165 reference "sub:自己定義の分数"
2166
2167 \end_inset
2168
2169 節に説明があります。
2170 \end_layout
2171
2172 \begin_layout Subsection
2173 根号
2174 \begin_inset Index idx
2175 status collapsed
2176
2177 \begin_layout Plain Layout
2178 こんごう@根号
2179 \end_layout
2180
2181 \end_inset
2182
2183
2184 \begin_inset Index idx
2185 status collapsed
2186
2187 \begin_layout Plain Layout
2188 るーと@ルート|see
2189 \begin_inset ERT
2190 status collapsed
2191
2192 \begin_layout Plain Layout
2193
2194 {
2195 \end_layout
2196
2197 \end_inset
2198
2199 根号
2200 \begin_inset ERT
2201 status collapsed
2202
2203 \begin_layout Plain Layout
2204
2205 }
2206 \end_layout
2207
2208 \end_inset
2209
2210
2211 \end_layout
2212
2213 \end_inset
2214
2215
2216 \end_layout
2217
2218 \begin_layout Standard
2219 平方根は、
2220 \series bold
2221
2222 \backslash
2223 sqrt
2224 \series default
2225
2226 \begin_inset Index idx
2227 status collapsed
2228
2229 \begin_layout Plain Layout
2230 こまんど@コマンド ! S ! 
2231 \backslash
2232 sqrt
2233 \end_layout
2234
2235 \end_inset
2236
2237 か数式ツールバーボタン
2238 \begin_inset Graphics
2239         filename ../../images/math/sqrt.png
2240         scale 85
2241
2242 \end_inset
2243
2244 で作成することができ、他のすべての根号は、コマンド
2245 \series bold
2246
2247 \backslash
2248 root
2249 \series default
2250
2251 \begin_inset Index idx
2252 status collapsed
2253
2254 \begin_layout Plain Layout
2255 こまんど@コマンド ! R ! 
2256 \backslash
2257 root
2258 \end_layout
2259
2260 \end_inset
2261
2262 か数式ツールバーボタン
2263 \begin_inset Graphics
2264         filename ../../images/math/root.png
2265         scale 85
2266
2267 \end_inset
2268
2269 で作成することができます。
2270 \end_layout
2271
2272 \begin_layout Standard
2273 \align center
2274 \begin_inset Tabular
2275 <lyxtabular version="3" rows="3" columns="2">
2276 <features tabularvalignment="middle">
2277 <column alignment="center" valignment="top" width="0pt">
2278 <column alignment="center" valignment="top" width="0pt">
2279 <row>
2280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2281 \begin_inset Text
2282
2283 \begin_layout Plain Layout
2284 コマンド
2285 \end_layout
2286
2287 \end_inset
2288 </cell>
2289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2290 \begin_inset Text
2291
2292 \begin_layout Plain Layout
2293 出力
2294 \begin_inset Note Note
2295 status collapsed
2296
2297 \begin_layout Plain Layout
2298 ここで
2299 \series bold
2300
2301 \backslash
2302 raisebox
2303 \series default
2304 はスペーサーとして使用しているだけです。
2305 \end_layout
2306
2307 \end_inset
2308
2309
2310 \end_layout
2311
2312 \end_inset
2313 </cell>
2314 </row>
2315 <row>
2316 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2317 \begin_inset Text
2318
2319 \begin_layout Plain Layout
2320
2321 \backslash
2322 sqrt
2323 \begin_inset ERT
2324 status collapsed
2325
2326 \begin_layout Plain Layout
2327
2328
2329 \backslash
2330 spce 
2331 \end_layout
2332
2333 \end_inset
2334
2335 A-B
2336 \end_layout
2337
2338 \end_inset
2339 </cell>
2340 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2341 \begin_inset Text
2342
2343 \begin_layout Plain Layout
2344 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2345 \end_inset
2346
2347
2348 \end_layout
2349
2350 \end_inset
2351 </cell>
2352 </row>
2353 <row>
2354 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2355 \begin_inset Text
2356
2357 \begin_layout Plain Layout
2358
2359 \backslash
2360 root
2361 \begin_inset ERT
2362 status collapsed
2363
2364 \begin_layout Plain Layout
2365
2366
2367 \backslash
2368 spce 
2369 \end_layout
2370
2371 \end_inset
2372
2373 3
2374 \begin_inset Formula $\downarrow$
2375 \end_inset
2376
2377 A-B
2378 \end_layout
2379
2380 \end_inset
2381 </cell>
2382 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2383 \begin_inset Text
2384
2385 \begin_layout Plain Layout
2386 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2387 \end_inset
2388
2389
2390 \end_layout
2391
2392 \end_inset
2393 </cell>
2394 </row>
2395 </lyxtabular>
2396
2397 \end_inset
2398
2399
2400 \end_layout
2401
2402 \begin_layout Standard
2403 平方根は、根号指数フィールドを空白のままにしておけば、
2404 \series bold
2405
2406 \backslash
2407 root
2408 \series default
2409 でも作成することができます。
2410 \end_layout
2411
2412 \begin_layout Standard
2413 \begin_inset Formula $\sqrt[\beta]{B}$
2414 \end_inset
2415
2416 の例のように、指数のとる値によっては、根号への距離が近すぎることがあります。
2417 \begin_inset Newline newline
2418 \end_inset
2419
2420 この場合には、
2421 \begin_inset Formula $\beta$
2422 \end_inset
2423
2424 が根号に触れてしまいます。これを避けるためには、以下のようなコマンド書式で、コマンド
2425 \series bold
2426
2427 \backslash
2428 leftroot
2429 \series default
2430
2431 \begin_inset Index idx
2432 status collapsed
2433
2434 \begin_layout Plain Layout
2435 こまんど@コマンド ! L ! 
2436 \backslash
2437 leftroot
2438 \end_layout
2439
2440 \end_inset
2441
2442
2443 \series bold
2444
2445 \backslash
2446 uproot
2447 \series default
2448
2449 \begin_inset Index idx
2450 status collapsed
2451
2452 \begin_layout Plain Layout
2453 こまんど@コマンド ! U ! 
2454 \backslash
2455 uproot
2456 \end_layout
2457
2458 \end_inset
2459
2460 を使います。
2461 \end_layout
2462
2463 \begin_layout Standard
2464
2465 \series bold
2466
2467 \backslash
2468 leftroot{距離}
2469 \series default
2470 および
2471 \series bold
2472
2473 \backslash
2474 uproot{距離}
2475 \end_layout
2476
2477 \begin_layout Standard
2478 ここで「距離」は、指数を左あるいは上に動かす、Big Point(単位bp;
2479 \begin_inset Formula $\mathrm{72\, bp=1}$
2480 \end_inset
2481
2482 インチ)での数値です。これらのコマンドは、指数に書き込みます。このようにして、コマンド
2483 \begin_inset Newline newline
2484 \end_inset
2485
2486
2487 \series bold
2488
2489 \backslash
2490 root
2491 \backslash
2492 leftroot{-1
2493 \begin_inset Formula $\to$
2494 \end_inset
2495
2496
2497 \backslash
2498 uproot{2
2499 \begin_inset Formula $\to$
2500 \end_inset
2501
2502
2503 \backslash
2504 beta
2505 \begin_inset ERT
2506 status collapsed
2507
2508 \begin_layout Plain Layout
2509
2510
2511 \backslash
2512 spce 
2513 \end_layout
2514
2515 \end_inset
2516
2517
2518 \begin_inset Formula $\to$
2519 \end_inset
2520
2521 B
2522 \begin_inset Newline newline
2523 \end_inset
2524
2525
2526 \series default
2527 は、正しく組版された数式
2528 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2529 \end_inset
2530
2531 を生成します。
2532 \end_layout
2533
2534 \begin_layout Subsection
2535 二項係数
2536 \begin_inset Index idx
2537 status collapsed
2538
2539 \begin_layout Plain Layout
2540 にこうけいすう@二項係数
2541 \end_layout
2542
2543 \end_inset
2544
2545
2546 \end_layout
2547
2548 \begin_layout Standard
2549 二項係数は、コマンド
2550 \series bold
2551
2552 \backslash
2553 binom
2554 \series default
2555
2556 \begin_inset Index idx
2557 status collapsed
2558
2559 \begin_layout Plain Layout
2560 こまんど@コマンド ! B ! 
2561 \backslash
2562 binom
2563 \end_layout
2564
2565 \end_inset
2566
2567 か数式ツールバーボタン
2568 \begin_inset Graphics
2569         filename ../../images/math/frac-square.png
2570         scale 85
2571
2572 \end_inset
2573
2574 の下位メニューを使って挿入することができます。分数(
2575 \series bold
2576
2577 \backslash
2578 frac
2579 \series default
2580 )と同様に、
2581 \series bold
2582
2583 \backslash
2584 binom
2585 \series default
2586 の他に、コマンド
2587 \series bold
2588
2589 \backslash
2590 dbinom
2591 \begin_inset Index idx
2592 status collapsed
2593
2594 \begin_layout Plain Layout
2595 こまんど@コマンド ! D ! 
2596 \backslash
2597 dbinom
2598 \end_layout
2599
2600 \end_inset
2601
2602 および
2603 \backslash
2604 tbinom
2605 \series default
2606
2607 \begin_inset Index idx
2608 status collapsed
2609
2610 \begin_layout Plain Layout
2611 こまんど@コマンド ! T ! 
2612 \backslash
2613 tbinom
2614 \end_layout
2615
2616 \end_inset
2617
2618 があります。二項係数のまわりの括弧に、他の括弧を使うには、コマンド
2619 \series bold
2620
2621 \backslash
2622 brace
2623 \series default
2624
2625 \begin_inset Index idx
2626 status collapsed
2627
2628 \begin_layout Plain Layout
2629 こまんど@コマンド ! B ! 
2630 \backslash
2631 brace
2632 \end_layout
2633
2634 \end_inset
2635
2636
2637 \series bold
2638
2639 \backslash
2640 brack
2641 \series default
2642
2643 \begin_inset Index idx
2644 status collapsed
2645
2646 \begin_layout Plain Layout
2647 こまんど@コマンド ! B ! 
2648 \backslash
2649 brack
2650 \end_layout
2651
2652 \end_inset
2653
2654 があります。
2655 \end_layout
2656
2657 \begin_layout Standard
2658 \align center
2659 \begin_inset Tabular
2660 <lyxtabular version="3" rows="6" columns="2">
2661 <features tabularvalignment="middle">
2662 <column alignment="center" valignment="top" width="0pt">
2663 <column alignment="center" valignment="top" width="0pt">
2664 <row>
2665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2666 \begin_inset Text
2667
2668 \begin_layout Plain Layout
2669 コマンド
2670 \end_layout
2671
2672 \end_inset
2673 </cell>
2674 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2675 \begin_inset Text
2676
2677 \begin_layout Plain Layout
2678 出力
2679 \begin_inset Note Note
2680 status collapsed
2681
2682 \begin_layout Plain Layout
2683 ここで
2684 \series bold
2685
2686 \backslash
2687 raisebox
2688 \series default
2689 はスペーサーとして使用しているだけです。
2690 \end_layout
2691
2692 \end_inset
2693
2694
2695 \end_layout
2696
2697 \end_inset
2698 </cell>
2699 </row>
2700 <row>
2701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2702 \begin_inset Text
2703
2704 \begin_layout Plain Layout
2705
2706 \backslash
2707 binom
2708 \begin_inset ERT
2709 status collapsed
2710
2711 \begin_layout Plain Layout
2712
2713
2714 \backslash
2715 spce 
2716 \end_layout
2717
2718 \end_inset
2719
2720 A
2721 \begin_inset Formula $\downarrow$
2722 \end_inset
2723
2724 B
2725 \end_layout
2726
2727 \end_inset
2728 </cell>
2729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2730 \begin_inset Text
2731
2732 \begin_layout Plain Layout
2733 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2734 \end_inset
2735
2736
2737 \end_layout
2738
2739 \end_inset
2740 </cell>
2741 </row>
2742 <row>
2743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2744 \begin_inset Text
2745
2746 \begin_layout Plain Layout
2747
2748 \backslash
2749 dbinom
2750 \begin_inset ERT
2751 status collapsed
2752
2753 \begin_layout Plain Layout
2754
2755
2756 \backslash
2757 spce 
2758 \end_layout
2759
2760 \end_inset
2761
2762 A
2763 \begin_inset Formula $\downarrow$
2764 \end_inset
2765
2766 B
2767 \end_layout
2768
2769 \end_inset
2770 </cell>
2771 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2772 \begin_inset Text
2773
2774 \begin_layout Plain Layout
2775 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2776 \end_inset
2777
2778
2779 \end_layout
2780
2781 \end_inset
2782 </cell>
2783 </row>
2784 <row>
2785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2786 \begin_inset Text
2787
2788 \begin_layout Plain Layout
2789
2790 \backslash
2791 tbinom
2792 \begin_inset ERT
2793 status collapsed
2794
2795 \begin_layout Plain Layout
2796
2797
2798 \backslash
2799 spce 
2800 \end_layout
2801
2802 \end_inset
2803
2804 A
2805 \begin_inset Formula $\downarrow$
2806 \end_inset
2807
2808 B
2809 \end_layout
2810
2811 \end_inset
2812 </cell>
2813 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2814 \begin_inset Text
2815
2816 \begin_layout Plain Layout
2817 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2818 \end_inset
2819
2820
2821 \end_layout
2822
2823 \end_inset
2824 </cell>
2825 </row>
2826 <row>
2827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2828 \begin_inset Text
2829
2830 \begin_layout Plain Layout
2831
2832 \backslash
2833 brack
2834 \begin_inset ERT
2835 status collapsed
2836
2837 \begin_layout Plain Layout
2838
2839
2840 \backslash
2841 spce 
2842 \end_layout
2843
2844 \end_inset
2845
2846 A
2847 \begin_inset Formula $\downarrow$
2848 \end_inset
2849
2850 B
2851 \end_layout
2852
2853 \end_inset
2854 </cell>
2855 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
2856 \begin_inset Text
2857
2858 \begin_layout Plain Layout
2859 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
2860 \end_inset
2861
2862
2863 \end_layout
2864
2865 \end_inset
2866 </cell>
2867 </row>
2868 <row>
2869 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2870 \begin_inset Text
2871
2872 \begin_layout Plain Layout
2873
2874 \backslash
2875 brace
2876 \begin_inset ERT
2877 status collapsed
2878
2879 \begin_layout Plain Layout
2880
2881
2882 \backslash
2883 spce 
2884 \end_layout
2885
2886 \end_inset
2887
2888 A
2889 \begin_inset Formula $\downarrow$
2890 \end_inset
2891
2892 B
2893 \end_layout
2894
2895 \end_inset
2896 </cell>
2897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2898 \begin_inset Text
2899
2900 \begin_layout Plain Layout
2901 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
2902 \end_inset
2903
2904
2905 \end_layout
2906
2907 \end_inset
2908 </cell>
2909 </row>
2910 </lyxtabular>
2911
2912 \end_inset
2913
2914
2915 \end_layout
2916
2917 \begin_layout Subsection
2918 場合分け
2919 \begin_inset Index idx
2920 status collapsed
2921
2922 \begin_layout Plain Layout
2923 ばあいわけ@場合分け
2924 \end_layout
2925
2926 \end_inset
2927
2928
2929 \end_layout
2930
2931 \begin_layout Standard
2932 \align center
2933 \begin_inset Tabular
2934 <lyxtabular version="3" rows="3" columns="2">
2935 <features tabularvalignment="middle">
2936 <column alignment="center" valignment="top" width="0pt">
2937 <column alignment="center" valignment="top" width="0pt">
2938 <row>
2939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2940 \begin_inset Text
2941
2942 \begin_layout Plain Layout
2943 コマンド
2944 \end_layout
2945
2946 \end_inset
2947 </cell>
2948 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2949 \begin_inset Text
2950
2951 \begin_layout Plain Layout
2952 出力
2953 \end_layout
2954
2955 \end_inset
2956 </cell>
2957 </row>
2958 <row>
2959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2960 \begin_inset Text
2961
2962 \begin_layout Plain Layout
2963
2964 \backslash
2965 cases
2966 \begin_inset ERT
2967 status collapsed
2968
2969 \begin_layout Plain Layout
2970
2971
2972 \backslash
2973 spce 
2974 \end_layout
2975
2976 \end_inset
2977
2978 A
2979 \begin_inset Formula $\to$
2980 \end_inset
2981
2982 B
2983 \begin_inset Formula $>$
2984 \end_inset
2985
2986 0
2987 \begin_inset Index idx
2988 status collapsed
2989
2990 \begin_layout Plain Layout
2991 こまんど@コマンド ! C ! 
2992 \backslash
2993 cases
2994 \end_layout
2995
2996 \end_inset
2997
2998
2999 \end_layout
3000
3001 \end_inset
3002 </cell>
3003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3004 \begin_inset Text
3005
3006 \begin_layout Plain Layout
3007 \begin_inset Formula $\begin{cases}
3008 A & B>0\end{cases}$
3009 \end_inset
3010
3011
3012 \end_layout
3013
3014 \end_inset
3015 </cell>
3016 </row>
3017 <row>
3018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3019 \begin_inset Text
3020
3021 \begin_layout Plain Layout
3022
3023 \backslash
3024 cases
3025 \begin_inset ERT
3026 status collapsed
3027
3028 \begin_layout Plain Layout
3029
3030
3031 \backslash
3032 spce 
3033 \end_layout
3034
3035 \end_inset
3036
3037
3038 \begin_inset Info
3039 type  "shortcut"
3040 arg   "newline-insert newline"
3041 \end_inset
3042
3043
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 \begin_inset Formula $\begin{cases}
3053 A & \textrm{for }x>0\\
3054 B & \textrm{for }x=0
3055 \end{cases}$
3056 \end_inset
3057
3058
3059 \end_layout
3060
3061 \end_inset
3062 </cell>
3063 </row>
3064 </lyxtabular>
3065
3066 \end_inset
3067
3068
3069 \end_layout
3070
3071 \begin_layout Standard
3072
3073 \series bold
3074
3075 \backslash
3076 cases
3077 \series default
3078 を挿入するか数式ツールバーボタン
3079 \begin_inset Graphics
3080         filename ../../images/math/cases.png
3081         scale 85
3082
3083 \end_inset
3084
3085 を使用した後では、短絡キー
3086 \begin_inset Info
3087 type  "shortcut"
3088 arg   "newline-insert newline"
3089 \end_inset
3090
3091 か表ツールバーボタン
3092 \begin_inset Graphics
3093         filename ../../images/tabular-feature_append-row.png
3094         scale 85
3095
3096 \end_inset
3097
3098 を使えば、新しい行を作ることができます。
3099 \end_layout
3100
3101 \begin_layout Standard
3102 コマンド
3103 \series bold
3104
3105 \backslash
3106 cases
3107 \series default
3108 は、
3109 \family sans
3110 挿入\SpecialChar \menuseparator
3111 数式\SpecialChar \menuseparator
3112 Cases環境
3113 \family default
3114 メニューで挿入することもできます。
3115 \end_layout
3116
3117 \begin_layout Subsection
3118 否定
3119 \begin_inset Index idx
3120 status collapsed
3121
3122 \begin_layout Plain Layout
3123 ひてい@否定
3124 \end_layout
3125
3126 \end_inset
3127
3128
3129 \end_layout
3130
3131 \begin_layout Standard
3132
3133 \series bold
3134
3135 \backslash
3136 not
3137 \series default
3138
3139 \begin_inset Index idx
3140 status collapsed
3141
3142 \begin_layout Plain Layout
3143 こまんど@コマンド ! N ! 
3144 \backslash
3145 not
3146 \end_layout
3147
3148 \end_inset
3149
3150 を挿入することで、すべての文字を取り消し形で表示できます。文字はスラッシュを上書きされた形になります。
3151 \end_layout
3152
3153 \begin_layout Standard
3154 \align center
3155 \begin_inset Tabular
3156 <lyxtabular version="3" rows="4" columns="2">
3157 <features tabularvalignment="middle">
3158 <column alignment="center" valignment="top" width="0pt">
3159 <column alignment="center" valignment="top" width="0pt">
3160 <row>
3161 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3162 \begin_inset Text
3163
3164 \begin_layout Plain Layout
3165 コマンド
3166 \end_layout
3167
3168 \end_inset
3169 </cell>
3170 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3171 \begin_inset Text
3172
3173 \begin_layout Plain Layout
3174 出力
3175 \end_layout
3176
3177 \end_inset
3178 </cell>
3179 </row>
3180 <row>
3181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3182 \begin_inset Text
3183
3184 \begin_layout Plain Layout
3185
3186 \backslash
3187 not=
3188 \end_layout
3189
3190 \end_inset
3191 </cell>
3192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3193 \begin_inset Text
3194
3195 \begin_layout Plain Layout
3196 \begin_inset Formula $\not=$
3197 \end_inset
3198
3199
3200 \end_layout
3201
3202 \end_inset
3203 </cell>
3204 </row>
3205 <row>
3206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3207 \begin_inset Text
3208
3209 \begin_layout Plain Layout
3210
3211 \backslash
3212 not 
3213 \backslash
3214 le
3215 \end_layout
3216
3217 \end_inset
3218 </cell>
3219 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3220 \begin_inset Text
3221
3222 \begin_layout Plain Layout
3223 \begin_inset Formula $\not\le$
3224 \end_inset
3225
3226
3227 \end_layout
3228
3229 \end_inset
3230 </cell>
3231 </row>
3232 <row>
3233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3234 \begin_inset Text
3235
3236 \begin_layout Plain Layout
3237
3238 \backslash
3239 not 
3240 \backslash
3241 parallel
3242 \end_layout
3243
3244 \end_inset
3245 </cell>
3246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3247 \begin_inset Text
3248
3249 \begin_layout Plain Layout
3250 \begin_inset Formula $\not\parallel$
3251 \end_inset
3252
3253
3254 \end_layout
3255
3256 \end_inset
3257 </cell>
3258 </row>
3259 </lyxtabular>
3260
3261 \end_inset
3262
3263
3264 \end_layout
3265
3266 \begin_layout Standard
3267 最後の例が示すように、すべての否定形がきれいに出力されるわけではありません。このことから、否定形に専用のコマンドを持つものもあります(第
3268 \begin_inset CommandInset ref
3269 LatexCommand ref
3270 reference "sub:数学記号"
3271
3272 \end_inset
3273
3274 節および第
3275 \begin_inset CommandInset ref
3276 LatexCommand ref
3277 reference "sec:関係子"
3278
3279 \end_inset
3280
3281 節を参照)。
3282 \end_layout
3283
3284 \begin_layout Subsection
3285 空打ち文字
3286 \begin_inset CommandInset label
3287 LatexCommand label
3288 name "sub:空打ち文字"
3289
3290 \end_inset
3291
3292
3293 \begin_inset Index idx
3294 status collapsed
3295
3296 \begin_layout Plain Layout
3297 からうちもじ@空打ち文字
3298 \end_layout
3299
3300 \end_inset
3301
3302
3303 \begin_inset Index idx
3304 status collapsed
3305
3306 \begin_layout Plain Layout
3307 かがくきごう@化学記号 ! どういたい@同位体
3308 \end_layout
3309
3310 \end_inset
3311
3312
3313 \begin_inset Index idx
3314 status collapsed
3315
3316 \begin_layout Plain Layout
3317 どういたい@同位体|see
3318 \begin_inset ERT
3319 status collapsed
3320
3321 \begin_layout Plain Layout
3322
3323 {
3324 \end_layout
3325
3326 \end_inset
3327
3328 化学記号
3329 \begin_inset ERT
3330 status collapsed
3331
3332 \begin_layout Plain Layout
3333
3334 }
3335 \end_layout
3336
3337 \end_inset
3338
3339
3340 \end_layout
3341
3342 \end_inset
3343
3344
3345 \begin_inset Index idx
3346 status collapsed
3347
3348 \begin_layout Plain Layout
3349 あいそとーぷ@アイソトープ|see
3350 \begin_inset ERT
3351 status collapsed
3352
3353 \begin_layout Plain Layout
3354
3355 {
3356 \end_layout
3357
3358 \end_inset
3359
3360 同位体
3361 \begin_inset ERT
3362 status collapsed
3363
3364 \begin_layout Plain Layout
3365
3366 }
3367 \end_layout
3368
3369 \end_inset
3370
3371
3372 \end_layout
3373
3374 \end_inset
3375
3376
3377 \end_layout
3378
3379 \begin_layout Standard
3380 たとえば同位体
3381 \begin_inset Foot
3382 status collapsed
3383
3384 \begin_layout Plain Layout
3385 同位体と化学記号の組版に関しては、第
3386 \begin_inset CommandInset ref
3387 LatexCommand ref
3388 reference "sub:化学記号と化学式"
3389
3390 \end_inset
3391
3392 節に記述があります。
3393 \end_layout
3394
3395 \end_inset
3396
3397 を表示しようとすると、次のような問題が起こります。
3398 \end_layout
3399
3400 \begin_layout Standard
3401 \align center
3402 \begin_inset Tabular
3403 <lyxtabular version="3" rows="2" columns="2">
3404 <features tabularvalignment="middle">
3405 <column alignment="center" valignment="top" width="0pt">
3406 <column alignment="center" valignment="top" width="0pt">
3407 <row>
3408 <cell alignment="center" valignment="top" usebox="none">
3409 \begin_inset Text
3410
3411 \begin_layout Plain Layout
3412 上付き文字と下付き文字を使用して作った指数:
3413 \end_layout
3414
3415 \end_inset
3416 </cell>
3417 <cell alignment="center" valignment="top" usebox="none">
3418 \begin_inset Text
3419
3420 \begin_layout Plain Layout
3421 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3422 \end_inset
3423
3424
3425 \end_layout
3426
3427 \end_inset
3428 </cell>
3429 </row>
3430 <row>
3431 <cell alignment="center" valignment="top" usebox="none">
3432 \begin_inset Text
3433
3434 \begin_layout Plain Layout
3435 正しい指数:
3436 \end_layout
3437
3438 \end_inset
3439 </cell>
3440 <cell alignment="center" valignment="top" usebox="none">
3441 \begin_inset Text
3442
3443 \begin_layout Plain Layout
3444 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3445 \end_inset
3446
3447
3448 \end_layout
3449
3450 \end_inset
3451 </cell>
3452 </row>
3453 </lyxtabular>
3454
3455 \end_inset
3456
3457
3458 \begin_inset Note Note
3459 status collapsed
3460
3461 \begin_layout Plain Layout
3462 ここで
3463 \series bold
3464
3465 \backslash
3466 raisebox
3467 \series default
3468 はスペーサーとして使用しているだけです。
3469 \end_layout
3470
3471 \end_inset
3472
3473
3474 \end_layout
3475
3476 \begin_layout Standard
3477 短い方の指数は、既定で、長い方の指数の一文字目の下ないし上に配置されてしまいます。これを避けるには、一文字ないし複数の空の文字を生成するコマンド
3478 \series bold
3479
3480 \backslash
3481 phantom
3482 \series default
3483
3484 \begin_inset Index idx
3485 status collapsed
3486
3487 \begin_layout Plain Layout
3488 こまんど@コマンド ! P ! 
3489 \backslash
3490 phantom
3491 \end_layout
3492
3493 \end_inset
3494
3495 や数式ツールバーボタン
3496 \begin_inset Foot
3497 status collapsed
3498
3499 \begin_layout Plain Layout
3500 ツールバーボタン
3501 \begin_inset Graphics
3502         filename ../../images/math/space.png
3503         scale 85
3504
3505 \end_inset
3506
3507 の下位メニューに入っています。
3508 \end_layout
3509
3510 \end_inset
3511
3512
3513 \begin_inset Graphics
3514         filename ../../images/math/phantom.png
3515         scale 85
3516
3517 \end_inset
3518
3519 があります。
3520 \series bold
3521
3522 \backslash
3523 phantom
3524 \series default
3525 を挿入すると、二つの赤い矢印が重なった青枠が表示されます。矢印は、箱の中身の幅と高さの両方が、空打ち文字として適用されることを示しています。したがって、
3526 \series bold
3527
3528 \backslash
3529 phantom
3530 \series default
3531 の作る文字は、箱の中身の文字の大きさを持つ空打ち文字となります。
3532 \end_layout
3533
3534 \begin_layout Standard
3535 \align center
3536 \begin_inset Tabular
3537 <lyxtabular version="3" rows="4" columns="2">
3538 <features tabularvalignment="middle">
3539 <column alignment="center" valignment="top" width="0">
3540 <column alignment="center" valignment="top" width="0">
3541 <row>
3542 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3543 \begin_inset Text
3544
3545 \begin_layout Plain Layout
3546 コマンド
3547 \end_layout
3548
3549 \end_inset
3550 </cell>
3551 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3552 \begin_inset Text
3553
3554 \begin_layout Plain Layout
3555 出力
3556 \begin_inset Note Note
3557 status collapsed
3558
3559 \begin_layout Plain Layout
3560 ここで
3561 \series bold
3562
3563 \backslash
3564 raisebox
3565 \series default
3566 はスペーサーとして使用しているだけです。
3567 \end_layout
3568
3569 \end_inset
3570
3571
3572 \end_layout
3573
3574 \end_inset
3575 </cell>
3576 </row>
3577 <row>
3578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3579 \begin_inset Text
3580
3581 \begin_layout Plain Layout
3582 ^19
3583 \begin_inset ERT
3584 status collapsed
3585
3586 \begin_layout Plain Layout
3587
3588
3589 \backslash
3590 spce 
3591 \end_layout
3592
3593 \end_inset
3594
3595 _
3596 \backslash
3597 phantom
3598 \begin_inset ERT
3599 status collapsed
3600
3601 \begin_layout Plain Layout
3602
3603
3604 \backslash
3605 spce 
3606 \end_layout
3607
3608 \end_inset
3609
3610 1
3611 \begin_inset Formula $\to$
3612 \end_inset
3613
3614 9
3615 \begin_inset ERT
3616 status collapsed
3617
3618 \begin_layout Plain Layout
3619
3620
3621 \backslash
3622 spce 
3623 \end_layout
3624
3625 \end_inset
3626
3627 F
3628 \end_layout
3629
3630 \end_inset
3631 </cell>
3632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3633 \begin_inset Text
3634
3635 \begin_layout Plain Layout
3636 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3637 \end_inset
3638
3639
3640 \end_layout
3641
3642 \end_inset
3643 </cell>
3644 </row>
3645 <row>
3646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3647 \begin_inset Text
3648
3649 \begin_layout Plain Layout
3650 ^235
3651 \begin_inset ERT
3652 status collapsed
3653
3654 \begin_layout Plain Layout
3655
3656
3657 \backslash
3658 spce 
3659 \end_layout
3660
3661 \end_inset
3662
3663 _
3664 \backslash
3665 phantom
3666 \begin_inset ERT
3667 status collapsed
3668
3669 \begin_layout Plain Layout
3670
3671
3672 \backslash
3673 spce 
3674 \end_layout
3675
3676 \end_inset
3677
3678 23
3679 \begin_inset Formula $\to$
3680 \end_inset
3681
3682 9
3683 \begin_inset ERT
3684 status collapsed
3685
3686 \begin_layout Plain Layout
3687
3688
3689 \backslash
3690 spce 
3691 \end_layout
3692
3693 \end_inset
3694
3695 F
3696 \end_layout
3697
3698 \end_inset
3699 </cell>
3700 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3701 \begin_inset Text
3702
3703 \begin_layout Plain Layout
3704 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3705 \end_inset
3706
3707
3708 \end_layout
3709
3710 \end_inset
3711 </cell>
3712 </row>
3713 <row>
3714 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3715 \begin_inset Text
3716
3717 \begin_layout Plain Layout
3718
3719 \backslash
3720 Lambda^
3721 \begin_inset ERT
3722 status collapsed
3723
3724 \begin_layout Plain Layout
3725
3726
3727 \backslash
3728 spce 
3729 \end_layout
3730
3731 \end_inset
3732
3733
3734 \backslash
3735 phantom
3736 \begin_inset ERT
3737 status collapsed
3738
3739 \begin_layout Plain Layout
3740
3741
3742 \backslash
3743 spce 
3744 \end_layout
3745
3746 \end_inset
3747
3748 ii
3749 \begin_inset Formula $\to$
3750 \end_inset
3751
3752 t
3753 \begin_inset ERT
3754 status collapsed
3755
3756 \begin_layout Plain Layout
3757
3758
3759 \backslash
3760 spce 
3761 \end_layout
3762
3763 \end_inset
3764
3765 _MMt
3766 \end_layout
3767
3768 \end_inset
3769 </cell>
3770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3771 \begin_inset Text
3772
3773 \begin_layout Plain Layout
3774 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3775 \end_inset
3776
3777
3778 \end_layout
3779
3780 \end_inset
3781 </cell>
3782 </row>
3783 </lyxtabular>
3784
3785 \end_inset
3786
3787
3788 \end_layout
3789
3790 \begin_layout Standard
3791 さらに、
3792 \series bold
3793
3794 \backslash
3795 vphantom
3796 \series default
3797
3798 \begin_inset Index idx
3799 status collapsed
3800
3801 \begin_layout Plain Layout
3802 こまんど@コマンド ! V ! 
3803 \backslash
3804 vphantom
3805 \end_layout
3806
3807 \end_inset
3808
3809 (ツールバーボタン
3810 \begin_inset space ~
3811 \end_inset
3812
3813
3814 \begin_inset Graphics
3815         filename ../../images/math/vphantom.png
3816         scale 85
3817
3818 \end_inset
3819
3820 )および
3821 \series bold
3822
3823 \backslash
3824 hphantom
3825 \series default
3826
3827 \begin_inset Index idx
3828 status collapsed
3829
3830 \begin_layout Plain Layout
3831 こまんど@コマンド ! H ! 
3832 \backslash
3833 hphantom
3834 \end_layout
3835
3836 \end_inset
3837
3838 (ツールバーボタン
3839 \begin_inset space ~
3840 \end_inset
3841
3842
3843 \begin_inset Graphics
3844         filename ../../images/math/hphantom.png
3845         scale 85
3846
3847 \end_inset
3848
3849 )というコマンドもあります。
3850 \series bold
3851
3852 \backslash
3853 vphantom
3854 \series default
3855 は、枠内部の文字の最大高のみの空白を作り、幅は考慮しません。
3856 \series bold
3857
3858 \backslash
3859 hphantom
3860 \series default
3861 は、枠の内容の幅のみの空白を作ります。このことから、これらの枠は一本の赤矢印のみで表示されます。
3862 \end_layout
3863
3864 \begin_layout Standard
3865 たとえば、
3866 \series bold
3867
3868 \backslash
3869 vphantom
3870 \series default
3871
3872 \begin_inset ERT
3873 status collapsed
3874
3875 \begin_layout Plain Layout
3876
3877
3878 \backslash
3879 spce 
3880 \end_layout
3881
3882 \end_inset
3883
3884
3885 \series bold
3886 a
3887 \backslash
3888 int
3889 \series default
3890 は、積分記号
3891 \begin_inset Foot
3892 status collapsed
3893
3894 \begin_layout Plain Layout
3895
3896 \series bold
3897
3898 \backslash
3899 int
3900 \series default
3901 コマンドは、積分記号を生成します。第
3902 \begin_inset CommandInset ref
3903 LatexCommand ref
3904 reference "sub:大演算子"
3905
3906 \end_inset
3907
3908 節を参照してください。
3909 \end_layout
3910
3911 \end_inset
3912
3913 が最大高の文字なので、積分記号の高さを持つ空白を作ります。実際の適用例については、第
3914 \begin_inset CommandInset ref
3915 LatexCommand ref
3916 reference "sub:多行にわたる括弧"
3917
3918 \end_inset
3919
3920 節を参照してください。
3921 \end_layout
3922
3923 \begin_layout Standard
3924
3925 \lang english
3926 Placeholders can also be used for text when it is inserted via the menu
3927  
3928 \family sans
3929 Insert\SpecialChar \menuseparator
3930 Formatting\SpecialChar \menuseparator
3931 Phantom
3932 \family default
3933 :
3934 \end_layout
3935
3936 \begin_layout Standard
3937
3938 \lang english
3939 This is a sentence.
3940 \begin_inset Newline newline
3941 \end_inset
3942
3943
3944 \begin_inset Phantom Phantom
3945 status open
3946
3947 \begin_layout Plain Layout
3948
3949 \lang english
3950 This
3951 \end_layout
3952
3953 \end_inset
3954
3955  is a sentence.
3956 \end_layout
3957
3958 \begin_layout Subsection
3959 横線
3960 \begin_inset Index idx
3961 status collapsed
3962
3963 \begin_layout Plain Layout
3964 よこせん@横線
3965 \end_layout
3966
3967 \end_inset
3968
3969
3970 \begin_inset Index idx
3971 status collapsed
3972
3973 \begin_layout Plain Layout
3974 すうしき@数式 ! かせん@下線
3975 \end_layout
3976
3977 \end_inset
3978
3979
3980 \begin_inset Index idx
3981 status collapsed
3982
3983 \begin_layout Plain Layout
3984 ぼうせん@棒線|see
3985 \begin_inset ERT
3986 status collapsed
3987
3988 \begin_layout Plain Layout
3989
3990 {
3991 \end_layout
3992
3993 \end_inset
3994
3995 横線
3996 \begin_inset ERT
3997 status collapsed
3998
3999 \begin_layout Plain Layout
4000
4001 }
4002 \end_layout
4003
4004 \end_inset
4005
4006
4007 \end_layout
4008
4009 \end_inset
4010
4011
4012 \end_layout
4013
4014 \begin_layout Standard
4015 \align center
4016 \begin_inset Tabular
4017 <lyxtabular version="3" rows="4" columns="2">
4018 <features tabularvalignment="middle">
4019 <column alignment="center" valignment="top" width="0pt">
4020 <column alignment="center" valignment="top" width="0pt">
4021 <row>
4022 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4023 \begin_inset Text
4024
4025 \begin_layout Plain Layout
4026 コマンド
4027 \end_layout
4028
4029 \end_inset
4030 </cell>
4031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4032 \begin_inset Text
4033
4034 \begin_layout Plain Layout
4035 出力
4036 \begin_inset Note Note
4037 status collapsed
4038
4039 \begin_layout Plain Layout
4040 ここで
4041 \series bold
4042
4043 \backslash
4044 raisebox
4045 \series default
4046 はスペーサーとして使用しているだけです。
4047 \end_layout
4048
4049 \end_inset
4050
4051
4052 \end_layout
4053
4054 \end_inset
4055 </cell>
4056 </row>
4057 <row>
4058 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4059 \begin_inset Text
4060
4061 \begin_layout Plain Layout
4062
4063 \backslash
4064 overline
4065 \begin_inset ERT
4066 status collapsed
4067
4068 \begin_layout Plain Layout
4069
4070
4071 \backslash
4072 spce 
4073 \end_layout
4074
4075 \end_inset
4076
4077 A+B
4078 \begin_inset Index idx
4079 status collapsed
4080
4081 \begin_layout Plain Layout
4082 こまんど@コマンド ! O ! 
4083 \backslash
4084 overline
4085 \end_layout
4086
4087 \end_inset
4088
4089
4090 \end_layout
4091
4092 \end_inset
4093 </cell>
4094 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4095 \begin_inset Text
4096
4097 \begin_layout Plain Layout
4098 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4099 \end_inset
4100
4101
4102 \end_layout
4103
4104 \end_inset
4105 </cell>
4106 </row>
4107 <row>
4108 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4109 \begin_inset Text
4110
4111 \begin_layout Plain Layout
4112
4113 \backslash
4114 underline
4115 \begin_inset ERT
4116 status collapsed
4117
4118 \begin_layout Plain Layout
4119
4120
4121 \backslash
4122 spce 
4123 \end_layout
4124
4125 \end_inset
4126
4127 A+B
4128 \begin_inset Index idx
4129 status collapsed
4130
4131 \begin_layout Plain Layout
4132 こまんど@コマンド ! U ! 
4133 \backslash
4134 underline
4135 \end_layout
4136
4137 \end_inset
4138
4139
4140 \end_layout
4141
4142 \end_inset
4143 </cell>
4144 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4145 \begin_inset Text
4146
4147 \begin_layout Plain Layout
4148 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4149 \end_inset
4150
4151
4152 \end_layout
4153
4154 \end_inset
4155 </cell>
4156 </row>
4157 <row>
4158 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4159 \begin_inset Text
4160
4161 \begin_layout Plain Layout
4162
4163 \backslash
4164 overline
4165 \begin_inset ERT
4166 status collapsed
4167
4168 \begin_layout Plain Layout
4169
4170
4171 \backslash
4172 spce 
4173 \end_layout
4174
4175 \end_inset
4176
4177
4178 \backslash
4179 underline
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 A+B
4193 \end_layout
4194
4195 \end_inset
4196 </cell>
4197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4198 \begin_inset Text
4199
4200 \begin_layout Plain Layout
4201 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4202 \end_inset
4203
4204
4205 \end_layout
4206
4207 \end_inset
4208 </cell>
4209 </row>
4210 </lyxtabular>
4211
4212 \end_inset
4213
4214
4215 \end_layout
4216
4217 \begin_layout Standard
4218 上記最後の例では、先に
4219 \series bold
4220
4221 \backslash
4222 overline
4223 \series default
4224 が来ようが
4225 \series bold
4226
4227 \backslash
4228 underline
4229 \series default
4230 が来ようが、関係ありません。
4231 \end_layout
4232
4233 \begin_layout Standard
4234 二重下線を引くには、
4235 \series bold
4236
4237 \backslash
4238 underline
4239 \series default
4240 を二回使います。
4241 \end_layout
4242
4243 \begin_layout Standard
4244 文字の上下6本の線まで引くことができます。
4245 \end_layout
4246
4247 \begin_layout Standard
4248 \begin_inset VSpace bigskip
4249 \end_inset
4250
4251 自製の線は、以下の書式を持つ
4252 \series bold
4253
4254 \backslash
4255 rule
4256 \series default
4257
4258 \begin_inset Index idx
4259 status collapsed
4260
4261 \begin_layout Plain Layout
4262 こまんど@こまんど ! R ! 
4263 \backslash
4264 rule
4265 \end_layout
4266
4267 \end_inset
4268
4269 コマンドで作成することができます。
4270 \end_layout
4271
4272 \begin_layout Standard
4273
4274 \series bold
4275
4276 \backslash
4277 rule[垂直オフセット幅]{長さ}{厚み}
4278 \end_layout
4279
4280 \begin_layout Standard
4281 オプションの
4282 \series bold
4283 「垂直オフセット幅
4284 \series default
4285 」は、行を上方に(値が負であれば下方に)移動させます。値としては、第
4286 \begin_inset CommandInset ref
4287 LatexCommand ref
4288 reference "tab:使用できる単位"
4289
4290 \end_inset
4291
4292 表に掲げてある単位を用いることができます。以下に、
4293 \begin_inset Newline newline
4294 \end_inset
4295
4296
4297 \series bold
4298
4299 \backslash
4300 rule[-2ex]{3cm}{2pt}
4301 \series default
4302  および 
4303 \series bold
4304
4305 \backslash
4306 rule{2cm}{1pt}
4307 \begin_inset Newline newline
4308 \end_inset
4309
4310 というコマンドを用いて作成したふたつの例を例示します。
4311 \end_layout
4312
4313 \begin_layout Standard
4314 この行には、
4315 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4316 \end_inset
4317
4318 二本の線があります。
4319 \end_layout
4320
4321 \begin_layout Standard
4322
4323 \series bold
4324 \lang english
4325
4326 \backslash
4327 rule
4328 \series default
4329  can also be used for text when a line is inserted via the menu 
4330 \family sans
4331 Insert\SpecialChar \menuseparator
4332 Formatting\SpecialChar \menuseparator
4333 Horizontal
4334 \begin_inset space ~
4335 \end_inset
4336
4337 Line
4338 \family default
4339 :
4340 \end_layout
4341
4342 \begin_layout Standard
4343
4344 \lang english
4345 This is a sentence 
4346 \begin_inset CommandInset line
4347 LatexCommand rule
4348 offset "0.5ex"
4349 width "3cm"
4350 height "1pt"
4351
4352 \end_inset
4353
4354  with one line.
4355 \end_layout
4356
4357 \begin_layout Subsection
4358 省略符号
4359 \begin_inset CommandInset label
4360 LatexCommand label
4361 name "sub:省略符号"
4362
4363 \end_inset
4364
4365
4366 \begin_inset Index idx
4367 status collapsed
4368
4369 \begin_layout Plain Layout
4370 しょうりゃくふごう@省略符号
4371 \end_layout
4372
4373 \end_inset
4374
4375
4376 \end_layout
4377
4378 \begin_layout Standard
4379 省略符号には、いくつかの種類が使用できます
4380 \begin_inset Foot
4381 status collapsed
4382
4383 \begin_layout Plain Layout
4384 数式ツールバー中の
4385 \begin_inset Graphics
4386         filename ../../images/math/ldots.png
4387         scale 85
4388
4389 \end_inset
4390
4391 ボタンで表示されている下位メニューです。
4392 \end_layout
4393
4394 \end_inset
4395
4396 。列挙のためには、ベースラインの点々(
4397 \series bold
4398
4399 \backslash
4400 ldots
4401 \series default
4402
4403 \begin_inset Index idx
4404 status collapsed
4405
4406 \begin_layout Plain Layout
4407 こまんど@コマンド ! L ! 
4408 \backslash
4409 ldots
4410 \end_layout
4411
4412 \end_inset
4413
4414 )を使用しますが、演算子の場合は、演算子と同じ高さの点々(
4415 \series bold
4416
4417 \backslash
4418 cdots
4419 \series default
4420
4421 \begin_inset Index idx
4422 status collapsed
4423
4424 \begin_layout Plain Layout
4425 こまんど@コマンド ! C ! 
4426 \backslash
4427 cdots
4428 \end_layout
4429
4430 \end_inset
4431
4432 )が必要です。
4433 \series bold
4434
4435 \backslash
4436 dots
4437 \series default
4438
4439 \begin_inset Index idx
4440 status collapsed
4441
4442 \begin_layout Plain Layout
4443 こまんど@コマンド ! D ! 
4444 \backslash
4445 dots
4446 \end_layout
4447
4448 \end_inset
4449
4450 コマンドを使うと、LaTeXは次に来る文字がどのような種類の文字であるかによって、自動的にどの種類を使うかを選択します。
4451 \end_layout
4452
4453 \begin_layout Standard
4454 \align center
4455 \begin_inset Tabular
4456 <lyxtabular version="3" rows="9" columns="2">
4457 <features tabularvalignment="middle">
4458 <column alignment="center" valignment="top" width="0pt">
4459 <column alignment="center" valignment="top" width="0pt">
4460 <row>
4461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4462 \begin_inset Text
4463
4464 \begin_layout Plain Layout
4465 コマンド
4466 \end_layout
4467
4468 \end_inset
4469 </cell>
4470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4471 \begin_inset Text
4472
4473 \begin_layout Plain Layout
4474 出力
4475 \end_layout
4476
4477 \end_inset
4478 </cell>
4479 </row>
4480 <row>
4481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4482 \begin_inset Text
4483
4484 \begin_layout Plain Layout
4485 A_1
4486 \begin_inset ERT
4487 status collapsed
4488
4489 \begin_layout Plain Layout
4490
4491
4492 \backslash
4493 spce 
4494 \end_layout
4495
4496 \end_inset
4497
4498 ,
4499 \backslash
4500 dots
4501 \begin_inset ERT
4502 status collapsed
4503
4504 \begin_layout Plain Layout
4505
4506
4507 \backslash
4508 spce 
4509 \end_layout
4510
4511 \end_inset
4512
4513 ,A_n
4514 \end_layout
4515
4516 \end_inset
4517 </cell>
4518 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4519 \begin_inset Text
4520
4521 \begin_layout Plain Layout
4522 \begin_inset Formula $A_{1},\dots,A_{n}$
4523 \end_inset
4524
4525
4526 \end_layout
4527
4528 \end_inset
4529 </cell>
4530 </row>
4531 <row>
4532 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4533 \begin_inset Text
4534
4535 \begin_layout Plain Layout
4536 A_1
4537 \begin_inset ERT
4538 status collapsed
4539
4540 \begin_layout Plain Layout
4541
4542
4543 \backslash
4544 spce 
4545 \end_layout
4546
4547 \end_inset
4548
4549 +
4550 \backslash
4551 dots
4552 \begin_inset ERT
4553 status collapsed
4554
4555 \begin_layout Plain Layout
4556
4557
4558 \backslash
4559 spce 
4560 \end_layout
4561
4562 \end_inset
4563
4564 +A_n
4565 \end_layout
4566
4567 \end_inset
4568 </cell>
4569 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4570 \begin_inset Text
4571
4572 \begin_layout Plain Layout
4573 \begin_inset Formula $A_{1}+\dots+A_{n}$
4574 \end_inset
4575
4576
4577 \end_layout
4578
4579 \end_inset
4580 </cell>
4581 </row>
4582 <row>
4583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4584 \begin_inset Text
4585
4586 \begin_layout Plain Layout
4587 A_1
4588 \begin_inset ERT
4589 status collapsed
4590
4591 \begin_layout Plain Layout
4592
4593
4594 \backslash
4595 spce 
4596 \end_layout
4597
4598 \end_inset
4599
4600 ,
4601 \backslash
4602 ldots
4603 \begin_inset ERT
4604 status collapsed
4605
4606 \begin_layout Plain Layout
4607
4608
4609 \backslash
4610 spce 
4611 \end_layout
4612
4613 \end_inset
4614
4615 ,A_n
4616 \end_layout
4617
4618 \end_inset
4619 </cell>
4620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4621 \begin_inset Text
4622
4623 \begin_layout Plain Layout
4624 \begin_inset Formula $A_{1},\ldots,A_{n}$
4625 \end_inset
4626
4627
4628 \end_layout
4629
4630 \end_inset
4631 </cell>
4632 </row>
4633 <row>
4634 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4635 \begin_inset Text
4636
4637 \begin_layout Plain Layout
4638 A_1
4639 \begin_inset ERT
4640 status collapsed
4641
4642 \begin_layout Plain Layout
4643
4644
4645 \backslash
4646 spce 
4647 \end_layout
4648
4649 \end_inset
4650
4651 +
4652 \backslash
4653 cdots
4654 \begin_inset ERT
4655 status collapsed
4656
4657 \begin_layout Plain Layout
4658
4659
4660 \backslash
4661 spce 
4662 \end_layout
4663
4664 \end_inset
4665
4666 +A_n
4667 \end_layout
4668
4669 \end_inset
4670 </cell>
4671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4672 \begin_inset Text
4673
4674 \begin_layout Plain Layout
4675 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4676 \end_inset
4677
4678
4679 \end_layout
4680
4681 \end_inset
4682 </cell>
4683 </row>
4684 <row>
4685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4686 \begin_inset Text
4687
4688 \begin_layout Plain Layout
4689
4690 \backslash
4691 vdots
4692 \end_layout
4693
4694 \end_inset
4695 </cell>
4696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4697 \begin_inset Text
4698
4699 \begin_layout Plain Layout
4700 \begin_inset Formula $\vdots$
4701 \end_inset
4702
4703
4704 \end_layout
4705
4706 \end_inset
4707 </cell>
4708 </row>
4709 <row>
4710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4711 \begin_inset Text
4712
4713 \begin_layout Plain Layout
4714
4715 \backslash
4716 ddots
4717 \end_layout
4718
4719 \end_inset
4720 </cell>
4721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4722 \begin_inset Text
4723
4724 \begin_layout Plain Layout
4725 \begin_inset Formula $\ddots$
4726 \end_inset
4727
4728
4729 \end_layout
4730
4731 \end_inset
4732 </cell>
4733 </row>
4734 <row>
4735 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4736 \begin_inset Text
4737
4738 \begin_layout Plain Layout
4739
4740 \backslash
4741 iddots
4742 \end_layout
4743
4744 \end_inset
4745 </cell>
4746 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4747 \begin_inset Text
4748
4749 \begin_layout Plain Layout
4750 \begin_inset Formula $\iddots$
4751 \end_inset
4752
4753
4754 \end_layout
4755
4756 \end_inset
4757 </cell>
4758 </row>
4759 <row>
4760 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4761 \begin_inset Text
4762
4763 \begin_layout Plain Layout
4764 いろいろな点々を使った3×3行列
4765 \end_layout
4766
4767 \end_inset
4768 </cell>
4769 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4770 \begin_inset Text
4771
4772 \begin_layout Plain Layout
4773 \begin_inset Formula $\begin{array}{ccc}
4774 A_{11} & \cdots & A_{1m}\\
4775 \vdots & \ddots & \vdots\\
4776 A_{n1} & \cdots & A_{nm}
4777 \end{array}$
4778 \end_inset
4779
4780
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 </row>
4786 </lyxtabular>
4787
4788 \end_inset
4789
4790
4791 \end_layout
4792
4793 \begin_layout Standard
4794
4795 \family sans
4796 挿入\SpecialChar \menuseparator
4797 省略符号
4798 \family default
4799 メニューで挿入される省略符号は
4800 \series bold
4801
4802 \backslash
4803 ldots
4804 \series default
4805 です。
4806 \end_layout
4807
4808 \begin_layout Standard
4809 \begin_inset VSpace medskip
4810 \end_inset
4811
4812
4813 \lang english
4814 To use 
4815 \series bold
4816
4817 \backslash
4818 iddots
4819 \series default
4820 , one of the options 
4821 \family sans
4822 Use mathdots package (automatically)
4823 \family default
4824  must be set in the document settings under 
4825 \family sans
4826 Math
4827 \begin_inset space ~
4828 \end_inset
4829
4830 Options
4831 \family default
4832 .
4833 \begin_inset Newline newline
4834 \end_inset
4835
4836 Using the option 
4837 \family sans
4838 Use mathdots package
4839 \family default
4840  will improve the appearance of all dots in the documents if their font
4841  style or size is not the default.
4842 \end_layout
4843
4844 \begin_layout Standard
4845 \begin_inset VSpace medskip
4846 \end_inset
4847
4848 とくに行列には、複数列にわたることのできる省略符号があります。これは、以下の書式を持つ
4849 \series bold
4850
4851 \backslash
4852 hdotsfor
4853 \series default
4854
4855 \begin_inset Index idx
4856 status collapsed
4857
4858 \begin_layout Plain Layout
4859 こまんど@コマンド ! H ! 
4860 \backslash
4861 hdotsfor
4862 \end_layout
4863
4864 \end_inset
4865
4866 コマンドで作ることができます。
4867 \end_layout
4868
4869 \begin_layout Standard
4870
4871 \series bold
4872
4873 \backslash
4874 hdotsfor[距離]{列数}
4875 \end_layout
4876
4877 \begin_layout Standard
4878 ここで「列数」は、何列に広げるかを指定します。「距離」は、点々のあいだの距離を示す因子です。
4879 \end_layout
4880
4881 \begin_layout Standard
4882 以下の行列では、2行目の1つ目の枠に
4883 \series bold
4884
4885 \backslash
4886 hdotsfor[2]{4}
4887 \series default
4888 を挿入して、
4889 \series bold
4890
4891 \backslash
4892 dots
4893 \series default
4894 コマンドの2倍の点間距離を持つ省略符号を挿入しています。
4895 \begin_inset Formula \[
4896 \left(\begin{array}{cccc}
4897 A & B & C & D\\
4898 \hdotsfor[2]{4}\\
4899 q & w & e & r
4900 \end{array}\right)\]
4901
4902 \end_inset
4903
4904 省略符号を広げる対象となる行列フィールドは空白にしておく必要があることに注意して下さい。さもないとLaTeXエラーが発生します。
4905 \end_layout
4906
4907 \begin_layout Standard
4908 \begin_inset VSpace bigskip
4909 \end_inset
4910
4911 さらに、
4912 \series bold
4913
4914 \backslash
4915 dotfill
4916 \series default
4917
4918 \begin_inset Index idx
4919 status collapsed
4920
4921 \begin_layout Plain Layout
4922 こまんど@コマンド ! D ! 
4923 \backslash
4924 dotfill
4925 \end_layout
4926
4927 \end_inset
4928
4929 コマンドを使えば、行の残りを点々で埋めることもできます。このコマンドの働きは、
4930 \series bold
4931
4932 \backslash
4933 hfill
4934 \series default
4935 と同様のものです。第
4936 \begin_inset CommandInset ref
4937 LatexCommand ref
4938 reference "sub:可変長の空白"
4939
4940 \end_inset
4941
4942 節をご参照下さい。
4943 \end_layout
4944
4945 \begin_layout Standard
4946 たとえば、
4947 \series bold
4948 A
4949 \backslash
4950 dotfill
4951 \begin_inset ERT
4952 status collapsed
4953
4954 \begin_layout Plain Layout
4955
4956
4957 \backslash
4958 spce 
4959 \end_layout
4960
4961 \end_inset
4962
4963 B
4964 \series default
4965 コマンドは、
4966 \end_layout
4967
4968 \begin_layout Standard
4969 \begin_inset Formula $A\dotfill B$
4970 \end_inset
4971
4972
4973 \end_layout
4974
4975 \begin_layout Standard
4976 のようになります。
4977 \series bold
4978 点々を使う
4979 \backslash
4980 dotfill
4981 \series default
4982 の直線版として、
4983 \series bold
4984
4985 \backslash
4986 hrulefill
4987 \series default
4988
4989 \begin_inset Index idx
4990 status collapsed
4991
4992 \begin_layout Plain Layout
4993 こまんど@コマンド ! H ! 
4994 \backslash
4995 hrulefill
4996 \end_layout
4997
4998 \end_inset
4999
5000
5001 \end_layout
5002
5003 \begin_layout Standard
5004 \begin_inset Formula $A\hrulefill B$
5005 \end_inset
5006
5007
5008 \end_layout
5009
5010 \begin_layout Standard
5011 があります。これらのコマンドを本文で使用するには、これらのコマンドはTeXモードで挿入される必要があります。
5012 \end_layout
5013
5014 \begin_layout Section
5015 行列
5016 \begin_inset CommandInset label
5017 LatexCommand label
5018 name "sec:行列"
5019
5020 \end_inset
5021
5022
5023 \begin_inset Index idx
5024 status collapsed
5025
5026 \begin_layout Plain Layout
5027 ぎょうれつ@行列
5028 \end_layout
5029
5030 \end_inset
5031
5032
5033 \end_layout
5034
5035 \begin_layout Standard
5036 行列は、数式ツールバーボタンの
5037 \begin_inset Graphics
5038         filename ../../images/dialog-show_mathmatrix.png
5039         scale 85
5040
5041 \end_inset
5042
5043
5044 \family sans
5045 挿入\SpecialChar \menuseparator
5046 数式\SpecialChar \menuseparator
5047 行列
5048 \family default
5049 メニューで挿入することができます。すると、行列の列数及び行数、さらに配置方法を尋ねられます。ここで垂直配置は、行内数式内の行列でのみ意味を持ちます。
5050 \lang english
5051 and the decoration
5052 \end_layout
5053
5054 \begin_layout Standard
5055 最初の行列は「上」配置
5056 \begin_inset Formula $\begin{array}[t]{cccc}
5057 A & D & G & J\\
5058 B & E & H & K\\
5059 C & F & I & L
5060 \end{array}$
5061 \end_inset
5062
5063 で、二番目は「中央」配置
5064 \begin_inset Formula $\begin{array}{cccc}
5065 A & D & G & J\\
5066 B & E & H & K\\
5067 C & F & I & L
5068 \end{array}$
5069 \end_inset
5070
5071 、三番目は「下」配置
5072 \begin_inset Formula $\begin{array}[b]{cccc}
5073 A & D & G & J\\
5074 B & E & H & K\\
5075 C & F & I & L
5076 \end{array}$
5077 \end_inset
5078
5079 です。
5080 \end_layout
5081
5082 \begin_layout Standard
5083 水平配置は、各列がどのように配置されるべきかを指定します。これは、各列に対応した文字を一つずつ入力することによって設定します。
5084 \emph on
5085 l
5086 \emph default
5087 は左寄せ、
5088 \emph on
5089 c
5090 \emph default
5091 は中央揃え、
5092 \emph on
5093 r
5094 \emph default
5095 は右寄せを意味します。たとえば、第1列が左寄せで第2列と第3列が中央揃え、第4列が右揃えの4
5096 \series bold
5097 ×
5098 \series default
5099 4行列を作成するには、水平配置のところに
5100 \series bold
5101 lccr
5102 \series default
5103 と入力します。通常、行列では各列は中央揃えですから、各列の既定値は
5104 \series bold
5105 c
5106 \series default
5107 です。
5108 \end_layout
5109
5110 \begin_layout Standard
5111 水平行列の例です。
5112 \end_layout
5113
5114 \begin_layout Standard
5115
5116 \series bold
5117 lll
5118 \series default
5119  : 
5120 \begin_inset Formula $\begin{array}{lll}
5121 10000 & D & G\\
5122 B & 10000 & H\\
5123 C & F & 10000
5124 \end{array}$
5125 \end_inset
5126
5127  , 
5128 \series bold
5129 ccc
5130 \series default
5131  : 
5132 \begin_inset Formula $\begin{array}{ccc}
5133 10000 & D & G\\
5134 B & 10000 & H\\
5135 C & F & 10000
5136 \end{array}$
5137 \end_inset
5138
5139  , 
5140 \series bold
5141 rrr
5142 \series default
5143  : 
5144 \begin_inset Formula $\begin{array}{rrr}
5145 10000 & D & G\\
5146 B & 10000 & H\\
5147 C & F & 10000
5148 \end{array}$
5149 \end_inset
5150
5151
5152 \end_layout
5153
5154 \begin_layout Standard
5155 つづいて行や列を追加したり削除したりするには、数式ツールバーボタンの
5156 \begin_inset Graphics
5157         filename ../../images/tabular-feature_append-row.png
5158         scale 85
5159
5160 \end_inset
5161
5162
5163 \begin_inset Graphics
5164         filename ../../images/tabular-feature_delete-row.png
5165         scale 85
5166
5167 \end_inset
5168
5169 などや
5170 \family sans
5171 編集\SpecialChar \menuseparator
5172 行と列
5173 \family default
5174 メニューを使用することができます。また、行は
5175 \begin_inset Info
5176 type  "shortcut"
5177 arg   "newline-insert newline"
5178 \end_inset
5179
5180 で作成することもできます。
5181 \end_layout
5182
5183 \begin_layout Standard
5184 \begin_inset VSpace bigskip
5185 \end_inset
5186
5187
5188 \lang english
5189 The 
5190 \family sans
5191 Decoration
5192 \family default
5193  adds parentheses in the selected style around the matrix.
5194  Alternatively, parentheses can can either be created with the
5195 \lang japanese
5196  行列を囲む括弧は、
5197 \series bold
5198
5199 \backslash
5200 left
5201 \series default
5202
5203 \begin_inset Index idx
5204 status collapsed
5205
5206 \begin_layout Plain Layout
5207 こまんど@コマンド ! L ! 
5208 \backslash
5209 left
5210 \end_layout
5211
5212 \end_inset
5213
5214 コマンドや
5215 \series bold
5216
5217 \backslash
5218 right
5219 \series default
5220
5221 \begin_inset Index idx
5222 status collapsed
5223
5224 \begin_layout Plain Layout
5225 こまんど@コマンド ! R ! 
5226 \backslash
5227 right
5228 \end_layout
5229
5230 \end_inset
5231
5232 コマンドで作成することができます(短絡キー
5233 \family sans
5234 Alt+M
5235 \begin_inset space ~
5236 \end_inset
5237
5238 Parenthesis
5239 \family default
5240 )。第
5241 \begin_inset CommandInset ref
5242 LatexCommand ref
5243 reference "sub:自動の括弧丈"
5244
5245 \end_inset
5246
5247 節を参照してください。あるいは、以下のコマンドを使うこともできます。
5248 \begin_inset VSpace medskip
5249 \end_inset
5250
5251
5252 \end_layout
5253
5254 \begin_layout Standard
5255 \begin_inset space \hfill{}
5256 \end_inset
5257
5258
5259 \begin_inset Tabular
5260 <lyxtabular version="3" rows="4" columns="2">
5261 <features tabularvalignment="middle">
5262 <column alignment="center" valignment="top" width="0">
5263 <column alignment="center" valignment="top" width="0">
5264 <row>
5265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5266 \begin_inset Text
5267
5268 \begin_layout Plain Layout
5269 コマンド
5270 \end_layout
5271
5272 \end_inset
5273 </cell>
5274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5275 \begin_inset Text
5276
5277 \begin_layout Plain Layout
5278 出力
5279 \begin_inset Note Note
5280 status collapsed
5281
5282 \begin_layout Plain Layout
5283 ここで
5284 \series bold
5285
5286 \backslash
5287 raisebox
5288 \series default
5289 はスペーサーとして使用しているだけです。
5290 \end_layout
5291
5292 \end_inset
5293
5294
5295 \end_layout
5296
5297 \end_inset
5298 </cell>
5299 </row>
5300 <row>
5301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5302 \begin_inset Text
5303
5304 \begin_layout Plain Layout
5305
5306 \backslash
5307 bmatrix
5308 \begin_inset ERT
5309 status collapsed
5310
5311 \begin_layout Plain Layout
5312
5313
5314 \backslash
5315 spce 
5316 \end_layout
5317
5318 \end_inset
5319
5320 2
5321 \series bold
5322 ×
5323 \series default
5324 2
5325 \begin_inset space \thinspace{}
5326 \end_inset
5327
5328 matrix
5329 \end_layout
5330
5331 \end_inset
5332 </cell>
5333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5334 \begin_inset Text
5335
5336 \begin_layout Plain Layout
5337 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5338 0 & \textrm{-}\mathrm{i}\\
5339 \mathrm{i} & 0
5340 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5341 \end_inset
5342
5343
5344 \end_layout
5345
5346 \end_inset
5347 </cell>
5348 </row>
5349 <row>
5350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5351 \begin_inset Text
5352
5353 \begin_layout Plain Layout
5354
5355 \backslash
5356 Bmatrix
5357 \begin_inset ERT
5358 status collapsed
5359
5360 \begin_layout Plain Layout
5361
5362
5363 \backslash
5364 spce 
5365 \end_layout
5366
5367 \end_inset
5368
5369 2
5370 \series bold
5371 ×
5372 \series default
5373 2
5374 \begin_inset space \thinspace{}
5375 \end_inset
5376
5377 matrix
5378 \end_layout
5379
5380 \end_inset
5381 </cell>
5382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5383 \begin_inset Text
5384
5385 \begin_layout Plain Layout
5386 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5387 0 & \textrm{-}\mathrm{i}\\
5388 \mathrm{i} & 0
5389 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5390 \end_inset
5391
5392
5393 \end_layout
5394
5395 \end_inset
5396 </cell>
5397 </row>
5398 <row>
5399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5400 \begin_inset Text
5401
5402 \begin_layout Plain Layout
5403
5404 \backslash
5405 pmatrix
5406 \begin_inset ERT
5407 status collapsed
5408
5409 \begin_layout Plain Layout
5410
5411
5412 \backslash
5413 spce 
5414 \end_layout
5415
5416 \end_inset
5417
5418 2
5419 \series bold
5420 ×
5421 \series default
5422 2
5423 \begin_inset space \thinspace{}
5424 \end_inset
5425
5426 matrix
5427 \end_layout
5428
5429 \end_inset
5430 </cell>
5431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5432 \begin_inset Text
5433
5434 \begin_layout Plain Layout
5435 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5436 0 & \textrm{-}\mathrm{i}\\
5437 \mathrm{i} & 0
5438 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5439 \end_inset
5440
5441
5442 \end_layout
5443
5444 \end_inset
5445 </cell>
5446 </row>
5447 </lyxtabular>
5448
5449 \end_inset
5450
5451
5452 \begin_inset space \hfill{}
5453 \end_inset
5454
5455
5456 \begin_inset Tabular
5457 <lyxtabular version="3" rows="4" columns="2">
5458 <features tabularvalignment="middle">
5459 <column alignment="center" valignment="top" width="0">
5460 <column alignment="center" valignment="top" width="0">
5461 <row>
5462 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5463 \begin_inset Text
5464
5465 \begin_layout Plain Layout
5466 コマンド
5467 \end_layout
5468
5469 \end_inset
5470 </cell>
5471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5472 \begin_inset Text
5473
5474 \begin_layout Plain Layout
5475 出力
5476 \end_layout
5477
5478 \end_inset
5479 </cell>
5480 </row>
5481 <row>
5482 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5483 \begin_inset Text
5484
5485 \begin_layout Plain Layout
5486
5487 \backslash
5488 vmatrix
5489 \begin_inset ERT
5490 status collapsed
5491
5492 \begin_layout Plain Layout
5493
5494
5495 \backslash
5496 spce 
5497 \end_layout
5498
5499 \end_inset
5500
5501 2
5502 \series bold
5503 ×
5504 \series default
5505 2
5506 \begin_inset space \thinspace{}
5507 \end_inset
5508
5509 matrix
5510 \end_layout
5511
5512 \end_inset
5513 </cell>
5514 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5515 \begin_inset Text
5516
5517 \begin_layout Plain Layout
5518 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5519 0 & \textrm{-}\mathrm{i}\\
5520 \mathrm{i} & 0
5521 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5522 \end_inset
5523
5524
5525 \end_layout
5526
5527 \end_inset
5528 </cell>
5529 </row>
5530 <row>
5531 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5532 \begin_inset Text
5533
5534 \begin_layout Plain Layout
5535
5536 \backslash
5537 Vmatrix
5538 \begin_inset ERT
5539 status collapsed
5540
5541 \begin_layout Plain Layout
5542
5543
5544 \backslash
5545 spce 
5546 \end_layout
5547
5548 \end_inset
5549
5550 2
5551 \series bold
5552 ×
5553 \series default
5554 2
5555 \begin_inset space \thinspace{}
5556 \end_inset
5557
5558 matrix
5559 \end_layout
5560
5561 \end_inset
5562 </cell>
5563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5564 \begin_inset Text
5565
5566 \begin_layout Plain Layout
5567 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5568 0 & \textrm{-}\mathrm{i}\\
5569 \mathrm{i} & 0
5570 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5571 \end_inset
5572
5573
5574 \end_layout
5575
5576 \end_inset
5577 </cell>
5578 </row>
5579 <row>
5580 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5581 \begin_inset Text
5582
5583 \begin_layout Plain Layout
5584
5585 \backslash
5586 matrix
5587 \begin_inset ERT
5588 status collapsed
5589
5590 \begin_layout Plain Layout
5591
5592
5593 \backslash
5594 spce 
5595 \end_layout
5596
5597 \end_inset
5598
5599 2
5600 \series bold
5601 ×
5602 \series default
5603 2
5604 \begin_inset space \thinspace{}
5605 \end_inset
5606
5607 matrix
5608 \end_layout
5609
5610 \end_inset
5611 </cell>
5612 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5613 \begin_inset Text
5614
5615 \begin_layout Plain Layout
5616 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5617 0 & \textrm{-}\mathrm{i}\\
5618 \mathrm{i} & 0
5619 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5620 \end_inset
5621
5622
5623 \end_layout
5624
5625 \end_inset
5626 </cell>
5627 </row>
5628 </lyxtabular>
5629
5630 \end_inset
5631
5632
5633 \begin_inset space \hfill{}
5634 \end_inset
5635
5636
5637 \end_layout
5638
5639 \begin_layout Standard
5640 \begin_inset VSpace medskip
5641 \end_inset
5642
5643 たとえば
5644 \series bold
5645
5646 \backslash
5647 vmatrix
5648 \series default
5649 などを挿入すると、青枠が二つの垂直線のあいだに現れるので、そこに行列を挿入することができます。
5650 \end_layout
5651
5652 \begin_layout Standard
5653 \begin_inset VSpace bigskip
5654 \end_inset
5655
5656 じつは多行数式はすべて行列なので、行列の各列の間隔を変更するには、第
5657 \begin_inset CommandInset ref
5658 LatexCommand ref
5659 reference "sub:列間"
5660
5661 \end_inset
5662
5663 節に説明されている距離
5664 \series bold
5665
5666 \backslash
5667 arraycolsep
5668 \series default
5669
5670 \begin_inset Index idx
5671 status collapsed
5672
5673 \begin_layout Plain Layout
5674 こまんど@コマンド ! A ! 
5675 \backslash
5676 arraycolsep
5677 \end_layout
5678
5679 \end_inset
5680
5681 をここでも使用することができます。
5682 \end_layout
5683
5684 \begin_layout Standard
5685 行間隔を変更するには、
5686 \series bold
5687
5688 \backslash
5689 arraystretch
5690 \series default
5691
5692 \begin_inset Index idx
5693 status collapsed
5694
5695 \begin_layout Plain Layout
5696 こまんど@コマンド ! A ! 
5697 \backslash
5698 arraystretch
5699 \end_layout
5700
5701 \end_inset
5702
5703 コマンドを使用します。以下のようにして使用します。
5704 \end_layout
5705
5706 \begin_layout Standard
5707
5708 \series bold
5709
5710 \backslash
5711 renewcommand{
5712 \backslash
5713 arraystretch}{伸長因子}
5714 \begin_inset Index idx
5715 status collapsed
5716
5717 \begin_layout Plain Layout
5718 こまんど@コマンド ! R ! 
5719 \backslash
5720 renewcommand
5721 \end_layout
5722
5723 \end_inset
5724
5725
5726 \end_layout
5727
5728 \begin_layout Standard
5729
5730 \series bold
5731
5732 \backslash
5733 renewcommand
5734 \series default
5735 コマンドは、伸長因子を定義済みの
5736 \series bold
5737
5738 \backslash
5739 arraystretch
5740 \series default
5741 コマンドに割り当てます。たとえば行間隔を2倍にするには、因子として2を指定して下さい。すると、以降の行列すべてにこれが使用されるようになります。元の間隔に戻すに
5742 は、
5743 \series bold
5744
5745 \backslash
5746 arraystretch
5747 \series default
5748 に因子1を割り当てて下さい。
5749 \end_layout
5750
5751 \begin_layout Standard
5752 本文行中に行列を入れるには、
5753 \series bold
5754
5755 \backslash
5756 smallmatrix
5757 \series default
5758
5759 \begin_inset Index idx
5760 status collapsed
5761
5762 \begin_layout Plain Layout
5763 こまんど@コマンド ! S ! 
5764 \backslash
5765 smallmatrix
5766 \end_layout
5767
5768 \end_inset
5769
5770 コマンドを使います。これを挿入すると、二つの点線に囲まれた青枠が現れます。この枠のなかに行列を入れることができます。
5771 \end_layout
5772
5773 \begin_layout Standard
5774 これは、本文行中の行列
5775 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5776 C & D
5777 \end{smallmatrix}\right)$
5778 \end_inset
5779
5780 です。
5781 \end_layout
5782
5783 \begin_layout Section
5784 括弧と区分記号
5785 \begin_inset Index idx
5786 status collapsed
5787
5788 \begin_layout Plain Layout
5789 かっこ@括弧
5790 \end_layout
5791
5792 \end_inset
5793
5794
5795 \begin_inset Index idx
5796 status collapsed
5797
5798 \begin_layout Plain Layout
5799 くぶんきごう@区分記号
5800 \end_layout
5801
5802 \end_inset
5803
5804
5805 \end_layout
5806
5807 \begin_layout Subsection
5808 垂直括弧と区分記号
5809 \begin_inset Index idx
5810 status collapsed
5811
5812 \begin_layout Plain Layout
5813 かっこ@括弧 ! すいちょく@垂直
5814 \end_layout
5815
5816 \end_inset
5817
5818
5819 \end_layout
5820
5821 \begin_layout Standard
5822 \begin_inset space \hfill{}
5823 \end_inset
5824
5825
5826 \begin_inset Tabular
5827 <lyxtabular version="3" rows="9" columns="2">
5828 <features tabularvalignment="middle">
5829 <column alignment="center" valignment="top" width="0pt">
5830 <column alignment="center" valignment="top" width="0pt">
5831 <row>
5832 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5833 \begin_inset Text
5834
5835 \begin_layout Plain Layout
5836 コマンド
5837 \end_layout
5838
5839 \end_inset
5840 </cell>
5841 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5842 \begin_inset Text
5843
5844 \begin_layout Plain Layout
5845 出力
5846 \end_layout
5847
5848 \end_inset
5849 </cell>
5850 </row>
5851 <row>
5852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5853 \begin_inset Text
5854
5855 \begin_layout Plain Layout
5856 (
5857 \end_layout
5858
5859 \end_inset
5860 </cell>
5861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5862 \begin_inset Text
5863
5864 \begin_layout Plain Layout
5865 \begin_inset Formula $($
5866 \end_inset
5867
5868
5869 \end_layout
5870
5871 \end_inset
5872 </cell>
5873 </row>
5874 <row>
5875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5876 \begin_inset Text
5877
5878 \begin_layout Plain Layout
5879 {
5880 \end_layout
5881
5882 \end_inset
5883 </cell>
5884 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5885 \begin_inset Text
5886
5887 \begin_layout Plain Layout
5888 \begin_inset Formula $\{$
5889 \end_inset
5890
5891
5892 \end_layout
5893
5894 \end_inset
5895 </cell>
5896 </row>
5897 <row>
5898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5899 \begin_inset Text
5900
5901 \begin_layout Plain Layout
5902 [
5903 \end_layout
5904
5905 \end_inset
5906 </cell>
5907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5908 \begin_inset Text
5909
5910 \begin_layout Plain Layout
5911 \begin_inset Formula $[$
5912 \end_inset
5913
5914
5915 \end_layout
5916
5917 \end_inset
5918 </cell>
5919 </row>
5920 <row>
5921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5922 \begin_inset Text
5923
5924 \begin_layout Plain Layout
5925
5926 \backslash
5927 langle
5928 \end_layout
5929
5930 \end_inset
5931 </cell>
5932 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5933 \begin_inset Text
5934
5935 \begin_layout Plain Layout
5936 \begin_inset Formula $\langle$
5937 \end_inset
5938
5939
5940 \end_layout
5941
5942 \end_inset
5943 </cell>
5944 </row>
5945 <row>
5946 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5947 \begin_inset Text
5948
5949 \begin_layout Plain Layout
5950
5951 \backslash
5952 lceil
5953 \end_layout
5954
5955 \end_inset
5956 </cell>
5957 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5958 \begin_inset Text
5959
5960 \begin_layout Plain Layout
5961 \begin_inset Formula $\lceil$
5962 \end_inset
5963
5964
5965 \end_layout
5966
5967 \end_inset
5968 </cell>
5969 </row>
5970 <row>
5971 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5972 \begin_inset Text
5973
5974 \begin_layout Plain Layout
5975
5976 \backslash
5977 lfloor
5978 \end_layout
5979
5980 \end_inset
5981 </cell>
5982 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5983 \begin_inset Text
5984
5985 \begin_layout Plain Layout
5986 \begin_inset Formula $\lfloor$
5987 \end_inset
5988
5989
5990 \end_layout
5991
5992 \end_inset
5993 </cell>
5994 </row>
5995 <row>
5996 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5997 \begin_inset Text
5998
5999 \begin_layout Plain Layout
6000 /
6001 \end_layout
6002
6003 \end_inset
6004 </cell>
6005 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6006 \begin_inset Text
6007
6008 \begin_layout Plain Layout
6009 \begin_inset Formula $/$
6010 \end_inset
6011
6012
6013 \end_layout
6014
6015 \end_inset
6016 </cell>
6017 </row>
6018 <row>
6019 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6020 \begin_inset Text
6021
6022 \begin_layout Plain Layout
6023 \begin_inset Formula $|$
6024 \end_inset
6025
6026
6027 \end_layout
6028
6029 \end_inset
6030 </cell>
6031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6032 \begin_inset Text
6033
6034 \begin_layout Plain Layout
6035 \begin_inset Formula $|$
6036 \end_inset
6037
6038
6039 \end_layout
6040
6041 \end_inset
6042 </cell>
6043 </row>
6044 </lyxtabular>
6045
6046 \end_inset
6047
6048
6049 \begin_inset space \hfill{}
6050 \end_inset
6051
6052
6053 \begin_inset Tabular
6054 <lyxtabular version="3" rows="9" columns="2">
6055 <features tabularvalignment="middle">
6056 <column alignment="center" valignment="top" width="0pt">
6057 <column alignment="center" valignment="top" width="0pt">
6058 <row>
6059 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6060 \begin_inset Text
6061
6062 \begin_layout Plain Layout
6063 コマンド
6064 \end_layout
6065
6066 \end_inset
6067 </cell>
6068 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6069 \begin_inset Text
6070
6071 \begin_layout Plain Layout
6072 出力
6073 \end_layout
6074
6075 \end_inset
6076 </cell>
6077 </row>
6078 <row>
6079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6080 \begin_inset Text
6081
6082 \begin_layout Plain Layout
6083 )
6084 \end_layout
6085
6086 \end_inset
6087 </cell>
6088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6089 \begin_inset Text
6090
6091 \begin_layout Plain Layout
6092 \begin_inset Formula $)$
6093 \end_inset
6094
6095
6096 \end_layout
6097
6098 \end_inset
6099 </cell>
6100 </row>
6101 <row>
6102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6103 \begin_inset Text
6104
6105 \begin_layout Plain Layout
6106 }
6107 \end_layout
6108
6109 \end_inset
6110 </cell>
6111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6112 \begin_inset Text
6113
6114 \begin_layout Plain Layout
6115 \begin_inset Formula $\}$
6116 \end_inset
6117
6118
6119 \end_layout
6120
6121 \end_inset
6122 </cell>
6123 </row>
6124 <row>
6125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6126 \begin_inset Text
6127
6128 \begin_layout Plain Layout
6129 ]
6130 \end_layout
6131
6132 \end_inset
6133 </cell>
6134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6135 \begin_inset Text
6136
6137 \begin_layout Plain Layout
6138 \begin_inset Formula $]$
6139 \end_inset
6140
6141
6142 \end_layout
6143
6144 \end_inset
6145 </cell>
6146 </row>
6147 <row>
6148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6149 \begin_inset Text
6150
6151 \begin_layout Plain Layout
6152
6153 \backslash
6154 rangle
6155 \end_layout
6156
6157 \end_inset
6158 </cell>
6159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6160 \begin_inset Text
6161
6162 \begin_layout Plain Layout
6163 \begin_inset Formula $\rangle$
6164 \end_inset
6165
6166
6167 \end_layout
6168
6169 \end_inset
6170 </cell>
6171 </row>
6172 <row>
6173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6174 \begin_inset Text
6175
6176 \begin_layout Plain Layout
6177
6178 \backslash
6179 rceil
6180 \end_layout
6181
6182 \end_inset
6183 </cell>
6184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6185 \begin_inset Text
6186
6187 \begin_layout Plain Layout
6188 \begin_inset Formula $\rceil$
6189 \end_inset
6190
6191
6192 \end_layout
6193
6194 \end_inset
6195 </cell>
6196 </row>
6197 <row>
6198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6199 \begin_inset Text
6200
6201 \begin_layout Plain Layout
6202
6203 \backslash
6204 rfloor
6205 \end_layout
6206
6207 \end_inset
6208 </cell>
6209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6210 \begin_inset Text
6211
6212 \begin_layout Plain Layout
6213 \begin_inset Formula $\rfloor$
6214 \end_inset
6215
6216
6217 \end_layout
6218
6219 \end_inset
6220 </cell>
6221 </row>
6222 <row>
6223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6224 \begin_inset Text
6225
6226 \begin_layout Plain Layout
6227
6228 \backslash
6229
6230 \backslash
6231
6232 \end_layout
6233
6234 \end_inset
6235 </cell>
6236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6237 \begin_inset Text
6238
6239 \begin_layout Plain Layout
6240 \begin_inset Formula $\backslash$
6241 \end_inset
6242
6243
6244 \end_layout
6245
6246 \end_inset
6247 </cell>
6248 </row>
6249 <row>
6250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6251 \begin_inset Text
6252
6253 \begin_layout Plain Layout
6254
6255 \backslash
6256
6257 \begin_inset Formula $|$
6258 \end_inset
6259
6260
6261 \end_layout
6262
6263 \end_inset
6264 </cell>
6265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6266 \begin_inset Text
6267
6268 \begin_layout Plain Layout
6269 \begin_inset Formula $\|$
6270 \end_inset
6271
6272
6273 \end_layout
6274
6275 \end_inset
6276 </cell>
6277 </row>
6278 </lyxtabular>
6279
6280 \end_inset
6281
6282
6283 \begin_inset space \hfill{}
6284 \end_inset
6285
6286
6287 \end_layout
6288
6289 \begin_layout Standard
6290 \begin_inset Note Greyedout
6291 status open
6292
6293 \begin_layout Plain Layout
6294
6295 \series bold
6296 (注意)
6297 \series default
6298 TeXモードでは、
6299 \backslash
6300
6301 \backslash
6302 コマンドはその場所に改行を入れてしまうので、バックスラッシュを入力するには
6303 \series bold
6304
6305 \backslash
6306 textbackslash
6307 \series default
6308
6309 \begin_inset Index idx
6310 status collapsed
6311
6312 \begin_layout Plain Layout
6313 こまんど@コマンド! T ! 
6314 \backslash
6315 textbackslash
6316 \end_layout
6317
6318 \end_inset
6319
6320 を使わなくてはなりません。
6321 \end_layout
6322
6323 \end_inset
6324
6325
6326 \end_layout
6327
6328 \begin_layout Standard
6329 上に列挙した文字すべてについて、以下の二小節で説明されているコマンドを使って、大きさを調整することができます。これらのコマンドを使用するにあたっては、
6330 \series bold
6331
6332 \backslash
6333 langle
6334 \series default
6335
6336 \series bold
6337
6338 \backslash
6339 rangle
6340 \series default
6341 コマンドを使用せずに
6342 \begin_inset Formula $<$
6343 \end_inset
6344
6345
6346 \begin_inset Formula $>$
6347 \end_inset
6348
6349 の文字を直接使用することができます。
6350 \end_layout
6351
6352 \begin_layout Subsubsection
6353 手動の括弧丈
6354 \begin_inset CommandInset label
6355 LatexCommand label
6356 name "sub:手動の括弧丈"
6357
6358 \end_inset
6359
6360
6361 \begin_inset Index idx
6362 status collapsed
6363
6364 \begin_layout Plain Layout
6365 かっこたけ@括弧丈 ! しゅどう@手動
6366 \end_layout
6367
6368 \end_inset
6369
6370
6371 \end_layout
6372
6373 \begin_layout Standard
6374 括弧の丈は、LaTeXコマンドの
6375 \series bold
6376
6377 \backslash
6378 big
6379 \series default
6380
6381 \begin_inset Index idx
6382 status collapsed
6383
6384 \begin_layout Plain Layout
6385 こまんど@コマンド ! B ! 
6386 \backslash
6387 big
6388 \end_layout
6389
6390 \end_inset
6391
6392
6393 \series bold
6394
6395 \backslash
6396 Big
6397 \series default
6398
6399 \series bold
6400
6401 \backslash
6402 bigg
6403 \series default
6404 および
6405 \series bold
6406
6407 \backslash
6408 Bigg
6409 \series default
6410 を使って、手動で指定することができます。
6411 \series bold
6412
6413 \backslash
6414 big
6415 \series default
6416 が最小の大きさであり、
6417 \series bold
6418
6419 \backslash
6420 Bigg
6421 \series default
6422 が最大の括弧丈になります。
6423 \end_layout
6424
6425 \begin_layout Standard
6426 これらのコマンドは、括弧の階層を強調するのに使われます。
6427 \end_layout
6428
6429 \begin_layout Standard
6430 \align center
6431 \begin_inset Tabular
6432 <lyxtabular version="3" rows="2" columns="2">
6433 <features tabularvalignment="middle">
6434 <column alignment="center" valignment="top" width="0pt">
6435 <column alignment="center" valignment="top" width="0pt">
6436 <row>
6437 <cell alignment="center" valignment="top" usebox="none">
6438 \begin_inset Text
6439
6440 \begin_layout Plain Layout
6441 すべての括弧が同じ大きさ:
6442 \end_layout
6443
6444 \end_inset
6445 </cell>
6446 <cell alignment="center" valignment="top" usebox="none">
6447 \begin_inset Text
6448
6449 \begin_layout Plain Layout
6450 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6451 \end_inset
6452
6453
6454 \end_layout
6455
6456 \end_inset
6457 </cell>
6458 </row>
6459 <row>
6460 <cell alignment="center" valignment="top" usebox="none">
6461 \begin_inset Text
6462
6463 \begin_layout Plain Layout
6464 こちらの方が良い:
6465 \end_layout
6466
6467 \end_inset
6468 </cell>
6469 <cell alignment="center" valignment="top" usebox="none">
6470 \begin_inset Text
6471
6472 \begin_layout Plain Layout
6473 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6474 \end_inset
6475
6476
6477 \end_layout
6478
6479 \end_inset
6480 </cell>
6481 </row>
6482 </lyxtabular>
6483
6484 \end_inset
6485
6486
6487 \begin_inset Note Note
6488 status collapsed
6489
6490 \begin_layout Plain Layout
6491 ここで
6492 \series bold
6493
6494 \backslash
6495 raisebox
6496 \series default
6497 はスペーサーとして使用しているだけです。
6498 \end_layout
6499
6500 \end_inset
6501
6502
6503 \end_layout
6504
6505 \begin_layout Standard
6506 二つ目の数式では、
6507 \series bold
6508
6509 \backslash
6510 Big((A+B)(A-B)
6511 \backslash
6512 Big)^
6513 \begin_inset ERT
6514 status collapsed
6515
6516 \begin_layout Plain Layout
6517
6518
6519 \backslash
6520 spce 
6521 \end_layout
6522
6523 \end_inset
6524
6525 C
6526 \series default
6527 というコマンドが使われています。
6528 \end_layout
6529
6530 \begin_layout Standard
6531 以下は、すべての括弧丈の羅列です。
6532 \end_layout
6533
6534 \begin_layout Standard
6535 \align center
6536
6537 \backslash
6538 Bigg(
6539 \backslash
6540 exp
6541 \backslash
6542 bigg
6543 \begin_inset Formula $<$
6544 \end_inset
6545
6546
6547 \backslash
6548 Big[
6549 \backslash
6550 big{
6551 \backslash
6552 ln(3x)
6553 \backslash
6554 big}^2
6555 \begin_inset ERT
6556 status collapsed
6557
6558 \begin_layout Plain Layout
6559
6560
6561 \backslash
6562 spce 
6563 \end_layout
6564
6565 \end_inset
6566
6567
6568 \backslash
6569 sin(x)
6570 \backslash
6571 Big]^
6572 \begin_inset ERT
6573 status collapsed
6574
6575 \begin_layout Plain Layout
6576
6577
6578 \backslash
6579 spce 
6580 \end_layout
6581
6582 \end_inset
6583
6584 A
6585 \begin_inset ERT
6586 status collapsed
6587
6588 \begin_layout Plain Layout
6589
6590
6591 \backslash
6592 spce 
6593 \end_layout
6594
6595 \end_inset
6596
6597
6598 \backslash
6599 bigg
6600 \begin_inset Formula $>$
6601 \end_inset
6602
6603
6604 \backslash
6605 Bigg)^0,5
6606 \end_layout
6607
6608 \begin_layout Standard
6609 \align center
6610 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6611 \end_inset
6612
6613
6614 \end_layout
6615
6616 \begin_layout Standard
6617
6618 \series bold
6619
6620 \backslash
6621 big
6622 \series default
6623 型コマンドの他に、括弧と中身のあいだにもう少し空白を加える
6624 \series bold
6625
6626 \backslash
6627 bigm
6628 \series default
6629
6630 \begin_inset Index idx
6631 status collapsed
6632
6633 \begin_layout Plain Layout
6634 こまんど@コマンド ! B ! 
6635 \backslash
6636 bigm
6637 \end_layout
6638
6639 \end_inset
6640
6641 という派生型と、空白を追加しない
6642 \series bold
6643
6644 \backslash
6645 bigl
6646 \series default
6647 -
6648 \series bold
6649
6650 \backslash
6651 bigr
6652 \series default
6653
6654 \begin_inset Index idx
6655 status collapsed
6656
6657 \begin_layout Plain Layout
6658 こまんど@コマンド ! B ! 
6659 \backslash
6660 bigl - 
6661 \backslash
6662 bigr
6663 \end_layout
6664
6665 \end_inset
6666
6667 派生型があります。
6668 \series bold
6669
6670 \backslash
6671 bigl
6672 \series default
6673 コマンドの最後の
6674 \emph on
6675 l
6676 \emph default
6677 は、左括弧であることを示し、右括弧の場合には、
6678 \emph on
6679 l
6680 \emph default
6681 の代わりに
6682 \emph on
6683 r
6684 \emph default
6685 を用います。左括弧と右括弧は、それぞれ括弧の開始と終了に用いられます。
6686 \end_layout
6687
6688 \begin_layout Standard
6689 以下の表は、これらの派生型の比較です。
6690 \end_layout
6691
6692 \begin_layout Standard
6693 \align center
6694 \begin_inset Tabular
6695 <lyxtabular version="3" rows="5" columns="2">
6696 <features tabularvalignment="middle">
6697 <column alignment="center" valignment="middle" width="0">
6698 <column alignment="center" valignment="middle" width="0">
6699 <row>
6700 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6701 \begin_inset Text
6702
6703 \begin_layout Plain Layout
6704 コマンド
6705 \end_layout
6706
6707 \end_inset
6708 </cell>
6709 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6710 \begin_inset Text
6711
6712 \begin_layout Plain Layout
6713 出力
6714 \begin_inset Note Note
6715 status collapsed
6716
6717 \begin_layout Plain Layout
6718 ここで
6719 \series bold
6720
6721 \backslash
6722 raisebox
6723 \series default
6724 はスペーサーとして使用しているだけです。
6725 \end_layout
6726
6727 \end_inset
6728
6729
6730 \end_layout
6731
6732 \end_inset
6733 </cell>
6734 </row>
6735 <row>
6736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6737 \begin_inset Text
6738
6739 \begin_layout Plain Layout
6740
6741 \backslash
6742 Bigm(
6743 \backslash
6744 bigm(
6745 \backslash
6746 ln(3x)
6747 \backslash
6748 bigm)^2
6749 \series bold
6750
6751 \begin_inset ERT
6752 status collapsed
6753
6754 \begin_layout Plain Layout
6755
6756
6757 \backslash
6758 spce 
6759 \end_layout
6760
6761 \end_inset
6762
6763
6764 \series default
6765
6766 \backslash
6767 Bigm)
6768 \end_layout
6769
6770 \end_inset
6771 </cell>
6772 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6773 \begin_inset Text
6774
6775 \begin_layout Plain Layout
6776 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6777 \end_inset
6778
6779
6780 \end_layout
6781
6782 \end_inset
6783 </cell>
6784 </row>
6785 <row>
6786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6787 \begin_inset Text
6788
6789 \begin_layout Plain Layout
6790
6791 \backslash
6792 Big(
6793 \backslash
6794 big(
6795 \backslash
6796 ln(3x)
6797 \backslash
6798 big)^2
6799 \series bold
6800
6801 \begin_inset ERT
6802 status collapsed
6803
6804 \begin_layout Plain Layout
6805
6806
6807 \backslash
6808 spce 
6809 \end_layout
6810
6811 \end_inset
6812
6813
6814 \series default
6815
6816 \backslash
6817 Big)
6818 \end_layout
6819
6820 \end_inset
6821 </cell>
6822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6823 \begin_inset Text
6824
6825 \begin_layout Plain Layout
6826 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6827 \end_inset
6828
6829
6830 \end_layout
6831
6832 \end_inset
6833 </cell>
6834 </row>
6835 <row>
6836 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6837 \begin_inset Text
6838
6839 \begin_layout Plain Layout
6840
6841 \backslash
6842 Bigl(
6843 \backslash
6844 bigl(
6845 \backslash
6846 ln(3x)
6847 \backslash
6848 bigr)^2
6849 \series bold
6850
6851 \begin_inset ERT
6852 status collapsed
6853
6854 \begin_layout Plain Layout
6855
6856
6857 \backslash
6858 spce 
6859 \end_layout
6860
6861 \end_inset
6862
6863
6864 \series default
6865
6866 \backslash
6867 Bigr)
6868 \end_layout
6869
6870 \end_inset
6871 </cell>
6872 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6873 \begin_inset Text
6874
6875 \begin_layout Plain Layout
6876 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
6877 \end_inset
6878
6879
6880 \end_layout
6881
6882 \end_inset
6883 </cell>
6884 </row>
6885 <row>
6886 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6887 \begin_inset Text
6888
6889 \begin_layout Plain Layout
6890
6891 \backslash
6892 bigl)
6893 \backslash
6894 ln(3x)
6895 \backslash
6896 bigr(
6897 \end_layout
6898
6899 \end_inset
6900 </cell>
6901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6902 \begin_inset Text
6903
6904 \begin_layout Plain Layout
6905 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
6906 \end_inset
6907
6908
6909 \end_layout
6910
6911 \end_inset
6912 </cell>
6913 </row>
6914 </lyxtabular>
6915
6916 \end_inset
6917
6918
6919 \end_layout
6920
6921 \begin_layout Subsubsection
6922 自動の括弧丈
6923 \begin_inset CommandInset label
6924 LatexCommand label
6925 name "sub:自動の括弧丈"
6926
6927 \end_inset
6928
6929
6930 \begin_inset Index idx
6931 status collapsed
6932
6933 \begin_layout Plain Layout
6934 かっこたけ@括弧丈 ! じどう@自動
6935 \end_layout
6936
6937 \end_inset
6938
6939
6940 \end_layout
6941
6942 \begin_layout Standard
6943 可変の丈を持つ括弧は、
6944 \series bold
6945
6946 \backslash
6947 left
6948 \series default
6949
6950 \begin_inset Index idx
6951 status collapsed
6952
6953 \begin_layout Plain Layout
6954 こまんど@コマンド ! L ! 
6955 \backslash
6956 left
6957 \end_layout
6958
6959 \end_inset
6960
6961 コマンドおよび
6962 \series bold
6963
6964 \backslash
6965 right
6966 \series default
6967
6968 \begin_inset Index idx
6969 status collapsed
6970
6971 \begin_layout Plain Layout
6972 こまんど@コマンド ! R ! 
6973 \backslash
6974 right
6975 \end_layout
6976
6977 \end_inset
6978
6979 コマンド、あるいは数式ツールバーボタンの
6980 \begin_inset Graphics
6981         filename ../../images/dialog-show_mathdelimiter.png
6982         scale 85
6983
6984 \end_inset
6985
6986 で挿入することができます。
6987 \series bold
6988
6989 \backslash
6990 left
6991 \series default
6992 および
6993 \series bold
6994
6995 \backslash
6996 right
6997 \series default
6998 の直後には、必要とする括弧を挿入しなくてはなりません。すると、括弧丈は出力時に自動的に計算されます。
6999 \end_layout
7000
7001 \begin_layout Standard
7002 \align center
7003 通常の括弧:
7004 \series bold
7005
7006 \backslash
7007 ln(
7008 \backslash
7009 frac
7010 \begin_inset ERT
7011 status collapsed
7012
7013 \begin_layout Plain Layout
7014
7015
7016 \backslash
7017 spce 
7018 \end_layout
7019
7020 \end_inset
7021
7022 A
7023 \begin_inset Formula $\downarrow$
7024 \end_inset
7025
7026 C
7027 \begin_inset ERT
7028 status collapsed
7029
7030 \begin_layout Plain Layout
7031
7032
7033 \backslash
7034 spce 
7035 \end_layout
7036
7037 \end_inset
7038
7039 )
7040 \series default
7041 というコマンドは
7042 \begin_inset Formula \[
7043 \ln(\frac{A}{C})\]
7044
7045 \end_inset
7046
7047 を生成します。
7048 \end_layout
7049
7050 \begin_layout Standard
7051 \align center
7052 複数行の括弧:
7053 \series bold
7054
7055 \backslash
7056 ln
7057 \backslash
7058 left(
7059 \backslash
7060 frac
7061 \begin_inset ERT
7062 status collapsed
7063
7064 \begin_layout Plain Layout
7065
7066
7067 \backslash
7068 spce 
7069 \end_layout
7070
7071 \end_inset
7072
7073 A
7074 \begin_inset Formula $\downarrow$
7075 \end_inset
7076
7077 C
7078 \begin_inset ERT
7079 status collapsed
7080
7081 \begin_layout Plain Layout
7082
7083
7084 \backslash
7085 spce 
7086 \end_layout
7087
7088 \end_inset
7089
7090
7091 \backslash
7092 right)
7093 \series default
7094 というコマンドは
7095 \begin_inset Formula \[
7096 \ln\left(\frac{A}{C}\right)\]
7097
7098 \end_inset
7099
7100 を生成します。
7101 \end_layout
7102
7103 \begin_layout Standard
7104
7105 \series bold
7106
7107 \backslash
7108 left
7109 \series default
7110
7111 \series bold
7112
7113 \backslash
7114 right
7115 \series default
7116 の代わりに、短絡キー
7117 \family sans
7118 Alt+M
7119 \begin_inset space ~
7120 \end_inset
7121
7122 括弧
7123 \family default
7124 を使うこともできます。これを使うと、LyX中で即座に実際の括弧丈を確認することができるという利点と、対応する右括弧も生成されるという利点があります。
7125 \begin_inset Newline newline
7126 \end_inset
7127
7128 すると、先ほどの例を作るコマンドは
7129 \series bold
7130
7131 \backslash
7132 ln Alt+M
7133 \series default
7134  
7135 \series bold
7136 (
7137 \backslash
7138 frac
7139 \begin_inset ERT
7140 status collapsed
7141
7142 \begin_layout Plain Layout
7143
7144
7145 \backslash
7146 spce 
7147 \end_layout
7148
7149 \end_inset
7150
7151 A
7152 \begin_inset Formula $\downarrow$
7153 \end_inset
7154
7155 C
7156 \series default
7157 となります。
7158 \end_layout
7159
7160 \begin_layout Standard
7161 左括弧あるいは右括弧を省略するには、ドットを挿入します。たとえば、
7162 \series bold
7163
7164 \backslash
7165 left.
7166 \backslash
7167 frac
7168 \begin_inset ERT
7169 status collapsed
7170
7171 \begin_layout Plain Layout
7172
7173
7174 \backslash
7175 spce 
7176 \end_layout
7177
7178 \end_inset
7179
7180 A
7181 \begin_inset Formula $\downarrow$
7182 \end_inset
7183
7184 B
7185 \begin_inset ERT
7186 status collapsed
7187
7188 \begin_layout Plain Layout
7189
7190
7191 \backslash
7192 spce 
7193 \end_layout
7194
7195 \end_inset
7196
7197
7198 \backslash
7199 right}
7200 \series default
7201 というコマンドは
7202 \series bold
7203
7204 \begin_inset Formula \[
7205 \left.\frac{A}{B}\right\} \]
7206
7207 \end_inset
7208
7209 を生成します。
7210 \backslash
7211 left
7212 \series default
7213 コマンドおよび
7214 \series bold
7215
7216 \backslash
7217 right
7218 \series default
7219 コマンドは、文書が再度読み込まれたときには、LyXによって正しい丈の括弧に変換され、省略された括弧は、点線として表示されます。
7220 \end_layout
7221
7222 \begin_layout Standard
7223 \begin_inset VSpace bigskip
7224 \end_inset
7225
7226 著名なLaTeX頒布版は、すべてLaTeXの拡張であるeTeXを使用しているので、これらの頒布版では、すべての括弧および極限に対して
7227 \series bold
7228
7229 \backslash
7230 middle
7231 \series default
7232
7233 \begin_inset Index idx
7234 status collapsed
7235
7236 \begin_layout Plain Layout
7237 こまんど@コマンド ! M ! 
7238 \backslash
7239 middle
7240 \end_layout
7241
7242 \end_inset
7243
7244 コマンドも使用することができます
7245 \begin_inset Foot
7246 status collapsed
7247
7248 \begin_layout Plain Layout
7249
7250 \series bold
7251 (訳註)
7252 \series default
7253 pLaTeXでは、標準では
7254 \series bold
7255
7256 \backslash
7257 middle
7258 \series default
7259 コマンドは使えません。よって、以下の例では「
7260 \series bold
7261
7262 \backslash
7263 middle
7264 \series default
7265
7266 \begin_inset Formula $|$
7267 \end_inset
7268
7269 」の代わりに「
7270 \series bold
7271
7272 \backslash
7273 biggm
7274 \series default
7275
7276 \begin_inset Formula $|$
7277 \end_inset
7278
7279 」を用いています。
7280 \end_layout
7281
7282 \end_inset
7283
7284 。このコマンドでは、物理ベクトル
7285 \begin_inset Formula \[
7286 \left\langle \phi\:\biggm|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7287
7288 \end_inset
7289
7290 で必要とされるように、次に続く文字の高さは、囲まれる括弧の高さに調節されます。物理ベクトルに関しては、第
7291 \begin_inset CommandInset ref
7292 LatexCommand ref
7293 reference "sub:物理ベクトル"
7294
7295 \end_inset
7296
7297 節に説明されているように特殊なLaTeXパッケージがあります。
7298 \end_layout
7299
7300 \begin_layout Subsection
7301 水平括弧
7302 \begin_inset Index idx
7303 status collapsed
7304
7305 \begin_layout Plain Layout
7306 かっこ@括弧 ! すいへい@水平
7307 \end_layout
7308
7309 \end_inset
7310
7311
7312 \end_layout
7313
7314 \begin_layout Standard
7315 \align center
7316 \begin_inset Tabular
7317 <lyxtabular version="3" rows="4" columns="2">
7318 <features tabularvalignment="middle">
7319 <column alignment="center" valignment="top" width="0pt">
7320 <column alignment="center" valignment="top" width="0pt">
7321 <row>
7322 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7323 \begin_inset Text
7324
7325 \begin_layout Plain Layout
7326 コマンド
7327 \begin_inset Note Note
7328 status collapsed
7329
7330 \begin_layout Plain Layout
7331 ここで
7332 \series bold
7333
7334 \backslash
7335 raisebox
7336 \series default
7337 はスペーサーとして使用しているだけです。
7338 \end_layout
7339
7340 \end_inset
7341
7342
7343 \end_layout
7344
7345 \end_inset
7346 </cell>
7347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7348 \begin_inset Text
7349
7350 \begin_layout Plain Layout
7351 出力
7352 \end_layout
7353
7354 \end_inset
7355 </cell>
7356 </row>
7357 <row>
7358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7359 \begin_inset Text
7360
7361 \begin_layout Plain Layout
7362 \begin_inset ERT
7363 status collapsed
7364
7365 \begin_layout Plain Layout
7366
7367
7368 \backslash
7369 raisebox{2.3mm}{
7370 \end_layout
7371
7372 \end_inset
7373
7374
7375 \backslash
7376 overbrace
7377 \begin_inset ERT
7378 status collapsed
7379
7380 \begin_layout Plain Layout
7381
7382
7383 \backslash
7384 spce 
7385 \end_layout
7386
7387 \end_inset
7388
7389 A+B
7390 \begin_inset ERT
7391 status collapsed
7392
7393 \begin_layout Plain Layout
7394
7395
7396 \backslash
7397 spce 
7398 \end_layout
7399
7400 \end_inset
7401
7402 ^
7403 \begin_inset ERT
7404 status collapsed
7405
7406 \begin_layout Plain Layout
7407
7408
7409 \backslash
7410 spce 
7411 \end_layout
7412
7413 \end_inset
7414
7415 3
7416 \begin_inset ERT
7417 status collapsed
7418
7419 \begin_layout Plain Layout
7420
7421 }
7422 \end_layout
7423
7424 \end_inset
7425
7426
7427 \begin_inset Index idx
7428 status collapsed
7429
7430 \begin_layout Plain Layout
7431 こまんど@コマンド ! O ! 
7432 \backslash
7433 overbrace
7434 \end_layout
7435
7436 \end_inset
7437
7438
7439 \end_layout
7440
7441 \end_inset
7442 </cell>
7443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7444 \begin_inset Text
7445
7446 \begin_layout Plain Layout
7447 \begin_inset Formula $\overbrace{A+B}^{3}$
7448 \end_inset
7449
7450
7451 \end_layout
7452
7453 \end_inset
7454 </cell>
7455 </row>
7456 <row>
7457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7458 \begin_inset Text
7459
7460 \begin_layout Plain Layout
7461 \begin_inset ERT
7462 status collapsed
7463
7464 \begin_layout Plain Layout
7465
7466
7467 \backslash
7468 raisebox{-2.2mm}{
7469 \end_layout
7470
7471 \end_inset
7472
7473
7474 \backslash
7475 underbrace
7476 \begin_inset ERT
7477 status collapsed
7478
7479 \begin_layout Plain Layout
7480
7481
7482 \backslash
7483 spce 
7484 \end_layout
7485
7486 \end_inset
7487
7488 A+B
7489 \begin_inset ERT
7490 status collapsed
7491
7492 \begin_layout Plain Layout
7493
7494
7495 \backslash
7496 spce 
7497 \end_layout
7498
7499 \end_inset
7500
7501 _5
7502 \begin_inset ERT
7503 status collapsed
7504
7505 \begin_layout Plain Layout
7506
7507 }
7508 \end_layout
7509
7510 \end_inset
7511
7512
7513 \begin_inset Index idx
7514 status collapsed
7515
7516 \begin_layout Plain Layout
7517 こまんど@コマンド ! U ! 
7518 \backslash
7519 underbrace
7520 \end_layout
7521
7522 \end_inset
7523
7524
7525 \end_layout
7526
7527 \end_inset
7528 </cell>
7529 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7530 \begin_inset Text
7531
7532 \begin_layout Plain Layout
7533 \begin_inset Formula $\underbrace{A+B}_{5}$
7534 \end_inset
7535
7536
7537 \end_layout
7538
7539 \end_inset
7540 </cell>
7541 </row>
7542 <row>
7543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7544 \begin_inset Text
7545
7546 \begin_layout Plain Layout
7547
7548 \backslash
7549 overbrace
7550 \begin_inset ERT
7551 status collapsed
7552
7553 \begin_layout Plain Layout
7554
7555
7556 \backslash
7557 spce 
7558 \end_layout
7559
7560 \end_inset
7561
7562
7563 \backslash
7564 underbrace
7565 \begin_inset ERT
7566 status collapsed
7567
7568 \begin_layout Plain Layout
7569
7570
7571 \backslash
7572 spce 
7573 \end_layout
7574
7575 \end_inset
7576
7577 A+B_w
7578 \begin_inset ERT
7579 status collapsed
7580
7581 \begin_layout Plain Layout
7582
7583
7584 \backslash
7585 spce 
7586 \end_layout
7587
7588 \end_inset
7589
7590
7591 \begin_inset ERT
7592 status collapsed
7593
7594 \begin_layout Plain Layout
7595
7596
7597 \backslash
7598 spce 
7599 \end_layout
7600
7601 \end_inset
7602
7603 _7
7604 \begin_inset ERT
7605 status collapsed
7606
7607 \begin_layout Plain Layout
7608
7609
7610 \backslash
7611 spce 
7612 \end_layout
7613
7614 \end_inset
7615
7616
7617 \begin_inset ERT
7618 status collapsed
7619
7620 \begin_layout Plain Layout
7621
7622
7623 \backslash
7624 spce 
7625 \end_layout
7626
7627 \end_inset
7628
7629 ^
7630 \begin_inset ERT
7631 status collapsed
7632
7633 \begin_layout Plain Layout
7634
7635
7636 \backslash
7637 spce 
7638 \end_layout
7639
7640 \end_inset
7641
7642 C
7643 \end_layout
7644
7645 \end_inset
7646 </cell>
7647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7648 \begin_inset Text
7649
7650 \begin_layout Plain Layout
7651 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7652 \end_inset
7653
7654
7655 \end_layout
7656
7657 \end_inset
7658 </cell>
7659 </row>
7660 </lyxtabular>
7661
7662 \end_inset
7663
7664
7665 \end_layout
7666
7667 \begin_layout Standard
7668 最後の例では、
7669 \series bold
7670
7671 \backslash
7672 overbrace
7673 \series default
7674 が先に挿入されようが
7675 \series bold
7676
7677 \backslash
7678 underbrace
7679 \series default
7680 が先に挿入されようが代わりはありません。
7681 \end_layout
7682
7683 \begin_layout Standard
7684 \begin_inset VSpace bigskip
7685 \end_inset
7686
7687 括弧をお互いに重ねる必要がある場合には、第
7688 \begin_inset CommandInset ref
7689 LatexCommand ref
7690 reference "sec:多行数式"
7691
7692 \end_inset
7693
7694 節に説明されているように、次のような多行数式を使わなくてはなりません。
7695 \begin_inset Formula \begin{eqnarray*}
7696 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7697  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7698 \end{eqnarray*}
7699
7700 \end_inset
7701
7702 一行目には、数式が一つめの括弧とともに挿入されています。ここで、空白コマンド
7703 \begin_inset Foot
7704 status collapsed
7705
7706 \begin_layout Plain Layout
7707 空白コマンドは第
7708 \begin_inset CommandInset ref
7709 LatexCommand ref
7710 reference "sub:定義済みの空白"
7711
7712 \end_inset
7713
7714 章に説明があります。
7715 \end_layout
7716
7717 \end_inset
7718
7719
7720 \series bold
7721
7722 \backslash
7723 :
7724 \series default
7725 を最初の
7726 \begin_inset Formula $d$
7727 \end_inset
7728
7729 の前に挿入しておくことが重要です。さもないと、
7730 \begin_inset Formula $q$
7731 \end_inset
7732
7733 の後ろで終わる括弧のせいで、直後の「+」の周りに正しく空白が入ることが妨げられてしまう
7734 \begin_inset Foot
7735 status collapsed
7736
7737 \begin_layout Plain Layout
7738 これは、括弧が文字として取り扱われないためです。第
7739 \begin_inset CommandInset ref
7740 LatexCommand ref
7741 reference "sub:二項演算子"
7742
7743 \end_inset
7744
7745 章参照。
7746 \end_layout
7747
7748 \end_inset
7749
7750 ためです。二行目には、二つめの括弧が挿入されています。
7751 \begin_inset Formula $b$
7752 \end_inset
7753
7754 の直前から始まるようにするために、まず
7755 \series bold
7756
7757 \backslash
7758 hphantom{gggg+
7759 \backslash
7760 :}
7761 \series default
7762 というコマンド
7763 \begin_inset Foot
7764 status collapsed
7765
7766 \begin_layout Plain Layout
7767
7768 \series bold
7769
7770 \backslash
7771 hphantom
7772 \series default
7773 に関する詳細は、第
7774 \begin_inset CommandInset ref
7775 LatexCommand ref
7776 reference "sub:空打ち文字"
7777
7778 \end_inset
7779
7780 章を参照してください。
7781 \end_layout
7782
7783 \end_inset
7784
7785 が挿入されています。この数式中の「+」も空白で囲まれるようにするために、この空白コマンドが必要になっています。二つめの括弧は
7786 \series bold
7787
7788 \backslash
7789 hphantom{bbqq+dddd}
7790 \series default
7791 コマンドの下に置きます。
7792 \end_layout
7793
7794 \begin_layout Standard
7795 以下の例のように、括弧が反対側に重なる場合には、もっと複雑になります。
7796 \begin_inset ERT
7797 status collapsed
7798
7799 \begin_layout Plain Layout
7800
7801
7802 \backslash
7803 setlength{
7804 \backslash
7805 jot}{-6pt}
7806 \end_layout
7807
7808 \end_inset
7809
7810
7811 \begin_inset Formula \begin{eqnarray*}
7812  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7813 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
7814 \end{eqnarray*}
7815
7816 \end_inset
7817
7818
7819 \begin_inset ERT
7820 status collapsed
7821
7822 \begin_layout Plain Layout
7823
7824
7825 \backslash
7826 setlength{
7827 \backslash
7828 jot}{3pt}
7829 \end_layout
7830
7831 \end_inset
7832
7833 最初の数式行は、括弧が上に来ていること以外は、先の例の第二行と同じです。二行目には、二つめの括弧と一緒に数式が入っています。一行目の括弧と数式のあいだに余白が入
7834 ることを防ぐために、行間を減らさなくてはならないのですが、これはLyXのバグ
7835 \begin_inset Foot
7836 status collapsed
7837
7838 \begin_layout Plain Layout
7839 \begin_inset CommandInset href
7840 LatexCommand href
7841 name "LyX-bug #1505"
7842 target "http://www.lyx.org/trac/ticket/1505"
7843
7844 \end_inset
7845
7846
7847 \end_layout
7848
7849 \end_inset
7850
7851 のせいで簡単にはできません。この問題を回避するためには、数式直前にTeXモードで
7852 \series bold
7853 setlength{
7854 \backslash
7855 jot}{-6pt}
7856 \series default
7857 というコマンドを入れて、大域的な数式行間
7858 \series bold
7859
7860 \backslash
7861 jot
7862 \series default
7863
7864 \begin_inset Index idx
7865 status collapsed
7866
7867 \begin_layout Plain Layout
7868 こまんど@コマンド ! J ! 
7869 \backslash
7870 jot
7871 \end_layout
7872
7873 \end_inset
7874
7875 を-6
7876 \begin_inset space \thinspace{}
7877 \end_inset
7878
7879 ptに変更しなくてはなりません。
7880 \series bold
7881
7882 \backslash
7883 jot
7884 \series default
7885 は、数式直後に同様のコマンドを使って標準値の3
7886 \begin_inset space \thinspace{}
7887 \end_inset
7888
7889 ptに戻します。数式中の行間について、詳しくは第
7890 \begin_inset CommandInset ref
7891 LatexCommand ref
7892 reference "sub:行間"
7893
7894 \end_inset
7895
7896 章に説明があります。
7897 \end_layout
7898
7899 \begin_layout Section
7900 矢印
7901 \begin_inset Index idx
7902 status collapsed
7903
7904 \begin_layout Plain Layout
7905 やじるし@矢印
7906 \end_layout
7907
7908 \end_inset
7909
7910
7911 \end_layout
7912
7913 \begin_layout Standard
7914 矢印は、数式ツールバーボタンの
7915 \begin_inset Graphics
7916         filename ../../images/math/leftarrow.png
7917         scale 85
7918
7919 \end_inset
7920
7921 か、以下の各小節に列挙してあるコマンドで挿入することができます。
7922 \end_layout
7923
7924 \begin_layout Standard
7925 \begin_inset Newpage newpage
7926 \end_inset
7927
7928
7929 \end_layout
7930
7931 \begin_layout Subsection
7932 水平矢印
7933 \begin_inset Index idx
7934 status collapsed
7935
7936 \begin_layout Plain Layout
7937 やじるし@矢印 ! すいへい@水平
7938 \end_layout
7939
7940 \end_inset
7941
7942
7943 \end_layout
7944
7945 \begin_layout Standard
7946 \begin_inset space \hfill{}
7947 \end_inset
7948
7949
7950 \begin_inset Tabular
7951 <lyxtabular version="3" rows="8" columns="2">
7952 <features tabularvalignment="middle">
7953 <column alignment="center" valignment="top" width="0pt">
7954 <column alignment="center" valignment="top" width="0pt">
7955 <row>
7956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7957 \begin_inset Text
7958
7959 \begin_layout Plain Layout
7960 コマンド
7961 \end_layout
7962
7963 \end_inset
7964 </cell>
7965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7966 \begin_inset Text
7967
7968 \begin_layout Plain Layout
7969 出力
7970 \end_layout
7971
7972 \end_inset
7973 </cell>
7974 </row>
7975 <row>
7976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7977 \begin_inset Text
7978
7979 \begin_layout Plain Layout
7980
7981 \backslash
7982 gets
7983 \end_layout
7984
7985 \end_inset
7986 </cell>
7987 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7988 \begin_inset Text
7989
7990 \begin_layout Plain Layout
7991 \begin_inset Formula $\gets$
7992 \end_inset
7993
7994
7995 \end_layout
7996
7997 \end_inset
7998 </cell>
7999 </row>
8000 <row>
8001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8002 \begin_inset Text
8003
8004 \begin_layout Plain Layout
8005
8006 \backslash
8007 Leftarrow
8008 \end_layout
8009
8010 \end_inset
8011 </cell>
8012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8013 \begin_inset Text
8014
8015 \begin_layout Plain Layout
8016 \begin_inset Formula $\Leftarrow$
8017 \end_inset
8018
8019
8020 \end_layout
8021
8022 \end_inset
8023 </cell>
8024 </row>
8025 <row>
8026 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8027 \begin_inset Text
8028
8029 \begin_layout Plain Layout
8030
8031 \backslash
8032 longleftarrow
8033 \end_layout
8034
8035 \end_inset
8036 </cell>
8037 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8038 \begin_inset Text
8039
8040 \begin_layout Plain Layout
8041 \begin_inset Formula $\longleftarrow$
8042 \end_inset
8043
8044
8045 \end_layout
8046
8047 \end_inset
8048 </cell>
8049 </row>
8050 <row>
8051 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8052 \begin_inset Text
8053
8054 \begin_layout Plain Layout
8055
8056 \backslash
8057 Longleftarrow
8058 \end_layout
8059
8060 \end_inset
8061 </cell>
8062 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8063 \begin_inset Text
8064
8065 \begin_layout Plain Layout
8066 \begin_inset Formula $\Longleftarrow$
8067 \end_inset
8068
8069
8070 \end_layout
8071
8072 \end_inset
8073 </cell>
8074 </row>
8075 <row>
8076 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8077 \begin_inset Text
8078
8079 \begin_layout Plain Layout
8080
8081 \backslash
8082 leftharpoonup
8083 \end_layout
8084
8085 \end_inset
8086 </cell>
8087 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8088 \begin_inset Text
8089
8090 \begin_layout Plain Layout
8091 \begin_inset Formula $\leftharpoonup$
8092 \end_inset
8093
8094
8095 \end_layout
8096
8097 \end_inset
8098 </cell>
8099 </row>
8100 <row>
8101 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8102 \begin_inset Text
8103
8104 \begin_layout Plain Layout
8105
8106 \backslash
8107 leftharpoondown
8108 \end_layout
8109
8110 \end_inset
8111 </cell>
8112 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8113 \begin_inset Text
8114
8115 \begin_layout Plain Layout
8116 \begin_inset Formula $\leftharpoondown$
8117 \end_inset
8118
8119
8120 \end_layout
8121
8122 \end_inset
8123 </cell>
8124 </row>
8125 <row>
8126 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8127 \begin_inset Text
8128
8129 \begin_layout Plain Layout
8130
8131 \backslash
8132 hookleftarrow
8133 \end_layout
8134
8135 \end_inset
8136 </cell>
8137 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8138 \begin_inset Text
8139
8140 \begin_layout Plain Layout
8141 \begin_inset Formula $\hookleftarrow$
8142 \end_inset
8143
8144
8145 \end_layout
8146
8147 \end_inset
8148 </cell>
8149 </row>
8150 </lyxtabular>
8151
8152 \end_inset
8153
8154
8155 \begin_inset space \hfill{}
8156 \end_inset
8157
8158
8159 \begin_inset Tabular
8160 <lyxtabular version="3" rows="8" columns="2">
8161 <features tabularvalignment="middle">
8162 <column alignment="center" valignment="top" width="0pt">
8163 <column alignment="center" valignment="top" width="0pt">
8164 <row>
8165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8166 \begin_inset Text
8167
8168 \begin_layout Plain Layout
8169 コマンド
8170 \end_layout
8171
8172 \end_inset
8173 </cell>
8174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8175 \begin_inset Text
8176
8177 \begin_layout Plain Layout
8178 出力
8179 \end_layout
8180
8181 \end_inset
8182 </cell>
8183 </row>
8184 <row>
8185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8186 \begin_inset Text
8187
8188 \begin_layout Plain Layout
8189
8190 \backslash
8191 to
8192 \end_layout
8193
8194 \end_inset
8195 </cell>
8196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8197 \begin_inset Text
8198
8199 \begin_layout Plain Layout
8200 \begin_inset Formula $\to$
8201 \end_inset
8202
8203
8204 \end_layout
8205
8206 \end_inset
8207 </cell>
8208 </row>
8209 <row>
8210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8211 \begin_inset Text
8212
8213 \begin_layout Plain Layout
8214
8215 \backslash
8216 Rightarrow
8217 \end_layout
8218
8219 \end_inset
8220 </cell>
8221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8222 \begin_inset Text
8223
8224 \begin_layout Plain Layout
8225 \begin_inset Formula $\Rightarrow$
8226 \end_inset
8227
8228
8229 \end_layout
8230
8231 \end_inset
8232 </cell>
8233 </row>
8234 <row>
8235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8236 \begin_inset Text
8237
8238 \begin_layout Plain Layout
8239
8240 \backslash
8241 longrightarrow
8242 \end_layout
8243
8244 \end_inset
8245 </cell>
8246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8247 \begin_inset Text
8248
8249 \begin_layout Plain Layout
8250 \begin_inset Formula $\longrightarrow$
8251 \end_inset
8252
8253
8254 \end_layout
8255
8256 \end_inset
8257 </cell>
8258 </row>
8259 <row>
8260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8261 \begin_inset Text
8262
8263 \begin_layout Plain Layout
8264
8265 \backslash
8266 Longrightarrow
8267 \end_layout
8268
8269 \end_inset
8270 </cell>
8271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8272 \begin_inset Text
8273
8274 \begin_layout Plain Layout
8275 \begin_inset Formula $\Longrightarrow$
8276 \end_inset
8277
8278
8279 \end_layout
8280
8281 \end_inset
8282 </cell>
8283 </row>
8284 <row>
8285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8286 \begin_inset Text
8287
8288 \begin_layout Plain Layout
8289
8290 \backslash
8291 rightharpoonup
8292 \end_layout
8293
8294 \end_inset
8295 </cell>
8296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8297 \begin_inset Text
8298
8299 \begin_layout Plain Layout
8300 \begin_inset Formula $\rightharpoonup$
8301 \end_inset
8302
8303
8304 \end_layout
8305
8306 \end_inset
8307 </cell>
8308 </row>
8309 <row>
8310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8311 \begin_inset Text
8312
8313 \begin_layout Plain Layout
8314
8315 \backslash
8316 rightharpoondown
8317 \end_layout
8318
8319 \end_inset
8320 </cell>
8321 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8322 \begin_inset Text
8323
8324 \begin_layout Plain Layout
8325 \begin_inset Formula $\rightharpoondown$
8326 \end_inset
8327
8328
8329 \end_layout
8330
8331 \end_inset
8332 </cell>
8333 </row>
8334 <row>
8335 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8336 \begin_inset Text
8337
8338 \begin_layout Plain Layout
8339
8340 \backslash
8341 hookrightarrow
8342 \end_layout
8343
8344 \end_inset
8345 </cell>
8346 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8347 \begin_inset Text
8348
8349 \begin_layout Plain Layout
8350 \begin_inset Formula $\hookrightarrow$
8351 \end_inset
8352
8353
8354 \end_layout
8355
8356 \end_inset
8357 </cell>
8358 </row>
8359 </lyxtabular>
8360
8361 \end_inset
8362
8363
8364 \begin_inset space \hfill{}
8365 \end_inset
8366
8367
8368 \end_layout
8369
8370 \begin_layout Standard
8371 \begin_inset space \hfill{}
8372 \end_inset
8373
8374
8375 \begin_inset Tabular
8376 <lyxtabular version="3" rows="6" columns="2">
8377 <features tabularvalignment="middle">
8378 <column alignment="center" valignment="top" width="0pt">
8379 <column alignment="center" valignment="top" width="0pt">
8380 <row>
8381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8382 \begin_inset Text
8383
8384 \begin_layout Plain Layout
8385 コマンド
8386 \end_layout
8387
8388 \end_inset
8389 </cell>
8390 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8391 \begin_inset Text
8392
8393 \begin_layout Plain Layout
8394 出力
8395 \end_layout
8396
8397 \end_inset
8398 </cell>
8399 </row>
8400 <row>
8401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8402 \begin_inset Text
8403
8404 \begin_layout Plain Layout
8405
8406 \backslash
8407 leftrightarrow
8408 \end_layout
8409
8410 \end_inset
8411 </cell>
8412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8413 \begin_inset Text
8414
8415 \begin_layout Plain Layout
8416 \begin_inset Formula $\leftrightarrow$
8417 \end_inset
8418
8419
8420 \end_layout
8421
8422 \end_inset
8423 </cell>
8424 </row>
8425 <row>
8426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8427 \begin_inset Text
8428
8429 \begin_layout Plain Layout
8430
8431 \backslash
8432 Leftrightarrow
8433 \end_layout
8434
8435 \end_inset
8436 </cell>
8437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8438 \begin_inset Text
8439
8440 \begin_layout Plain Layout
8441 \begin_inset Formula $\Leftrightarrow$
8442 \end_inset
8443
8444
8445 \end_layout
8446
8447 \end_inset
8448 </cell>
8449 </row>
8450 <row>
8451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8452 \begin_inset Text
8453
8454 \begin_layout Plain Layout
8455
8456 \backslash
8457 longleftrightarrow
8458 \end_layout
8459
8460 \end_inset
8461 </cell>
8462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8463 \begin_inset Text
8464
8465 \begin_layout Plain Layout
8466 \begin_inset Formula $\longleftrightarrow$
8467 \end_inset
8468
8469
8470 \end_layout
8471
8472 \end_inset
8473 </cell>
8474 </row>
8475 <row>
8476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8477 \begin_inset Text
8478
8479 \begin_layout Plain Layout
8480
8481 \backslash
8482 Longleftrightarrow
8483 \end_layout
8484
8485 \end_inset
8486 </cell>
8487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8488 \begin_inset Text
8489
8490 \begin_layout Plain Layout
8491 \begin_inset Formula $\Longleftrightarrow$
8492 \end_inset
8493
8494
8495 \end_layout
8496
8497 \end_inset
8498 </cell>
8499 </row>
8500 <row>
8501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8502 \begin_inset Text
8503
8504 \begin_layout Plain Layout
8505
8506 \backslash
8507 rightleftharpoons
8508 \end_layout
8509
8510 \end_inset
8511 </cell>
8512 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8513 \begin_inset Text
8514
8515 \begin_layout Plain Layout
8516 \begin_inset Formula $\rightleftharpoons$
8517 \end_inset
8518
8519
8520 \end_layout
8521
8522 \end_inset
8523 </cell>
8524 </row>
8525 </lyxtabular>
8526
8527 \end_inset
8528
8529
8530 \begin_inset space \hspace{}
8531 \length 25pt
8532 \end_inset
8533
8534
8535 \begin_inset space \hfill{}
8536 \end_inset
8537
8538
8539 \begin_inset Tabular
8540 <lyxtabular version="3" rows="5" columns="2">
8541 <features tabularvalignment="middle">
8542 <column alignment="center" valignment="top" width="0pt">
8543 <column alignment="center" valignment="top" width="0pt">
8544 <row>
8545 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8546 \begin_inset Text
8547
8548 \begin_layout Plain Layout
8549 コマンド
8550 \end_layout
8551
8552 \end_inset
8553 </cell>
8554 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8555 \begin_inset Text
8556
8557 \begin_layout Plain Layout
8558 出力
8559 \end_layout
8560
8561 \end_inset
8562 </cell>
8563 </row>
8564 <row>
8565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8566 \begin_inset Text
8567
8568 \begin_layout Plain Layout
8569
8570 \backslash
8571 mapsto
8572 \end_layout
8573
8574 \end_inset
8575 </cell>
8576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8577 \begin_inset Text
8578
8579 \begin_layout Plain Layout
8580 \begin_inset Formula $\mapsto$
8581 \end_inset
8582
8583
8584 \end_layout
8585
8586 \end_inset
8587 </cell>
8588 </row>
8589 <row>
8590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8591 \begin_inset Text
8592
8593 \begin_layout Plain Layout
8594
8595 \backslash
8596 longmapsto
8597 \end_layout
8598
8599 \end_inset
8600 </cell>
8601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8602 \begin_inset Text
8603
8604 \begin_layout Plain Layout
8605 \begin_inset Formula $\longmapsto$
8606 \end_inset
8607
8608
8609 \end_layout
8610
8611 \end_inset
8612 </cell>
8613 </row>
8614 <row>
8615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8616 \begin_inset Text
8617
8618 \begin_layout Plain Layout
8619
8620 \backslash
8621 leadsto
8622 \end_layout
8623
8624 \end_inset
8625 </cell>
8626 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8627 \begin_inset Text
8628
8629 \begin_layout Plain Layout
8630 \begin_inset Formula $\leadsto$
8631 \end_inset
8632
8633
8634 \end_layout
8635
8636 \end_inset
8637 </cell>
8638 </row>
8639 <row>
8640 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8641 \begin_inset Text
8642
8643 \begin_layout Plain Layout
8644
8645 \backslash
8646 dasharrow
8647 \end_layout
8648
8649 \end_inset
8650 </cell>
8651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8652 \begin_inset Text
8653
8654 \begin_layout Plain Layout
8655 \begin_inset Formula $\dasharrow$
8656 \end_inset
8657
8658
8659 \end_layout
8660
8661 \end_inset
8662 </cell>
8663 </row>
8664 </lyxtabular>
8665
8666 \end_inset
8667
8668
8669 \begin_inset space \hfill{}
8670 \end_inset
8671
8672
8673 \end_layout
8674
8675 \begin_layout Standard
8676 \begin_inset VSpace medskip
8677 \end_inset
8678
8679 たとえばベクトル記号の矢印のようにアクセントとして使用される矢印は、第
8680 \begin_inset CommandInset ref
8681 LatexCommand ref
8682 reference "sec:アクセント"
8683
8684 \end_inset
8685
8686 節に一覧があります。
8687 \end_layout
8688
8689 \begin_layout Standard
8690 \begin_inset VSpace bigskip
8691 \end_inset
8692
8693 さらに、ラベル付き矢印
8694 \begin_inset Index idx
8695 status collapsed
8696
8697 \begin_layout Plain Layout
8698 やじるし@矢印 ! らべるつき@ラベル付き
8699 \end_layout
8700
8701 \end_inset
8702
8703 として、
8704 \series bold
8705
8706 \backslash
8707 xleftarrow
8708 \series default
8709
8710 \begin_inset Index idx
8711 status collapsed
8712
8713 \begin_layout Plain Layout
8714 こまんど@コマンド ! X ! 
8715 \backslash
8716 xleftarrow
8717 \end_layout
8718
8719 \end_inset
8720
8721
8722 \series bold
8723
8724 \backslash
8725 xrightarrow
8726 \series default
8727
8728 \begin_inset Index idx
8729 status collapsed
8730
8731 \begin_layout Plain Layout
8732 こまんど@コマンド ! X ! 
8733 \backslash
8734 xrightarrow
8735 \begin_inset ERT
8736 status collapsed
8737
8738 \begin_layout Plain Layout
8739
8740
8741 \backslash
8742 vspace{4mm}
8743 \end_layout
8744
8745 \end_inset
8746
8747
8748 \end_layout
8749
8750 \end_inset
8751
8752 があります。これらのコマンドを数式に挿入すると、二つの青枠のついた矢印が現れるので、そこにラベルを入れることができます。矢印の長さは、ラベルの幅に応じて調整され
8753 ます。
8754 \end_layout
8755
8756 \begin_layout Standard
8757 \align center
8758 \begin_inset Tabular
8759 <lyxtabular version="3" rows="3" columns="2">
8760 <features tabularvalignment="middle">
8761 <column alignment="center" valignment="top" width="0pt">
8762 <column alignment="center" valignment="top" width="0pt">
8763 <row>
8764 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8765 \begin_inset Text
8766
8767 \begin_layout Plain Layout
8768 コマンド
8769 \end_layout
8770
8771 \end_inset
8772 </cell>
8773 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8774 \begin_inset Text
8775
8776 \begin_layout Plain Layout
8777 出力
8778 \begin_inset Note Note
8779 status collapsed
8780
8781 \begin_layout Plain Layout
8782 ここで
8783 \series bold
8784
8785 \backslash
8786 raisebox
8787 \series default
8788 はスペーサーとして使用しているだけです。
8789 \end_layout
8790
8791 \end_inset
8792
8793
8794 \end_layout
8795
8796 \end_inset
8797 </cell>
8798 </row>
8799 <row>
8800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8801 \begin_inset Text
8802
8803 \begin_layout Plain Layout
8804 F(a)
8805 \backslash
8806 xleftarrow
8807 \begin_inset ERT
8808 status collapsed
8809
8810 \begin_layout Plain Layout
8811
8812
8813 \backslash
8814 spce 
8815 \end_layout
8816
8817 \end_inset
8818
8819 x=a
8820 \begin_inset Formula $\downarrow$
8821 \end_inset
8822
8823 x
8824 \begin_inset Formula $>$
8825 \end_inset
8826
8827 0
8828 \begin_inset Formula $\to$
8829 \end_inset
8830
8831 F(x)
8832 \end_layout
8833
8834 \end_inset
8835 </cell>
8836 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8837 \begin_inset Text
8838
8839 \begin_layout Plain Layout
8840 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
8841 \end_inset
8842
8843
8844 \end_layout
8845
8846 \end_inset
8847 </cell>
8848 </row>
8849 <row>
8850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8851 \begin_inset Text
8852
8853 \begin_layout Plain Layout
8854 F(x)
8855 \backslash
8856 xrightarrow
8857 \begin_inset ERT
8858 status collapsed
8859
8860 \begin_layout Plain Layout
8861
8862
8863 \backslash
8864 spce 
8865 \end_layout
8866
8867 \end_inset
8868
8869 x=a
8870 \begin_inset Formula $\downarrow$
8871 \end_inset
8872
8873 x
8874 \begin_inset Formula $>$
8875 \end_inset
8876
8877 0
8878 \begin_inset Formula $\to$
8879 \end_inset
8880
8881 F(a)
8882 \end_layout
8883
8884 \end_inset
8885 </cell>
8886 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8887 \begin_inset Text
8888
8889 \begin_layout Plain Layout
8890 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
8891 \end_inset
8892
8893
8894 \end_layout
8895
8896 \end_inset
8897 </cell>
8898 </row>
8899 </lyxtabular>
8900
8901 \end_inset
8902
8903
8904 \end_layout
8905
8906 \begin_layout Subsection
8907 垂直矢印および対角矢印
8908 \begin_inset Index idx
8909 status collapsed
8910
8911 \begin_layout Plain Layout
8912 やじるし@矢印 ! たいかく@対角
8913 \end_layout
8914
8915 \end_inset
8916
8917
8918 \begin_inset Index idx
8919 status collapsed
8920
8921 \begin_layout Plain Layout
8922 やじるし@矢印 ! すいちょく@垂直
8923 \end_layout
8924
8925 \end_inset
8926
8927
8928 \end_layout
8929
8930 \begin_layout Standard
8931 \begin_inset space \hfill{}
8932 \end_inset
8933
8934
8935 \begin_inset Tabular
8936 <lyxtabular version="3" rows="7" columns="2">
8937 <features tabularvalignment="middle">
8938 <column alignment="center" valignment="top" width="0pt">
8939 <column alignment="center" valignment="top" width="0pt">
8940 <row>
8941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8942 \begin_inset Text
8943
8944 \begin_layout Plain Layout
8945 コマンド
8946 \end_layout
8947
8948 \end_inset
8949 </cell>
8950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8951 \begin_inset Text
8952
8953 \begin_layout Plain Layout
8954 出力
8955 \end_layout
8956
8957 \end_inset
8958 </cell>
8959 </row>
8960 <row>
8961 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8962 \begin_inset Text
8963
8964 \begin_layout Plain Layout
8965
8966 \backslash
8967 uparrow
8968 \end_layout
8969
8970 \end_inset
8971 </cell>
8972 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8973 \begin_inset Text
8974
8975 \begin_layout Plain Layout
8976 \begin_inset Formula $\uparrow$
8977 \end_inset
8978
8979
8980 \end_layout
8981
8982 \end_inset
8983 </cell>
8984 </row>
8985 <row>
8986 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8987 \begin_inset Text
8988
8989 \begin_layout Plain Layout
8990
8991 \backslash
8992 Uparrow
8993 \end_layout
8994
8995 \end_inset
8996 </cell>
8997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8998 \begin_inset Text
8999
9000 \begin_layout Plain Layout
9001 \begin_inset Formula $\Uparrow$
9002 \end_inset
9003
9004
9005 \end_layout
9006
9007 \end_inset
9008 </cell>
9009 </row>
9010 <row>
9011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9012 \begin_inset Text
9013
9014 \begin_layout Plain Layout
9015
9016 \backslash
9017 updownarrow
9018 \end_layout
9019
9020 \end_inset
9021 </cell>
9022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9023 \begin_inset Text
9024
9025 \begin_layout Plain Layout
9026 \begin_inset Formula $\updownarrow$
9027 \end_inset
9028
9029
9030 \end_layout
9031
9032 \end_inset
9033 </cell>
9034 </row>
9035 <row>
9036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9037 \begin_inset Text
9038
9039 \begin_layout Plain Layout
9040
9041 \backslash
9042 Updownarrow
9043 \end_layout
9044
9045 \end_inset
9046 </cell>
9047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9048 \begin_inset Text
9049
9050 \begin_layout Plain Layout
9051 \begin_inset Formula $\Updownarrow$
9052 \end_inset
9053
9054
9055 \end_layout
9056
9057 \end_inset
9058 </cell>
9059 </row>
9060 <row>
9061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9062 \begin_inset Text
9063
9064 \begin_layout Plain Layout
9065
9066 \backslash
9067 Downarrow
9068 \end_layout
9069
9070 \end_inset
9071 </cell>
9072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9073 \begin_inset Text
9074
9075 \begin_layout Plain Layout
9076 \begin_inset Formula $\Downarrow$
9077 \end_inset
9078
9079
9080 \end_layout
9081
9082 \end_inset
9083 </cell>
9084 </row>
9085 <row>
9086 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9087 \begin_inset Text
9088
9089 \begin_layout Plain Layout
9090
9091 \backslash
9092 downarrow
9093 \end_layout
9094
9095 \end_inset
9096 </cell>
9097 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9098 \begin_inset Text
9099
9100 \begin_layout Plain Layout
9101 \begin_inset Formula $\downarrow$
9102 \end_inset
9103
9104
9105 \end_layout
9106
9107 \end_inset
9108 </cell>
9109 </row>
9110 </lyxtabular>
9111
9112 \end_inset
9113
9114
9115 \begin_inset space \hfill{}
9116 \end_inset
9117
9118
9119 \begin_inset Tabular
9120 <lyxtabular version="3" rows="5" columns="2">
9121 <features tabularvalignment="middle">
9122 <column alignment="center" valignment="top" width="0pt">
9123 <column alignment="center" valignment="top" width="0pt">
9124 <row>
9125 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9126 \begin_inset Text
9127
9128 \begin_layout Plain Layout
9129 コマンド
9130 \end_layout
9131
9132 \end_inset
9133 </cell>
9134 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9135 \begin_inset Text
9136
9137 \begin_layout Plain Layout
9138 出力
9139 \end_layout
9140
9141 \end_inset
9142 </cell>
9143 </row>
9144 <row>
9145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9146 \begin_inset Text
9147
9148 \begin_layout Plain Layout
9149
9150 \backslash
9151 nearrow
9152 \end_layout
9153
9154 \end_inset
9155 </cell>
9156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9157 \begin_inset Text
9158
9159 \begin_layout Plain Layout
9160 \begin_inset Formula $\nearrow$
9161 \end_inset
9162
9163
9164 \end_layout
9165
9166 \end_inset
9167 </cell>
9168 </row>
9169 <row>
9170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9171 \begin_inset Text
9172
9173 \begin_layout Plain Layout
9174
9175 \backslash
9176 searrow
9177 \end_layout
9178
9179 \end_inset
9180 </cell>
9181 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9182 \begin_inset Text
9183
9184 \begin_layout Plain Layout
9185 \begin_inset Formula $\searrow$
9186 \end_inset
9187
9188
9189 \end_layout
9190
9191 \end_inset
9192 </cell>
9193 </row>
9194 <row>
9195 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9196 \begin_inset Text
9197
9198 \begin_layout Plain Layout
9199
9200 \backslash
9201 swarrow
9202 \end_layout
9203
9204 \end_inset
9205 </cell>
9206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9207 \begin_inset Text
9208
9209 \begin_layout Plain Layout
9210 \begin_inset Formula $\swarrow$
9211 \end_inset
9212
9213
9214 \end_layout
9215
9216 \end_inset
9217 </cell>
9218 </row>
9219 <row>
9220 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9221 \begin_inset Text
9222
9223 \begin_layout Plain Layout
9224
9225 \backslash
9226 nwarrow
9227 \end_layout
9228
9229 \end_inset
9230 </cell>
9231 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9232 \begin_inset Text
9233
9234 \begin_layout Plain Layout
9235 \begin_inset Formula $\nwarrow$
9236 \end_inset
9237
9238
9239 \end_layout
9240
9241 \end_inset
9242 </cell>
9243 </row>
9244 </lyxtabular>
9245
9246 \end_inset
9247
9248
9249 \begin_inset space \hfill{}
9250 \end_inset
9251
9252
9253 \end_layout
9254
9255 \begin_layout Standard
9256 \begin_inset VSpace medskip
9257 \end_inset
9258
9259 垂直矢印は、第
9260 \begin_inset CommandInset ref
9261 LatexCommand ref
9262 reference "sub:手動の括弧丈"
9263
9264 \end_inset
9265
9266 節および第
9267 \begin_inset CommandInset ref
9268 LatexCommand ref
9269 reference "sub:自動の括弧丈"
9270
9271 \end_inset
9272
9273 節に述べられているコマンドを使うと、区分記号として使用することもできます。
9274 \end_layout
9275
9276 \begin_layout Standard
9277 \begin_inset Newpage newpage
9278 \end_inset
9279
9280
9281 \end_layout
9282
9283 \begin_layout Section
9284 アクセント
9285 \begin_inset CommandInset label
9286 LatexCommand label
9287 name "sec:アクセント"
9288
9289 \end_inset
9290
9291
9292 \begin_inset Index idx
9293 status collapsed
9294
9295 \begin_layout Plain Layout
9296 あくせんと@アクセント
9297 \end_layout
9298
9299 \end_inset
9300
9301
9302 \end_layout
9303
9304 \begin_layout Standard
9305 アクセントは、数式ツールバーボタンの
9306 \begin_inset Graphics
9307         filename ../../images/math/hat.png
9308         scale 85
9309
9310 \end_inset
9311
9312 か、以下の各小節に列挙してあるコマンドで入力することができます。
9313 \end_layout
9314
9315 \begin_layout Subsection
9316 一文字に付けるアクセント
9317 \begin_inset ERT
9318 status collapsed
9319
9320 \begin_layout Plain Layout
9321
9322
9323 \backslash
9324 texorpdfstring{
9325 \end_layout
9326
9327 \end_inset
9328
9329
9330 \begin_inset Foot
9331 status collapsed
9332
9333 \begin_layout Plain Layout
9334 本文中のアクセントについては、第
9335 \begin_inset CommandInset ref
9336 LatexCommand ref
9337 reference "sub:文章中のアクセント"
9338
9339 \end_inset
9340
9341 節を参照。
9342 \end_layout
9343
9344 \end_inset
9345
9346
9347 \begin_inset ERT
9348 status collapsed
9349
9350 \begin_layout Plain Layout
9351
9352 }{}
9353 \end_layout
9354
9355 \end_inset
9356
9357
9358 \begin_inset Note Note
9359 status collapsed
9360
9361 \begin_layout Plain Layout
9362
9363 \series bold
9364
9365 \backslash
9366 texorpdfstring
9367 \series default
9368 は、PDFのしおりに脚注が現れるのを防ぐために使われています。
9369 \end_layout
9370
9371 \begin_layout Plain Layout
9372
9373 \series bold
9374
9375 \backslash
9376 texorpdfstring
9377 \series default
9378 についての詳細は、第
9379 \begin_inset CommandInset ref
9380 LatexCommand ref
9381 reference "sub:節見出し中の数式"
9382
9383 \end_inset
9384
9385 節にあります。
9386 \end_layout
9387
9388 \end_inset
9389
9390
9391 \begin_inset CommandInset label
9392 LatexCommand label
9393 name "sub:一文字に付けるアクセント"
9394
9395 \end_inset
9396
9397
9398 \begin_inset Index idx
9399 status collapsed
9400
9401 \begin_layout Plain Layout
9402 あくせんと@アクセント ! いちもじにつける@一文字に付ける
9403 \end_layout
9404
9405 \end_inset
9406
9407
9408 \end_layout
9409
9410 \begin_layout Standard
9411 \begin_inset space \hfill{}
9412 \end_inset
9413
9414
9415 \begin_inset Tabular
9416 <lyxtabular version="3" rows="8" columns="2">
9417 <features tabularvalignment="middle">
9418 <column alignment="center" valignment="top" width="0pt">
9419 <column alignment="center" valignment="top" width="0pt">
9420 <row>
9421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9422 \begin_inset Text
9423
9424 \begin_layout Plain Layout
9425 コマンド
9426 \end_layout
9427
9428 \end_inset
9429 </cell>
9430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9431 \begin_inset Text
9432
9433 \begin_layout Plain Layout
9434 出力
9435 \begin_inset Note Note
9436 status collapsed
9437
9438 \begin_layout Plain Layout
9439 ここで
9440 \series bold
9441
9442 \backslash
9443 raisebox
9444 \series default
9445 はスペーサーとして使用しているだけです。
9446 \end_layout
9447
9448 \end_inset
9449
9450
9451 \end_layout
9452
9453 \end_inset
9454 </cell>
9455 </row>
9456 <row>
9457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9458 \begin_inset Text
9459
9460 \begin_layout Plain Layout
9461
9462 \backslash
9463 dot
9464 \begin_inset ERT
9465 status collapsed
9466
9467 \begin_layout Plain Layout
9468
9469
9470 \backslash
9471 spce 
9472 \end_layout
9473
9474 \end_inset
9475
9476 A
9477 \end_layout
9478
9479 \end_inset
9480 </cell>
9481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9482 \begin_inset Text
9483
9484 \begin_layout Plain Layout
9485 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9486 \end_inset
9487
9488
9489 \end_layout
9490
9491 \end_inset
9492 </cell>
9493 </row>
9494 <row>
9495 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9496 \begin_inset Text
9497
9498 \begin_layout Plain Layout
9499
9500 \backslash
9501 ddot
9502 \begin_inset ERT
9503 status collapsed
9504
9505 \begin_layout Plain Layout
9506
9507
9508 \backslash
9509 spce 
9510 \end_layout
9511
9512 \end_inset
9513
9514 A
9515 \end_layout
9516
9517 \end_inset
9518 </cell>
9519 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9520 \begin_inset Text
9521
9522 \begin_layout Plain Layout
9523 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9524 \end_inset
9525
9526
9527 \end_layout
9528
9529 \end_inset
9530 </cell>
9531 </row>
9532 <row>
9533 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9534 \begin_inset Text
9535
9536 \begin_layout Plain Layout
9537
9538 \backslash
9539 dddot
9540 \begin_inset ERT
9541 status collapsed
9542
9543 \begin_layout Plain Layout
9544
9545
9546 \backslash
9547 spce 
9548 \end_layout
9549
9550 \end_inset
9551
9552 A
9553 \end_layout
9554
9555 \end_inset
9556 </cell>
9557 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9558 \begin_inset Text
9559
9560 \begin_layout Plain Layout
9561 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9562 \end_inset
9563
9564
9565 \end_layout
9566
9567 \end_inset
9568 </cell>
9569 </row>
9570 <row>
9571 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9572 \begin_inset Text
9573
9574 \begin_layout Plain Layout
9575
9576 \backslash
9577 ddddot
9578 \begin_inset ERT
9579 status collapsed
9580
9581 \begin_layout Plain Layout
9582
9583
9584 \backslash
9585 spce 
9586 \end_layout
9587
9588 \end_inset
9589
9590 A
9591 \end_layout
9592
9593 \end_inset
9594 </cell>
9595 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9596 \begin_inset Text
9597
9598 \begin_layout Plain Layout
9599 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9600 \end_inset
9601
9602
9603 \end_layout
9604
9605 \end_inset
9606 </cell>
9607 </row>
9608 <row>
9609 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9610 \begin_inset Text
9611
9612 \begin_layout Plain Layout
9613
9614 \backslash
9615 vec
9616 \begin_inset ERT
9617 status collapsed
9618
9619 \begin_layout Plain Layout
9620
9621
9622 \backslash
9623 spce 
9624 \end_layout
9625
9626 \end_inset
9627
9628 A
9629 \begin_inset Index idx
9630 status collapsed
9631
9632 \begin_layout Plain Layout
9633
9634 \lang english
9635 Vectors
9636 \end_layout
9637
9638 \end_inset
9639
9640
9641 \end_layout
9642
9643 \end_inset
9644 </cell>
9645 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9646 \begin_inset Text
9647
9648 \begin_layout Plain Layout
9649 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9650 \end_inset
9651
9652
9653 \end_layout
9654
9655 \end_inset
9656 </cell>
9657 </row>
9658 <row>
9659 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9660 \begin_inset Text
9661
9662 \begin_layout Plain Layout
9663
9664 \backslash
9665 bar
9666 \begin_inset ERT
9667 status collapsed
9668
9669 \begin_layout Plain Layout
9670
9671
9672 \backslash
9673 spce 
9674 \end_layout
9675
9676 \end_inset
9677
9678 A
9679 \end_layout
9680
9681 \end_inset
9682 </cell>
9683 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9684 \begin_inset Text
9685
9686 \begin_layout Plain Layout
9687 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9688 \end_inset
9689
9690
9691 \end_layout
9692
9693 \end_inset
9694 </cell>
9695 </row>
9696 <row>
9697 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9698 \begin_inset Text
9699
9700 \begin_layout Plain Layout
9701
9702 \backslash
9703 mathring
9704 \begin_inset ERT
9705 status collapsed
9706
9707 \begin_layout Plain Layout
9708
9709
9710 \backslash
9711 spce 
9712 \end_layout
9713
9714 \end_inset
9715
9716 A
9717 \end_layout
9718
9719 \end_inset
9720 </cell>
9721 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9722 \begin_inset Text
9723
9724 \begin_layout Plain Layout
9725 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9726 \end_inset
9727
9728
9729 \end_layout
9730
9731 \end_inset
9732 </cell>
9733 </row>
9734 </lyxtabular>
9735
9736 \end_inset
9737
9738
9739 \begin_inset space \hfill{}
9740 \end_inset
9741
9742
9743 \begin_inset Tabular
9744 <lyxtabular version="3" rows="7" columns="2">
9745 <features tabularvalignment="middle">
9746 <column alignment="center" valignment="top" width="0pt">
9747 <column alignment="center" valignment="top" width="0pt">
9748 <row>
9749 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9750 \begin_inset Text
9751
9752 \begin_layout Plain Layout
9753 コマンド
9754 \end_layout
9755
9756 \end_inset
9757 </cell>
9758 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9759 \begin_inset Text
9760
9761 \begin_layout Plain Layout
9762 出力
9763 \end_layout
9764
9765 \end_inset
9766 </cell>
9767 </row>
9768 <row>
9769 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9770 \begin_inset Text
9771
9772 \begin_layout Plain Layout
9773
9774 \backslash
9775 tilde
9776 \begin_inset ERT
9777 status collapsed
9778
9779 \begin_layout Plain Layout
9780
9781
9782 \backslash
9783 spce 
9784 \end_layout
9785
9786 \end_inset
9787
9788 A
9789 \end_layout
9790
9791 \end_inset
9792 </cell>
9793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9794 \begin_inset Text
9795
9796 \begin_layout Plain Layout
9797 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9798 \end_inset
9799
9800
9801 \end_layout
9802
9803 \end_inset
9804 </cell>
9805 </row>
9806 <row>
9807 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9808 \begin_inset Text
9809
9810 \begin_layout Plain Layout
9811
9812 \backslash
9813 hat
9814 \begin_inset ERT
9815 status collapsed
9816
9817 \begin_layout Plain Layout
9818
9819
9820 \backslash
9821 spce 
9822 \end_layout
9823
9824 \end_inset
9825
9826 A
9827 \end_layout
9828
9829 \end_inset
9830 </cell>
9831 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9832 \begin_inset Text
9833
9834 \begin_layout Plain Layout
9835 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
9836 \end_inset
9837
9838
9839 \end_layout
9840
9841 \end_inset
9842 </cell>
9843 </row>
9844 <row>
9845 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9846 \begin_inset Text
9847
9848 \begin_layout Plain Layout
9849
9850 \backslash
9851 check
9852 \begin_inset ERT
9853 status collapsed
9854
9855 \begin_layout Plain Layout
9856
9857
9858 \backslash
9859 spce 
9860 \end_layout
9861
9862 \end_inset
9863
9864 A
9865 \end_layout
9866
9867 \end_inset
9868 </cell>
9869 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9870 \begin_inset Text
9871
9872 \begin_layout Plain Layout
9873 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
9874 \end_inset
9875
9876
9877 \end_layout
9878
9879 \end_inset
9880 </cell>
9881 </row>
9882 <row>
9883 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9884 \begin_inset Text
9885
9886 \begin_layout Plain Layout
9887
9888 \backslash
9889 acute
9890 \begin_inset ERT
9891 status collapsed
9892
9893 \begin_layout Plain Layout
9894
9895
9896 \backslash
9897 spce 
9898 \end_layout
9899
9900 \end_inset
9901
9902 A
9903 \end_layout
9904
9905 \end_inset
9906 </cell>
9907 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9908 \begin_inset Text
9909
9910 \begin_layout Plain Layout
9911 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
9912 \end_inset
9913
9914
9915 \end_layout
9916
9917 \end_inset
9918 </cell>
9919 </row>
9920 <row>
9921 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9922 \begin_inset Text
9923
9924 \begin_layout Plain Layout
9925
9926 \backslash
9927 grave
9928 \begin_inset ERT
9929 status collapsed
9930
9931 \begin_layout Plain Layout
9932
9933
9934 \backslash
9935 spce 
9936 \end_layout
9937
9938 \end_inset
9939
9940 A
9941 \end_layout
9942
9943 \end_inset
9944 </cell>
9945 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9946 \begin_inset Text
9947
9948 \begin_layout Plain Layout
9949 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
9950 \end_inset
9951
9952
9953 \end_layout
9954
9955 \end_inset
9956 </cell>
9957 </row>
9958 <row>
9959 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9960 \begin_inset Text
9961
9962 \begin_layout Plain Layout
9963
9964 \backslash
9965 breve
9966 \begin_inset ERT
9967 status collapsed
9968
9969 \begin_layout Plain Layout
9970
9971
9972 \backslash
9973 spce 
9974 \end_layout
9975
9976 \end_inset
9977
9978 A
9979 \end_layout
9980
9981 \end_inset
9982 </cell>
9983 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9984 \begin_inset Text
9985
9986 \begin_layout Plain Layout
9987 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
9988 \end_inset
9989
9990
9991 \end_layout
9992
9993 \end_inset
9994 </cell>
9995 </row>
9996 </lyxtabular>
9997
9998 \end_inset
9999
10000
10001 \begin_inset space \hfill{}
10002 \end_inset
10003
10004
10005 \end_layout
10006
10007 \begin_layout Standard
10008 \begin_inset VSpace bigskip
10009 \end_inset
10010
10011
10012 \end_layout
10013
10014 \begin_layout Standard
10015 \begin_inset ERT
10016 status collapsed
10017
10018 \begin_layout Plain Layout
10019
10020
10021 \backslash
10022 '{e}
10023 \end_layout
10024
10025 \end_inset
10026
10027 のようなアクセントは、数式に直接入れることができます。LyXは、それを対応するアクセントコマンドに変換します。ウムラウト
10028 \begin_inset Index idx
10029 status collapsed
10030
10031 \begin_layout Plain Layout
10032 うむらうと@ウムラウト
10033 \end_layout
10034
10035 \end_inset
10036
10037 に関しては、母音の前に引用符を挿入する方法の方がよいでしょう。ウムラウトのある数式部分がドイツ語に指定してあれば、LaTeXは、引用符と母音をまとめて一つの文字
10038 として取り扱います。
10039 \series bold
10040
10041 \backslash
10042 ddot
10043 \series default
10044 と違い、この方法では、以下の例に示すように「本物の」ウムラウトが作られます。
10045 \end_layout
10046
10047 \begin_layout Standard
10048 \begin_inset VSpace -2mm
10049 \end_inset
10050
10051
10052 \end_layout
10053
10054 \begin_layout Standard
10055 \align center
10056 \begin_inset Tabular
10057 <lyxtabular version="3" rows="3" columns="2">
10058 <features tabularvalignment="middle">
10059 <column alignment="center" valignment="top" width="0">
10060 <column alignment="center" valignment="top" width="0">
10061 <row>
10062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10063 \begin_inset Text
10064
10065 \begin_layout Plain Layout
10066 コマンド
10067 \end_layout
10068
10069 \end_inset
10070 </cell>
10071 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10072 \begin_inset Text
10073
10074 \begin_layout Plain Layout
10075 出力
10076 \begin_inset Note Note
10077 status collapsed
10078
10079 \begin_layout Plain Layout
10080 ここで
10081 \series bold
10082
10083 \backslash
10084 raisebox
10085 \series default
10086 および0ポイント空白はスペーサーとして使用しているだけです。
10087 \end_layout
10088
10089 \end_inset
10090
10091
10092 \end_layout
10093
10094 \end_inset
10095 </cell>
10096 </row>
10097 <row>
10098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10099 \begin_inset Text
10100
10101 \begin_layout Plain Layout
10102 \begin_inset Quotes grd
10103 \end_inset
10104
10105 i
10106 \end_layout
10107
10108 \end_inset
10109 </cell>
10110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10111 \begin_inset Text
10112
10113 \begin_layout Plain Layout
10114
10115 \lang ngerman
10116 \begin_inset space \hspace{}
10117 \length 0pt
10118 \end_inset
10119
10120
10121 \begin_inset Formula $"i$
10122 \end_inset
10123
10124
10125 \end_layout
10126
10127 \end_inset
10128 </cell>
10129 </row>
10130 <row>
10131 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10132 \begin_inset Text
10133
10134 \begin_layout Plain Layout
10135
10136 \backslash
10137 ddot
10138 \begin_inset ERT
10139 status collapsed
10140
10141 \begin_layout Plain Layout
10142
10143
10144 \backslash
10145 spce 
10146 \end_layout
10147
10148 \end_inset
10149
10150 i
10151 \end_layout
10152
10153 \end_inset
10154 </cell>
10155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10156 \begin_inset Text
10157
10158 \begin_layout Plain Layout
10159 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10160 \end_inset
10161
10162
10163 \end_layout
10164
10165 \end_inset
10166 </cell>
10167 </row>
10168 </lyxtabular>
10169
10170 \end_inset
10171
10172
10173 \end_layout
10174
10175 \begin_layout Standard
10176
10177 \series bold
10178
10179 \backslash
10180 ddot
10181 \series default
10182 に比べて良いもう一つの利点は、上記のアクセントコマンドが
10183 \emph on
10184 数式中テキストでは使用できない
10185 \emph default
10186 のに対し、ウムラウトは直接数式中テキストに変換されることです。(アクセントコマンドによる)アクセント付き文字を数式中テキストに変換すると、アクセントの下にある文
10187 字しか変換されません。これは、たとえばイタリック体やボールド体への変換など、他のすべての変換に関しても言えることです。
10188 \end_layout
10189
10190 \begin_layout Standard
10191 ウムラウトと他のアクセント付き文字は、数式中テキストに直接入れることができます。
10192 \end_layout
10193
10194 \begin_layout Subsection
10195 演算子に付けるアクセント
10196 \begin_inset Index idx
10197 status collapsed
10198
10199 \begin_layout Plain Layout
10200 あくせんと@アクセント ! えんざんしにつける@演算子に付ける
10201 \end_layout
10202
10203 \end_inset
10204
10205
10206 \end_layout
10207
10208 \begin_layout Standard
10209
10210 \series bold
10211
10212 \backslash
10213 overset
10214 \series default
10215
10216 \begin_inset Index idx
10217 status collapsed
10218
10219 \begin_layout Plain Layout
10220 こまんど@コマンド ! O ! 
10221 \backslash
10222 overset
10223 \end_layout
10224
10225 \end_inset
10226
10227 コマンドや
10228 \series bold
10229
10230 \backslash
10231 underset
10232 \series default
10233
10234 \begin_inset Index idx
10235 status collapsed
10236
10237 \begin_layout Plain Layout
10238 こまんど@コマンド ! U ! 
10239 \backslash
10240 underset
10241 \end_layout
10242
10243 \end_inset
10244
10245 コマンドを使うと、それぞれ演算子の上や下に、文字をアクセントとして付けることができます。また、
10246 \series bold
10247
10248 \backslash
10249 sideset
10250 \series default
10251
10252 \begin_inset Index idx
10253 status collapsed
10254
10255 \begin_layout Plain Layout
10256 こまんど@コマンド ! S ! 
10257 \backslash
10258 sideset
10259 \end_layout
10260
10261 \end_inset
10262
10263 コマンドを使うと、文字を演算子の前や後ろに付けることができます。コマンド書式は、
10264 \end_layout
10265
10266 \begin_layout Standard
10267
10268 \series bold
10269
10270 \backslash
10271 sideset{前置文字}{後置文字}
10272 \end_layout
10273
10274 \begin_layout Standard
10275
10276 \series bold
10277
10278 \backslash
10279 sideset
10280 \series default
10281 は、かならずアクセントを付ける演算子の前に置かなくてはなりません。複数の文字や他の演算子、記号もアクセントとして使用することができます。たとえば、
10282 \series bold
10283
10284 \backslash
10285 sideset
10286 \series default
10287 を使って演算子の後だけに文字を配置したい場合には、最初の括弧の中には何も書かないようにしますが、括弧を省略することはできません。
10288 \end_layout
10289
10290 \begin_layout Standard
10291 たとえば、
10292 \series bold
10293
10294 \backslash
10295 sideset{
10296 \begin_inset Formula $\to$
10297 \end_inset
10298
10299
10300 \backslash
10301 {
10302 \series default
10303 '
10304 \series bold
10305
10306 \begin_inset Formula $\to$
10307 \end_inset
10308
10309
10310 \backslash
10311 sum_k=1
10312 \begin_inset ERT
10313 status collapsed
10314
10315 \begin_layout Plain Layout
10316
10317
10318 \backslash
10319 spce 
10320 \end_layout
10321
10322 \end_inset
10323
10324
10325 \series default
10326 ^
10327 \series bold
10328 n
10329 \series default
10330 というコマンドを入力すると、
10331 \begin_inset Formula \[
10332 \sideset{}{'}\sum_{k=1}^{n}\]
10333
10334 \end_inset
10335
10336 のようになります。
10337 \end_layout
10338
10339 \begin_layout Standard
10340 また、
10341 \series bold
10342
10343 \backslash
10344 overset
10345 \begin_inset ERT
10346 status collapsed
10347
10348 \begin_layout Plain Layout
10349
10350
10351 \backslash
10352 spce 
10353 \end_layout
10354
10355 \end_inset
10356
10357
10358 \backslash
10359 maltese
10360 \begin_inset ERT
10361 status collapsed
10362
10363 \begin_layout Plain Layout
10364
10365
10366 \backslash
10367 spce 
10368 \end_layout
10369
10370 \end_inset
10371
10372
10373 \series default
10374
10375 \begin_inset Formula $\uparrow$
10376 \end_inset
10377
10378
10379 \series bold
10380 a
10381 \series default
10382 というコマンドならば、
10383 \begin_inset Formula \[
10384 \overset{a}{\maltese}\]
10385
10386 \end_inset
10387
10388 のようになります。最後の例からわかるように、
10389 \series bold
10390
10391 \backslash
10392 overset
10393 \series default
10394
10395 \series bold
10396
10397 \backslash
10398 underset
10399 \series default
10400 では、記号や文字にアクセントをつけることもできます。一方、
10401 \series bold
10402
10403 \backslash
10404 sideset
10405 \series default
10406 では、このようなことはできません。
10407 \end_layout
10408
10409 \begin_layout Subsection
10410 複数の文字に付けるアクセント
10411 \begin_inset Index idx
10412 status collapsed
10413
10414 \begin_layout Plain Layout
10415 あくせんと@アクセント ! ふくすうのもじにつける@複数の文字に付ける
10416 \end_layout
10417
10418 \end_inset
10419
10420
10421 \end_layout
10422
10423 \begin_layout Standard
10424 \begin_inset space \hfill{}
10425 \end_inset
10426
10427
10428 \begin_inset Tabular
10429 <lyxtabular version="3" rows="5" columns="2">
10430 <features tabularvalignment="middle">
10431 <column alignment="center" valignment="top" width="0pt">
10432 <column alignment="center" valignment="top" width="0pt">
10433 <row>
10434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10435 \begin_inset Text
10436
10437 \begin_layout Plain Layout
10438 コマンド
10439 \end_layout
10440
10441 \end_inset
10442 </cell>
10443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10444 \begin_inset Text
10445
10446 \begin_layout Plain Layout
10447 出力
10448 \begin_inset Note Note
10449 status collapsed
10450
10451 \begin_layout Plain Layout
10452 ここで
10453 \series bold
10454
10455 \backslash
10456 raisebox
10457 \series default
10458 はスペーサーとして使用しているだけです。
10459 \end_layout
10460
10461 \end_inset
10462
10463
10464 \end_layout
10465
10466 \end_inset
10467 </cell>
10468 </row>
10469 <row>
10470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10471 \begin_inset Text
10472
10473 \begin_layout Plain Layout
10474
10475 \backslash
10476 overleftarrow
10477 \begin_inset ERT
10478 status collapsed
10479
10480 \begin_layout Plain Layout
10481
10482
10483 \backslash
10484 spce 
10485 \end_layout
10486
10487 \end_inset
10488
10489 A=B
10490 \end_layout
10491
10492 \end_inset
10493 </cell>
10494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10495 \begin_inset Text
10496
10497 \begin_layout Plain Layout
10498 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10499 \end_inset
10500
10501
10502 \end_layout
10503
10504 \end_inset
10505 </cell>
10506 </row>
10507 <row>
10508 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10509 \begin_inset Text
10510
10511 \begin_layout Plain Layout
10512
10513 \backslash
10514 underleftarrow
10515 \begin_inset ERT
10516 status collapsed
10517
10518 \begin_layout Plain Layout
10519
10520
10521 \backslash
10522 spce 
10523 \end_layout
10524
10525 \end_inset
10526
10527 A=B
10528 \end_layout
10529
10530 \end_inset
10531 </cell>
10532 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10533 \begin_inset Text
10534
10535 \begin_layout Plain Layout
10536 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10537 \end_inset
10538
10539
10540 \end_layout
10541
10542 \end_inset
10543 </cell>
10544 </row>
10545 <row>
10546 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10547 \begin_inset Text
10548
10549 \begin_layout Plain Layout
10550
10551 \backslash
10552 overleftrightarrow
10553 \begin_inset ERT
10554 status collapsed
10555
10556 \begin_layout Plain Layout
10557
10558
10559 \backslash
10560 spce 
10561 \end_layout
10562
10563 \end_inset
10564
10565 A=B
10566 \end_layout
10567
10568 \end_inset
10569 </cell>
10570 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10571 \begin_inset Text
10572
10573 \begin_layout Plain Layout
10574 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10575 \end_inset
10576
10577
10578 \end_layout
10579
10580 \end_inset
10581 </cell>
10582 </row>
10583 <row>
10584 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10585 \begin_inset Text
10586
10587 \begin_layout Plain Layout
10588
10589 \backslash
10590 underleftrightarrow
10591 \begin_inset ERT
10592 status collapsed
10593
10594 \begin_layout Plain Layout
10595
10596
10597 \backslash
10598 spce 
10599 \end_layout
10600
10601 \end_inset
10602
10603 A=B
10604 \end_layout
10605
10606 \end_inset
10607 </cell>
10608 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10609 \begin_inset Text
10610
10611 \begin_layout Plain Layout
10612 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10613 \end_inset
10614
10615
10616 \end_layout
10617
10618 \end_inset
10619 </cell>
10620 </row>
10621 </lyxtabular>
10622
10623 \end_inset
10624
10625
10626 \begin_inset space \hfill{}
10627 \end_inset
10628
10629
10630 \begin_inset Tabular
10631 <lyxtabular version="3" rows="5" columns="2">
10632 <features tabularvalignment="middle">
10633 <column alignment="center" valignment="top" width="0pt">
10634 <column alignment="center" valignment="top" width="0pt">
10635 <row>
10636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10637 \begin_inset Text
10638
10639 \begin_layout Plain Layout
10640 コマンド
10641 \end_layout
10642
10643 \end_inset
10644 </cell>
10645 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10646 \begin_inset Text
10647
10648 \begin_layout Plain Layout
10649 出力
10650 \end_layout
10651
10652 \end_inset
10653 </cell>
10654 </row>
10655 <row>
10656 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10657 \begin_inset Text
10658
10659 \begin_layout Plain Layout
10660
10661 \backslash
10662 overrightarrow
10663 \begin_inset ERT
10664 status collapsed
10665
10666 \begin_layout Plain Layout
10667
10668
10669 \backslash
10670 spce 
10671 \end_layout
10672
10673 \end_inset
10674
10675 A=B
10676 \end_layout
10677
10678 \end_inset
10679 </cell>
10680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10681 \begin_inset Text
10682
10683 \begin_layout Plain Layout
10684 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10685 \end_inset
10686
10687
10688 \end_layout
10689
10690 \end_inset
10691 </cell>
10692 </row>
10693 <row>
10694 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10695 \begin_inset Text
10696
10697 \begin_layout Plain Layout
10698
10699 \backslash
10700 underrightarrow
10701 \begin_inset ERT
10702 status collapsed
10703
10704 \begin_layout Plain Layout
10705
10706
10707 \backslash
10708 spce 
10709 \end_layout
10710
10711 \end_inset
10712
10713 A=B
10714 \end_layout
10715
10716 \end_inset
10717 </cell>
10718 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10719 \begin_inset Text
10720
10721 \begin_layout Plain Layout
10722 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10723 \end_inset
10724
10725
10726 \end_layout
10727
10728 \end_inset
10729 </cell>
10730 </row>
10731 <row>
10732 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10733 \begin_inset Text
10734
10735 \begin_layout Plain Layout
10736
10737 \backslash
10738 widetilde
10739 \begin_inset ERT
10740 status collapsed
10741
10742 \begin_layout Plain Layout
10743
10744
10745 \backslash
10746 spce 
10747 \end_layout
10748
10749 \end_inset
10750
10751 A=B
10752 \end_layout
10753
10754 \end_inset
10755 </cell>
10756 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10757 \begin_inset Text
10758
10759 \begin_layout Plain Layout
10760 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10761 \end_inset
10762
10763
10764 \end_layout
10765
10766 \end_inset
10767 </cell>
10768 </row>
10769 <row>
10770 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10771 \begin_inset Text
10772
10773 \begin_layout Plain Layout
10774
10775 \backslash
10776 widehat
10777 \begin_inset ERT
10778 status collapsed
10779
10780 \begin_layout Plain Layout
10781
10782
10783 \backslash
10784 spce 
10785 \end_layout
10786
10787 \end_inset
10788
10789 A=B
10790 \end_layout
10791
10792 \end_inset
10793 </cell>
10794 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10795 \begin_inset Text
10796
10797 \begin_layout Plain Layout
10798 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10799 \end_inset
10800
10801
10802 \end_layout
10803
10804 \end_inset
10805 </cell>
10806 </row>
10807 </lyxtabular>
10808
10809 \end_inset
10810
10811
10812 \begin_inset space \hfill{}
10813 \end_inset
10814
10815
10816 \end_layout
10817
10818 \begin_layout Standard
10819 \begin_inset VSpace medskip
10820 \end_inset
10821
10822 これらのコマンドでは、好きなだけ多くの文字にアクセントを付けることができます。しかし、
10823 \series bold
10824
10825 \backslash
10826 widetilde
10827 \series default
10828 および
10829 \series bold
10830
10831 \backslash
10832 widehat
10833 \series default
10834 のアクセントは、以下の例のように、出力では3文字分の長さにしかなりません。
10835 \begin_inset Formula \[
10836 \widetilde{A+B=C-D}\]
10837
10838 \end_inset
10839
10840
10841 \end_layout
10842
10843 \begin_layout Standard
10844 前小節で述べた
10845 \series bold
10846
10847 \backslash
10848 overset
10849 \series default
10850
10851 \begin_inset Index idx
10852 status collapsed
10853
10854 \begin_layout Plain Layout
10855 こまんど@コマンド ! O ! 
10856 \backslash
10857 overset
10858 \end_layout
10859
10860 \end_inset
10861
10862 コマンドと
10863 \series bold
10864
10865 \backslash
10866 underset
10867 \series default
10868
10869 \begin_inset Index idx
10870 status collapsed
10871
10872 \begin_layout Plain Layout
10873 こまんど@コマンド ! U ! 
10874 \backslash
10875 underset
10876 \end_layout
10877
10878 \end_inset
10879
10880 コマンドを使っても、複数の文字にアクセントを付けることができます。
10881 \series bold
10882
10883 \backslash
10884 underset
10885 \begin_inset ERT
10886 status collapsed
10887
10888 \begin_layout Plain Layout
10889
10890
10891 \backslash
10892 spce 
10893 \end_layout
10894
10895 \end_inset
10896
10897 A=B
10898 \begin_inset Formula $\downarrow$
10899 \end_inset
10900
10901 ***
10902 \series default
10903 というコマンドは、
10904 \begin_inset Formula \[
10905 \underset{***}{A=B}\]
10906
10907 \end_inset
10908
10909 のようになります。
10910 \end_layout
10911
10912 \begin_layout Section
10913 空白
10914 \begin_inset CommandInset label
10915 LatexCommand label
10916 name "sub:空白"
10917
10918 \end_inset
10919
10920
10921 \begin_inset Index idx
10922 status collapsed
10923
10924 \begin_layout Plain Layout
10925 くうはく@空白 ! すいへい@水平
10926 \end_layout
10927
10928 \end_inset
10929
10930
10931 \end_layout
10932
10933 \begin_layout Subsection
10934 定義済みの空白
10935 \begin_inset CommandInset label
10936 LatexCommand label
10937 name "sub:定義済みの空白"
10938
10939 \end_inset
10940
10941
10942 \begin_inset Index idx
10943 status collapsed
10944
10945 \begin_layout Plain Layout
10946 くうはく@空白 ! すいへい@水平 ! ていぎずみ@定義済み
10947 \end_layout
10948
10949 \end_inset
10950
10951
10952 \end_layout
10953
10954 \begin_layout Standard
10955 数式に水平方向の空白を挿入することが、必要になることがあります。これは、保護された空白(短絡キー
10956 \begin_inset Info
10957 type  "shortcut"
10958 arg   "space-insert protected"
10959 \end_inset
10960
10961 )を挿入することで実現できます。「
10962 \color blue
10963
10964 \begin_inset ERT
10965 status collapsed
10966
10967 \begin_layout Plain Layout
10968
10969
10970 \backslash
10971 spce 
10972 \end_layout
10973
10974 \end_inset
10975
10976
10977 \color inherit
10978 」が現れるので、
10979 \family sans
10980 Space
10981 \family default
10982 を何回か押すことによって、8種の異なる長さの空白のうち一つを選択することができます。空白は、数式ツールバーボタンの
10983 \begin_inset Graphics
10984         filename ../../images/math/space.png
10985         scale 85
10986
10987 \end_inset
10988
10989 を押すか、特定のコマンドを入力することで、挿入することができます。挿入したコマンド如何に関わらず、直後に
10990 \family sans
10991 Space
10992 \family default
10993 を押すことによって、長さを変更することができます。
10994 \end_layout
10995
10996 \begin_layout Standard
10997 \noindent
10998 \align center
10999 \begin_inset Tabular
11000 <lyxtabular version="3" rows="3" columns="7">
11001 <features tabularvalignment="middle">
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 コマンド
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 保護された空白を挿入したのち、
11092 \family sans
11093 Space
11094 \family default
11095 を叩く回数
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 出力
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 一番右の長さは、一見、空白を生まないように見えます。実はこれは負の長さなので、他の長さと異なり、LyX中では赤で表示されます。以下のように、他にもう二つ、負の長
11247 さの空白があります。
11248 \end_layout
11249
11250 \begin_layout Standard
11251 \align center
11252 \begin_inset Tabular
11253 <lyxtabular version="3" rows="3" columns="3">
11254 <features tabularvalignment="middle">
11255 <column alignment="center" valignment="middle" width="6.8cm">
11256 <column alignment="center" valignment="top" width="0pt">
11257 <column alignment="center" valignment="top" width="0pt">
11258 <row>
11259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11260 \begin_inset Text
11261
11262 \begin_layout Plain Layout
11263 コマンド
11264 \end_layout
11265
11266 \end_inset
11267 </cell>
11268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11269 \begin_inset Text
11270
11271 \begin_layout Plain Layout
11272
11273 \backslash
11274 negmedspace
11275 \end_layout
11276
11277 \end_inset
11278 </cell>
11279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11280 \begin_inset Text
11281
11282 \begin_layout Plain Layout
11283
11284 \backslash
11285 negthickspace
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 </row>
11291 <row>
11292 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11293 \begin_inset Text
11294
11295 \begin_layout Plain Layout
11296 保護された空白を挿入したのち、
11297 \family sans
11298 Space
11299 \family default
11300 を叩く回数
11301 \end_layout
11302
11303 \end_inset
11304 </cell>
11305 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11306 \begin_inset Text
11307
11308 \begin_layout Plain Layout
11309 6
11310 \end_layout
11311
11312 \end_inset
11313 </cell>
11314 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11315 \begin_inset Text
11316
11317 \begin_layout Plain Layout
11318 7
11319 \end_layout
11320
11321 \end_inset
11322 </cell>
11323 </row>
11324 <row>
11325 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11326 \begin_inset Text
11327
11328 \begin_layout Plain Layout
11329 出力
11330 \end_layout
11331
11332 \end_inset
11333 </cell>
11334 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11335 \begin_inset Text
11336
11337 \begin_layout Plain Layout
11338 \begin_inset Formula $A\negmedspace B$
11339 \end_inset
11340
11341
11342 \end_layout
11343
11344 \end_inset
11345 </cell>
11346 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11347 \begin_inset Text
11348
11349 \begin_layout Plain Layout
11350 \begin_inset Formula $A\negthickspace B$
11351 \end_inset
11352
11353
11354 \end_layout
11355
11356 \end_inset
11357 </cell>
11358 </row>
11359 </lyxtabular>
11360
11361 \end_inset
11362
11363
11364 \end_layout
11365
11366 \begin_layout Standard
11367 負の空白を使うと、文字が重なってしまうことがあります。これを利用して、合字処理を強制することができます。これは、たとえば以下のように、和演算子に使えます。
11368 \end_layout
11369
11370 \begin_layout Standard
11371 \align center
11372 \begin_inset Tabular
11373 <lyxtabular version="3" rows="3" columns="2">
11374 <features tabularvalignment="middle">
11375 <column alignment="center" valignment="top" width="0">
11376 <column alignment="center" valignment="top" width="0">
11377 <row>
11378 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11379 \begin_inset Text
11380
11381 \begin_layout Plain Layout
11382 コマンド
11383 \end_layout
11384
11385 \end_inset
11386 </cell>
11387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11388 \begin_inset Text
11389
11390 \begin_layout Plain Layout
11391 出力
11392 \begin_inset Note Note
11393 status collapsed
11394
11395 \begin_layout Plain Layout
11396 ここで
11397 \series bold
11398
11399 \backslash
11400 raisebox
11401 \series default
11402 はスペーサーとして使用しているだけです。
11403 \end_layout
11404
11405 \end_inset
11406
11407
11408 \end_layout
11409
11410 \end_inset
11411 </cell>
11412 </row>
11413 <row>
11414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11415 \begin_inset Text
11416
11417 \begin_layout Plain Layout
11418
11419 \backslash
11420 sum
11421 \backslash
11422 sum
11423 \begin_inset ERT
11424 status collapsed
11425
11426 \begin_layout Plain Layout
11427
11428
11429 \backslash
11430 spce 
11431 \end_layout
11432
11433 \end_inset
11434
11435 f_kl
11436 \end_layout
11437
11438 \end_inset
11439 </cell>
11440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11441 \begin_inset Text
11442
11443 \begin_layout Plain Layout
11444 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11445 \end_inset
11446
11447
11448 \end_layout
11449
11450 \end_inset
11451 </cell>
11452 </row>
11453 <row>
11454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11455 \begin_inset Text
11456
11457 \begin_layout Plain Layout
11458
11459 \backslash
11460 sum
11461 \backslash
11462 negmedspace
11463 \backslash
11464 sum
11465 \begin_inset ERT
11466 status collapsed
11467
11468 \begin_layout Plain Layout
11469
11470
11471 \backslash
11472 spce 
11473 \end_layout
11474
11475 \end_inset
11476
11477 f_kl
11478 \end_layout
11479
11480 \end_inset
11481 </cell>
11482 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11483 \begin_inset Text
11484
11485 \begin_layout Plain Layout
11486 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11487 \end_inset
11488
11489
11490 \end_layout
11491
11492 \end_inset
11493 </cell>
11494 </row>
11495 </lyxtabular>
11496
11497 \end_inset
11498
11499
11500 \end_layout
11501
11502 \begin_layout Standard
11503 イコール記号などの関係子は、つねに空白を前後に伴うようになっていますが、これを抑制するには、イコール記号をTeX括弧で囲みます。以下の例にこれを示します。
11504 \end_layout
11505
11506 \begin_layout Standard
11507 \align center
11508 \begin_inset Tabular
11509 <lyxtabular version="3" rows="2" columns="2">
11510 <features tabularvalignment="middle">
11511 <column alignment="center" valignment="top" width="0pt">
11512 <column alignment="center" valignment="top" width="0pt">
11513 <row>
11514 <cell alignment="center" valignment="top" usebox="none">
11515 \begin_inset Text
11516
11517 \begin_layout Plain Layout
11518 通常の数式
11519 \end_layout
11520
11521 \end_inset
11522 </cell>
11523 <cell alignment="center" valignment="top" usebox="none">
11524 \begin_inset Text
11525
11526 \begin_layout Plain Layout
11527 \begin_inset Formula $A=B$
11528 \end_inset
11529
11530
11531 \end_layout
11532
11533 \end_inset
11534 </cell>
11535 </row>
11536 <row>
11537 <cell alignment="center" valignment="top" usebox="none">
11538 \begin_inset Text
11539
11540 \begin_layout Plain Layout
11541 \begin_inset Note Note
11542 status collapsed
11543
11544 \begin_layout Plain Layout
11545 ここで
11546 \series bold
11547
11548 \backslash
11549 raisebox
11550 \series default
11551 はスペーサーとして使用しているだけです。
11552 \end_layout
11553
11554 \end_inset
11555
11556
11557 \begin_inset Formula $\raisebox{5mm}{}$
11558 \end_inset
11559
11560 空白なしの数式
11561 \end_layout
11562
11563 \end_inset
11564 </cell>
11565 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11566 \begin_inset Text
11567
11568 \begin_layout Plain Layout
11569 \begin_inset Formula $A{=}B$
11570 \end_inset
11571
11572
11573 \end_layout
11574
11575 \end_inset
11576 </cell>
11577 </row>
11578 </lyxtabular>
11579
11580 \end_inset
11581
11582
11583 \end_layout
11584
11585 \begin_layout Standard
11586 \noindent
11587 二行目の数式を作るコマンドは、
11588 \series bold
11589 A
11590 \backslash
11591 {=
11592 \begin_inset Formula $\to$
11593 \end_inset
11594
11595 B
11596 \series default
11597 です。
11598 \end_layout
11599
11600 \begin_layout Standard
11601 \begin_inset VSpace bigskip
11602 \end_inset
11603
11604 物理単位には、値と単位のあいだに通常の空白ではなく、最小の空白を入れる必要があるために、それに適した空白が必要です。本文中の単位には、挿入\SpecialChar \menuseparator
11605 整形\SpecialChar \menuseparator
11606 小空白メニュー(短
11607 絡キー
11608 \begin_inset Info
11609 type  "shortcut"
11610 arg   "space-insert thin"
11611 \end_inset
11612
11613 )で、最小の空白を挿入することができます。
11614 \end_layout
11615
11616 \begin_layout Standard
11617 違いを示す例を以下に掲げます。
11618 \end_layout
11619
11620 \begin_layout Standard
11621 \begin_inset Tabular
11622 <lyxtabular version="3" rows="2" columns="2">
11623 <features tabularvalignment="middle">
11624 <column alignment="left" valignment="top" width="0">
11625 <column alignment="left" valignment="top" width="0">
11626 <row>
11627 <cell alignment="center" valignment="top" usebox="none">
11628 \begin_inset Text
11629
11630 \begin_layout Plain Layout
11631 24 kW
11632 \begin_inset Formula $\cdot$
11633 \end_inset
11634
11635 h
11636 \end_layout
11637
11638 \end_inset
11639 </cell>
11640 <cell alignment="center" valignment="top" usebox="none">
11641 \begin_inset Text
11642
11643 \begin_layout Plain Layout
11644 値と単位のあいだに通常の空白を入れた例
11645 \end_layout
11646
11647 \end_inset
11648 </cell>
11649 </row>
11650 <row>
11651 <cell alignment="center" valignment="top" usebox="none">
11652 \begin_inset Text
11653
11654 \begin_layout Plain Layout
11655 24
11656 \begin_inset space \thinspace{}
11657 \end_inset
11658
11659 kW
11660 \begin_inset Formula $\cdot$
11661 \end_inset
11662
11663 h
11664 \end_layout
11665
11666 \end_inset
11667 </cell>
11668 <cell alignment="center" valignment="top" usebox="none">
11669 \begin_inset Text
11670
11671 \begin_layout Plain Layout
11672 値と単位のあいだに最小の空白を入れた例
11673 \end_layout
11674
11675 \end_inset
11676 </cell>
11677 </row>
11678 </lyxtabular>
11679
11680 \end_inset
11681
11682
11683 \end_layout
11684
11685 \begin_layout Subsection
11686 可変長の空白
11687 \begin_inset ERT
11688 status collapsed
11689
11690 \begin_layout Plain Layout
11691
11692
11693 \backslash
11694 texorpdfstring{
11695 \end_layout
11696
11697 \end_inset
11698
11699
11700 \begin_inset Foot
11701 status collapsed
11702
11703 \begin_layout Plain Layout
11704 数式中の垂直方向の空白については、第
11705 \begin_inset CommandInset ref
11706 LatexCommand ref
11707 reference "sub:行間"
11708
11709 \end_inset
11710
11711 節をご覧下さい。
11712 \end_layout
11713
11714 \end_inset
11715
11716
11717 \begin_inset ERT
11718 status collapsed
11719
11720 \begin_layout Plain Layout
11721
11722 }{}
11723 \end_layout
11724
11725 \end_inset
11726
11727
11728 \begin_inset Note Note
11729 status collapsed
11730
11731 \begin_layout Plain Layout
11732
11733 \backslash
11734 texorpdfstringは、PDFのしおりに脚注が現れるのを防ぐために使われています。
11735 \end_layout
11736
11737 \begin_layout Plain Layout
11738
11739 \backslash
11740 texorpdfstringについての詳細は、第
11741 \begin_inset CommandInset ref
11742 LatexCommand ref
11743 reference "sub:節見出し中の数式"
11744
11745 \end_inset
11746
11747 節にあります。
11748 \end_layout
11749
11750 \end_inset
11751
11752
11753 \begin_inset CommandInset label
11754 LatexCommand label
11755 name "sub:可変長の空白"
11756
11757 \end_inset
11758
11759
11760 \begin_inset Index idx
11761 status collapsed
11762
11763 \begin_layout Plain Layout
11764 くうはく@空白 ! すいへいほうこう@水平方向 ! かへんちょう@可変長
11765 \end_layout
11766
11767 \end_inset
11768
11769
11770 \end_layout
11771
11772 \begin_layout Standard
11773 指定した長さの空白が、
11774 \series bold
11775
11776 \backslash
11777 hspace
11778 \series default
11779
11780 \begin_inset Index idx
11781 status collapsed
11782
11783 \begin_layout Plain Layout
11784 こまんど@コマンド ! H ! 
11785 \backslash
11786 hspace
11787 \end_layout
11788
11789 \end_inset
11790
11791 コマンドで入力することができます。すると、ながい「
11792 \color blue
11793
11794 \begin_inset ERT
11795 status collapsed
11796
11797 \begin_layout Plain Layout
11798
11799
11800 \backslash
11801 spce 
11802 \end_layout
11803
11804 \end_inset
11805
11806
11807 \color inherit
11808 」が現れます。長さは、「
11809 \color blue
11810
11811 \begin_inset ERT
11812 status collapsed
11813
11814 \begin_layout Plain Layout
11815
11816
11817 \backslash
11818 spce 
11819 \end_layout
11820
11821 \end_inset
11822
11823
11824 \color inherit
11825 」を左クリックすることによって指定することができます。長さは負の値でも構いません。数式が使用できる空白をすべて使い尽くすだけの空白を挿入するには、
11826 \series bold
11827
11828 \backslash
11829 hfill
11830 \series default
11831
11832 \begin_inset Index idx
11833 status collapsed
11834
11835 \begin_layout Plain Layout
11836 こまんど@コマンド ! H ! 
11837 \backslash
11838 hfill
11839 \end_layout
11840
11841 \end_inset
11842
11843 コマンドを使用します。
11844 \end_layout
11845
11846 \begin_layout Standard
11847 \begin_inset VSpace -1mm
11848 \end_inset
11849
11850
11851 \end_layout
11852
11853 \begin_layout Standard
11854 \align center
11855 \begin_inset Tabular
11856 <lyxtabular version="3" rows="4" columns="2">
11857 <features tabularvalignment="middle">
11858 <column alignment="center" valignment="top" width="0">
11859 <column alignment="center" valignment="top" width="0">
11860 <row>
11861 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11862 \begin_inset Text
11863
11864 \begin_layout Plain Layout
11865 コマンド(
11866 \backslash
11867 hspace 長さ)
11868 \end_layout
11869
11870 \end_inset
11871 </cell>
11872 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11873 \begin_inset Text
11874
11875 \begin_layout Plain Layout
11876 出力
11877 \end_layout
11878
11879 \end_inset
11880 </cell>
11881 </row>
11882 <row>
11883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11884 \begin_inset Text
11885
11886 \begin_layout Plain Layout
11887 A=B
11888 \backslash
11889 hspace
11890 \begin_inset ERT
11891 status collapsed
11892
11893 \begin_layout Plain Layout
11894
11895
11896 \backslash
11897 spce 
11898 \end_layout
11899
11900 \end_inset
11901
11902
11903 \begin_inset Formula $\to$
11904 \end_inset
11905
11906 A
11907 \backslash
11908 not=C (3
11909 \begin_inset space \thinspace{}
11910 \end_inset
11911
11912 cm)
11913 \end_layout
11914
11915 \end_inset
11916 </cell>
11917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11918 \begin_inset Text
11919
11920 \begin_layout Plain Layout
11921 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
11922 \end_inset
11923
11924
11925 \end_layout
11926
11927 \end_inset
11928 </cell>
11929 </row>
11930 <row>
11931 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11932 \begin_inset Text
11933
11934 \begin_layout Plain Layout
11935 A
11936 \backslash
11937 hspace
11938 \begin_inset ERT
11939 status collapsed
11940
11941 \begin_layout Plain Layout
11942
11943
11944 \backslash
11945 spce 
11946 \end_layout
11947
11948 \end_inset
11949
11950
11951 \begin_inset Formula $\to$
11952 \end_inset
11953
11954 A
11955 \backslash
11956 not=A (-1
11957 \begin_inset space \thinspace{}
11958 \end_inset
11959
11960 mm)
11961 \end_layout
11962
11963 \end_inset
11964 </cell>
11965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11966 \begin_inset Text
11967
11968 \begin_layout Plain Layout
11969 \begin_inset Formula $A\hspace{-1mm}A\not=A$
11970 \end_inset
11971
11972
11973 \end_layout
11974
11975 \end_inset
11976 </cell>
11977 </row>
11978 <row>
11979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11980 \begin_inset Text
11981
11982 \begin_layout Plain Layout
11983 A=A
11984 \backslash
11985 hfill
11986 \begin_inset ERT
11987 status collapsed
11988
11989 \begin_layout Plain Layout
11990
11991
11992 \backslash
11993 spce 
11994 \end_layout
11995
11996 \end_inset
11997
11998 B=B
11999 \end_layout
12000
12001 \end_inset
12002 </cell>
12003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12004 \begin_inset Text
12005
12006 \begin_layout Plain Layout
12007 \begin_inset Formula $A=A\hfill B=B$
12008 \end_inset
12009
12010
12011 \end_layout
12012
12013 \end_inset
12014 </cell>
12015 </row>
12016 </lyxtabular>
12017
12018 \end_inset
12019
12020
12021 \end_layout
12022
12023 \begin_layout Standard
12024 上記の最後の例では、使用できる空白は、表の列中もっとも長い要素によって規定されます。行内数式では、空白は、
12025 \series bold
12026
12027 \backslash
12028 hfill
12029 \series default
12030 が挿入された行の長さに依存します。つまり、その行が全幅を使用している場合、空白はまったく作られません。また
12031 \series bold
12032
12033 \backslash
12034 hfill
12035 \series default
12036 は、別行建て数式中では、
12037 \series bold
12038 行頭下げ
12039 \series default
12040 数式スタイルが使われているときのみ、意味を持ちます(数式スタイルは第
12041 \begin_inset CommandInset ref
12042 LatexCommand ref
12043 reference "sec:数式様式"
12044
12045 \end_inset
12046
12047 節で説明されています)。
12048 \end_layout
12049
12050 \begin_layout Standard
12051
12052 \series bold
12053
12054 \backslash
12055 hfill
12056 \series default
12057 の他にも、空白を模様で埋める
12058 \series bold
12059
12060 \backslash
12061 dotfill
12062 \series default
12063
12064 \series bold
12065
12066 \backslash
12067 hrulefill
12068 \series default
12069 といったコマンドがあります。用例については第
12070 \begin_inset CommandInset ref
12071 LatexCommand ref
12072 reference "sub:省略符号"
12073
12074 \end_inset
12075
12076 節をご参照下さい。
12077 \end_layout
12078
12079 \begin_layout Standard
12080 本文中では、可変長空白は、
12081 \family sans
12082 挿入\SpecialChar \menuseparator
12083 整形\SpecialChar \menuseparator
12084 水平方向の空白
12085 \family default
12086 メニューで挿入することができます。
12087 \end_layout
12088
12089 \begin_layout Standard
12090 (例)
12091 \end_layout
12092
12093 \begin_layout Standard
12094 この行には、
12095 \begin_inset space \hspace{}
12096 \length 2cm
12097 \end_inset
12098
12099 2
12100 \begin_inset space \thinspace{}
12101 \end_inset
12102
12103 cmの空白が入っています。
12104 \end_layout
12105
12106 \begin_layout Standard
12107 この行には、
12108 \begin_inset space \hfill{}
12109 \end_inset
12110
12111 最大の空白が入っています。
12112 \end_layout
12113
12114 \begin_layout Subsection
12115 行内数式周りの空白
12116 \begin_inset Index idx
12117 status collapsed
12118
12119 \begin_layout Plain Layout
12120 くうはく@空白 ! ぎょうないすうしきまわり@行内数式周り
12121 \end_layout
12122
12123 \end_inset
12124
12125
12126 \end_layout
12127
12128 \begin_layout Standard
12129 行内数式前後の空白は、長さ
12130 \series bold
12131
12132 \backslash
12133 mathsurround
12134 \begin_inset Index idx
12135 status collapsed
12136
12137 \begin_layout Plain Layout
12138 こまんど@コマンド ! M ! 
12139 \backslash
12140 mathsurround
12141 \end_layout
12142
12143 \end_inset
12144
12145
12146 \series default
12147 を使って調節することができます。長さの値は、以下の書式を持つ
12148 \series bold
12149
12150 \backslash
12151 setlength
12152 \begin_inset Index idx
12153 status collapsed
12154
12155 \begin_layout Plain Layout
12156 こまんど@コマンド ! S ! 
12157 \backslash
12158 setlength
12159 \end_layout
12160
12161 \end_inset
12162
12163
12164 \series default
12165 コマンドを使って設定することができます。
12166 \end_layout
12167
12168 \begin_layout Standard
12169
12170 \series bold
12171
12172 \backslash
12173 setlength{長さ名}{値}
12174 \end_layout
12175
12176 \begin_layout Standard
12177
12178 \series bold
12179
12180 \backslash
12181 mathsurround
12182 \series default
12183 を5
12184 \begin_inset space \thinspace{}
12185 \end_inset
12186
12187 mmの値に設定するには、以下のコマンド
12188 \end_layout
12189
12190 \begin_layout Standard
12191
12192 \series bold
12193
12194 \backslash
12195 setlength{
12196 \backslash
12197 mathsurround}{5mm}
12198 \end_layout
12199
12200 \begin_layout Standard
12201 をTeXモードで挿入します。すると、5
12202 \begin_inset space \thinspace{}
12203 \end_inset
12204
12205 mmの空白がすべての行内数式の前後に設定されることになります。
12206 \begin_inset ERT
12207 status collapsed
12208
12209 \begin_layout Plain Layout
12210
12211
12212 \backslash
12213 setlength{
12214 \backslash
12215 mathsurround}{5mm}
12216 \end_layout
12217
12218 \end_inset
12219
12220
12221 \end_layout
12222
12223 \begin_layout Standard
12224 この行には、周囲に5
12225 \begin_inset space \thinspace{}
12226 \end_inset
12227
12228 mmの余白を設定した行内数式
12229 \begin_inset Formula $A=B$
12230 \end_inset
12231
12232 があります。
12233 \begin_inset ERT
12234 status collapsed
12235
12236 \begin_layout Plain Layout
12237
12238
12239 \backslash
12240 setlength{
12241 \backslash
12242 mathsurround}{0pt}
12243 \end_layout
12244
12245 \end_inset
12246
12247
12248 \end_layout
12249
12250 \begin_layout Standard
12251 既定値に戻すには、
12252 \series bold
12253
12254 \backslash
12255 mathsurround
12256 \series default
12257 を0
12258 \begin_inset space \thinspace{}
12259 \end_inset
12260
12261 ptの値に戻して下さい。
12262 \end_layout
12263
12264 \begin_layout Section
12265 ボックスと枠
12266 \begin_inset Index idx
12267 status collapsed
12268
12269 \begin_layout Plain Layout
12270 ぼっくす@ボックス
12271 \end_layout
12272
12273 \end_inset
12274
12275
12276 \begin_inset Index idx
12277 status collapsed
12278
12279 \begin_layout Plain Layout
12280 わく@枠 | see
12281 \begin_inset ERT
12282 status collapsed
12283
12284 \begin_layout Plain Layout
12285
12286 {
12287 \end_layout
12288
12289 \end_inset
12290
12291 ボックス
12292 \begin_inset ERT
12293 status collapsed
12294
12295 \begin_layout Plain Layout
12296
12297 }
12298 \end_layout
12299
12300 \end_inset
12301
12302
12303 \end_layout
12304
12305 \end_inset
12306
12307
12308 \end_layout
12309
12310 \begin_layout Standard
12311 本文中のボックスについては、取扱説明書
12312 \family typewriter
12313 埋め込みオブジェクト篇
12314 \family default
12315
12316 \family typewriter
12317 Boxes
12318 \family default
12319 の章に述べられています。
12320 \end_layout
12321
12322 \begin_layout Subsection
12323 縁付きボックス
12324 \begin_inset CommandInset label
12325 LatexCommand label
12326 name "sub:縁付きボックス"
12327
12328 \end_inset
12329
12330
12331 \begin_inset Index idx
12332 status collapsed
12333
12334 \begin_layout Plain Layout
12335 ぼっくす@ボックス ! ふちつき@縁付き
12336 \end_layout
12337
12338 \end_inset
12339
12340
12341 \end_layout
12342
12343 \begin_layout Standard
12344
12345 \series bold
12346
12347 \backslash
12348 fbox
12349 \series default
12350
12351 \begin_inset Index idx
12352 status collapsed
12353
12354 \begin_layout Plain Layout
12355 こまんど@コマンド ! F ! 
12356 \backslash
12357 fbox
12358 \end_layout
12359
12360 \end_inset
12361
12362 コマンドや
12363 \series bold
12364
12365 \backslash
12366 boxed
12367 \series default
12368
12369 \begin_inset Index idx
12370 status collapsed
12371
12372 \begin_layout Plain Layout
12373 こまんど@コマンド ! B ! 
12374 \backslash
12375 boxed
12376 \end_layout
12377
12378 \end_inset
12379
12380 コマンドを使えば、数式やその一部を枠の中に入れることができます。
12381 \end_layout
12382
12383 \begin_layout Standard
12384 どちらかのコマンドを数式に挿入すると、枠の中に青枠が現れ、数式の断片を入れることができます。
12385 \series bold
12386
12387 \backslash
12388 fbox
12389 \series default
12390 の場合には、そのままではボックスの中身が数式テキストとして取り扱われてしまうので、
12391 \family sans
12392 Ctrl+M
12393 \family default
12394 を使って、このボックスの中にもう一度数式を作らなくてはなりません。
12395 \series bold
12396
12397 \backslash
12398 boxed
12399 \series default
12400 を使った場合には、新しい数式が自動的に枠内に作られます。
12401 \end_layout
12402
12403 \begin_layout Standard
12404
12405 \series bold
12406
12407 \backslash
12408 fbox
12409 \series default
12410 コマンドは、数式がつねに本文の大きさに設定されてしまうので、別行建て数式に枠を付けるのには適していません。逆に
12411 \series bold
12412
12413 \backslash
12414 boxed
12415 \series default
12416 は、数式がつねに別行建て数式の大きさに設定されてしまうので、行内数式に枠をつけるのには適していません。
12417 \end_layout
12418
12419 \begin_layout Standard
12420
12421 \series bold
12422
12423 \backslash
12424 fbox
12425 \series default
12426 の拡張として、枠幅と配置も指定することができる
12427 \series bold
12428
12429 \backslash
12430 framebox
12431 \series default
12432
12433 \begin_inset Index idx
12434 status collapsed
12435
12436 \begin_layout Plain Layout
12437 こまんど@コマンド ! F ! 
12438 \backslash
12439 framebox
12440 \end_layout
12441
12442 \end_inset
12443
12444 コマンドがあります。
12445 \series bold
12446
12447 \backslash
12448 framebox
12449 \series default
12450 は、以下の書式を持ちます。
12451 \end_layout
12452
12453 \begin_layout Standard
12454
12455 \series bold
12456
12457 \backslash
12458 framebox[枠幅][位置]{ボックスの内容}
12459 \end_layout
12460
12461 \begin_layout Standard
12462 「位置」は、
12463 \emph on
12464 l
12465 \emph default
12466
12467 \emph on
12468 r
12469 \emph default
12470 の値をとります。
12471 \emph on
12472 l
12473 \emph default
12474 は、ボックス中で数式を左寄せ、
12475 \emph on
12476 r
12477 \emph default
12478 は右寄せにします。位置を指定しない時には、数式は中央揃えになります。
12479 \begin_inset Newline newline
12480 \end_inset
12481
12482 「枠幅」を指定しない時には、位置を指定することができません。この場合には、
12483 \series bold
12484
12485 \backslash
12486 fbox
12487 \series default
12488 と同様、枠幅がボックスの内容に応じて調節されるのです。
12489 \end_layout
12490
12491 \begin_layout Standard
12492
12493 \series bold
12494
12495 \backslash
12496 framebox
12497 \series default
12498 コマンドを挿入すると、三つの青枠を含むボックスが現れます。最初の二つの枠は括弧で囲まれており、二つとも非必須の変数であることを意味します。三つ目の枠は、
12499 \series bold
12500
12501 \backslash
12502 fbox
12503 \series default
12504 同様、数式の断片を入れるためのものです。
12505 \end_layout
12506
12507 \begin_layout Standard
12508 \align center
12509 \begin_inset Tabular
12510 <lyxtabular version="3" rows="5" columns="2">
12511 <features tabularvalignment="middle">
12512 <column alignment="center" valignment="top" width="0">
12513 <column alignment="center" valignment="top" width="0">
12514 <row>
12515 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12516 \begin_inset Text
12517
12518 \begin_layout Plain Layout
12519 コマンド
12520 \end_layout
12521
12522 \end_inset
12523 </cell>
12524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12525 \begin_inset Text
12526
12527 \begin_layout Plain Layout
12528 出力
12529 \begin_inset Note Note
12530 status collapsed
12531
12532 \begin_layout Plain Layout
12533 ここで
12534 \series bold
12535
12536 \backslash
12537 raisebox
12538 \series default
12539 はスペーサーとして使用しているだけです。
12540 \end_layout
12541
12542 \end_inset
12543
12544
12545 \end_layout
12546
12547 \end_inset
12548 </cell>
12549 </row>
12550 <row>
12551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12552 \begin_inset Text
12553
12554 \begin_layout Plain Layout
12555
12556 \backslash
12557 fbox
12558 \begin_inset ERT
12559 status collapsed
12560
12561 \begin_layout Plain Layout
12562
12563
12564 \backslash
12565 spce 
12566 \end_layout
12567
12568 \end_inset
12569
12570
12571 \family sans
12572 Ctrl+M
12573 \family default
12574  
12575 \backslash
12576 int
12577 \begin_inset ERT
12578 status collapsed
12579
12580 \begin_layout Plain Layout
12581
12582
12583 \backslash
12584 spce 
12585 \end_layout
12586
12587 \end_inset
12588
12589 A=B
12590 \end_layout
12591
12592 \end_inset
12593 </cell>
12594 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12595 \begin_inset Text
12596
12597 \begin_layout Plain Layout
12598 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12599 \end_inset
12600
12601
12602 \end_layout
12603
12604 \end_inset
12605 </cell>
12606 </row>
12607 <row>
12608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12609 \begin_inset Text
12610
12611 \begin_layout Plain Layout
12612
12613 \backslash
12614 boxed
12615 \begin_inset ERT
12616 status collapsed
12617
12618 \begin_layout Plain Layout
12619
12620
12621 \backslash
12622 spce 
12623 \end_layout
12624
12625 \end_inset
12626
12627
12628 \backslash
12629 int
12630 \begin_inset ERT
12631 status collapsed
12632
12633 \begin_layout Plain Layout
12634
12635
12636 \backslash
12637 spce 
12638 \end_layout
12639
12640 \end_inset
12641
12642 A=B
12643 \end_layout
12644
12645 \end_inset
12646 </cell>
12647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12648 \begin_inset Text
12649
12650 \begin_layout Plain Layout
12651 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12652 \end_inset
12653
12654
12655 \end_layout
12656
12657 \end_inset
12658 </cell>
12659 </row>
12660 <row>
12661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12662 \begin_inset Text
12663
12664 \begin_layout Plain Layout
12665 A+
12666 \backslash
12667 fbox
12668 \begin_inset ERT
12669 status collapsed
12670
12671 \begin_layout Plain Layout
12672
12673
12674 \backslash
12675 spce 
12676 \end_layout
12677
12678 \end_inset
12679
12680 B
12681 \end_layout
12682
12683 \end_inset
12684 </cell>
12685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12686 \begin_inset Text
12687
12688 \begin_layout Plain Layout
12689 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12690 \end_inset
12691
12692
12693 \end_layout
12694
12695 \end_inset
12696 </cell>
12697 </row>
12698 <row>
12699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12700 \begin_inset Text
12701
12702 \begin_layout Plain Layout
12703
12704 \backslash
12705 framebox
12706 \begin_inset ERT
12707 status collapsed
12708
12709 \begin_layout Plain Layout
12710
12711
12712 \backslash
12713 spce 
12714 \end_layout
12715
12716 \end_inset
12717
12718 20mm
12719 \begin_inset Formula $\to$
12720 \end_inset
12721
12722
12723 \begin_inset Formula $\to$
12724 \end_inset
12725
12726
12727 \family sans
12728 Ctrl+M
12729 \family default
12730  
12731 \backslash
12732 frac
12733 \begin_inset ERT
12734 status collapsed
12735
12736 \begin_layout Plain Layout
12737
12738
12739 \backslash
12740 spce 
12741 \end_layout
12742
12743 \end_inset
12744
12745 A
12746 \begin_inset Formula $\downarrow$
12747 \end_inset
12748
12749 B
12750 \end_layout
12751
12752 \end_inset
12753 </cell>
12754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12755 \begin_inset Text
12756
12757 \begin_layout Plain Layout
12758 \begin_inset Formula $\raisebox{6mm}{}$
12759 \end_inset
12760
12761
12762 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
12763 \end_inset
12764
12765
12766 \begin_inset Formula $\raisebox{-4mm}{}$
12767 \end_inset
12768
12769
12770 \end_layout
12771
12772 \end_inset
12773 </cell>
12774 </row>
12775 </lyxtabular>
12776
12777 \end_inset
12778
12779
12780 \end_layout
12781
12782 \begin_layout Standard
12783 枠の厚みも調節可能です。そのためには、以下のコマンドを数式の前にTeXモードで挿入しなくてはなりません。
12784 \end_layout
12785
12786 \begin_layout Standard
12787
12788 \series bold
12789
12790 \backslash
12791 fboxrule
12792 \series default
12793  
12794 \series bold
12795
12796 \begin_inset Quotes eld
12797 \end_inset
12798
12799 厚み
12800 \begin_inset Quotes erd
12801 \end_inset
12802
12803
12804 \series default
12805  
12806 \series bold
12807
12808 \backslash
12809 fboxsep
12810 \series default
12811  
12812 \series bold
12813
12814 \begin_inset Quotes eld
12815 \end_inset
12816
12817 距離
12818 \begin_inset Quotes erd
12819 \end_inset
12820
12821
12822 \end_layout
12823
12824 \begin_layout Standard
12825 \begin_inset Quotes eld
12826 \end_inset
12827
12828 距離
12829 \begin_inset Quotes erd
12830 \end_inset
12831
12832 は、枠とボックス内の一文字目との間の距離を示します。これを使った例として、以下の枠付き数式をご覧下さい。
12833 \begin_inset ERT
12834 status collapsed
12835
12836 \begin_layout Plain Layout
12837
12838
12839 \backslash
12840 fboxrule 2mm 
12841 \backslash
12842 fboxsep 3mm
12843 \end_layout
12844
12845 \end_inset
12846
12847
12848 \begin_inset Formula \[
12849 \boxed{A+B=C}\]
12850
12851 \end_inset
12852
12853 この数式の直前には、
12854 \end_layout
12855
12856 \begin_layout Standard
12857
12858 \series bold
12859
12860 \backslash
12861 fboxrule
12862 \series default
12863  
12864 \series bold
12865 2mm
12866 \series default
12867  
12868 \series bold
12869
12870 \backslash
12871 fboxsep
12872 \series default
12873  
12874 \series bold
12875 3mm
12876 \end_layout
12877
12878 \begin_layout Standard
12879 というコマンドが、TeXモードで挿入されています。ここで与えられた値は、以後のすべてのボックスに適用されます。
12880 \end_layout
12881
12882 \begin_layout Standard
12883 標準の枠寸法に戻すには、
12884 \end_layout
12885
12886 \begin_layout Standard
12887
12888 \series bold
12889
12890 \backslash
12891 fboxrule
12892 \series default
12893  
12894 \series bold
12895 0.4pt
12896 \series default
12897  
12898 \series bold
12899
12900 \backslash
12901 fboxsep
12902 \series default
12903  
12904 \series bold
12905 3pt
12906 \series default
12907
12908 \begin_inset ERT
12909 status collapsed
12910
12911 \begin_layout Plain Layout
12912
12913
12914 \backslash
12915 fboxrule 0.4pt 
12916 \backslash
12917 fboxsep 3pt
12918 \end_layout
12919
12920 \end_inset
12921
12922
12923 \end_layout
12924
12925 \begin_layout Standard
12926 というコマンドを、次の数式が始まる前にTeXモードで挿入しておきます。
12927 \end_layout
12928
12929 \begin_layout Subsection
12930 縁なしボックス
12931 \begin_inset CommandInset label
12932 LatexCommand label
12933 name "sub:枠なしボックス"
12934
12935 \end_inset
12936
12937
12938 \begin_inset Index idx
12939 status collapsed
12940
12941 \begin_layout Plain Layout
12942 ぼっくす@ボックス ! わくなし@枠なし
12943 \end_layout
12944
12945 \end_inset
12946
12947
12948 \end_layout
12949
12950 \begin_layout Standard
12951 縁のないボックスを作るには、
12952 \series bold
12953
12954 \backslash
12955 mbox
12956 \series default
12957
12958 \begin_inset Index idx
12959 status collapsed
12960
12961 \begin_layout Plain Layout
12962 こまんど@コマンド ! M ! 
12963 \backslash
12964 mbox
12965 \end_layout
12966
12967 \end_inset
12968
12969
12970 \series bold
12971
12972 \backslash
12973 makebox
12974 \series default
12975
12976 \begin_inset Index idx
12977 status collapsed
12978
12979 \begin_layout Plain Layout
12980 こまんど@コマンド ! M ! 
12981 \backslash
12982 makebox
12983 \end_layout
12984
12985 \end_inset
12986
12987
12988 \series bold
12989
12990 \backslash
12991 raisebox
12992 \series default
12993
12994 \begin_inset Index idx
12995 status collapsed
12996
12997 \begin_layout Plain Layout
12998 こまんど@コマンド ! R ! 
12999 \backslash
13000 raisebox
13001 \end_layout
13002
13003 \end_inset
13004
13005 の三つのコマンドがあります。
13006 \end_layout
13007
13008 \begin_layout Standard
13009
13010 \series bold
13011
13012 \backslash
13013 raisebox
13014 \series default
13015 を使うと、ボックスを上付きにしたり下付きにしたりすることができます。しかし、通常の上付き文字・下付き文字とは違い、ボックス内の文字寸法はそのまま保たれます。
13016 \series bold
13017
13018 \backslash
13019 raisebox
13020 \series default
13021 は、以下の書式で用いられます。
13022 \end_layout
13023
13024 \begin_layout Standard
13025
13026 \series bold
13027
13028 \backslash
13029 raisebox{高さ}{ボックスの内容}
13030 \end_layout
13031
13032 \begin_layout Standard
13033
13034 \series bold
13035
13036 \backslash
13037 fbox
13038 \series default
13039 と同様、ボックスに数式を入れる際には、明示的に数式として入れる必要があります。
13040 \begin_inset Note Greyedout
13041 status open
13042
13043 \begin_layout Plain Layout
13044
13045 \series bold
13046 (註)
13047 \series default
13048 下の最後の
13049 \series bold
13050
13051 \backslash
13052 raisebox
13053 \series default
13054 のところで、
13055 \family sans
13056 Ctrl+M
13057 \family default
13058 を一回でなく二回押すことによって、もう一段数式をいれています。これは、LyXが
13059 \series bold
13060
13061 \backslash
13062 raisebox
13063 \series default
13064 を直接サポートしていないためです。
13065 \end_layout
13066
13067 \end_inset
13068
13069
13070 \end_layout
13071
13072 \begin_layout Standard
13073 \align center
13074 \begin_inset Tabular
13075 <lyxtabular version="3" rows="4" columns="2">
13076 <features tabularvalignment="middle">
13077 <column alignment="center" valignment="top" width="0">
13078 <column alignment="center" valignment="top" width="0">
13079 <row>
13080 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13081 \begin_inset Text
13082
13083 \begin_layout Plain Layout
13084 コマンド
13085 \end_layout
13086
13087 \end_inset
13088 </cell>
13089 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13090 \begin_inset Text
13091
13092 \begin_layout Plain Layout
13093 出力
13094 \end_layout
13095
13096 \end_inset
13097 </cell>
13098 </row>
13099 <row>
13100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13101 \begin_inset Text
13102
13103 \begin_layout Plain Layout
13104 H
13105 \backslash
13106 raisebox{2mm
13107 \begin_inset Formula $\to$
13108 \end_inset
13109
13110
13111 \backslash
13112 {al
13113 \begin_inset Formula $\to$
13114 \end_inset
13115
13116  lo
13117 \end_layout
13118
13119 \end_inset
13120 </cell>
13121 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13122 \begin_inset Text
13123
13124 \begin_layout Plain Layout
13125 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13126 \end_inset
13127
13128
13129 \end_layout
13130
13131 \end_inset
13132 </cell>
13133 </row>
13134 <row>
13135 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13136 \begin_inset Text
13137
13138 \begin_layout Plain Layout
13139 H
13140 \backslash
13141 raisebox{-2mm
13142 \begin_inset Formula $\to$
13143 \end_inset
13144
13145
13146 \backslash
13147 {al
13148 \begin_inset Formula $\to$
13149 \end_inset
13150
13151 lo
13152 \end_layout
13153
13154 \end_inset
13155 </cell>
13156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13157 \begin_inset Text
13158
13159 \begin_layout Plain Layout
13160 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13161 \end_inset
13162
13163
13164 \end_layout
13165
13166 \end_inset
13167 </cell>
13168 </row>
13169 <row>
13170 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13171 \begin_inset Text
13172
13173 \begin_layout Plain Layout
13174 A=
13175 \backslash
13176 raisebox{-2mm
13177 \begin_inset Formula $\to$
13178 \end_inset
13179
13180
13181 \backslash
13182 {
13183 \family sans
13184 Ctrl+M Ctrl+M
13185 \family default
13186  
13187 \backslash
13188 sqrt
13189 \begin_inset ERT
13190 status collapsed
13191
13192 \begin_layout Plain Layout
13193
13194
13195 \backslash
13196 spce 
13197 \end_layout
13198
13199 \end_inset
13200
13201
13202 \end_layout
13203
13204 \end_inset
13205 </cell>
13206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13207 \begin_inset Text
13208
13209 \begin_layout Plain Layout
13210 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13211 \end_inset
13212
13213
13214 \end_layout
13215
13216 \end_inset
13217 </cell>
13218 </row>
13219 </lyxtabular>
13220
13221 \end_inset
13222
13223
13224 \end_layout
13225
13226 \begin_layout Standard
13227 縁がないことを除けば、
13228 \series bold
13229
13230 \backslash
13231 mbox
13232 \series default
13233 コマンドは
13234 \series bold
13235
13236 \backslash
13237 fbox
13238 \series default
13239 と同じであり、
13240 \series bold
13241
13242 \backslash
13243 makebox
13244 \series default
13245
13246 \series bold
13247
13248 \backslash
13249 framebox
13250 \series default
13251 と同じです。
13252 \end_layout
13253
13254 \begin_layout Subsection
13255 色付きボックス
13256 \begin_inset CommandInset label
13257 LatexCommand label
13258 name "sub:色付きボックス"
13259
13260 \end_inset
13261
13262
13263 \begin_inset Index idx
13264 status collapsed
13265
13266 \begin_layout Plain Layout
13267 ぼっくす@ボックス ! いろつき@色付き
13268 \end_layout
13269
13270 \end_inset
13271
13272
13273 \end_layout
13274
13275 \begin_layout Standard
13276 本節で説明されているコマンドをすべて使えるようにするためには、LaTeXプリアンブルに
13277 \end_layout
13278
13279 \begin_layout Standard
13280
13281 \series bold
13282
13283 \backslash
13284 usepackage{color}
13285 \end_layout
13286
13287 \begin_layout Standard
13288 という行
13289 \begin_inset Foot
13290 status collapsed
13291
13292 \begin_layout Plain Layout
13293 定義済みの色を使って、文書中のどこかで文章に色を付けてある場合、LyXは、自動的にLaTeXパッケージ
13294 \series bold
13295 color
13296 \series default
13297 を読み込みます。したがって、本パッケージが二度読み込まれる可能性があるわけですが、そうなったとしても問題は生じません。
13298 \end_layout
13299
13300 \end_inset
13301
13302
13303 \begin_inset Note Note
13304 status collapsed
13305
13306 \begin_layout Plain Layout
13307 本パッケージが二度読み込まれることを防ぐために、LaTeXプリアンブルにマクロを挿入してあります。
13308 \end_layout
13309
13310 \end_inset
13311
13312 を書き加えて、LaTeXパッケージの
13313 \series bold
13314 color
13315 \series default
13316
13317 \begin_inset Foot
13318 status collapsed
13319
13320 \begin_layout Plain Layout
13321 LaTeXパッケージ
13322 \series bold
13323 color
13324 \series default
13325 は、すべての標準的なLaTeX頒布版に含まれています。
13326 \end_layout
13327
13328 \end_inset
13329
13330
13331 \begin_inset Index idx
13332 status collapsed
13333
13334 \begin_layout Plain Layout
13335 ぱっけーじ@パッケージ ! color
13336 \end_layout
13337
13338 \end_inset
13339
13340 を読み込む必要があります。
13341 \end_layout
13342
13343 \begin_layout Standard
13344 \begin_inset VSpace medskip
13345 \end_inset
13346
13347 ボックスに色を付けるには、
13348 \series bold
13349
13350 \backslash
13351 colorbox
13352 \series default
13353
13354 \begin_inset Index idx
13355 status collapsed
13356
13357 \begin_layout Plain Layout
13358 こまんど@コマンド ! C ! 
13359 \backslash
13360 colorbox
13361 \end_layout
13362
13363 \end_inset
13364
13365 コマンドを以下の書式で使用します。
13366 \end_layout
13367
13368 \begin_layout Standard
13369
13370 \series bold
13371
13372 \backslash
13373 colorbox{色}{ボックスの内容}
13374 \end_layout
13375
13376 \begin_layout Standard
13377 ボックスの内容には、別のボックスが含まれても構いませんし、
13378 \series bold
13379
13380 \backslash
13381 colorbox
13382 \series default
13383 自体も、別のボックスに入っていても構いません(以下の二番目と三番目の例を参照してください)。ボックスに数式を含める場合には、
13384 \series bold
13385
13386 \backslash
13387 raisebox
13388 \series default
13389 と同様、明示的に数式を作らなくてはなりません
13390 \begin_inset Foot
13391 status collapsed
13392
13393 \begin_layout Plain Layout
13394 これは、
13395 \series bold
13396
13397 \backslash
13398 fcolorbox
13399 \series default
13400 コマンドにも当てはまります。
13401 \end_layout
13402
13403 \end_inset
13404
13405
13406 \end_layout
13407
13408 \begin_layout Standard
13409 選択できる定義済みの色としては、
13410 \end_layout
13411
13412 \begin_layout Standard
13413
13414 \series bold
13415 black
13416 \series default
13417 (黒)・
13418 \series bold
13419 blue
13420 \series default
13421 (青)・
13422 \series bold
13423 cyan
13424 \series default
13425 (シアン)・
13426 \series bold
13427 green
13428 \series default
13429 (緑)・
13430 \series bold
13431 magenta
13432 \series default
13433 (マゼンタ)・
13434 \series bold
13435 red
13436 \series default
13437 (赤)・
13438 \series bold
13439 white
13440 \series default
13441 (白)・
13442 \series bold
13443 yellow
13444 \series default
13445 (黄)
13446 \end_layout
13447
13448 \begin_layout Standard
13449 があります。
13450 \end_layout
13451
13452 \begin_layout Standard
13453 \align center
13454 \begin_inset Tabular
13455 <lyxtabular version="3" rows="4" columns="2">
13456 <features tabularvalignment="middle">
13457 <column alignment="center" valignment="top" width="0">
13458 <column alignment="center" valignment="top" width="0">
13459 <row>
13460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13461 \begin_inset Text
13462
13463 \begin_layout Plain Layout
13464 コマンド
13465 \end_layout
13466
13467 \end_inset
13468 </cell>
13469 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13470 \begin_inset Text
13471
13472 \begin_layout Plain Layout
13473 出力
13474 \begin_inset Note Note
13475 status collapsed
13476
13477 \begin_layout Plain Layout
13478 ここで
13479 \series bold
13480
13481 \backslash
13482 raisebox
13483 \series default
13484 はスペーサーとして使用しているだけです。
13485 \end_layout
13486
13487 \end_inset
13488
13489
13490 \end_layout
13491
13492 \end_inset
13493 </cell>
13494 </row>
13495 <row>
13496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13497 \begin_inset Text
13498
13499 \begin_layout Plain Layout
13500
13501 \backslash
13502 colorbox{yellow
13503 \begin_inset Formula $\to$
13504 \end_inset
13505
13506
13507 \backslash
13508 {A=B
13509 \end_layout
13510
13511 \end_inset
13512 </cell>
13513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13514 \begin_inset Text
13515
13516 \begin_layout Plain Layout
13517 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13518 \end_inset
13519
13520
13521 \end_layout
13522
13523 \end_inset
13524 </cell>
13525 </row>
13526 <row>
13527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13528 \begin_inset Text
13529
13530 \begin_layout Plain Layout
13531
13532 \backslash
13533 colorbox{green
13534 \begin_inset Formula $\to$
13535 \end_inset
13536
13537
13538 \backslash
13539 {
13540 \backslash
13541 fbox
13542 \begin_inset ERT
13543 status collapsed
13544
13545 \begin_layout Plain Layout
13546
13547
13548 \backslash
13549 spce 
13550 \end_layout
13551
13552 \end_inset
13553
13554 A=B
13555 \end_layout
13556
13557 \end_inset
13558 </cell>
13559 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13560 \begin_inset Text
13561
13562 \begin_layout Plain Layout
13563 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13564 \end_inset
13565
13566
13567 \end_layout
13568
13569 \end_inset
13570 </cell>
13571 </row>
13572 <row>
13573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13574 \begin_inset Text
13575
13576 \begin_layout Plain Layout
13577
13578 \backslash
13579 fbox
13580 \begin_inset ERT
13581 status collapsed
13582
13583 \begin_layout Plain Layout
13584
13585
13586 \backslash
13587 spce 
13588 \end_layout
13589
13590 \end_inset
13591
13592
13593 \backslash
13594 colorbox{green
13595 \begin_inset Formula $\to$
13596 \end_inset
13597
13598
13599 \backslash
13600 {
13601 \family sans
13602 Ctrl+M
13603 \family default
13604  
13605 \family sans
13606 Ctrl+M
13607 \family default
13608  
13609 \backslash
13610 int
13611 \begin_inset ERT
13612 status collapsed
13613
13614 \begin_layout Plain Layout
13615
13616
13617 \backslash
13618 spce 
13619 \end_layout
13620
13621 \end_inset
13622
13623 C=D
13624 \end_layout
13625
13626 \end_inset
13627 </cell>
13628 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13629 \begin_inset Text
13630
13631 \begin_layout Plain Layout
13632 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13633 \end_inset
13634
13635
13636 \end_layout
13637
13638 \end_inset
13639 </cell>
13640 </row>
13641 </lyxtabular>
13642
13643 \end_inset
13644
13645
13646 \end_layout
13647
13648 \begin_layout Standard
13649
13650 \series bold
13651
13652 \backslash
13653 colorbox
13654 \series default
13655 は、ボックスに色をつけるだけで、ボックス内の文字には色付けをしません。すべての文字に色付けするには、数式全体を選択し、
13656 \family sans
13657 文字様式
13658 \family default
13659 ダイアログで欲しい色を選択します。このダイアログは、ツールバーボタン
13660 \begin_inset Graphics
13661         filename ../../images/dialog-show_character.png
13662         scale 85
13663
13664 \end_inset
13665
13666
13667 \family sans
13668 編集\SpecialChar \menuseparator
13669 文字様式\SpecialChar \menuseparator
13670 任意設定
13671 \family default
13672 メニューで開くことができます。すると、数式番号も数式と同じ色になります。数式番号が数式の文字とは別の色になるようにするには、数式内部で色を変えなくてはなりません
13673
13674 \end_layout
13675
13676 \begin_layout Standard
13677 たとえば、
13678 \end_layout
13679
13680 \begin_layout Standard
13681
13682 \color red
13683 \begin_inset Formula \begin{equation}
13684 \int A=B\label{eq:red}\end{equation}
13685
13686 \end_inset
13687
13688
13689 \color green
13690
13691 \begin_inset Formula \begin{equation}
13692 \textcolor{red}{\int A=B}\label{eq:redgreen}\end{equation}
13693
13694 \end_inset
13695
13696
13697 \end_layout
13698
13699 \begin_layout Standard
13700 数式
13701 \begin_inset CommandInset ref
13702 LatexCommand eqref
13703 reference "eq:red"
13704
13705 \end_inset
13706
13707 は、全体が赤色です。
13708 \begin_inset Newline newline
13709 \end_inset
13710
13711 数式
13712 \begin_inset CommandInset ref
13713 LatexCommand eqref
13714 reference "eq:redgreen"
13715
13716 \end_inset
13717
13718 は、数式番号を緑色にするために、まず全体を緑色にします。その後、数式内の文字を赤色にします。
13719 \end_layout
13720
13721 \begin_layout Standard
13722 \begin_inset VSpace bigskip
13723 \end_inset
13724
13725 ボックスの縁だけ別の色にするには、
13726 \series bold
13727
13728 \backslash
13729 fcolorbox
13730 \series default
13731
13732 \begin_inset Index idx
13733 status collapsed
13734
13735 \begin_layout Plain Layout
13736 こまんど@コマンド ! F ! 
13737 \backslash
13738 fcolorbox
13739 \end_layout
13740
13741 \end_inset
13742
13743 コマンドを以下の書式で使用します。
13744 \end_layout
13745
13746 \begin_layout Standard
13747
13748 \series bold
13749
13750 \backslash
13751 fcolorbox{縁の色}{色}{ボックスの内容}
13752 \end_layout
13753
13754 \begin_layout Standard
13755 つまり、
13756 \series bold
13757
13758 \backslash
13759 fcolorbox
13760 \series default
13761
13762 \series bold
13763
13764 \backslash
13765 colorbox
13766 \series default
13767 コマンドの拡張です。
13768 \series bold
13769
13770 \backslash
13771 frameboxと同様に、縁の厚みは
13772 \backslash
13773 fboxrule
13774 \series default
13775
13776 \series bold
13777
13778 \backslash
13779 fboxsep
13780 \series default
13781 で設定します。たとえば、
13782 \begin_inset ERT
13783 status collapsed
13784
13785 \begin_layout Plain Layout
13786
13787
13788 \backslash
13789 fboxrule 1mm 
13790 \backslash
13791 fboxsep 1mm
13792 \end_layout
13793
13794 \end_inset
13795
13796
13797 \begin_inset Formula \[
13798 \fcolorbox{cyan}{magenta}{A=B}\]
13799
13800 \end_inset
13801
13802
13803 \begin_inset ERT
13804 status collapsed
13805
13806 \begin_layout Plain Layout
13807
13808
13809 \backslash
13810 fboxrule 0.4pt 
13811 \backslash
13812 fboxsep 3pt
13813 \end_layout
13814
13815 \end_inset
13816
13817 のようにします。
13818 \end_layout
13819
13820 \begin_layout Standard
13821 上記の数式は、以下のコマンドで作成されています。
13822 \begin_inset Newline newline
13823 \end_inset
13824
13825
13826 \series bold
13827
13828 \backslash
13829 fcolorbox{cyan
13830 \begin_inset Formula $\to$
13831 \end_inset
13832
13833
13834 \backslash
13835 {magenta
13836 \begin_inset Formula $\to$
13837 \end_inset
13838
13839
13840 \backslash
13841 {A=B
13842 \series default
13843 .
13844 \end_layout
13845
13846 \begin_layout Standard
13847 \begin_inset VSpace bigskip
13848 \end_inset
13849
13850 定義済みの色以外の色を使いたい場合には、まずその色を定義しなくてはなりません。
13851 \end_layout
13852
13853 \begin_layout Standard
13854 たとえば、「
13855 \series bold
13856 darkgreen
13857 \series default
13858 」という色を定義するには、LaTeXプリアンブルに
13859 \end_layout
13860
13861 \begin_layout Standard
13862
13863 \series bold
13864
13865 \backslash
13866 definecolor{darkgreen}{cmyk}{0.5,
13867 \series default
13868  
13869 \series bold
13870 0,
13871 \series default
13872  
13873 \series bold
13874 1,
13875 \series default
13876  
13877 \series bold
13878 0.5}
13879 \series default
13880
13881 \begin_inset Index idx
13882 status collapsed
13883
13884 \begin_layout Plain Layout
13885 こまんど@コマンド ! D ! 
13886 \backslash
13887 definecolor
13888 \end_layout
13889
13890 \end_inset
13891
13892
13893 \end_layout
13894
13895 \begin_layout Standard
13896 という行を書き加えます。
13897 \end_layout
13898
13899 \begin_layout Standard
13900
13901 \series bold
13902 cmyk
13903 \series default
13904 とは、
13905 \series bold
13906 cyan
13907 \series default
13908 (シアン)・
13909 \series bold
13910 magenta
13911 \series default
13912 (マゼンタ)・
13913 \series bold
13914 yellow
13915 \series default
13916 (黄)・
13917 \series bold
13918 black
13919 \series default
13920 (黒)の各色を表す色空間です。コンマで区切られた四つの数字は、この色空間における各色の出力強度です。強度は、0
13921 \begin_inset space \thinspace{}
13922 \end_inset
13923
13924 -
13925 \begin_inset space \thinspace{}
13926 \end_inset
13927
13928 1の範囲をとることができます。定義には、
13929 \series bold
13930 cmyk
13931 \series default
13932 の他に、
13933 \series bold
13934 rgb
13935 \series default
13936 という色空間を使うこともできます。
13937 \series bold
13938 rgb
13939 \series default
13940 とは、
13941 \series bold
13942 red
13943 \series default
13944 (赤)・
13945 \series bold
13946 green
13947 \series default
13948 (緑)・
13949 \series bold
13950 blue
13951 \series default
13952 (青)の各色を意味し、この場合には、各色に対応した三つの出力強度を指定します。さらに、灰色の出力強度のみをとる
13953 \series bold
13954 gray
13955 \series default
13956 という色空間もあります。
13957 \end_layout
13958
13959 \begin_layout Standard
13960 例として、文字が
13961 \series bold
13962 yellow
13963 \series default
13964 に色付けされ、新しく定義した
13965 \series bold
13966 darkgreen
13967 \series default
13968 という色を持つ縁付きボックスを挙げておきます。
13969 \begin_inset Formula \begin{equation}
13970 \colorbox{darkgreen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
13971
13972 \end_inset
13973
13974
13975 \end_layout
13976
13977 \begin_layout Standard
13978
13979 \series bold
13980
13981 \backslash
13982 textcolor
13983 \series default
13984 コマンドを使うと、以下のように、自前で定義した色をテキスト中でも使用することができます。
13985 \begin_inset Index idx
13986 status collapsed
13987
13988 \begin_layout Plain Layout
13989 てきすと@テキスト ! いろつき@色付き
13990 \end_layout
13991
13992 \end_inset
13993
13994
13995 \end_layout
13996
13997 \begin_layout Standard
13998 \begin_inset ERT
13999 status collapsed
14000
14001 \begin_layout Plain Layout
14002
14003
14004 \backslash
14005 textcolor{darkgreen}{
14006 \end_layout
14007
14008 \end_inset
14009
14010 この文は「darkgreen」です。
14011 \begin_inset ERT
14012 status collapsed
14013
14014 \begin_layout Plain Layout
14015
14016 }
14017 \end_layout
14018
14019 \end_inset
14020
14021
14022 \end_layout
14023
14024 \begin_layout Standard
14025
14026 \series bold
14027
14028 \backslash
14029 textcolor
14030 \series default
14031
14032 \begin_inset Index idx
14033 status collapsed
14034
14035 \begin_layout Plain Layout
14036 こまんど@コマンド ! T ! 
14037 \backslash
14038 textcolor
14039 \end_layout
14040
14041 \end_inset
14042
14043 は、
14044 \series bold
14045
14046 \backslash
14047 textcolor{色}{色付けをする文}
14048 \series default
14049 という書式で使用することができます。
14050 \end_layout
14051
14052 \begin_layout Subsection
14053 段落ボックス
14054 \begin_inset CommandInset label
14055 LatexCommand label
14056 name "sub:段落ボックス"
14057
14058 \end_inset
14059
14060
14061 \begin_inset Index idx
14062 status collapsed
14063
14064 \begin_layout Plain Layout
14065 ぼっくす@ボックス ! だんらく@段落
14066 \end_layout
14067
14068 \end_inset
14069
14070
14071 \begin_inset Index idx
14072 status collapsed
14073
14074 \begin_layout Plain Layout
14075 ぼっくす@ボックス ! parbox|see
14076 \begin_inset ERT
14077 status collapsed
14078
14079 \begin_layout Plain Layout
14080
14081 {
14082 \end_layout
14083
14084 \end_inset
14085
14086 ボックス ! 段落ボックス
14087 \begin_inset ERT
14088 status collapsed
14089
14090 \begin_layout Plain Layout
14091
14092 }
14093 \end_layout
14094
14095 \end_inset
14096
14097
14098 \end_layout
14099
14100 \end_inset
14101
14102
14103 \end_layout
14104
14105 \begin_layout Standard
14106 いくつかの行や段落を含む、いわゆる段落ボックス(parbox)は、
14107 \family sans
14108 挿入\SpecialChar \menuseparator
14109 ボックス
14110 \family default
14111 メニューかツールバーボタン
14112 \begin_inset Graphics
14113         filename ../../images/box-insert.png
14114         scale 85
14115
14116 \end_inset
14117
14118 で作成することができます。
14119 \end_layout
14120
14121 \begin_layout Standard
14122 以下の例は、行中の縁付きparboxを示したものです。
14123 \end_layout
14124
14125 \begin_layout Standard
14126 \begin_inset VSpace medskip
14127 \end_inset
14128
14129 この行は、
14130 \begin_inset Box Boxed
14131 position "c"
14132 hor_pos "c"
14133 has_inner_box 1
14134 inner_pos "t"
14135 use_parbox 1
14136 use_makebox 0
14137 width "5cm"
14138 special "none"
14139 height "1in"
14140 height_special "totalheight"
14141 status open
14142
14143 \begin_layout Plain Layout
14144 これは段落ボックスです。これはちょうど5
14145 \begin_inset space \thinspace{}
14146 \end_inset
14147
14148 cmの幅になっており、以下のように数式を含めることもできます。
14149 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14150 \end_inset
14151
14152
14153 \end_layout
14154
14155 \end_inset
14156
14157 parboxの入った行です。
14158 \end_layout
14159
14160 \begin_layout Standard
14161 \begin_inset VSpace medskip
14162 \end_inset
14163
14164
14165 \end_layout
14166
14167 \begin_layout Standard
14168 このようなボックスは、灰色のボックス挿入枠を右クリックすることによって作ることができます。すると、ボックスの特性を表示したダイアログが現れます。上の例では、
14169 \emph on
14170 装飾
14171 \emph default
14172 :簡素な長方形の箱型、
14173 \emph on
14174 内部ボックス
14175 \emph default
14176 :parboxコマンド、
14177 \emph on
14178
14179 \emph default
14180 :5
14181 \begin_inset space \thinspace{}
14182 \end_inset
14183
14184 cm、
14185 \emph on
14186 垂直ボックス配置
14187 \emph default
14188 :中央、に設定されています。
14189 \end_layout
14190
14191 \begin_layout Standard
14192 \begin_inset VSpace medskip
14193 \end_inset
14194
14195 LaTeXでは、parboxは、以下の書式を持つ
14196 \series bold
14197
14198 \backslash
14199 parbox
14200 \series default
14201
14202 \begin_inset Index idx
14203 status collapsed
14204
14205 \begin_layout Plain Layout
14206 こまんど@コマンド ! P ! 
14207 \backslash
14208 parbox
14209 \end_layout
14210
14211 \end_inset
14212
14213 コマンドによって作られます。
14214 \end_layout
14215
14216 \begin_layout Standard
14217
14218 \series bold
14219
14220 \backslash
14221 parbox[位置]{幅}{ボックスの内容}
14222 \end_layout
14223
14224 \begin_layout Standard
14225 「位置」は、
14226 \emph on
14227 b
14228 \emph default
14229
14230 \emph on
14231 t
14232 \emph default
14233 の値をとることができます。下揃えを意味する
14234 \emph on
14235 b
14236 \emph default
14237
14238 \bar under
14239 b
14240 \bar default
14241 ottom)は、ボックスを、周囲の本文中の最後の行と合わせることを意味します。上揃えを意味する
14242 \emph on
14243 t
14244 \emph default
14245
14246 \bar under
14247 t
14248 \bar default
14249 op)は、これを最初の行に合わせます。位置を指定しない時には、ボックスは事実上中央揃えになります。用例については、取扱説明書埋込オブジェクト篇の
14250 \emph on
14251 Boxes
14252 \emph default
14253 の節をご参照下さい。
14254 \end_layout
14255
14256 \begin_layout Standard
14257 \begin_inset VSpace bigskip
14258 \end_inset
14259
14260 数式番号を含めて、数式を完全に縁で囲むためには、数式をparbox内に収めなくてはなりません。こうするには、数式前にTeXモードで
14261 \series bold
14262 parbox{
14263 \backslash
14264 linewidth-2
14265 \backslash
14266 fboxsep-2
14267 \backslash
14268 fboxrule}{
14269 \series default
14270 というコマンドを挿入します。ここで
14271 \series bold
14272
14273 \backslash
14274 linewidth
14275 \begin_inset Index idx
14276 status collapsed
14277
14278 \begin_layout Plain Layout
14279 こまんど@コマンド ! L ! 
14280 \backslash
14281 linewidth
14282 \end_layout
14283
14284 \end_inset
14285
14286
14287 \series default
14288 は、使用中の文書に設定されている行幅です。縁は、parboxの外側にあるので、縁余白と縁幅の2倍を行幅から差し引かなくてはなりません。バグ
14289 \begin_inset Foot
14290 status collapsed
14291
14292 \begin_layout Plain Layout
14293 \begin_inset CommandInset href
14294 LatexCommand href
14295 name "LyX-bug #4483"
14296 target "http://www.lyx.org/trac/ticket/4483"
14297
14298 \end_inset
14299
14300
14301 \end_layout
14302
14303 \end_inset
14304
14305 のせいでLyXはこれを自動的に行いませんので、TeXモードを使用する必要があります。引数中で掛け算や引き算を行うためには、LaTeXパッケージの
14306 \series bold
14307 calc
14308 \series default
14309
14310 \begin_inset Foot
14311 status collapsed
14312
14313 \begin_layout Plain Layout
14314
14315 \series bold
14316 calc
14317 \series default
14318 は、標準的LaTeX頒布版のすべてに含まれています。
14319 \end_layout
14320
14321 \end_inset
14322
14323
14324 \begin_inset Index idx
14325 status collapsed
14326
14327 \begin_layout Plain Layout
14328 ぱっけーじ@パッケージ ! calc
14329 \end_layout
14330
14331 \end_inset
14332
14333 を、LaTeXプリアンブル中で
14334 \end_layout
14335
14336 \begin_layout Standard
14337
14338 \series bold
14339
14340 \backslash
14341 usepackage{calc}
14342 \end_layout
14343
14344 \begin_layout Standard
14345 のように読み込んでおく必要があります。数式の後では、TeXモードで
14346 \series bold
14347 }}
14348 \series default
14349 を入力して、二つのボックスを閉じておかなくてはなりません。以下に例を挙げます。
14350 \begin_inset ERT
14351 status collapsed
14352
14353 \begin_layout Plain Layout
14354
14355
14356 \backslash
14357 fboxsep 5mm 
14358 \backslash
14359 fboxrule 5mm
14360 \end_layout
14361
14362 \end_inset
14363
14364
14365 \end_layout
14366
14367 \begin_layout Standard
14368 \begin_inset ERT
14369 status collapsed
14370
14371 \begin_layout Plain Layout
14372
14373
14374 \backslash
14375 fbox{
14376 \backslash
14377 parbox{
14378 \backslash
14379 linewidth-2
14380 \backslash
14381 fboxsep-2
14382 \backslash
14383 fboxrule}{
14384 \end_layout
14385
14386 \end_inset
14387
14388
14389 \begin_inset Formula \begin{equation}
14390 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14391
14392 \end_inset
14393
14394
14395 \begin_inset ERT
14396 status collapsed
14397
14398 \begin_layout Plain Layout
14399
14400 }}
14401 \end_layout
14402
14403 \end_inset
14404
14405
14406 \begin_inset ERT
14407 status collapsed
14408
14409 \begin_layout Plain Layout
14410
14411
14412 \backslash
14413 fboxrule 0.4pt 
14414 \backslash
14415 fboxsep 3pt
14416 \end_layout
14417
14418 \end_inset
14419
14420
14421 \end_layout
14422
14423 \begin_layout Standard
14424 \begin_inset VSpace medskip
14425 \end_inset
14426
14427
14428 \series bold
14429
14430 \backslash
14431 fbox
14432 \series default
14433 の引数としてparboxが使われているので、この場合には、
14434 \series bold
14435
14436 \backslash
14437 fbox
14438 \series default
14439 を使おうが
14440 \series bold
14441
14442 \backslash
14443 boxed
14444 \series default
14445 を使おうが、差は生じません。
14446 \end_layout
14447
14448 \begin_layout Standard
14449 \begin_inset VSpace bigskip
14450 \end_inset
14451
14452 段落ボックスは、数式にじかにコメントを付けるのにたいへん便利です。これを行うには、
14453 \series bold
14454
14455 \backslash
14456 parbox
14457 \series default
14458
14459 \series bold
14460
14461 \backslash
14462 tag
14463 \series default
14464 コマンドといっしょに使います(
14465 \series bold
14466
14467 \backslash
14468 tag
14469 \series default
14470 についての詳細は、第
14471 \begin_inset CommandInset ref
14472 LatexCommand ref
14473 reference "sub:ユーザー定義番号"
14474
14475 \end_inset
14476
14477 節をご参照下さい)
14478 \end_layout
14479
14480 \begin_layout Standard
14481 以下は、
14482 \series bold
14483
14484 \backslash
14485 parbox
14486 \series default
14487 を使ってコメントを付けた数式の例です。
14488 \end_layout
14489
14490 \begin_layout Standard
14491 \begin_inset ERT
14492 status collapsed
14493
14494 \begin_layout Plain Layout
14495
14496
14497 \backslash
14498 [5x-7b=3b
14499 \backslash
14500 tag*{
14501 \backslash
14502 parbox{5cm}{
14503 \end_layout
14504
14505 \end_inset
14506
14507 これは説明です。数式や多行数式本体からはっきりと離れています。
14508 \begin_inset ERT
14509 status collapsed
14510
14511 \begin_layout Plain Layout
14512
14513 }}
14514 \backslash
14515 ]
14516 \end_layout
14517
14518 \end_inset
14519
14520
14521 \end_layout
14522
14523 \begin_layout Standard
14524 LyXは、まだ数式中での
14525 \series bold
14526
14527 \backslash
14528 parbox
14529 \series default
14530 コマンドをサポートしていないので、上のような数式は、完全にTeXモードで挿入しなくてはなりません。この数式は、以下のようなコマンド列を使って作ってあります。
14531 \end_layout
14532
14533 \begin_layout Standard
14534 まず、
14535 \series bold
14536
14537 \backslash
14538 [5x-7b=3b
14539 \backslash
14540 tag*
14541 \backslash
14542 {
14543 \backslash
14544 parbox{5cm}{
14545 \series default
14546 というコマンドをTeXモードで挿入します
14547 \begin_inset Foot
14548 status collapsed
14549
14550 \begin_layout Plain Layout
14551
14552 \series bold
14553 行頭下げ
14554 \series default
14555 数式様式を使用している時には、
14556 \series bold
14557
14558 \backslash
14559 tag*
14560 \backslash
14561 {
14562 \series default
14563 の代わりに
14564 \series bold
14565
14566 \backslash
14567 hfill
14568 \series default
14569 を用いることもできます(数式様式に関しては、第
14570 \begin_inset CommandInset ref
14571 LatexCommand ref
14572 reference "sec:数式様式"
14573
14574 \end_inset
14575
14576 節をご参照下さい)。
14577 \end_layout
14578
14579 \end_inset
14580
14581 。それから、説明を通常のテキストとして入れ、最後に
14582 \series bold
14583 }}
14584 \backslash
14585 ]
14586 \series default
14587 をTeXモードで挿入します。ここで
14588 \series bold
14589
14590 \backslash
14591 [
14592 \series default
14593 および
14594 \series bold
14595
14596 \backslash
14597 ]
14598 \series default
14599 コマンドは別行建て数式を作るためのものです。
14600 \end_layout
14601
14602 \begin_layout Standard
14603
14604 \series bold
14605
14606 \backslash
14607 parbox
14608 \series default
14609 を使う利点は、数式テキストモードを使用して「コメントを付けた」以下の例と比較すると、よくわかるでしょう。
14610 \begin_inset Formula \[
14611 5x-7b=3b\textrm{これは説明です。数式本体から離れていません...}\]
14612
14613 \end_inset
14614
14615
14616 \end_layout
14617
14618 \begin_layout Section
14619 演算子
14620 \begin_inset Index idx
14621 status collapsed
14622
14623 \begin_layout Plain Layout
14624 えんざんし@演算子
14625 \end_layout
14626
14627 \end_inset
14628
14629
14630 \end_layout
14631
14632 \begin_layout Subsection
14633 大演算子
14634 \begin_inset CommandInset label
14635 LatexCommand label
14636 name "sub:大演算子"
14637
14638 \end_inset
14639
14640
14641 \begin_inset Index idx
14642 status collapsed
14643
14644 \begin_layout Plain Layout
14645 えんざんし@演算子 ! だい@大
14646 \end_layout
14647
14648 \end_inset
14649
14650
14651 \begin_inset Index idx
14652 status collapsed
14653
14654 \begin_layout Plain Layout
14655 わ@和
14656 \end_layout
14657
14658 \end_inset
14659
14660
14661 \begin_inset Index idx
14662 status collapsed
14663
14664 \begin_layout Plain Layout
14665 せきぶんきごう@積分記号
14666 \end_layout
14667
14668 \end_inset
14669
14670
14671 \end_layout
14672
14673 \begin_layout Standard
14674 ここに挙げた積分演算子をすべて使えるようにするには、文書設定の
14675 \family sans
14676 数式オプション
14677 \family default
14678 の面にある
14679 \family sans
14680 esintパッケージを自動的に使う
14681 \family default
14682 オプションを有効にしなくてはなりません。
14683 \end_layout
14684
14685 \begin_layout Standard
14686 \begin_inset space \hfill{}
14687 \end_inset
14688
14689
14690 \begin_inset Tabular
14691 <lyxtabular version="3" rows="9" columns="2">
14692 <features tabularvalignment="middle">
14693 <column alignment="center" valignment="top" width="0pt">
14694 <column alignment="center" valignment="top" width="0pt">
14695 <row>
14696 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14697 \begin_inset Text
14698
14699 \begin_layout Plain Layout
14700 コマンド
14701 \end_layout
14702
14703 \end_inset
14704 </cell>
14705 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14706 \begin_inset Text
14707
14708 \begin_layout Plain Layout
14709 出力
14710 \end_layout
14711
14712 \end_inset
14713 </cell>
14714 </row>
14715 <row>
14716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14717 \begin_inset Text
14718
14719 \begin_layout Plain Layout
14720
14721 \backslash
14722 sum
14723 \begin_inset Index idx
14724 status collapsed
14725
14726 \begin_layout Plain Layout
14727 こまんど@コマンド ! S ! 
14728 \backslash
14729 sum
14730 \end_layout
14731
14732 \end_inset
14733
14734
14735 \end_layout
14736
14737 \end_inset
14738 </cell>
14739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14740 \begin_inset Text
14741
14742 \begin_layout Plain Layout
14743 \begin_inset Formula $\sum$
14744 \end_inset
14745
14746
14747 \end_layout
14748
14749 \end_inset
14750 </cell>
14751 </row>
14752 <row>
14753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14754 \begin_inset Text
14755
14756 \begin_layout Plain Layout
14757
14758 \backslash
14759 int
14760 \begin_inset Index idx
14761 status collapsed
14762
14763 \begin_layout Plain Layout
14764 こまんど@コマンド ! I ! 
14765 \backslash
14766 int
14767 \end_layout
14768
14769 \end_inset
14770
14771
14772 \end_layout
14773
14774 \end_inset
14775 </cell>
14776 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14777 \begin_inset Text
14778
14779 \begin_layout Plain Layout
14780 \begin_inset Formula $\int$
14781 \end_inset
14782
14783
14784 \end_layout
14785
14786 \end_inset
14787 </cell>
14788 </row>
14789 <row>
14790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14791 \begin_inset Text
14792
14793 \begin_layout Plain Layout
14794
14795 \backslash
14796 oint
14797 \end_layout
14798
14799 \end_inset
14800 </cell>
14801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14802 \begin_inset Text
14803
14804 \begin_layout Plain Layout
14805 \begin_inset Formula $\oint$
14806 \end_inset
14807
14808
14809 \end_layout
14810
14811 \end_inset
14812 </cell>
14813 </row>
14814 <row>
14815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14816 \begin_inset Text
14817
14818 \begin_layout Plain Layout
14819
14820 \backslash
14821 ointctrclockwise
14822 \end_layout
14823
14824 \end_inset
14825 </cell>
14826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14827 \begin_inset Text
14828
14829 \begin_layout Plain Layout
14830 \begin_inset Formula $\ointctrclockwise$
14831 \end_inset
14832
14833
14834 \end_layout
14835
14836 \end_inset
14837 </cell>
14838 </row>
14839 <row>
14840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14841 \begin_inset Text
14842
14843 \begin_layout Plain Layout
14844
14845 \backslash
14846 ointclockwise
14847 \end_layout
14848
14849 \end_inset
14850 </cell>
14851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14852 \begin_inset Text
14853
14854 \begin_layout Plain Layout
14855 \begin_inset Formula $\ointclockwise$
14856 \end_inset
14857
14858
14859 \end_layout
14860
14861 \end_inset
14862 </cell>
14863 </row>
14864 <row>
14865 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14866 \begin_inset Text
14867
14868 \begin_layout Plain Layout
14869
14870 \backslash
14871 sqint
14872 \end_layout
14873
14874 \end_inset
14875 </cell>
14876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14877 \begin_inset Text
14878
14879 \begin_layout Plain Layout
14880 \begin_inset Formula $\sqint$
14881 \end_inset
14882
14883
14884 \end_layout
14885
14886 \end_inset
14887 </cell>
14888 </row>
14889 <row>
14890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14891 \begin_inset Text
14892
14893 \begin_layout Plain Layout
14894
14895 \backslash
14896 bigcap
14897 \end_layout
14898
14899 \end_inset
14900 </cell>
14901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14902 \begin_inset Text
14903
14904 \begin_layout Plain Layout
14905 \begin_inset Formula $\bigcap$
14906 \end_inset
14907
14908
14909 \end_layout
14910
14911 \end_inset
14912 </cell>
14913 </row>
14914 <row>
14915 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14916 \begin_inset Text
14917
14918 \begin_layout Plain Layout
14919
14920 \backslash
14921 bigcup
14922 \end_layout
14923
14924 \end_inset
14925 </cell>
14926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14927 \begin_inset Text
14928
14929 \begin_layout Plain Layout
14930 \begin_inset Formula $\bigcup$
14931 \end_inset
14932
14933
14934 \end_layout
14935
14936 \end_inset
14937 </cell>
14938 </row>
14939 </lyxtabular>
14940
14941 \end_inset
14942
14943
14944 \begin_inset space \hfill{}
14945 \end_inset
14946
14947
14948 \begin_inset Tabular
14949 <lyxtabular version="3" rows="10" columns="2">
14950 <features tabularvalignment="middle">
14951 <column alignment="center" valignment="top" width="0pt">
14952 <column alignment="center" valignment="top" width="0pt">
14953 <row>
14954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14955 \begin_inset Text
14956
14957 \begin_layout Plain Layout
14958 コマンド
14959 \end_layout
14960
14961 \end_inset
14962 </cell>
14963 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14964 \begin_inset Text
14965
14966 \begin_layout Plain Layout
14967 出力
14968 \end_layout
14969
14970 \end_inset
14971 </cell>
14972 </row>
14973 <row>
14974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14975 \begin_inset Text
14976
14977 \begin_layout Plain Layout
14978
14979 \backslash
14980 prod
14981 \begin_inset Index idx
14982 status collapsed
14983
14984 \begin_layout Plain Layout
14985 こまんど@コマンド ! P ! 
14986 \backslash
14987 prod
14988 \end_layout
14989
14990 \end_inset
14991
14992
14993 \end_layout
14994
14995 \end_inset
14996 </cell>
14997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14998 \begin_inset Text
14999
15000 \begin_layout Plain Layout
15001 \begin_inset Formula $\prod$
15002 \end_inset
15003
15004
15005 \end_layout
15006
15007 \end_inset
15008 </cell>
15009 </row>
15010 <row>
15011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15012 \begin_inset Text
15013
15014 \begin_layout Plain Layout
15015
15016 \backslash
15017 coprod
15018 \end_layout
15019
15020 \end_inset
15021 </cell>
15022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15023 \begin_inset Text
15024
15025 \begin_layout Plain Layout
15026 \begin_inset Formula $\coprod$
15027 \end_inset
15028
15029
15030 \end_layout
15031
15032 \end_inset
15033 </cell>
15034 </row>
15035 <row>
15036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15037 \begin_inset Text
15038
15039 \begin_layout Plain Layout
15040
15041 \backslash
15042 bigodot
15043 \end_layout
15044
15045 \end_inset
15046 </cell>
15047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15048 \begin_inset Text
15049
15050 \begin_layout Plain Layout
15051 \begin_inset Formula $\bigodot$
15052 \end_inset
15053
15054
15055 \end_layout
15056
15057 \end_inset
15058 </cell>
15059 </row>
15060 <row>
15061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15062 \begin_inset Text
15063
15064 \begin_layout Plain Layout
15065
15066 \backslash
15067 bigotimes
15068 \end_layout
15069
15070 \end_inset
15071 </cell>
15072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15073 \begin_inset Text
15074
15075 \begin_layout Plain Layout
15076 \begin_inset Formula $\bigotimes$
15077 \end_inset
15078
15079
15080 \end_layout
15081
15082 \end_inset
15083 </cell>
15084 </row>
15085 <row>
15086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15087 \begin_inset Text
15088
15089 \begin_layout Plain Layout
15090
15091 \backslash
15092 bigoplus
15093 \end_layout
15094
15095 \end_inset
15096 </cell>
15097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15098 \begin_inset Text
15099
15100 \begin_layout Plain Layout
15101 \begin_inset Formula $\bigoplus$
15102 \end_inset
15103
15104
15105 \end_layout
15106
15107 \end_inset
15108 </cell>
15109 </row>
15110 <row>
15111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15112 \begin_inset Text
15113
15114 \begin_layout Plain Layout
15115
15116 \backslash
15117 bigwedge
15118 \end_layout
15119
15120 \end_inset
15121 </cell>
15122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15123 \begin_inset Text
15124
15125 \begin_layout Plain Layout
15126 \begin_inset Formula $\bigwedge$
15127 \end_inset
15128
15129
15130 \end_layout
15131
15132 \end_inset
15133 </cell>
15134 </row>
15135 <row>
15136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15137 \begin_inset Text
15138
15139 \begin_layout Plain Layout
15140
15141 \backslash
15142 bigvee
15143 \end_layout
15144
15145 \end_inset
15146 </cell>
15147 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15148 \begin_inset Text
15149
15150 \begin_layout Plain Layout
15151 \begin_inset Formula $\bigvee$
15152 \end_inset
15153
15154
15155 \end_layout
15156
15157 \end_inset
15158 </cell>
15159 </row>
15160 <row>
15161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15162 \begin_inset Text
15163
15164 \begin_layout Plain Layout
15165
15166 \backslash
15167 bigsqcup
15168 \end_layout
15169
15170 \end_inset
15171 </cell>
15172 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15173 \begin_inset Text
15174
15175 \begin_layout Plain Layout
15176 \begin_inset Formula $\bigsqcup$
15177 \end_inset
15178
15179
15180 \end_layout
15181
15182 \end_inset
15183 </cell>
15184 </row>
15185 <row>
15186 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15187 \begin_inset Text
15188
15189 \begin_layout Plain Layout
15190
15191 \backslash
15192 biguplus
15193 \end_layout
15194
15195 \end_inset
15196 </cell>
15197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15198 \begin_inset Text
15199
15200 \begin_layout Plain Layout
15201 \begin_inset Formula $\biguplus$
15202 \end_inset
15203
15204
15205 \end_layout
15206
15207 \end_inset
15208 </cell>
15209 </row>
15210 </lyxtabular>
15211
15212 \end_inset
15213
15214
15215 \begin_inset space \hfill{}
15216 \end_inset
15217
15218
15219 \end_layout
15220
15221 \begin_layout Standard
15222 すべての大演算子は、数式ツールバーボタンの
15223 \begin_inset Graphics
15224         filename ../../images/math/intop.png
15225         scale 85
15226
15227 \end_inset
15228
15229 でも挿入することができます。
15230 \end_layout
15231
15232 \begin_layout Standard
15233 これらの演算子は、よく見ないと同じように見える二項演算子よりも大きいので、大演算子と呼ばれます。大演算子はすべて、次小節で説明する「範囲」をとることができます。
15234 \end_layout
15235
15236 \begin_layout Standard
15237 積分演算子はすべて、
15238 \series bold
15239
15240 \backslash
15241 intop
15242 \series default
15243
15244 \series bold
15245
15246 \backslash
15247 ointop
15248 \series default
15249 のように、
15250 \series bold
15251 op
15252 \series default
15253 で終わる別バージョンがあります。これらの演算子は、
15254 \series bold
15255
15256 \backslash
15257 int
15258 \series default
15259 とは範囲の表示のしかたが異なります。第
15260 \begin_inset CommandInset ref
15261 LatexCommand ref
15262 reference "sub:演算子の範囲"
15263
15264 \end_inset
15265
15266 節をご参照下さい。
15267 \end_layout
15268
15269 \begin_layout Subsubsection*
15270 積分の子細
15271 \end_layout
15272
15273 \begin_layout Standard
15274 積分中で用いられる文字
15275 \emph on
15276 d
15277 \emph default
15278 は演算子なので、アップライト体で組まれなくてはなりません。これを行うには
15279 \emph on
15280 d
15281 \emph default
15282 を選択して、短絡キー
15283 \begin_inset Info
15284 type  "shortcut"
15285 arg   "font-roman"
15286 \end_inset
15287
15288 を用います
15289 \begin_inset Foot
15290 status collapsed
15291
15292 \begin_layout Plain Layout
15293 文字様式については、第
15294 \begin_inset CommandInset ref
15295 LatexCommand ref
15296 reference "sub:書体様式"
15297
15298 \end_inset
15299
15300 節参照。
15301 \end_layout
15302
15303 \end_inset
15304
15305 。最後に、演算子の慣例に倣って、
15306 \emph on
15307 d
15308 \emph default
15309 の前に最小空白を挿入しなくてはなりません。たとえば、
15310 \end_layout
15311
15312 \begin_layout Standard
15313 正しくない例:
15314 \begin_inset Formula $\int A(x)dx$
15315 \end_inset
15316
15317
15318 \begin_inset Newline newline
15319 \end_inset
15320
15321 正しい
15322 \begin_inset Phantom HPhantom
15323 status open
15324
15325 \begin_layout Plain Layout
15326 ない
15327 \end_layout
15328
15329 \end_inset
15330
15331 例:
15332 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15333 \end_inset
15334
15335
15336 \end_layout
15337
15338 \begin_layout Standard
15339 多重積分に関しては、以下のコマンドがあります。
15340 \begin_inset VSpace medskip
15341 \end_inset
15342
15343
15344 \end_layout
15345
15346 \begin_layout Standard
15347 \begin_inset space \hfill{}
15348 \end_inset
15349
15350
15351 \begin_inset Tabular
15352 <lyxtabular version="3" rows="4" columns="2">
15353 <features tabularvalignment="middle">
15354 <column alignment="center" valignment="top" width="0">
15355 <column alignment="center" valignment="top" width="0">
15356 <row>
15357 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15358 \begin_inset Text
15359
15360 \begin_layout Plain Layout
15361 コマンド
15362 \end_layout
15363
15364 \end_inset
15365 </cell>
15366 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15367 \begin_inset Text
15368
15369 \begin_layout Plain Layout
15370 出力
15371 \begin_inset Note Note
15372 status collapsed
15373
15374 \begin_layout Plain Layout
15375 ここで
15376 \series bold
15377
15378 \backslash
15379 raisebox
15380 \series default
15381 はスペーサーとして使用しているだけです。
15382 \end_layout
15383
15384 \end_inset
15385
15386
15387 \end_layout
15388
15389 \end_inset
15390 </cell>
15391 </row>
15392 <row>
15393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15394 \begin_inset Text
15395
15396 \begin_layout Plain Layout
15397
15398 \backslash
15399 iint
15400 \end_layout
15401
15402 \end_inset
15403 </cell>
15404 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15405 \begin_inset Text
15406
15407 \begin_layout Plain Layout
15408 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15409 \end_inset
15410
15411
15412 \end_layout
15413
15414 \end_inset
15415 </cell>
15416 </row>
15417 <row>
15418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15419 \begin_inset Text
15420
15421 \begin_layout Plain Layout
15422
15423 \backslash
15424 oiint
15425 \end_layout
15426
15427 \end_inset
15428 </cell>
15429 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15430 \begin_inset Text
15431
15432 \begin_layout Plain Layout
15433 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15434 \end_inset
15435
15436
15437 \end_layout
15438
15439 \end_inset
15440 </cell>
15441 </row>
15442 <row>
15443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15444 \begin_inset Text
15445
15446 \begin_layout Plain Layout
15447
15448 \backslash
15449 sqiint
15450 \end_layout
15451
15452 \end_inset
15453 </cell>
15454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15455 \begin_inset Text
15456
15457 \begin_layout Plain Layout
15458 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15459 \end_inset
15460
15461
15462 \end_layout
15463
15464 \end_inset
15465 </cell>
15466 </row>
15467 </lyxtabular>
15468
15469 \end_inset
15470
15471
15472 \begin_inset space \hfill{}
15473 \end_inset
15474
15475
15476 \begin_inset Tabular
15477 <lyxtabular version="3" rows="4" columns="2">
15478 <features tabularvalignment="middle">
15479 <column alignment="center" valignment="top" width="0">
15480 <column alignment="center" valignment="top" width="0">
15481 <row>
15482 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15483 \begin_inset Text
15484
15485 \begin_layout Plain Layout
15486 コマンド
15487 \end_layout
15488
15489 \end_inset
15490 </cell>
15491 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15492 \begin_inset Text
15493
15494 \begin_layout Plain Layout
15495 出力
15496 \end_layout
15497
15498 \end_inset
15499 </cell>
15500 </row>
15501 <row>
15502 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15503 \begin_inset Text
15504
15505 \begin_layout Plain Layout
15506
15507 \backslash
15508 iiint
15509 \end_layout
15510
15511 \end_inset
15512 </cell>
15513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15514 \begin_inset Text
15515
15516 \begin_layout Plain Layout
15517 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15518 \end_inset
15519
15520
15521 \end_layout
15522
15523 \end_inset
15524 </cell>
15525 </row>
15526 <row>
15527 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15528 \begin_inset Text
15529
15530 \begin_layout Plain Layout
15531
15532 \backslash
15533 iiiint
15534 \end_layout
15535
15536 \end_inset
15537 </cell>
15538 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15539 \begin_inset Text
15540
15541 \begin_layout Plain Layout
15542 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15543 \end_inset
15544
15545
15546 \end_layout
15547
15548 \end_inset
15549 </cell>
15550 </row>
15551 <row>
15552 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15553 \begin_inset Text
15554
15555 \begin_layout Plain Layout
15556
15557 \backslash
15558 dotsint
15559 \end_layout
15560
15561 \end_inset
15562 </cell>
15563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15564 \begin_inset Text
15565
15566 \begin_layout Plain Layout
15567 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15568 \end_inset
15569
15570
15571 \end_layout
15572
15573 \end_inset
15574 </cell>
15575 </row>
15576 </lyxtabular>
15577
15578 \end_inset
15579
15580
15581 \begin_inset space \hfill{}
15582 \end_inset
15583
15584
15585 \end_layout
15586
15587 \begin_layout Subsection
15588 演算子の範囲
15589 \begin_inset CommandInset label
15590 LatexCommand label
15591 name "sub:演算子の範囲"
15592
15593 \end_inset
15594
15595
15596 \begin_inset Index idx
15597 status collapsed
15598
15599 \begin_layout Plain Layout
15600 えんざんし@演算子 ! はんい@範囲
15601 \end_layout
15602
15603 \end_inset
15604
15605
15606 \end_layout
15607
15608 \begin_layout Standard
15609 範囲は、上付き文字と下付き文字とで作成することができます。
15610 \end_layout
15611
15612 \begin_layout Standard
15613 \align center
15614 \begin_inset Tabular
15615 <lyxtabular version="3" rows="2" columns="2">
15616 <features tabularvalignment="middle">
15617 <column alignment="center" valignment="top" width="0pt">
15618 <column alignment="center" valignment="top" width="0pt">
15619 <row>
15620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15621 \begin_inset Text
15622
15623 \begin_layout Plain Layout
15624 コマンド
15625 \end_layout
15626
15627 \end_inset
15628 </cell>
15629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15630 \begin_inset Text
15631
15632 \begin_layout Plain Layout
15633 出力
15634 \begin_inset Note Note
15635 status collapsed
15636
15637 \begin_layout Plain Layout
15638 ここで
15639 \series bold
15640
15641 \backslash
15642 raisebox
15643 \series default
15644 はスペーサーとして使用しているだけです。
15645 \end_layout
15646
15647 \end_inset
15648
15649
15650 \end_layout
15651
15652 \end_inset
15653 </cell>
15654 </row>
15655 <row>
15656 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15657 \begin_inset Text
15658
15659 \begin_layout Plain Layout
15660
15661 \backslash
15662 prod^
15663 \backslash
15664 infty
15665 \begin_inset ERT
15666 status collapsed
15667
15668 \begin_layout Plain Layout
15669
15670
15671 \backslash
15672 spce 
15673 \end_layout
15674
15675 \end_inset
15676
15677
15678 \begin_inset Formula $\to$
15679 \end_inset
15680
15681 _0
15682 \begin_inset Formula $\to$
15683 \end_inset
15684
15685 A(x)
15686 \end_layout
15687
15688 \end_inset
15689 </cell>
15690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15691 \begin_inset Text
15692
15693 \begin_layout Plain Layout
15694 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15695 \end_inset
15696
15697
15698 \end_layout
15699
15700 \end_inset
15701 </cell>
15702 </row>
15703 </lyxtabular>
15704
15705 \end_inset
15706
15707
15708 \end_layout
15709
15710 \begin_layout Standard
15711 行内数式では、範囲は演算子の右横に表示されます。別行建て数式での範囲は、積分範囲を除き、演算子の上と下に表示されます。
15712 \end_layout
15713
15714 \begin_layout Standard
15715 範囲が演算子の横に表示されるように強制するには、カーソルを当該演算子の直後において、
15716 \family sans
15717 編集\SpecialChar \menuseparator
15718 数式\SpecialChar \menuseparator
15719 範囲の表記を変更
15720 \family default
15721 メニューで
15722 \family sans
15723 \series bold
15724 行内形式
15725 \family default
15726 \series default
15727 (短絡キー
15728 \begin_inset Info
15729 type  "shortcut"
15730 arg   "math-limits"
15731 \end_inset
15732
15733 )を選択することで範囲形式を変更することができます。以下はその用例です。
15734 \end_layout
15735
15736 \begin_layout Standard
15737 既定の範囲形式は、以下のようになっています。
15738 \begin_inset Formula \[
15739 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
15740
15741 \end_inset
15742
15743 以下は、範囲形式を
15744 \family sans
15745 \series bold
15746 行内形式
15747 \family default
15748 \series default
15749 に変更したときの表示です。
15750 \begin_inset Formula \[
15751 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
15752
15753 \end_inset
15754
15755
15756 \series bold
15757
15758 \backslash
15759 intop
15760 \series default
15761
15762 \series bold
15763
15764 \backslash
15765 ointop
15766 \series default
15767 などのように
15768 \series bold
15769 op
15770 \series default
15771 で終わるもの以外の積分記号では、範囲は、既定で演算子の横に設定されます。しかし、多重積分においては、範囲を演算子の下に置くべきときがあります。このことから、以下
15772 の例では、範囲形式を
15773 \series bold
15774 別行建て形式
15775 \series default
15776 にして積分記号の下に置くようにしています。
15777 \begin_inset Formula \begin{equation}
15778 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}\end{equation}
15779
15780 \end_inset
15781
15782
15783 \end_layout
15784
15785 \begin_layout Standard
15786 \begin_inset VSpace medskip
15787 \end_inset
15788
15789 範囲に条件を指定したい場合には、
15790 \series bold
15791
15792 \backslash
15793 subarray
15794 \series default
15795
15796 \begin_inset Index idx
15797 status collapsed
15798
15799 \begin_layout Plain Layout
15800 こまんど@コマンド ! S ! 
15801 \backslash
15802 subarray
15803 \end_layout
15804
15805 \end_inset
15806
15807 コマンドや
15808 \series bold
15809
15810 \backslash
15811 substack
15812 \series default
15813
15814 \begin_inset Index idx
15815 status collapsed
15816
15817 \begin_layout Plain Layout
15818 こまんど@コマンド ! S ! 
15819 \backslash
15820 substack
15821 \end_layout
15822
15823 \end_inset
15824
15825 コマンドを使用します。たとえば、以下の表記 
15826 \begin_inset Formula \begin{equation}
15827 \sum_{\begin{subarray}{c}
15828 0<k<1000\\
15829 \\
15830 k\,\in\,\mathbb{N}
15831 \end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
15832
15833 \end_inset
15834
15835
15836 \end_layout
15837
15838 \begin_layout Standard
15839 を作成するには、以下のようにしなくてはなりません。
15840 \begin_inset Newline newline
15841 \end_inset
15842
15843 まず、
15844 \series bold
15845
15846 \backslash
15847 sum
15848 \series default
15849 ^
15850 \series bold
15851 n
15852 \begin_inset ERT
15853 status collapsed
15854
15855 \begin_layout Plain Layout
15856
15857
15858 \backslash
15859 spce 
15860 \end_layout
15861
15862 \end_inset
15863
15864 _
15865 \series default
15866 というコマンドを入力します。すると、和演算子の下の青枠に移動するので、ここに
15867 \series bold
15868
15869 \backslash
15870 subarray
15871 \begin_inset ERT
15872 status collapsed
15873
15874 \begin_layout Plain Layout
15875
15876
15877 \backslash
15878 spce 
15879 \end_layout
15880
15881 \end_inset
15882
15883
15884 \series default
15885 コマンドを挿入します。すると、青枠が紫枠の中に入って、ここに複数の行を書き込むことができるようになります。新しい行は、改行(
15886 \begin_inset Info
15887 type  "shortcut"
15888 arg   "newline-insert newline"
15889 \end_inset
15890
15891 )を挿入することで作ることができます。ここに
15892 \begin_inset Newline newline
15893 \end_inset
15894
15895
15896 \series bold
15897 0
15898 \begin_inset Formula $\boldsymbol{<}$
15899 \end_inset
15900
15901 k
15902 \begin_inset Formula $\boldsymbol{<}$
15903 \end_inset
15904
15905 1000 Ctrl+Return
15906 \begin_inset Newline newline
15907 \end_inset
15908
15909
15910 \series default
15911 と入力すると、新規行のための新しい枠が現れます。
15912 \end_layout
15913
15914 \begin_layout Standard
15915 各行の揃え方は、
15916 \family sans
15917 表ツールバー
15918 \family default
15919
15920 \family sans
15921 編集\SpecialChar \menuseparator
15922 行と列
15923 \family default
15924 メニューで変更することができますが、右揃えにするには、行頭に
15925 \series bold
15926
15927 \backslash
15928 hfill
15929 \begin_inset ERT
15930 status collapsed
15931
15932 \begin_layout Plain Layout
15933
15934
15935 \backslash
15936 spce 
15937 \end_layout
15938
15939 \end_inset
15940
15941
15942 \series default
15943 を挿入しなくてはなりません。
15944 \end_layout
15945
15946 \begin_layout Standard
15947
15948 \series bold
15949
15950 \backslash
15951 substack
15952 \series default
15953 コマンドは、各行がつねに中央揃えになることを除いては、
15954 \series bold
15955
15956 \backslash
15957 subarray
15958 \series default
15959 と同じです。
15960 \end_layout
15961
15962 \begin_layout Standard
15963 \begin_inset VSpace bigskip
15964 \end_inset
15965
15966 演算子の後に来る文字は、範囲の横に来るので、
15967 \begin_inset CommandInset ref
15968 LatexCommand eqref
15969 reference "eq:substack"
15970
15971 \end_inset
15972
15973 式のように、演算子の横の余白が大きくなりすぎることがあります。
15974 \end_layout
15975
15976 \begin_layout Standard
15977 これを避けるには、LaTeXプリアンブルに以下のようなマクロを指定する方法があります。
15978 \end_layout
15979
15980 \begin_layout Standard
15981
15982 \series bold
15983
15984 \backslash
15985 def
15986 \backslash
15987 clap#1{
15988 \backslash
15989 hbox to 0pt{
15990 \backslash
15991 hss #1
15992 \backslash
15993 hss}}
15994 \begin_inset Newline newline
15995 \end_inset
15996
15997
15998 \backslash
15999 def
16000 \backslash
16001 mathclap {
16002 \backslash
16003 mathpalette 
16004 \backslash
16005 mathclapinternal}
16006 \begin_inset Newline newline
16007 \end_inset
16008
16009
16010 \backslash
16011 def
16012 \backslash
16013 mathclapinternal #1#2{
16014 \backslash
16015 clap{$
16016 \backslash
16017 mathsurround =0pt #1{#2}$}}
16018 \end_layout
16019
16020 \begin_layout Standard
16021 これは、範囲の幅を0
16022 \begin_inset space \thinspace{}
16023 \end_inset
16024
16025 ptに設定する
16026 \series bold
16027
16028 \backslash
16029 mathclap
16030 \series default
16031
16032 \begin_inset Index idx
16033 status collapsed
16034
16035 \begin_layout Plain Layout
16036 こまんど@コマンド ! M ! 
16037 \backslash
16038 mathclap
16039 \end_layout
16040
16041 \end_inset
16042
16043 コマンドを定義しています。このコマンドの書式は、
16044 \end_layout
16045
16046 \begin_layout Standard
16047
16048 \series bold
16049
16050 \backslash
16051 mathclap{範囲}
16052 \end_layout
16053
16054 \begin_layout Standard
16055 となっていて、「範囲」には複数の条件を入れることができます。
16056 \end_layout
16057
16058 \begin_layout Standard
16059 これを
16060 \begin_inset CommandInset ref
16061 LatexCommand eqref
16062 reference "eq:substack"
16063
16064 \end_inset
16065
16066 式に応用すると、以下のようなコマンド
16067 \end_layout
16068
16069 \begin_layout Standard
16070
16071 \series bold
16072
16073 \backslash
16074 sum_
16075 \backslash
16076 mathclap{
16077 \backslash
16078 substack
16079 \begin_inset ERT
16080 status collapsed
16081
16082 \begin_layout Plain Layout
16083
16084
16085 \backslash
16086 spce 
16087 \end_layout
16088
16089 \end_inset
16090
16091 0
16092 \begin_inset Formula $\boldsymbol{<}$
16093 \end_inset
16094
16095 k
16096 \begin_inset Formula $\boldsymbol{<}$
16097 \end_inset
16098
16099 1000 Ctrl+Return
16100 \end_layout
16101
16102 \begin_layout Standard
16103 を使用して下限を作成することになります。これによって、足される要素は、和演算子の直後に来ることになります。
16104 \begin_inset Formula \[
16105 \sum_{\mathclap{\substack{0<k<1000\\
16106 \\
16107 k\,\in\,\mathbb{N}
16108 }
16109 }}^{n}k^{-2}\]
16110
16111 \end_inset
16112
16113
16114 \end_layout
16115
16116 \begin_layout Standard
16117 \begin_inset VSpace bigskip
16118 \end_inset
16119
16120 一つの範囲を複数の演算子に用いる方法が、第
16121 \begin_inset CommandInset ref
16122 LatexCommand ref
16123 reference "sub:自己定義演算子"
16124
16125 \end_inset
16126
16127 節に述べられています。
16128 \end_layout
16129
16130 \begin_layout Standard
16131 \begin_inset Newpage newpage
16132 \end_inset
16133
16134
16135 \end_layout
16136
16137 \begin_layout Subsection
16138 二項演算子
16139 \begin_inset CommandInset label
16140 LatexCommand label
16141 name "sub:二項演算子"
16142
16143 \end_inset
16144
16145
16146 \begin_inset Index idx
16147 status collapsed
16148
16149 \begin_layout Plain Layout
16150 えんざんし@演算子 ! にこう@二項
16151 \end_layout
16152
16153 \end_inset
16154
16155
16156 \end_layout
16157
16158 \begin_layout Standard
16159 二項演算子は、前後に文字がある場合、周囲に余白が入ります。
16160 \begin_inset VSpace medskip
16161 \end_inset
16162
16163
16164 \end_layout
16165
16166 \begin_layout Standard
16167 \begin_inset space \hfill{}
16168 \end_inset
16169
16170
16171 \begin_inset Tabular
16172 <lyxtabular version="3" rows="13" columns="2">
16173 <features tabularvalignment="middle">
16174 <column alignment="center" valignment="top" width="0pt">
16175 <column alignment="center" valignment="top" width="0pt">
16176 <row>
16177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16178 \begin_inset Text
16179
16180 \begin_layout Plain Layout
16181 コマンド
16182 \begin_inset Note Note
16183 status collapsed
16184
16185 \begin_layout Plain Layout
16186 ここで
16187 \series bold
16188
16189 \backslash
16190 raisebox
16191 \series default
16192 はスペーサーとして使用しているだけです。
16193 \end_layout
16194
16195 \end_inset
16196
16197
16198 \end_layout
16199
16200 \end_inset
16201 </cell>
16202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16203 \begin_inset Text
16204
16205 \begin_layout Plain Layout
16206 出力
16207 \end_layout
16208
16209 \end_inset
16210 </cell>
16211 </row>
16212 <row>
16213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16214 \begin_inset Text
16215
16216 \begin_layout Plain Layout
16217 +
16218 \end_layout
16219
16220 \end_inset
16221 </cell>
16222 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16223 \begin_inset Text
16224
16225 \begin_layout Plain Layout
16226 \begin_inset Formula $+$
16227 \end_inset
16228
16229
16230 \end_layout
16231
16232 \end_inset
16233 </cell>
16234 </row>
16235 <row>
16236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16237 \begin_inset Text
16238
16239 \begin_layout Plain Layout
16240 -
16241 \end_layout
16242
16243 \end_inset
16244 </cell>
16245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16246 \begin_inset Text
16247
16248 \begin_layout Plain Layout
16249 \begin_inset Formula $-$
16250 \end_inset
16251
16252
16253 \end_layout
16254
16255 \end_inset
16256 </cell>
16257 </row>
16258 <row>
16259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16260 \begin_inset Text
16261
16262 \begin_layout Plain Layout
16263
16264 \backslash
16265 pm
16266 \end_layout
16267
16268 \end_inset
16269 </cell>
16270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16271 \begin_inset Text
16272
16273 \begin_layout Plain Layout
16274 \begin_inset Formula $\pm$
16275 \end_inset
16276
16277
16278 \end_layout
16279
16280 \end_inset
16281 </cell>
16282 </row>
16283 <row>
16284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16285 \begin_inset Text
16286
16287 \begin_layout Plain Layout
16288
16289 \backslash
16290 mp
16291 \end_layout
16292
16293 \end_inset
16294 </cell>
16295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16296 \begin_inset Text
16297
16298 \begin_layout Plain Layout
16299 \begin_inset Formula $\mp$
16300 \end_inset
16301
16302
16303 \end_layout
16304
16305 \end_inset
16306 </cell>
16307 </row>
16308 <row>
16309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16310 \begin_inset Text
16311
16312 \begin_layout Plain Layout
16313
16314 \backslash
16315 cdot
16316 \end_layout
16317
16318 \end_inset
16319 </cell>
16320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16321 \begin_inset Text
16322
16323 \begin_layout Plain Layout
16324 \begin_inset Formula $\cdot$
16325 \end_inset
16326
16327
16328 \end_layout
16329
16330 \end_inset
16331 </cell>
16332 </row>
16333 <row>
16334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16335 \begin_inset Text
16336
16337 \begin_layout Plain Layout
16338
16339 \backslash
16340 times
16341 \end_layout
16342
16343 \end_inset
16344 </cell>
16345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16346 \begin_inset Text
16347
16348 \begin_layout Plain Layout
16349 \begin_inset Formula $\times$
16350 \end_inset
16351
16352
16353 \end_layout
16354
16355 \end_inset
16356 </cell>
16357 </row>
16358 <row>
16359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16360 \begin_inset Text
16361
16362 \begin_layout Plain Layout
16363
16364 \backslash
16365 div
16366 \end_layout
16367
16368 \end_inset
16369 </cell>
16370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16371 \begin_inset Text
16372
16373 \begin_layout Plain Layout
16374 \begin_inset Formula $\div$
16375 \end_inset
16376
16377
16378 \end_layout
16379
16380 \end_inset
16381 </cell>
16382 </row>
16383 <row>
16384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16385 \begin_inset Text
16386
16387 \begin_layout Plain Layout
16388 \begin_inset ERT
16389 status collapsed
16390
16391 \begin_layout Plain Layout
16392
16393
16394 \backslash
16395 raisebox{-1.2mm}{
16396 \end_layout
16397
16398 \end_inset
16399
16400 *
16401 \begin_inset ERT
16402 status collapsed
16403
16404 \begin_layout Plain Layout
16405
16406 }
16407 \end_layout
16408
16409 \end_inset
16410
16411
16412 \end_layout
16413
16414 \end_inset
16415 </cell>
16416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16417 \begin_inset Text
16418
16419 \begin_layout Plain Layout
16420 \begin_inset Formula $*$
16421 \end_inset
16422
16423
16424 \end_layout
16425
16426 \end_inset
16427 </cell>
16428 </row>
16429 <row>
16430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16431 \begin_inset Text
16432
16433 \begin_layout Plain Layout
16434
16435 \backslash
16436 star
16437 \end_layout
16438
16439 \end_inset
16440 </cell>
16441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16442 \begin_inset Text
16443
16444 \begin_layout Plain Layout
16445 \begin_inset Formula $\star$
16446 \end_inset
16447
16448
16449 \end_layout
16450
16451 \end_inset
16452 </cell>
16453 </row>
16454 <row>
16455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16456 \begin_inset Text
16457
16458 \begin_layout Plain Layout
16459
16460 \backslash
16461 circ
16462 \end_layout
16463
16464 \end_inset
16465 </cell>
16466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16467 \begin_inset Text
16468
16469 \begin_layout Plain Layout
16470 \begin_inset Formula $\circ$
16471 \end_inset
16472
16473
16474 \end_layout
16475
16476 \end_inset
16477 </cell>
16478 </row>
16479 <row>
16480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16481 \begin_inset Text
16482
16483 \begin_layout Plain Layout
16484
16485 \backslash
16486 diamond
16487 \end_layout
16488
16489 \end_inset
16490 </cell>
16491 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16492 \begin_inset Text
16493
16494 \begin_layout Plain Layout
16495 \begin_inset Formula $\diamond$
16496 \end_inset
16497
16498
16499 \end_layout
16500
16501 \end_inset
16502 </cell>
16503 </row>
16504 <row>
16505 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16506 \begin_inset Text
16507
16508 \begin_layout Plain Layout
16509
16510 \backslash
16511 bullet
16512 \end_layout
16513
16514 \end_inset
16515 </cell>
16516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16517 \begin_inset Text
16518
16519 \begin_layout Plain Layout
16520 \begin_inset Formula $\bullet$
16521 \end_inset
16522
16523
16524 \end_layout
16525
16526 \end_inset
16527 </cell>
16528 </row>
16529 </lyxtabular>
16530
16531 \end_inset
16532
16533
16534 \begin_inset space \hfill{}
16535 \end_inset
16536
16537
16538 \begin_inset Tabular
16539 <lyxtabular version="3" rows="13" columns="2">
16540 <features tabularvalignment="middle">
16541 <column alignment="center" valignment="top" width="0pt">
16542 <column alignment="center" valignment="top" width="0pt">
16543 <row>
16544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16545 \begin_inset Text
16546
16547 \begin_layout Plain Layout
16548 コマンド
16549 \end_layout
16550
16551 \end_inset
16552 </cell>
16553 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16554 \begin_inset Text
16555
16556 \begin_layout Plain Layout
16557 出力
16558 \end_layout
16559
16560 \end_inset
16561 </cell>
16562 </row>
16563 <row>
16564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16565 \begin_inset Text
16566
16567 \begin_layout Plain Layout
16568
16569 \backslash
16570 nabla
16571 \end_layout
16572
16573 \end_inset
16574 </cell>
16575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16576 \begin_inset Text
16577
16578 \begin_layout Plain Layout
16579 \begin_inset Formula $\nabla$
16580 \end_inset
16581
16582
16583 \end_layout
16584
16585 \end_inset
16586 </cell>
16587 </row>
16588 <row>
16589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16590 \begin_inset Text
16591
16592 \begin_layout Plain Layout
16593
16594 \backslash
16595 bigtriangledown
16596 \end_layout
16597
16598 \end_inset
16599 </cell>
16600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16601 \begin_inset Text
16602
16603 \begin_layout Plain Layout
16604 \begin_inset Formula $\bigtriangledown$
16605 \end_inset
16606
16607
16608 \end_layout
16609
16610 \end_inset
16611 </cell>
16612 </row>
16613 <row>
16614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16615 \begin_inset Text
16616
16617 \begin_layout Plain Layout
16618
16619 \backslash
16620 bigtriangleup
16621 \end_layout
16622
16623 \end_inset
16624 </cell>
16625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16626 \begin_inset Text
16627
16628 \begin_layout Plain Layout
16629 \begin_inset Formula $\bigtriangleup$
16630 \end_inset
16631
16632
16633 \end_layout
16634
16635 \end_inset
16636 </cell>
16637 </row>
16638 <row>
16639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16640 \begin_inset Text
16641
16642 \begin_layout Plain Layout
16643
16644 \backslash
16645 Box
16646 \end_layout
16647
16648 \end_inset
16649 </cell>
16650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16651 \begin_inset Text
16652
16653 \begin_layout Plain Layout
16654 \begin_inset Formula $\Box$
16655 \end_inset
16656
16657
16658 \end_layout
16659
16660 \end_inset
16661 </cell>
16662 </row>
16663 <row>
16664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16665 \begin_inset Text
16666
16667 \begin_layout Plain Layout
16668
16669 \backslash
16670 cap 
16671 \end_layout
16672
16673 \end_inset
16674 </cell>
16675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16676 \begin_inset Text
16677
16678 \begin_layout Plain Layout
16679 \begin_inset Formula $\cap$
16680 \end_inset
16681
16682
16683 \end_layout
16684
16685 \end_inset
16686 </cell>
16687 </row>
16688 <row>
16689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16690 \begin_inset Text
16691
16692 \begin_layout Plain Layout
16693
16694 \backslash
16695 cup
16696 \end_layout
16697
16698 \end_inset
16699 </cell>
16700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16701 \begin_inset Text
16702
16703 \begin_layout Plain Layout
16704 \begin_inset Formula $\cup$
16705 \end_inset
16706
16707
16708 \end_layout
16709
16710 \end_inset
16711 </cell>
16712 </row>
16713 <row>
16714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16715 \begin_inset Text
16716
16717 \begin_layout Plain Layout
16718
16719 \backslash
16720 dagger
16721 \end_layout
16722
16723 \end_inset
16724 </cell>
16725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16726 \begin_inset Text
16727
16728 \begin_layout Plain Layout
16729 \begin_inset Formula $\dagger$
16730 \end_inset
16731
16732
16733 \end_layout
16734
16735 \end_inset
16736 </cell>
16737 </row>
16738 <row>
16739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16740 \begin_inset Text
16741
16742 \begin_layout Plain Layout
16743
16744 \backslash
16745 ddagger
16746 \end_layout
16747
16748 \end_inset
16749 </cell>
16750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16751 \begin_inset Text
16752
16753 \begin_layout Plain Layout
16754 \begin_inset Formula $\ddagger$
16755 \end_inset
16756
16757
16758 \end_layout
16759
16760 \end_inset
16761 </cell>
16762 </row>
16763 <row>
16764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16765 \begin_inset Text
16766
16767 \begin_layout Plain Layout
16768
16769 \backslash
16770 wr
16771 \end_layout
16772
16773 \end_inset
16774 </cell>
16775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16776 \begin_inset Text
16777
16778 \begin_layout Plain Layout
16779 \begin_inset Formula $\wr$
16780 \end_inset
16781
16782
16783 \end_layout
16784
16785 \end_inset
16786 </cell>
16787 </row>
16788 <row>
16789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16790 \begin_inset Text
16791
16792 \begin_layout Plain Layout
16793
16794 \backslash
16795 bigcirc
16796 \end_layout
16797
16798 \end_inset
16799 </cell>
16800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16801 \begin_inset Text
16802
16803 \begin_layout Plain Layout
16804 \begin_inset Formula $\bigcirc$
16805 \end_inset
16806
16807
16808 \end_layout
16809
16810 \end_inset
16811 </cell>
16812 </row>
16813 <row>
16814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16815 \begin_inset Text
16816
16817 \begin_layout Plain Layout
16818
16819 \backslash
16820 wedge
16821 \end_layout
16822
16823 \end_inset
16824 </cell>
16825 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16826 \begin_inset Text
16827
16828 \begin_layout Plain Layout
16829 \begin_inset Formula $\wedge$
16830 \end_inset
16831
16832
16833 \end_layout
16834
16835 \end_inset
16836 </cell>
16837 </row>
16838 <row>
16839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16840 \begin_inset Text
16841
16842 \begin_layout Plain Layout
16843
16844 \backslash
16845 vee
16846 \end_layout
16847
16848 \end_inset
16849 </cell>
16850 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16851 \begin_inset Text
16852
16853 \begin_layout Plain Layout
16854 \begin_inset Formula $\vee$
16855 \end_inset
16856
16857
16858 \end_layout
16859
16860 \end_inset
16861 </cell>
16862 </row>
16863 </lyxtabular>
16864
16865 \end_inset
16866
16867
16868 \begin_inset space \hfill{}
16869 \end_inset
16870
16871
16872 \begin_inset Tabular
16873 <lyxtabular version="3" rows="13" columns="2">
16874 <features tabularvalignment="middle">
16875 <column alignment="center" valignment="top" width="0pt">
16876 <column alignment="center" valignment="top" width="0pt">
16877 <row>
16878 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16879 \begin_inset Text
16880
16881 \begin_layout Plain Layout
16882 コマンド
16883 \end_layout
16884
16885 \end_inset
16886 </cell>
16887 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16888 \begin_inset Text
16889
16890 \begin_layout Plain Layout
16891 出力
16892 \end_layout
16893
16894 \end_inset
16895 </cell>
16896 </row>
16897 <row>
16898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16899 \begin_inset Text
16900
16901 \begin_layout Plain Layout
16902
16903 \backslash
16904 oplus
16905 \end_layout
16906
16907 \end_inset
16908 </cell>
16909 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16910 \begin_inset Text
16911
16912 \begin_layout Plain Layout
16913 \begin_inset Formula $\oplus$
16914 \end_inset
16915
16916
16917 \end_layout
16918
16919 \end_inset
16920 </cell>
16921 </row>
16922 <row>
16923 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16924 \begin_inset Text
16925
16926 \begin_layout Plain Layout
16927
16928 \backslash
16929 ominus
16930 \end_layout
16931
16932 \end_inset
16933 </cell>
16934 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16935 \begin_inset Text
16936
16937 \begin_layout Plain Layout
16938 \begin_inset Formula $\ominus$
16939 \end_inset
16940
16941
16942 \end_layout
16943
16944 \end_inset
16945 </cell>
16946 </row>
16947 <row>
16948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16949 \begin_inset Text
16950
16951 \begin_layout Plain Layout
16952
16953 \backslash
16954 otimes
16955 \end_layout
16956
16957 \end_inset
16958 </cell>
16959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16960 \begin_inset Text
16961
16962 \begin_layout Plain Layout
16963 \begin_inset Formula $\otimes$
16964 \end_inset
16965
16966
16967 \end_layout
16968
16969 \end_inset
16970 </cell>
16971 </row>
16972 <row>
16973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16974 \begin_inset Text
16975
16976 \begin_layout Plain Layout
16977
16978 \backslash
16979 oslash
16980 \end_layout
16981
16982 \end_inset
16983 </cell>
16984 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16985 \begin_inset Text
16986
16987 \begin_layout Plain Layout
16988 \begin_inset Formula $\oslash$
16989 \end_inset
16990
16991
16992 \end_layout
16993
16994 \end_inset
16995 </cell>
16996 </row>
16997 <row>
16998 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16999 \begin_inset Text
17000
17001 \begin_layout Plain Layout
17002
17003 \backslash
17004 odot
17005 \end_layout
17006
17007 \end_inset
17008 </cell>
17009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17010 \begin_inset Text
17011
17012 \begin_layout Plain Layout
17013 \begin_inset Formula $\odot$
17014 \end_inset
17015
17016
17017 \end_layout
17018
17019 \end_inset
17020 </cell>
17021 </row>
17022 <row>
17023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17024 \begin_inset Text
17025
17026 \begin_layout Plain Layout
17027
17028 \backslash
17029 amalg
17030 \end_layout
17031
17032 \end_inset
17033 </cell>
17034 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17035 \begin_inset Text
17036
17037 \begin_layout Plain Layout
17038 \begin_inset Formula $\amalg$
17039 \end_inset
17040
17041
17042 \end_layout
17043
17044 \end_inset
17045 </cell>
17046 </row>
17047 <row>
17048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17049 \begin_inset Text
17050
17051 \begin_layout Plain Layout
17052
17053 \backslash
17054 uplus
17055 \end_layout
17056
17057 \end_inset
17058 </cell>
17059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17060 \begin_inset Text
17061
17062 \begin_layout Plain Layout
17063 \begin_inset Formula $\uplus$
17064 \end_inset
17065
17066
17067 \end_layout
17068
17069 \end_inset
17070 </cell>
17071 </row>
17072 <row>
17073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17074 \begin_inset Text
17075
17076 \begin_layout Plain Layout
17077
17078 \backslash
17079 setminus
17080 \end_layout
17081
17082 \end_inset
17083 </cell>
17084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17085 \begin_inset Text
17086
17087 \begin_layout Plain Layout
17088 \begin_inset Formula $\setminus$
17089 \end_inset
17090
17091
17092 \end_layout
17093
17094 \end_inset
17095 </cell>
17096 </row>
17097 <row>
17098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17099 \begin_inset Text
17100
17101 \begin_layout Plain Layout
17102
17103 \backslash
17104 sqcap
17105 \end_layout
17106
17107 \end_inset
17108 </cell>
17109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17110 \begin_inset Text
17111
17112 \begin_layout Plain Layout
17113 \begin_inset Formula $\sqcap$
17114 \end_inset
17115
17116
17117 \end_layout
17118
17119 \end_inset
17120 </cell>
17121 </row>
17122 <row>
17123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17124 \begin_inset Text
17125
17126 \begin_layout Plain Layout
17127
17128 \backslash
17129 sqcup
17130 \end_layout
17131
17132 \end_inset
17133 </cell>
17134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17135 \begin_inset Text
17136
17137 \begin_layout Plain Layout
17138 \begin_inset Formula $\sqcup$
17139 \end_inset
17140
17141
17142 \end_layout
17143
17144 \end_inset
17145 </cell>
17146 </row>
17147 <row>
17148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17149 \begin_inset Text
17150
17151 \begin_layout Plain Layout
17152
17153 \backslash
17154 triangleleft
17155 \end_layout
17156
17157 \end_inset
17158 </cell>
17159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17160 \begin_inset Text
17161
17162 \begin_layout Plain Layout
17163 \begin_inset Formula $\triangleleft$
17164 \end_inset
17165
17166
17167 \end_layout
17168
17169 \end_inset
17170 </cell>
17171 </row>
17172 <row>
17173 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17174 \begin_inset Text
17175
17176 \begin_layout Plain Layout
17177
17178 \backslash
17179 triangleright
17180 \end_layout
17181
17182 \end_inset
17183 </cell>
17184 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17185 \begin_inset Text
17186
17187 \begin_layout Plain Layout
17188 \begin_inset Formula $\triangleright$
17189 \end_inset
17190
17191
17192 \end_layout
17193
17194 \end_inset
17195 </cell>
17196 </row>
17197 </lyxtabular>
17198
17199 \end_inset
17200
17201
17202 \begin_inset space \hfill{}
17203 \end_inset
17204
17205
17206 \end_layout
17207
17208 \begin_layout Standard
17209 二項演算子は、すべて数式ツールバーボタンの
17210 \begin_inset Graphics
17211         filename ../../images/math/pm.png
17212         scale 85
17213
17214 \end_inset
17215
17216 から挿入することもできます。
17217 \end_layout
17218
17219 \begin_layout Standard
17220 ラプラス演算子を組版するには、
17221 \series bold
17222
17223 \backslash
17224 bigtriangleup
17225 \series default
17226 以外に、
17227 \series bold
17228
17229 \backslash
17230 Delta
17231 \series default
17232
17233 \series bold
17234
17235 \backslash
17236 nabla
17237 \series default
17238 ^
17239 \series bold
17240 2
17241 \series default
17242
17243 \begin_inset Formula $\nabla^{2}$
17244 \end_inset
17245
17246 )を使用することもできます。
17247 \end_layout
17248
17249 \begin_layout Standard
17250
17251 \family sans
17252 挿入\SpecialChar \menuseparator
17253 特殊文字
17254 \family default
17255 メニューの
17256 \family sans
17257 メニュー区切り
17258 \family default
17259 で入力される文字は、
17260 \series bold
17261
17262 \backslash
17263 triangleright
17264 \series default
17265 演算子です。
17266 \end_layout
17267
17268 \begin_layout Subsection
17269 自己定義演算子
17270 \begin_inset CommandInset label
17271 LatexCommand label
17272 name "sub:自己定義演算子"
17273
17274 \end_inset
17275
17276
17277 \begin_inset Index idx
17278 status collapsed
17279
17280 \begin_layout Plain Layout
17281 えんざんし@演算子 ! じこていぎ@自己定義
17282 \end_layout
17283
17284 \end_inset
17285
17286
17287 \end_layout
17288
17289 \begin_layout Standard
17290 LaTeXプリアンブルで
17291 \series bold
17292
17293 \backslash
17294 DeclareMathOperator
17295 \series default
17296
17297 \begin_inset Index idx
17298 status collapsed
17299
17300 \begin_layout Plain Layout
17301 こまんど@コマンド ! D ! 
17302 \backslash
17303 dbinom@
17304 \backslash
17305 DeclareMathOperator
17306 \end_layout
17307
17308 \end_inset
17309
17310 コマンドを使用すると、自製演算子を定義することができます。このコマンドの書式は
17311 \end_layout
17312
17313 \begin_layout Standard
17314
17315 \series bold
17316
17317 \backslash
17318 DeclareMathOperator{新規コマンド}{表示}
17319 \end_layout
17320
17321 \begin_layout Standard
17322 です。「表示」は、出力での演算子の表示され方を定義する文字や記号です。大演算子を定義するには、コマンドの後に「*」を置きます。自己定義の大演算子は、すべて第
17323 \begin_inset CommandInset ref
17324 LatexCommand ref
17325 reference "sub:演算子の範囲"
17326
17327 \end_inset
17328
17329 節で述べられた範囲を指定することができます。
17330 \end_layout
17331
17332 \begin_layout Standard
17333 たとえば、以下のようなLaTeXプリアンブル行
17334 \end_layout
17335
17336 \begin_layout Standard
17337
17338 \series bold
17339
17340 \backslash
17341 DeclareMathOperator*{
17342 \backslash
17343 Lozenge}{
17344 \backslash
17345 blacklozenge}
17346 \end_layout
17347
17348 \begin_layout Standard
17349 は、第
17350 \begin_inset CommandInset ref
17351 LatexCommand ref
17352 reference "sub:その他の記号"
17353
17354 \end_inset
17355
17356 節にある菱形記号を使った大演算子を挿入する、以下のようなコマンド
17357 \series bold
17358
17359 \backslash
17360 Lozenge
17361 \series default
17362 を定義します。
17363 \begin_inset Formula \[
17364 \Lozenge_{n=1}^{\infty}\]
17365
17366 \end_inset
17367
17368 上記の数式を作るコマンドは、
17369 \series bold
17370
17371 \backslash
17372 Lozenge
17373 \series default
17374 ^
17375 \series bold
17376
17377 \backslash
17378 infty
17379 \begin_inset Formula $\to$
17380 \end_inset
17381
17382 _n=1
17383 \series default
17384 です。
17385 \end_layout
17386
17387 \begin_layout Standard
17388 \begin_inset VSpace bigskip
17389 \end_inset
17390
17391 自己定義演算子を、同一文書内で複数回用いない時には、以下の書式を持つ
17392 \series bold
17393
17394 \backslash
17395 mathop
17396 \series default
17397
17398 \begin_inset Index idx
17399 status collapsed
17400
17401 \begin_layout Plain Layout
17402 こまんど@コマンド ! M ! 
17403 \backslash
17404 mathop
17405 \end_layout
17406
17407 \end_inset
17408
17409 コマンドおよび
17410 \series bold
17411
17412 \backslash
17413 mathbin
17414 \series default
17415
17416 \begin_inset Index idx
17417 status collapsed
17418
17419 \begin_layout Plain Layout
17420 こまんど@コマンド ! M ! 
17421 \backslash
17422 mathbin
17423 \end_layout
17424
17425 \end_inset
17426
17427 コマンドを用いて定義を行うこともできます。
17428 \end_layout
17429
17430 \begin_layout Standard
17431 (書式)
17432 \series bold
17433
17434 \backslash
17435 mathop{表示}
17436 \series default
17437 および
17438 \series bold
17439
17440 \backslash
17441 mathbin{表示}
17442 \end_layout
17443
17444 \begin_layout Standard
17445
17446 \series bold
17447
17448 \backslash
17449 mathop
17450 \series default
17451 は大演算子を定義し、
17452 \series bold
17453
17454 \backslash
17455 mathbin
17456 \series default
17457 は二項演算子を定義します。
17458 \end_layout
17459
17460 \begin_layout Standard
17461 たとえば
17462 \series bold
17463
17464 \backslash
17465 mathop
17466 \series default
17467 は、以下のように、複数の演算子に共通の範囲指定を行うのに用いることができます。
17468 \end_layout
17469
17470 \begin_layout Standard
17471 \begin_inset Formula \[
17472 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17473
17474 \end_inset
17475
17476
17477 \end_layout
17478
17479 \begin_layout Standard
17480 上記の数式では
17481 \begin_inset Newline newline
17482 \end_inset
17483
17484
17485 \series bold
17486
17487 \backslash
17488 mathop{
17489 \backslash
17490 sum
17491 \backslash
17492 negmedspace
17493 \backslash
17494 sum
17495 \series default
17496
17497 \begin_inset ERT
17498 status collapsed
17499
17500 \begin_layout Plain Layout
17501
17502
17503 \backslash
17504 spce 
17505 \end_layout
17506
17507 \end_inset
17508
17509
17510 \series bold
17511
17512 \begin_inset Formula $\to$
17513 \end_inset
17514
17515 ^N
17516 \series default
17517
17518 \begin_inset ERT
17519 status collapsed
17520
17521 \begin_layout Plain Layout
17522
17523
17524 \backslash
17525 spce 
17526 \end_layout
17527
17528 \end_inset
17529
17530
17531 \series bold
17532 _i,j=1
17533 \begin_inset Newline newline
17534 \end_inset
17535
17536
17537 \series default
17538 というコマンドを用いています。
17539 \end_layout
17540
17541 \begin_layout Section
17542 書体
17543 \begin_inset Index idx
17544 status collapsed
17545
17546 \begin_layout Plain Layout
17547 しょたい@書体
17548 \end_layout
17549
17550 \end_inset
17551
17552
17553 \begin_inset Index idx
17554 status collapsed
17555
17556 \begin_layout Plain Layout
17557 ふぉんと@フォント | see
17558 \begin_inset ERT
17559 status collapsed
17560
17561 \begin_layout Plain Layout
17562
17563 {
17564 \end_layout
17565
17566 \end_inset
17567
17568 書体
17569 \begin_inset ERT
17570 status collapsed
17571
17572 \begin_layout Plain Layout
17573
17574 }
17575 \end_layout
17576
17577 \end_inset
17578
17579
17580 \end_layout
17581
17582 \end_inset
17583
17584
17585 \end_layout
17586
17587 \begin_layout Subsection
17588 書体様式
17589 \begin_inset CommandInset label
17590 LatexCommand label
17591 name "sub:書体様式"
17592
17593 \end_inset
17594
17595
17596 \begin_inset Index idx
17597 status collapsed
17598
17599 \begin_layout Plain Layout
17600 しょたい@書体 ! ようしき@様式
17601 \end_layout
17602
17603 \end_inset
17604
17605
17606 \end_layout
17607
17608 \begin_layout Standard
17609 数式中のラテン文字は、以下の書体様式のうちいずれかに設定することができます。
17610 \begin_inset VSpace -2mm
17611 \end_inset
17612
17613
17614 \end_layout
17615
17616 \begin_layout Standard
17617 \align center
17618 \begin_inset Tabular
17619 <lyxtabular version="3" rows="7" columns="3">
17620 <features tabularvalignment="middle">
17621 <column alignment="center" valignment="top" width="0">
17622 <column alignment="center" valignment="top" width="0">
17623 <column alignment="center" valignment="top" width="0">
17624 <row>
17625 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17626 \begin_inset Text
17627
17628 \begin_layout Plain Layout
17629 コマンド
17630 \end_layout
17631
17632 \end_inset
17633 </cell>
17634 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17635 \begin_inset Text
17636
17637 \begin_layout Plain Layout
17638 出力
17639 \end_layout
17640
17641 \end_inset
17642 </cell>
17643 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17644 \begin_inset Text
17645
17646 \begin_layout Plain Layout
17647 短絡キー
17648 \end_layout
17649
17650 \end_inset
17651 </cell>
17652 </row>
17653 <row>
17654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17655 \begin_inset Text
17656
17657 \begin_layout Plain Layout
17658
17659 \backslash
17660 mathbb
17661 \series bold
17662
17663 \begin_inset ERT
17664 status collapsed
17665
17666 \begin_layout Plain Layout
17667
17668
17669 \backslash
17670 spce 
17671 \end_layout
17672
17673 \end_inset
17674
17675
17676 \series default
17677 ABC
17678 \end_layout
17679
17680 \end_inset
17681 </cell>
17682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17683 \begin_inset Text
17684
17685 \begin_layout Plain Layout
17686 \begin_inset Formula $\mathbb{ABC}$
17687 \end_inset
17688
17689
17690 \end_layout
17691
17692 \end_inset
17693 </cell>
17694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17695 \begin_inset Text
17696
17697 \begin_layout Plain Layout
17698 \begin_inset Info
17699 type  "shortcut"
17700 arg   "font-noun"
17701 \end_inset
17702
17703
17704 \end_layout
17705
17706 \end_inset
17707 </cell>
17708 </row>
17709 <row>
17710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17711 \begin_inset Text
17712
17713 \begin_layout Plain Layout
17714
17715 \backslash
17716 mathbf
17717 \series bold
17718
17719 \begin_inset ERT
17720 status collapsed
17721
17722 \begin_layout Plain Layout
17723
17724
17725 \backslash
17726 spce 
17727 \end_layout
17728
17729 \end_inset
17730
17731
17732 \series default
17733 AbC
17734 \end_layout
17735
17736 \end_inset
17737 </cell>
17738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17739 \begin_inset Text
17740
17741 \begin_layout Plain Layout
17742 \begin_inset Formula $\mathbf{AbC}$
17743 \end_inset
17744
17745
17746 \end_layout
17747
17748 \end_inset
17749 </cell>
17750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17751 \begin_inset Text
17752
17753 \begin_layout Plain Layout
17754 \begin_inset Info
17755 type  "shortcut"
17756 arg   "font-bold"
17757 \end_inset
17758
17759
17760 \end_layout
17761
17762 \end_inset
17763 </cell>
17764 </row>
17765 <row>
17766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17767 \begin_inset Text
17768
17769 \begin_layout Plain Layout
17770
17771 \backslash
17772 boldsymbol
17773 \series bold
17774
17775 \begin_inset ERT
17776 status collapsed
17777
17778 \begin_layout Plain Layout
17779
17780
17781 \backslash
17782 spce 
17783 \end_layout
17784
17785 \end_inset
17786
17787
17788 \series default
17789 AbC
17790 \end_layout
17791
17792 \end_inset
17793 </cell>
17794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17795 \begin_inset Text
17796
17797 \begin_layout Plain Layout
17798 \begin_inset Formula $\boldsymbol{AbC}$
17799 \end_inset
17800
17801
17802 \end_layout
17803
17804 \end_inset
17805 </cell>
17806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17807 \begin_inset Text
17808
17809 \begin_layout Plain Layout
17810 \begin_inset Info
17811 type  "shortcuts"
17812 arg   "font-boldsymbol"
17813 \end_inset
17814
17815
17816 \end_layout
17817
17818 \end_inset
17819 </cell>
17820 </row>
17821 <row>
17822 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17823 \begin_inset Text
17824
17825 \begin_layout Plain Layout
17826
17827 \backslash
17828 mathcal
17829 \series bold
17830
17831 \begin_inset ERT
17832 status collapsed
17833
17834 \begin_layout Plain Layout
17835
17836
17837 \backslash
17838 spce 
17839 \end_layout
17840
17841 \end_inset
17842
17843
17844 \series default
17845 ABC
17846 \end_layout
17847
17848 \end_inset
17849 </cell>
17850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17851 \begin_inset Text
17852
17853 \begin_layout Plain Layout
17854 \begin_inset Formula $\mathcal{ABC}$
17855 \end_inset
17856
17857
17858 \end_layout
17859
17860 \end_inset
17861 </cell>
17862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17863 \begin_inset Text
17864
17865 \begin_layout Plain Layout
17866 \begin_inset Info
17867 type  "shortcut"
17868 arg   "font-emph"
17869 \end_inset
17870
17871
17872 \end_layout
17873
17874 \end_inset
17875 </cell>
17876 </row>
17877 <row>
17878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17879 \begin_inset Text
17880
17881 \begin_layout Plain Layout
17882
17883 \backslash
17884 mathfrak
17885 \series bold
17886
17887 \begin_inset ERT
17888 status collapsed
17889
17890 \begin_layout Plain Layout
17891
17892
17893 \backslash
17894 spce 
17895 \end_layout
17896
17897 \end_inset
17898
17899
17900 \series default
17901 AbC
17902 \end_layout
17903
17904 \end_inset
17905 </cell>
17906 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17907 \begin_inset Text
17908
17909 \begin_layout Plain Layout
17910 \begin_inset Formula $\mathfrak{AbC}$
17911 \end_inset
17912
17913
17914 \end_layout
17915
17916 \end_inset
17917 </cell>
17918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17919 \begin_inset Text
17920
17921 \begin_layout Plain Layout
17922 -
17923 \end_layout
17924
17925 \end_inset
17926 </cell>
17927 </row>
17928 <row>
17929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17930 \begin_inset Text
17931
17932 \begin_layout Plain Layout
17933
17934 \backslash
17935 mathscr
17936 \series bold
17937
17938 \begin_inset ERT
17939 status collapsed
17940
17941 \begin_layout Plain Layout
17942
17943
17944 \backslash
17945 spce 
17946 \end_layout
17947
17948 \end_inset
17949
17950
17951 \series default
17952 AbC
17953 \end_layout
17954
17955 \end_inset
17956 </cell>
17957 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17958 \begin_inset Text
17959
17960 \begin_layout Plain Layout
17961 \begin_inset Formula $\mathscr{AbC}$
17962 \end_inset
17963
17964
17965 \end_layout
17966
17967 \end_inset
17968 </cell>
17969 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17970 \begin_inset Text
17971
17972 \begin_layout Plain Layout
17973 -
17974 \end_layout
17975
17976 \end_inset
17977 </cell>
17978 </row>
17979 </lyxtabular>
17980
17981 \end_inset
17982
17983
17984 \end_layout
17985
17986 \begin_layout Standard
17987 \align center
17988 \begin_inset Tabular
17989 <lyxtabular version="3" rows="5" columns="3">
17990 <features tabularvalignment="middle">
17991 <column alignment="center" valignment="top" width="0">
17992 <column alignment="center" valignment="top" width="0">
17993 <column alignment="center" valignment="top" width="0">
17994 <row>
17995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17996 \begin_inset Text
17997
17998 \begin_layout Plain Layout
17999 コマンド
18000 \end_layout
18001
18002 \end_inset
18003 </cell>
18004 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18005 \begin_inset Text
18006
18007 \begin_layout Plain Layout
18008 出力
18009 \end_layout
18010
18011 \end_inset
18012 </cell>
18013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18014 \begin_inset Text
18015
18016 \begin_layout Plain Layout
18017 短絡キー
18018 \end_layout
18019
18020 \end_inset
18021 </cell>
18022 </row>
18023 <row>
18024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18025 \begin_inset Text
18026
18027 \begin_layout Plain Layout
18028
18029 \backslash
18030 mathit
18031 \series bold
18032
18033 \begin_inset ERT
18034 status collapsed
18035
18036 \begin_layout Plain Layout
18037
18038
18039 \backslash
18040 spce 
18041 \end_layout
18042
18043 \end_inset
18044
18045
18046 \series default
18047 AbC
18048 \end_layout
18049
18050 \end_inset
18051 </cell>
18052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18053 \begin_inset Text
18054
18055 \begin_layout Plain Layout
18056 \begin_inset Formula $\mathit{AbC}$
18057 \end_inset
18058
18059
18060 \end_layout
18061
18062 \end_inset
18063 </cell>
18064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18065 \begin_inset Text
18066
18067 \begin_layout Plain Layout
18068 -
18069 \end_layout
18070
18071 \end_inset
18072 </cell>
18073 </row>
18074 <row>
18075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18076 \begin_inset Text
18077
18078 \begin_layout Plain Layout
18079
18080 \backslash
18081 mathrm
18082 \series bold
18083
18084 \begin_inset ERT
18085 status collapsed
18086
18087 \begin_layout Plain Layout
18088
18089
18090 \backslash
18091 spce 
18092 \end_layout
18093
18094 \end_inset
18095
18096
18097 \series default
18098 AbC
18099 \end_layout
18100
18101 \end_inset
18102 </cell>
18103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18104 \begin_inset Text
18105
18106 \begin_layout Plain Layout
18107 \begin_inset Formula $\mathrm{AbC}$
18108 \end_inset
18109
18110
18111 \end_layout
18112
18113 \end_inset
18114 </cell>
18115 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18116 \begin_inset Text
18117
18118 \begin_layout Plain Layout
18119 \begin_inset Info
18120 type  "shortcut"
18121 arg   "font-roman"
18122 \end_inset
18123
18124
18125 \end_layout
18126
18127 \end_inset
18128 </cell>
18129 </row>
18130 <row>
18131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18132 \begin_inset Text
18133
18134 \begin_layout Plain Layout
18135
18136 \backslash
18137 mathsf
18138 \series bold
18139
18140 \begin_inset ERT
18141 status collapsed
18142
18143 \begin_layout Plain Layout
18144
18145
18146 \backslash
18147 spce 
18148 \end_layout
18149
18150 \end_inset
18151
18152
18153 \series default
18154 AbC
18155 \end_layout
18156
18157 \end_inset
18158 </cell>
18159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18160 \begin_inset Text
18161
18162 \begin_layout Plain Layout
18163 \begin_inset Formula $\mathsf{AbC}$
18164 \end_inset
18165
18166
18167 \end_layout
18168
18169 \end_inset
18170 </cell>
18171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18172 \begin_inset Text
18173
18174 \begin_layout Plain Layout
18175 \begin_inset Info
18176 type  "shortcut"
18177 arg   "font-sans"
18178 \end_inset
18179
18180
18181 \end_layout
18182
18183 \end_inset
18184 </cell>
18185 </row>
18186 <row>
18187 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18188 \begin_inset Text
18189
18190 \begin_layout Plain Layout
18191
18192 \backslash
18193 mathtt
18194 \series bold
18195
18196 \begin_inset ERT
18197 status collapsed
18198
18199 \begin_layout Plain Layout
18200
18201
18202 \backslash
18203 spce 
18204 \end_layout
18205
18206 \end_inset
18207
18208
18209 \series default
18210 AbC
18211 \end_layout
18212
18213 \end_inset
18214 </cell>
18215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18216 \begin_inset Text
18217
18218 \begin_layout Plain Layout
18219 \begin_inset Formula $\mathtt{AbC}$
18220 \end_inset
18221
18222
18223 \end_layout
18224
18225 \end_inset
18226 </cell>
18227 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18228 \begin_inset Text
18229
18230 \begin_layout Plain Layout
18231 \begin_inset Info
18232 type  "shortcut"
18233 arg   "font-typewriter"
18234 \end_inset
18235
18236
18237 \end_layout
18238
18239 \end_inset
18240 </cell>
18241 </row>
18242 </lyxtabular>
18243
18244 \end_inset
18245
18246
18247 \end_layout
18248
18249 \begin_layout Standard
18250 \begin_inset Note Greyedout
18251 status open
18252
18253 \begin_layout Plain Layout
18254
18255 \series bold
18256 (注意)
18257 \backslash
18258 mathbb
18259 \series default
18260 様式と
18261 \series bold
18262
18263 \backslash
18264 mathcal
18265 \series default
18266 様式は、大文字にのみ使用することができます。
18267 \end_layout
18268
18269 \end_inset
18270
18271
18272 \end_layout
18273
18274 \begin_layout Standard
18275 既定では、
18276 \series bold
18277
18278 \backslash
18279 mathnormal
18280 \series default
18281 様式に設定されています。
18282 \end_layout
18283
18284 \begin_layout Standard
18285 書体様式コマンドは、以下のように数式構成要素内の文字に対しても機能します。
18286 \begin_inset Formula \[
18287 \mathfrak{A=\frac{b}{C}}\]
18288
18289 \end_inset
18290
18291
18292 \end_layout
18293
18294 \begin_layout Standard
18295 数式テキストに含まれる文字に対しては、数式書体様式は反映せず、
18296 \series bold
18297
18298 \backslash
18299 textrm
18300 \series default
18301 様式で表示されます。数式テキストの様式を文字様式ダイアログで設定することができないのは、LyXのバグです
18302 \begin_inset Foot
18303 status collapsed
18304
18305 \begin_layout Plain Layout
18306 \begin_inset CommandInset href
18307 LatexCommand href
18308 name "LyX-bug #4629"
18309 target "http://www.lyx.org/trac/ticket/4629"
18310
18311 \end_inset
18312
18313
18314 \end_layout
18315
18316 \end_inset
18317
18318
18319 \end_layout
18320
18321 \begin_layout Standard
18322 書体様式コマンドの代わりに、
18323 \family sans
18324 編集\SpecialChar \menuseparator
18325 数学\SpecialChar \menuseparator
18326 文字様式
18327 \family default
18328 ダイアログや、
18329 \begin_inset Graphics
18330         filename ../../images/math/font.png
18331         scale 85
18332
18333 \end_inset
18334
18335 を使用することもできます。
18336 \end_layout
18337
18338 \begin_layout Subsection
18339 ボールド体の数式
18340 \begin_inset CommandInset label
18341 LatexCommand label
18342 name "sub:ボールド体の数式"
18343
18344 \end_inset
18345
18346
18347 \begin_inset Index idx
18348 status collapsed
18349
18350 \begin_layout Plain Layout
18351 すうしき@数式 ! ぼーるどたい@ボールド体
18352 \end_layout
18353
18354 \end_inset
18355
18356
18357 \end_layout
18358
18359 \begin_layout Standard
18360 数式全体をボールド体にしようとすると、前節の
18361 \series bold
18362
18363 \backslash
18364 mathbf
18365 \series default
18366 コマンドは、ギリシャ文字の小文字に対しては機能しないので、使用することができません。さらにこのコマンドは、以下の式のように、ラテン文字をつねにアップライト体に印
18367 字してしまいます。
18368 \end_layout
18369
18370 \begin_layout Standard
18371 \begin_inset Formula \[
18372 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{\textbackslash mathbfを使用した数式}\]
18373
18374 \end_inset
18375
18376
18377 \end_layout
18378
18379 \begin_layout Standard
18380 この数式を正しく表示するには、以下のように、
18381 \series bold
18382
18383 \backslash
18384 boldsymbol
18385 \series default
18386 コマンドを使用します。
18387 \begin_inset Formula \[
18388 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{\textbackslash boldsymbolを使用した数式}}\]
18389
18390 \end_inset
18391
18392 また、数式を
18393 \series bold
18394 boldmath環境
18395 \series default
18396 に設定する方法もあります。この環境は、TeXモードで
18397 \series bold
18398
18399 \backslash
18400 boldmath
18401 \begin_inset Index idx
18402 status collapsed
18403
18404 \begin_layout Plain Layout
18405 こまんど@コマンド ! B ! 
18406 \backslash
18407 boldmath
18408 \end_layout
18409
18410 \end_inset
18411
18412
18413 \series default
18414 コマンドを挿入することによって作ることができます。環境を閉じるには、
18415 \series bold
18416
18417 \backslash
18418 unboldmath
18419 \begin_inset Index idx
18420 status collapsed
18421
18422 \begin_layout Plain Layout
18423 こまんど@コマンド ! U ! 
18424 \backslash
18425 unboldmath
18426 \end_layout
18427
18428 \end_inset
18429
18430
18431 \series default
18432 コマンドをTeXモードで挿入します。
18433 \begin_inset ERT
18434 status collapsed
18435
18436 \begin_layout Plain Layout
18437
18438
18439 \backslash
18440 boldmath 
18441 \end_layout
18442
18443 \end_inset
18444
18445
18446 \begin_inset Formula \[
18447 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{boldmath環境に置いた数式}\]
18448
18449 \end_inset
18450
18451
18452 \begin_inset ERT
18453 status collapsed
18454
18455 \begin_layout Plain Layout
18456
18457
18458 \backslash
18459 unboldmath 
18460 \end_layout
18461
18462 \end_inset
18463
18464
18465 \end_layout
18466
18467 \begin_layout Subsection
18468 色付きの数式
18469 \begin_inset Index idx
18470 status collapsed
18471
18472 \begin_layout Plain Layout
18473 すうしき@数式 ! いろつき@色付き
18474 \end_layout
18475
18476 \end_inset
18477
18478
18479 \end_layout
18480
18481 \begin_layout Standard
18482 数式も、通常の本文と同様、色を付けることができます。数式あるいは数式の一部を選択して、文字様式ダイアログを使用して下さい。下記は、マゼンタ色にした数式です。
18483 \begin_inset Formula \[
18484 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}\]
18485
18486 \end_inset
18487
18488
18489 \end_layout
18490
18491 \begin_layout Standard
18492
18493 \begin_inset CommandInset ref
18494 LatexCommand ref
18495 reference "sub:色付きボックス"
18496
18497 \end_inset
18498
18499 節に述べられているように、自製の色を定義することもできます。自製の色は、以下の書式を持つ
18500 \series bold
18501
18502 \backslash
18503 textcolor
18504 \series default
18505
18506 \begin_inset Index idx
18507 status collapsed
18508
18509 \begin_layout Plain Layout
18510 こまんど@コマンド ! T ! 
18511 \backslash
18512 textcolor
18513 \end_layout
18514
18515 \end_inset
18516
18517 TeXコードコマンドで適用することができます。
18518 \end_layout
18519
18520 \begin_layout Standard
18521
18522 \series bold
18523
18524 \backslash
18525 textcolor{色}{文字ないし数式}
18526 \end_layout
18527
18528 \begin_layout Standard
18529 下記の例は、全体を濃緑にし、一部を赤にしています。
18530 \end_layout
18531
18532 \begin_layout Standard
18533 \begin_inset ERT
18534 status collapsed
18535
18536 \begin_layout Plain Layout
18537
18538
18539 \backslash
18540 textcolor{darkgreen}{
18541 \end_layout
18542
18543 \end_inset
18544
18545
18546 \begin_inset Formula \[
18547 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}\]
18548
18549 \end_inset
18550
18551
18552 \begin_inset ERT
18553 status collapsed
18554
18555 \begin_layout Plain Layout
18556
18557 }
18558 \end_layout
18559
18560 \end_inset
18561
18562
18563 \end_layout
18564
18565 \begin_layout Standard
18566 LyXのバグのため、自製色は数式全体に対してしか使用することができません
18567 \begin_inset Foot
18568 status collapsed
18569
18570 \begin_layout Plain Layout
18571 \begin_inset CommandInset href
18572 LatexCommand href
18573 name "LyX-bug #5269"
18574 target "http://www.lyx.org/trac/ticket/5269"
18575
18576 \end_inset
18577
18578
18579 \end_layout
18580
18581 \end_inset
18582
18583
18584 \end_layout
18585
18586 \begin_layout Subsection
18587 書体寸法
18588 \begin_inset CommandInset label
18589 LatexCommand label
18590 name "sub:書体寸法"
18591
18592 \end_inset
18593
18594
18595 \begin_inset Index idx
18596 status collapsed
18597
18598 \begin_layout Plain Layout
18599 しょたい@書体 ! すんぽう@寸法
18600 \end_layout
18601
18602 \end_inset
18603
18604
18605 \end_layout
18606
18607 \begin_layout Standard
18608 数式内の文字については、本文中の文字同様、以下の書体寸法設定コマンドがあります。
18609 \end_layout
18610
18611 \begin_layout Standard
18612
18613 \series bold
18614
18615 \backslash
18616 Huge
18617 \series default
18618
18619 \series bold
18620
18621 \backslash
18622 huge
18623 \series default
18624
18625 \series bold
18626
18627 \backslash
18628 LARGE
18629 \series default
18630
18631 \series bold
18632
18633 \backslash
18634 Large
18635 \series default
18636
18637 \series bold
18638
18639 \backslash
18640 large
18641 \series default
18642
18643 \series bold
18644
18645 \backslash
18646 normalsize
18647 \series default
18648
18649 \series bold
18650
18651 \backslash
18652 small
18653 \series default
18654 ,
18655 \begin_inset Newline newline
18656 \end_inset
18657
18658
18659 \series bold
18660
18661 \backslash
18662 footnotesize
18663 \series default
18664
18665 \series bold
18666
18667 \backslash
18668 scriptsize
18669 \series default
18670 、および
18671 \series bold
18672
18673 \backslash
18674 tiny
18675 \end_layout
18676
18677 \begin_layout Standard
18678 これらのコマンドによって生成される実際の書体寸法は、文書の書体寸法に依存し、文書の書体寸法が
18679 \series bold
18680
18681 \backslash
18682 normalsize
18683 \series default
18684 コマンドに設定されます。他のコマンドは、
18685 \series bold
18686
18687 \backslash
18688 normalsize
18689 \series default
18690 を基準として拡大ないし縮小されます。しかしながら、書体寸法は一定の値を越えることができないようになっています。たとえば、文書書体寸法が12
18691 \begin_inset space \thinspace{}
18692 \end_inset
18693
18694 ptであるならば、
18695 \series bold
18696
18697 \backslash
18698 Huge
18699 \series default
18700 コマンドは
18701 \series bold
18702
18703 \backslash
18704 huge
18705 \series default
18706 コマンドと同じ大きさに落とされます。
18707 \end_layout
18708
18709 \begin_layout Standard
18710 ある場所以降のすべての数式と本文文字を変更するには、書体寸法コマンドをTeXモードで挿入します。元の書体寸法に戻すには、数式の後にTeXモードで
18711 \series bold
18712
18713 \backslash
18714 normalsize
18715 \series default
18716 コマンドを挿入します。
18717 \end_layout
18718
18719 \begin_layout Standard
18720 \begin_inset Newpage newpage
18721 \end_inset
18722
18723
18724 \end_layout
18725
18726 \begin_layout Standard
18727 数式内では、以下の寸法コマンドを使用して、寸法を変更することができます。
18728 \end_layout
18729
18730 \begin_layout Standard
18731 \noindent
18732 \align center
18733 \begin_inset Tabular
18734 <lyxtabular version="3" rows="5" columns="2">
18735 <features tabularvalignment="middle">
18736 <column alignment="center" valignment="top" width="0">
18737 <column alignment="center" valignment="top" width="0">
18738 <row>
18739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18740 \begin_inset Text
18741
18742 \begin_layout Plain Layout
18743 コマンド
18744 \end_layout
18745
18746 \end_inset
18747 </cell>
18748 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18749 \begin_inset Text
18750
18751 \begin_layout Plain Layout
18752 出力
18753 \begin_inset Note Note
18754 status collapsed
18755
18756 \begin_layout Plain Layout
18757
18758 \series bold
18759
18760 \backslash
18761 raisebox
18762 \series default
18763  はスペーサーとして使用されているだけです。
18764 \end_layout
18765
18766 \end_inset
18767
18768
18769 \end_layout
18770
18771 \end_inset
18772 </cell>
18773 </row>
18774 <row>
18775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18776 \begin_inset Text
18777
18778 \begin_layout Plain Layout
18779
18780 \backslash
18781 displaystyle
18782 \begin_inset Index idx
18783 status collapsed
18784
18785 \begin_layout Plain Layout
18786 こまんど@コマンド ! D ! 
18787 \backslash
18788 displaystyle
18789 \end_layout
18790
18791 \end_inset
18792
18793
18794 \end_layout
18795
18796 \end_inset
18797 </cell>
18798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18799 \begin_inset Text
18800
18801 \begin_layout Plain Layout
18802 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
18803 \end_inset
18804
18805
18806 \end_layout
18807
18808 \end_inset
18809 </cell>
18810 </row>
18811 <row>
18812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18813 \begin_inset Text
18814
18815 \begin_layout Plain Layout
18816
18817 \backslash
18818 textstyle
18819 \end_layout
18820
18821 \end_inset
18822 </cell>
18823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18824 \begin_inset Text
18825
18826 \begin_layout Plain Layout
18827 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
18828 \end_inset
18829
18830
18831 \end_layout
18832
18833 \end_inset
18834 </cell>
18835 </row>
18836 <row>
18837 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18838 \begin_inset Text
18839
18840 \begin_layout Plain Layout
18841
18842 \backslash
18843 scriptstyle
18844 \end_layout
18845
18846 \end_inset
18847 </cell>
18848 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18849 \begin_inset Text
18850
18851 \begin_layout Plain Layout
18852 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
18853 \end_inset
18854
18855
18856 \end_layout
18857
18858 \end_inset
18859 </cell>
18860 </row>
18861 <row>
18862 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18863 \begin_inset Text
18864
18865 \begin_layout Plain Layout
18866
18867 \backslash
18868 scriptscriptstyle
18869 \end_layout
18870
18871 \end_inset
18872 </cell>
18873 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18874 \begin_inset Text
18875
18876 \begin_layout Plain Layout
18877 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
18878 \end_inset
18879
18880
18881 \end_layout
18882
18883 \end_inset
18884 </cell>
18885 </row>
18886 </lyxtabular>
18887
18888 \end_inset
18889
18890
18891 \end_layout
18892
18893 \begin_layout Standard
18894 これらのコマンドを入力すると、青いボックスが現れるので、そこに数式のパーツを入れることができます。
18895 \end_layout
18896
18897 \begin_layout Standard
18898 フォント寸法を変更するにはもう一つの方法がありますが、これは記号と数式内テキストのみに使うことができます。これを使うには、書体寸法コマンドを数式テキスト内に挿入
18899 します。数式テキストの終わりか、別の書体寸法コマンドが現れるまでの文字すべてが、選択した寸法になります。以下に二つの例を挙げます。
18900 \begin_inset VSpace -2mm
18901 \end_inset
18902
18903
18904 \end_layout
18905
18906 \begin_layout Standard
18907 \begin_inset ERT
18908 status collapsed
18909
18910 \begin_layout Plain Layout
18911
18912
18913 \backslash
18914 huge 
18915 \end_layout
18916
18917 \end_inset
18918
18919
18920 \begin_inset Formula \[
18921 A=\frac{B}{c}\cdot\maltese\]
18922
18923 \end_inset
18924
18925
18926 \begin_inset Formula \[
18927 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
18928
18929 \end_inset
18930
18931
18932 \begin_inset ERT
18933 status collapsed
18934
18935 \begin_layout Plain Layout
18936
18937
18938 \backslash
18939 normalsize 
18940 \end_layout
18941
18942 \end_inset
18943
18944
18945 \end_layout
18946
18947 \begin_layout Standard
18948 \begin_inset VSpace medskip
18949 \end_inset
18950
18951 二つの式の前には、
18952 \series bold
18953
18954 \backslash
18955 huge
18956 \series default
18957 コマンドが挿入されています。二つ目の数式を入力するコマンドは、
18958 \begin_inset Newline newline
18959 \end_inset
18960
18961
18962 \series bold
18963
18964 \backslash
18965 maltese
18966 \begin_inset ERT
18967 status collapsed
18968
18969 \begin_layout Plain Layout
18970
18971
18972 \backslash
18973 spce 
18974 \end_layout
18975
18976 \end_inset
18977
18978 A Alt+M M 
18979 \backslash
18980 Large
18981 \begin_inset ERT
18982 status collapsed
18983
18984 \begin_layout Plain Layout
18985
18986
18987 \backslash
18988 spce 
18989 \end_layout
18990
18991 \end_inset
18992
18993
18994 \backslash
18995 maltese
18996 \begin_inset ERT
18997 status collapsed
18998
18999 \begin_layout Plain Layout
19000
19001
19002 \backslash
19003 spce 
19004 \end_layout
19005
19006 \end_inset
19007
19008
19009 \backslash
19010 textit
19011 \begin_inset ERT
19012 status collapsed
19013
19014 \begin_layout Plain Layout
19015
19016
19017 \backslash
19018 spce 
19019 \end_layout
19020
19021 \end_inset
19022
19023 A
19024 \begin_inset Formula $\to$
19025 \end_inset
19026
19027
19028 \begin_inset Formula $\to$
19029 \end_inset
19030
19031
19032 \begin_inset Newline newline
19033 \end_inset
19034
19035
19036 \begin_inset space \hspace*{}
19037 \length 1cm
19038 \end_inset
19039
19040 Alt+M
19041 \series default
19042  
19043 \series bold
19044
19045 \backslash
19046 tiny
19047 \begin_inset ERT
19048 status collapsed
19049
19050 \begin_layout Plain Layout
19051
19052
19053 \backslash
19054 spce 
19055 \end_layout
19056
19057 \end_inset
19058
19059
19060 \backslash
19061 maltese
19062 \begin_inset ERT
19063 status collapsed
19064
19065 \begin_layout Plain Layout
19066
19067
19068 \backslash
19069 spce 
19070 \end_layout
19071
19072 \end_inset
19073
19074
19075 \backslash
19076 textit
19077 \begin_inset ERT
19078 status collapsed
19079
19080 \begin_layout Plain Layout
19081
19082
19083 \backslash
19084 spce 
19085 \end_layout
19086
19087 \end_inset
19088
19089 A
19090 \begin_inset Newline newline
19091 \end_inset
19092
19093
19094 \series default
19095 のようになります。
19096 \end_layout
19097
19098 \begin_layout Standard
19099 ある記号を別の寸法で表示することができないときには、その記号はつねに既定寸法で表示されます。
19100 \begin_inset Newpage newpage
19101 \end_inset
19102
19103
19104 \end_layout
19105
19106 \begin_layout Section
19107 ギリシャ文字
19108 \begin_inset Index idx
19109 status collapsed
19110
19111 \begin_layout Plain Layout
19112 ぎりしゃもじ@ギリシャ文字
19113 \end_layout
19114
19115 \end_inset
19116
19117
19118 \end_layout
19119
19120 \begin_layout Standard
19121 すべてのギリシャ文字は、ツールバーボタンの
19122 \begin_inset Graphics
19123         filename ../../images/math/alpha.png
19124         scale 85
19125
19126 \end_inset
19127
19128 からでも挿入することができます。
19129 \end_layout
19130
19131 \begin_layout Subsection
19132 小文字
19133 \begin_inset Index idx
19134 status collapsed
19135
19136 \begin_layout Plain Layout
19137 ぎりしゃもじ@ギリシャ文字 ! こもじ@小文字
19138 \end_layout
19139
19140 \end_inset
19141
19142
19143 \end_layout
19144
19145 \begin_layout Standard
19146 \begin_inset space \hfill{}
19147 \end_inset
19148
19149
19150 \begin_inset Tabular
19151 <lyxtabular version="3" rows="11" columns="2">
19152 <features tabularvalignment="middle">
19153 <column alignment="center" valignment="top" width="0pt">
19154 <column alignment="center" valignment="top" width="0pt">
19155 <row>
19156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19157 \begin_inset Text
19158
19159 \begin_layout Plain Layout
19160 コマンド
19161 \end_layout
19162
19163 \end_inset
19164 </cell>
19165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19166 \begin_inset Text
19167
19168 \begin_layout Plain Layout
19169 出力
19170 \end_layout
19171
19172 \end_inset
19173 </cell>
19174 </row>
19175 <row>
19176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19177 \begin_inset Text
19178
19179 \begin_layout Plain Layout
19180
19181 \backslash
19182 alpha
19183 \end_layout
19184
19185 \end_inset
19186 </cell>
19187 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19188 \begin_inset Text
19189
19190 \begin_layout Plain Layout
19191 \begin_inset Formula $\alpha$
19192 \end_inset
19193
19194
19195 \end_layout
19196
19197 \end_inset
19198 </cell>
19199 </row>
19200 <row>
19201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19202 \begin_inset Text
19203
19204 \begin_layout Plain Layout
19205
19206 \backslash
19207 beta
19208 \end_layout
19209
19210 \end_inset
19211 </cell>
19212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19213 \begin_inset Text
19214
19215 \begin_layout Plain Layout
19216 \begin_inset Formula $\beta$
19217 \end_inset
19218
19219
19220 \end_layout
19221
19222 \end_inset
19223 </cell>
19224 </row>
19225 <row>
19226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19227 \begin_inset Text
19228
19229 \begin_layout Plain Layout
19230
19231 \backslash
19232 gamma
19233 \end_layout
19234
19235 \end_inset
19236 </cell>
19237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19238 \begin_inset Text
19239
19240 \begin_layout Plain Layout
19241 \begin_inset Formula $\gamma$
19242 \end_inset
19243
19244
19245 \end_layout
19246
19247 \end_inset
19248 </cell>
19249 </row>
19250 <row>
19251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19252 \begin_inset Text
19253
19254 \begin_layout Plain Layout
19255
19256 \backslash
19257 delta
19258 \end_layout
19259
19260 \end_inset
19261 </cell>
19262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19263 \begin_inset Text
19264
19265 \begin_layout Plain Layout
19266 \begin_inset Formula $\delta$
19267 \end_inset
19268
19269
19270 \end_layout
19271
19272 \end_inset
19273 </cell>
19274 </row>
19275 <row>
19276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19277 \begin_inset Text
19278
19279 \begin_layout Plain Layout
19280
19281 \backslash
19282 epsilon
19283 \end_layout
19284
19285 \end_inset
19286 </cell>
19287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19288 \begin_inset Text
19289
19290 \begin_layout Plain Layout
19291 \begin_inset Formula $\epsilon$
19292 \end_inset
19293
19294
19295 \end_layout
19296
19297 \end_inset
19298 </cell>
19299 </row>
19300 <row>
19301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19302 \begin_inset Text
19303
19304 \begin_layout Plain Layout
19305
19306 \backslash
19307 varepsilon
19308 \end_layout
19309
19310 \end_inset
19311 </cell>
19312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19313 \begin_inset Text
19314
19315 \begin_layout Plain Layout
19316 \begin_inset Formula $\varepsilon$
19317 \end_inset
19318
19319
19320 \end_layout
19321
19322 \end_inset
19323 </cell>
19324 </row>
19325 <row>
19326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19327 \begin_inset Text
19328
19329 \begin_layout Plain Layout
19330
19331 \backslash
19332 zeta
19333 \end_layout
19334
19335 \end_inset
19336 </cell>
19337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19338 \begin_inset Text
19339
19340 \begin_layout Plain Layout
19341 \begin_inset Formula $\zeta$
19342 \end_inset
19343
19344
19345 \end_layout
19346
19347 \end_inset
19348 </cell>
19349 </row>
19350 <row>
19351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19352 \begin_inset Text
19353
19354 \begin_layout Plain Layout
19355
19356 \backslash
19357 eta
19358 \end_layout
19359
19360 \end_inset
19361 </cell>
19362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19363 \begin_inset Text
19364
19365 \begin_layout Plain Layout
19366 \begin_inset Formula $\eta$
19367 \end_inset
19368
19369
19370 \end_layout
19371
19372 \end_inset
19373 </cell>
19374 </row>
19375 <row>
19376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19377 \begin_inset Text
19378
19379 \begin_layout Plain Layout
19380
19381 \backslash
19382 theta
19383 \end_layout
19384
19385 \end_inset
19386 </cell>
19387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19388 \begin_inset Text
19389
19390 \begin_layout Plain Layout
19391 \begin_inset Formula $\theta$
19392 \end_inset
19393
19394
19395 \end_layout
19396
19397 \end_inset
19398 </cell>
19399 </row>
19400 <row>
19401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19402 \begin_inset Text
19403
19404 \begin_layout Plain Layout
19405
19406 \backslash
19407 vartheta
19408 \end_layout
19409
19410 \end_inset
19411 </cell>
19412 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19413 \begin_inset Text
19414
19415 \begin_layout Plain Layout
19416 \begin_inset Formula $\vartheta$
19417 \end_inset
19418
19419
19420 \end_layout
19421
19422 \end_inset
19423 </cell>
19424 </row>
19425 </lyxtabular>
19426
19427 \end_inset
19428
19429
19430 \begin_inset space \hfill{}
19431 \end_inset
19432
19433
19434 \begin_inset Tabular
19435 <lyxtabular version="3" rows="12" columns="2">
19436 <features tabularvalignment="middle">
19437 <column alignment="center" valignment="top" width="0pt">
19438 <column alignment="center" valignment="top" width="0pt">
19439 <row>
19440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19441 \begin_inset Text
19442
19443 \begin_layout Plain Layout
19444 コマンド
19445 \end_layout
19446
19447 \end_inset
19448 </cell>
19449 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19450 \begin_inset Text
19451
19452 \begin_layout Plain Layout
19453 出力
19454 \end_layout
19455
19456 \end_inset
19457 </cell>
19458 </row>
19459 <row>
19460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19461 \begin_inset Text
19462
19463 \begin_layout Plain Layout
19464
19465 \backslash
19466 iota
19467 \end_layout
19468
19469 \end_inset
19470 </cell>
19471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19472 \begin_inset Text
19473
19474 \begin_layout Plain Layout
19475 \begin_inset Formula $\iota$
19476 \end_inset
19477
19478
19479 \end_layout
19480
19481 \end_inset
19482 </cell>
19483 </row>
19484 <row>
19485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19486 \begin_inset Text
19487
19488 \begin_layout Plain Layout
19489
19490 \backslash
19491 kappa
19492 \end_layout
19493
19494 \end_inset
19495 </cell>
19496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19497 \begin_inset Text
19498
19499 \begin_layout Plain Layout
19500 \begin_inset Formula $\kappa$
19501 \end_inset
19502
19503
19504 \end_layout
19505
19506 \end_inset
19507 </cell>
19508 </row>
19509 <row>
19510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19511 \begin_inset Text
19512
19513 \begin_layout Plain Layout
19514
19515 \backslash
19516 varkappa
19517 \end_layout
19518
19519 \end_inset
19520 </cell>
19521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19522 \begin_inset Text
19523
19524 \begin_layout Plain Layout
19525 \begin_inset Formula $\varkappa$
19526 \end_inset
19527
19528
19529 \end_layout
19530
19531 \end_inset
19532 </cell>
19533 </row>
19534 <row>
19535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19536 \begin_inset Text
19537
19538 \begin_layout Plain Layout
19539
19540 \backslash
19541 lambda
19542 \end_layout
19543
19544 \end_inset
19545 </cell>
19546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19547 \begin_inset Text
19548
19549 \begin_layout Plain Layout
19550 \begin_inset Formula $\lambda$
19551 \end_inset
19552
19553
19554 \end_layout
19555
19556 \end_inset
19557 </cell>
19558 </row>
19559 <row>
19560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19561 \begin_inset Text
19562
19563 \begin_layout Plain Layout
19564
19565 \backslash
19566 mu
19567 \end_layout
19568
19569 \end_inset
19570 </cell>
19571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19572 \begin_inset Text
19573
19574 \begin_layout Plain Layout
19575 \begin_inset Formula $\mu$
19576 \end_inset
19577
19578
19579 \end_layout
19580
19581 \end_inset
19582 </cell>
19583 </row>
19584 <row>
19585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19586 \begin_inset Text
19587
19588 \begin_layout Plain Layout
19589
19590 \backslash
19591 nu
19592 \end_layout
19593
19594 \end_inset
19595 </cell>
19596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19597 \begin_inset Text
19598
19599 \begin_layout Plain Layout
19600 \begin_inset Formula $\nu$
19601 \end_inset
19602
19603
19604 \end_layout
19605
19606 \end_inset
19607 </cell>
19608 </row>
19609 <row>
19610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19611 \begin_inset Text
19612
19613 \begin_layout Plain Layout
19614
19615 \backslash
19616 xi
19617 \end_layout
19618
19619 \end_inset
19620 </cell>
19621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19622 \begin_inset Text
19623
19624 \begin_layout Plain Layout
19625 \begin_inset Formula $\xi$
19626 \end_inset
19627
19628
19629 \end_layout
19630
19631 \end_inset
19632 </cell>
19633 </row>
19634 <row>
19635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19636 \begin_inset Text
19637
19638 \begin_layout Plain Layout
19639 o
19640 \end_layout
19641
19642 \end_inset
19643 </cell>
19644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19645 \begin_inset Text
19646
19647 \begin_layout Plain Layout
19648 \begin_inset Formula $o$
19649 \end_inset
19650
19651
19652 \end_layout
19653
19654 \end_inset
19655 </cell>
19656 </row>
19657 <row>
19658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19659 \begin_inset Text
19660
19661 \begin_layout Plain Layout
19662
19663 \backslash
19664 pi
19665 \end_layout
19666
19667 \end_inset
19668 </cell>
19669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19670 \begin_inset Text
19671
19672 \begin_layout Plain Layout
19673 \begin_inset Formula $\pi$
19674 \end_inset
19675
19676
19677 \end_layout
19678
19679 \end_inset
19680 </cell>
19681 </row>
19682 <row>
19683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19684 \begin_inset Text
19685
19686 \begin_layout Plain Layout
19687
19688 \backslash
19689 varpi
19690 \end_layout
19691
19692 \end_inset
19693 </cell>
19694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19695 \begin_inset Text
19696
19697 \begin_layout Plain Layout
19698 \begin_inset Formula $\varpi$
19699 \end_inset
19700
19701
19702 \end_layout
19703
19704 \end_inset
19705 </cell>
19706 </row>
19707 <row>
19708 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19709 \begin_inset Text
19710
19711 \begin_layout Plain Layout
19712
19713 \backslash
19714 rho
19715 \end_layout
19716
19717 \end_inset
19718 </cell>
19719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19720 \begin_inset Text
19721
19722 \begin_layout Plain Layout
19723 \begin_inset Formula $\rho$
19724 \end_inset
19725
19726
19727 \end_layout
19728
19729 \end_inset
19730 </cell>
19731 </row>
19732 </lyxtabular>
19733
19734 \end_inset
19735
19736
19737 \begin_inset space \hfill{}
19738 \end_inset
19739
19740
19741 \begin_inset Tabular
19742 <lyxtabular version="3" rows="11" columns="2">
19743 <features tabularvalignment="middle">
19744 <column alignment="center" valignment="top" width="0pt">
19745 <column alignment="center" valignment="top" width="0pt">
19746 <row>
19747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19748 \begin_inset Text
19749
19750 \begin_layout Plain Layout
19751 コマンド
19752 \end_layout
19753
19754 \end_inset
19755 </cell>
19756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19757 \begin_inset Text
19758
19759 \begin_layout Plain Layout
19760 出力
19761 \end_layout
19762
19763 \end_inset
19764 </cell>
19765 </row>
19766 <row>
19767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19768 \begin_inset Text
19769
19770 \begin_layout Plain Layout
19771
19772 \backslash
19773 varrho
19774 \end_layout
19775
19776 \end_inset
19777 </cell>
19778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19779 \begin_inset Text
19780
19781 \begin_layout Plain Layout
19782 \begin_inset Formula $\varrho$
19783 \end_inset
19784
19785
19786 \end_layout
19787
19788 \end_inset
19789 </cell>
19790 </row>
19791 <row>
19792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19793 \begin_inset Text
19794
19795 \begin_layout Plain Layout
19796
19797 \backslash
19798 sigma
19799 \end_layout
19800
19801 \end_inset
19802 </cell>
19803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19804 \begin_inset Text
19805
19806 \begin_layout Plain Layout
19807 \begin_inset Formula $\sigma$
19808 \end_inset
19809
19810
19811 \end_layout
19812
19813 \end_inset
19814 </cell>
19815 </row>
19816 <row>
19817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19818 \begin_inset Text
19819
19820 \begin_layout Plain Layout
19821
19822 \backslash
19823 varsigma
19824 \end_layout
19825
19826 \end_inset
19827 </cell>
19828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19829 \begin_inset Text
19830
19831 \begin_layout Plain Layout
19832 \begin_inset Formula $\varsigma$
19833 \end_inset
19834
19835
19836 \end_layout
19837
19838 \end_inset
19839 </cell>
19840 </row>
19841 <row>
19842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19843 \begin_inset Text
19844
19845 \begin_layout Plain Layout
19846
19847 \backslash
19848 tau
19849 \end_layout
19850
19851 \end_inset
19852 </cell>
19853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19854 \begin_inset Text
19855
19856 \begin_layout Plain Layout
19857 \begin_inset Formula $\tau$
19858 \end_inset
19859
19860
19861 \end_layout
19862
19863 \end_inset
19864 </cell>
19865 </row>
19866 <row>
19867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19868 \begin_inset Text
19869
19870 \begin_layout Plain Layout
19871
19872 \backslash
19873 upsilon
19874 \end_layout
19875
19876 \end_inset
19877 </cell>
19878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19879 \begin_inset Text
19880
19881 \begin_layout Plain Layout
19882 \begin_inset Formula $\upsilon$
19883 \end_inset
19884
19885
19886 \end_layout
19887
19888 \end_inset
19889 </cell>
19890 </row>
19891 <row>
19892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19893 \begin_inset Text
19894
19895 \begin_layout Plain Layout
19896
19897 \backslash
19898 phi
19899 \end_layout
19900
19901 \end_inset
19902 </cell>
19903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19904 \begin_inset Text
19905
19906 \begin_layout Plain Layout
19907 \begin_inset Formula $\phi$
19908 \end_inset
19909
19910
19911 \end_layout
19912
19913 \end_inset
19914 </cell>
19915 </row>
19916 <row>
19917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19918 \begin_inset Text
19919
19920 \begin_layout Plain Layout
19921
19922 \backslash
19923 varphi
19924 \end_layout
19925
19926 \end_inset
19927 </cell>
19928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19929 \begin_inset Text
19930
19931 \begin_layout Plain Layout
19932 \begin_inset Formula $\varphi$
19933 \end_inset
19934
19935
19936 \end_layout
19937
19938 \end_inset
19939 </cell>
19940 </row>
19941 <row>
19942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19943 \begin_inset Text
19944
19945 \begin_layout Plain Layout
19946
19947 \backslash
19948 chi
19949 \end_layout
19950
19951 \end_inset
19952 </cell>
19953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19954 \begin_inset Text
19955
19956 \begin_layout Plain Layout
19957 \begin_inset Formula $\chi$
19958 \end_inset
19959
19960
19961 \end_layout
19962
19963 \end_inset
19964 </cell>
19965 </row>
19966 <row>
19967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19968 \begin_inset Text
19969
19970 \begin_layout Plain Layout
19971
19972 \backslash
19973 psi
19974 \end_layout
19975
19976 \end_inset
19977 </cell>
19978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19979 \begin_inset Text
19980
19981 \begin_layout Plain Layout
19982 \begin_inset Formula $\psi$
19983 \end_inset
19984
19985
19986 \end_layout
19987
19988 \end_inset
19989 </cell>
19990 </row>
19991 <row>
19992 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19993 \begin_inset Text
19994
19995 \begin_layout Plain Layout
19996
19997 \backslash
19998 omega
19999 \end_layout
20000
20001 \end_inset
20002 </cell>
20003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20004 \begin_inset Text
20005
20006 \begin_layout Plain Layout
20007 \begin_inset Formula $\omega$
20008 \end_inset
20009
20010
20011 \end_layout
20012
20013 \end_inset
20014 </cell>
20015 </row>
20016 </lyxtabular>
20017
20018 \end_inset
20019
20020
20021 \begin_inset space \hfill{}
20022 \end_inset
20023
20024
20025 \end_layout
20026
20027 \begin_layout Standard
20028 \begin_inset VSpace medskip
20029 \end_inset
20030
20031
20032 \end_layout
20033
20034 \begin_layout Standard
20035 アップライト体のギリシャ文字を作成する方法は、第
20036 \begin_inset CommandInset ref
20037 LatexCommand ref
20038 reference "sub:アップライト体ギリシャ小文字"
20039
20040 \end_inset
20041
20042 節に説明されています。
20043 \end_layout
20044
20045 \begin_layout Subsection
20046 大文字
20047 \begin_inset Index idx
20048 status collapsed
20049
20050 \begin_layout Plain Layout
20051 ぎりしゃもじ@ギリシャ文字 ! おおもじ@大文字
20052 \end_layout
20053
20054 \end_inset
20055
20056
20057 \end_layout
20058
20059 \begin_layout Standard
20060 \begin_inset space \hfill{}
20061 \end_inset
20062
20063
20064 \begin_inset Tabular
20065 <lyxtabular version="3" rows="7" columns="2">
20066 <features tabularvalignment="middle">
20067 <column alignment="center" valignment="top" width="0pt">
20068 <column alignment="center" valignment="top" width="0pt">
20069 <row>
20070 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20071 \begin_inset Text
20072
20073 \begin_layout Plain Layout
20074
20075 \family roman
20076 \series medium
20077 \shape up
20078 \size normal
20079 \emph off
20080 \bar no
20081 \noun off
20082 \color none
20083 コマンド
20084 \end_layout
20085
20086 \end_inset
20087 </cell>
20088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20089 \begin_inset Text
20090
20091 \begin_layout Plain Layout
20092
20093 \family roman
20094 \series medium
20095 \shape up
20096 \size normal
20097 \emph off
20098 \bar no
20099 \noun off
20100 \color none
20101 出力
20102 \end_layout
20103
20104 \end_inset
20105 </cell>
20106 </row>
20107 <row>
20108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20109 \begin_inset Text
20110
20111 \begin_layout Plain Layout
20112
20113 \backslash
20114 Gamma
20115 \end_layout
20116
20117 \end_inset
20118 </cell>
20119 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20120 \begin_inset Text
20121
20122 \begin_layout Plain Layout
20123 \begin_inset Formula $\Gamma$
20124 \end_inset
20125
20126
20127 \end_layout
20128
20129 \end_inset
20130 </cell>
20131 </row>
20132 <row>
20133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20134 \begin_inset Text
20135
20136 \begin_layout Plain Layout
20137
20138 \backslash
20139 Delta
20140 \end_layout
20141
20142 \end_inset
20143 </cell>
20144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20145 \begin_inset Text
20146
20147 \begin_layout Plain Layout
20148 \begin_inset Formula $\Delta$
20149 \end_inset
20150
20151
20152 \end_layout
20153
20154 \end_inset
20155 </cell>
20156 </row>
20157 <row>
20158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20159 \begin_inset Text
20160
20161 \begin_layout Plain Layout
20162
20163 \backslash
20164 Theta
20165 \end_layout
20166
20167 \end_inset
20168 </cell>
20169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20170 \begin_inset Text
20171
20172 \begin_layout Plain Layout
20173 \begin_inset Formula $\Theta$
20174 \end_inset
20175
20176
20177 \end_layout
20178
20179 \end_inset
20180 </cell>
20181 </row>
20182 <row>
20183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20184 \begin_inset Text
20185
20186 \begin_layout Plain Layout
20187
20188 \backslash
20189 Lambda
20190 \end_layout
20191
20192 \end_inset
20193 </cell>
20194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20195 \begin_inset Text
20196
20197 \begin_layout Plain Layout
20198 \begin_inset Formula $\Lambda$
20199 \end_inset
20200
20201
20202 \end_layout
20203
20204 \end_inset
20205 </cell>
20206 </row>
20207 <row>
20208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20209 \begin_inset Text
20210
20211 \begin_layout Plain Layout
20212
20213 \backslash
20214 Xi
20215 \end_layout
20216
20217 \end_inset
20218 </cell>
20219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20220 \begin_inset Text
20221
20222 \begin_layout Plain Layout
20223 \begin_inset Formula $\Xi$
20224 \end_inset
20225
20226
20227 \end_layout
20228
20229 \end_inset
20230 </cell>
20231 </row>
20232 <row>
20233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20234 \begin_inset Text
20235
20236 \begin_layout Plain Layout
20237
20238 \backslash
20239 Pi
20240 \end_layout
20241
20242 \end_inset
20243 </cell>
20244 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20245 \begin_inset Text
20246
20247 \begin_layout Plain Layout
20248 \begin_inset Formula $\Pi$
20249 \end_inset
20250
20251
20252 \end_layout
20253
20254 \end_inset
20255 </cell>
20256 </row>
20257 </lyxtabular>
20258
20259 \end_inset
20260
20261
20262 \begin_inset space \hfill{}
20263 \end_inset
20264
20265
20266 \begin_inset Tabular
20267 <lyxtabular version="3" rows="6" columns="2">
20268 <features tabularvalignment="middle">
20269 <column alignment="center" valignment="top" width="0pt">
20270 <column alignment="center" valignment="top" width="0pt">
20271 <row>
20272 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20273 \begin_inset Text
20274
20275 \begin_layout Plain Layout
20276
20277 \family roman
20278 \series medium
20279 \shape up
20280 \size normal
20281 \emph off
20282 \bar no
20283 \noun off
20284 \color none
20285 コマンド
20286 \end_layout
20287
20288 \end_inset
20289 </cell>
20290 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20291 \begin_inset Text
20292
20293 \begin_layout Plain Layout
20294
20295 \family roman
20296 \series medium
20297 \shape up
20298 \size normal
20299 \emph off
20300 \bar no
20301 \noun off
20302 \color none
20303 出力
20304 \end_layout
20305
20306 \end_inset
20307 </cell>
20308 </row>
20309 <row>
20310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20311 \begin_inset Text
20312
20313 \begin_layout Plain Layout
20314
20315 \backslash
20316 Sigma
20317 \end_layout
20318
20319 \end_inset
20320 </cell>
20321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20322 \begin_inset Text
20323
20324 \begin_layout Plain Layout
20325 \begin_inset Formula $\Sigma$
20326 \end_inset
20327
20328
20329 \end_layout
20330
20331 \end_inset
20332 </cell>
20333 </row>
20334 <row>
20335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20336 \begin_inset Text
20337
20338 \begin_layout Plain Layout
20339
20340 \backslash
20341 Upsilon
20342 \end_layout
20343
20344 \end_inset
20345 </cell>
20346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20347 \begin_inset Text
20348
20349 \begin_layout Plain Layout
20350 \begin_inset Formula $\Upsilon$
20351 \end_inset
20352
20353
20354 \end_layout
20355
20356 \end_inset
20357 </cell>
20358 </row>
20359 <row>
20360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20361 \begin_inset Text
20362
20363 \begin_layout Plain Layout
20364
20365 \backslash
20366 Phi
20367 \end_layout
20368
20369 \end_inset
20370 </cell>
20371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20372 \begin_inset Text
20373
20374 \begin_layout Plain Layout
20375 \begin_inset Formula $\Phi$
20376 \end_inset
20377
20378
20379 \end_layout
20380
20381 \end_inset
20382 </cell>
20383 </row>
20384 <row>
20385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20386 \begin_inset Text
20387
20388 \begin_layout Plain Layout
20389
20390 \backslash
20391 Psi
20392 \end_layout
20393
20394 \end_inset
20395 </cell>
20396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20397 \begin_inset Text
20398
20399 \begin_layout Plain Layout
20400 \begin_inset Formula $\Psi$
20401 \end_inset
20402
20403
20404 \end_layout
20405
20406 \end_inset
20407 </cell>
20408 </row>
20409 <row>
20410 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20411 \begin_inset Text
20412
20413 \begin_layout Plain Layout
20414
20415 \backslash
20416 Omega
20417 \end_layout
20418
20419 \end_inset
20420 </cell>
20421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20422 \begin_inset Text
20423
20424 \begin_layout Plain Layout
20425 \begin_inset Formula $\Omega$
20426 \end_inset
20427
20428
20429 \end_layout
20430
20431 \end_inset
20432 </cell>
20433 </row>
20434 </lyxtabular>
20435
20436 \end_inset
20437
20438
20439 \begin_inset space \hfill{}
20440 \end_inset
20441
20442
20443 \end_layout
20444
20445 \begin_layout Standard
20446 \begin_inset VSpace medskip
20447 \end_inset
20448
20449 大文字のギリシャ文字がアップライト体で表示されるのは、TeXの開発途上に生じたデザイン上のバグによるものです。正しいイタリック体の大文字を得るためには、各コマン
20450 ドの頭に
20451 \series bold
20452 var
20453 \series default
20454 を付けてください。たとえば、
20455 \series bold
20456
20457 \backslash
20458 varGamma
20459 \series default
20460 コマンドは、
20461 \begin_inset Formula $\varGamma$
20462 \end_inset
20463
20464 を生成します。
20465 \end_layout
20466
20467 \begin_layout Subsection
20468 ボールド体
20469 \begin_inset Index idx
20470 status collapsed
20471
20472 \begin_layout Plain Layout
20473 ぎりしゃもじ@ギリシャ文字 ! ぼーるどたい@ボールド体
20474 \end_layout
20475
20476 \end_inset
20477
20478
20479 \end_layout
20480
20481 \begin_layout Standard
20482 ギリシャ文字は、ラテン文字のようには、多様な書体様式に設定することができません。ギリシャ文字をボールド体にできるのは、
20483 \series bold
20484
20485 \backslash
20486 boldsymbol
20487 \series default
20488 コマンドのみです
20489 \begin_inset Index idx
20490 status collapsed
20491
20492 \begin_layout Plain Layout
20493 こまんど@コマンド ! B ! 
20494 \backslash
20495 boldsymbol
20496 \end_layout
20497
20498 \end_inset
20499
20500
20501 \end_layout
20502
20503 \begin_layout Standard
20504 \align center
20505 \begin_inset Tabular
20506 <lyxtabular version="3" rows="3" columns="2">
20507 <features tabularvalignment="middle">
20508 <column alignment="center" valignment="top" width="0">
20509 <column alignment="center" valignment="top" width="0">
20510 <row>
20511 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20512 \begin_inset Text
20513
20514 \begin_layout Plain Layout
20515 コマンド
20516 \end_layout
20517
20518 \end_inset
20519 </cell>
20520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20521 \begin_inset Text
20522
20523 \begin_layout Plain Layout
20524 出力
20525 \end_layout
20526
20527 \end_inset
20528 </cell>
20529 </row>
20530 <row>
20531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20532 \begin_inset Text
20533
20534 \begin_layout Plain Layout
20535
20536 \backslash
20537 Upsilon
20538 \backslash
20539 boldsymbol
20540 \backslash
20541 Upsilon
20542 \end_layout
20543
20544 \end_inset
20545 </cell>
20546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20547 \begin_inset Text
20548
20549 \begin_layout Plain Layout
20550 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20551 \end_inset
20552
20553
20554 \end_layout
20555
20556 \end_inset
20557 </cell>
20558 </row>
20559 <row>
20560 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20561 \begin_inset Text
20562
20563 \begin_layout Plain Layout
20564
20565 \backslash
20566 theta
20567 \backslash
20568 boldsymbol
20569 \backslash
20570 theta
20571 \end_layout
20572
20573 \end_inset
20574 </cell>
20575 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20576 \begin_inset Text
20577
20578 \begin_layout Plain Layout
20579 \begin_inset Formula $\theta\boldsymbol{\theta}$
20580 \end_inset
20581
20582
20583 \end_layout
20584
20585 \end_inset
20586 </cell>
20587 </row>
20588 </lyxtabular>
20589
20590 \end_inset
20591
20592
20593 \end_layout
20594
20595 \begin_layout Section
20596 記号
20597 \begin_inset ERT
20598 status collapsed
20599
20600 \begin_layout Plain Layout
20601
20602
20603 \backslash
20604 texorpdfstring{
20605 \end_layout
20606
20607 \end_inset
20608
20609
20610 \begin_inset Foot
20611 status collapsed
20612
20613 \begin_layout Plain Layout
20614 各LaTeXパッケージに含まれる全記号をほとんど網羅した一覧が、
20615 \begin_inset CommandInset citation
20616 LatexCommand cite
20617 key "Symbols"
20618
20619 \end_inset
20620
20621 にあります。
20622 \end_layout
20623
20624 \end_inset
20625
20626
20627 \begin_inset ERT
20628 status collapsed
20629
20630 \begin_layout Plain Layout
20631
20632 }{}
20633 \end_layout
20634
20635 \end_inset
20636
20637
20638 \begin_inset Note Note
20639 status collapsed
20640
20641 \begin_layout Plain Layout
20642
20643 \backslash
20644 texorpdfstringは、PDFのしおりに脚注が現れるのを防ぐために使われています。
20645 \end_layout
20646
20647 \begin_layout Plain Layout
20648
20649 \backslash
20650 texorpdfstringについての詳細は、第
20651 \begin_inset CommandInset ref
20652 LatexCommand ref
20653 reference "sub:節見出し中の数式"
20654
20655 \end_inset
20656
20657 節にあります。
20658 \end_layout
20659
20660 \end_inset
20661
20662
20663 \begin_inset Index idx
20664 status collapsed
20665
20666 \begin_layout Plain Layout
20667 きごう@記号
20668 \end_layout
20669
20670 \end_inset
20671
20672
20673 \end_layout
20674
20675 \begin_layout Standard
20676 本節に掲げてある各記号の多くは、ツールバーボタンの
20677 \begin_inset Graphics
20678         filename ../../images/math/nabla.png
20679         scale 85
20680
20681 \end_inset
20682
20683
20684 \begin_inset Graphics
20685         filename ../../images/math/digamma.png
20686         scale 85
20687
20688 \end_inset
20689
20690 でも挿入することができます。
20691 \end_layout
20692
20693 \begin_layout Subsection
20694 数学記号
20695 \begin_inset CommandInset label
20696 LatexCommand label
20697 name "sub:数学記号"
20698
20699 \end_inset
20700
20701
20702 \begin_inset Index idx
20703 status collapsed
20704
20705 \begin_layout Plain Layout
20706 きごう@記号 ! すうがく@数学
20707 \end_layout
20708
20709 \end_inset
20710
20711
20712 \end_layout
20713
20714 \begin_layout Standard
20715 \begin_inset space \hfill{}
20716 \end_inset
20717
20718
20719 \begin_inset Tabular
20720 <lyxtabular version="3" rows="10" columns="2">
20721 <features tabularvalignment="middle">
20722 <column alignment="center" valignment="top" width="0pt">
20723 <column alignment="center" valignment="top" width="0pt">
20724 <row>
20725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20726 \begin_inset Text
20727
20728 \begin_layout Plain Layout
20729 コマンド
20730 \end_layout
20731
20732 \end_inset
20733 </cell>
20734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20735 \begin_inset Text
20736
20737 \begin_layout Plain Layout
20738 出力
20739 \end_layout
20740
20741 \end_inset
20742 </cell>
20743 </row>
20744 <row>
20745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20746 \begin_inset Text
20747
20748 \begin_layout Plain Layout
20749
20750 \backslash
20751 neg
20752 \end_layout
20753
20754 \end_inset
20755 </cell>
20756 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20757 \begin_inset Text
20758
20759 \begin_layout Plain Layout
20760 \begin_inset Formula $\neg$
20761 \end_inset
20762
20763
20764 \end_layout
20765
20766 \end_inset
20767 </cell>
20768 </row>
20769 <row>
20770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20771 \begin_inset Text
20772
20773 \begin_layout Plain Layout
20774
20775 \backslash
20776 Im
20777 \end_layout
20778
20779 \end_inset
20780 </cell>
20781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20782 \begin_inset Text
20783
20784 \begin_layout Plain Layout
20785 \begin_inset Formula $\Im$
20786 \end_inset
20787
20788
20789 \end_layout
20790
20791 \end_inset
20792 </cell>
20793 </row>
20794 <row>
20795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20796 \begin_inset Text
20797
20798 \begin_layout Plain Layout
20799
20800 \backslash
20801 Re
20802 \end_layout
20803
20804 \end_inset
20805 </cell>
20806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20807 \begin_inset Text
20808
20809 \begin_layout Plain Layout
20810 \begin_inset Formula $\Re$
20811 \end_inset
20812
20813
20814 \end_layout
20815
20816 \end_inset
20817 </cell>
20818 </row>
20819 <row>
20820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20821 \begin_inset Text
20822
20823 \begin_layout Plain Layout
20824
20825 \backslash
20826 aleph
20827 \end_layout
20828
20829 \end_inset
20830 </cell>
20831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20832 \begin_inset Text
20833
20834 \begin_layout Plain Layout
20835 \begin_inset Formula $\aleph$
20836 \end_inset
20837
20838
20839 \end_layout
20840
20841 \end_inset
20842 </cell>
20843 </row>
20844 <row>
20845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20846 \begin_inset Text
20847
20848 \begin_layout Plain Layout
20849
20850 \backslash
20851 partial
20852 \end_layout
20853
20854 \end_inset
20855 </cell>
20856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20857 \begin_inset Text
20858
20859 \begin_layout Plain Layout
20860 \begin_inset Formula $\partial$
20861 \end_inset
20862
20863
20864 \end_layout
20865
20866 \end_inset
20867 </cell>
20868 </row>
20869 <row>
20870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20871 \begin_inset Text
20872
20873 \begin_layout Plain Layout
20874
20875 \backslash
20876 infty
20877 \end_layout
20878
20879 \end_inset
20880 </cell>
20881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20882 \begin_inset Text
20883
20884 \begin_layout Plain Layout
20885 \begin_inset Formula $\infty$
20886 \end_inset
20887
20888
20889 \end_layout
20890
20891 \end_inset
20892 </cell>
20893 </row>
20894 <row>
20895 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20896 \begin_inset Text
20897
20898 \begin_layout Plain Layout
20899
20900 \backslash
20901 wp
20902 \end_layout
20903
20904 \end_inset
20905 </cell>
20906 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20907 \begin_inset Text
20908
20909 \begin_layout Plain Layout
20910 \begin_inset Formula $\wp$
20911 \end_inset
20912
20913
20914 \end_layout
20915
20916 \end_inset
20917 </cell>
20918 </row>
20919 <row>
20920 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20921 \begin_inset Text
20922
20923 \begin_layout Plain Layout
20924
20925 \backslash
20926 imath
20927 \end_layout
20928
20929 \end_inset
20930 </cell>
20931 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20932 \begin_inset Text
20933
20934 \begin_layout Plain Layout
20935 \begin_inset Formula $\imath$
20936 \end_inset
20937
20938
20939 \end_layout
20940
20941 \end_inset
20942 </cell>
20943 </row>
20944 <row>
20945 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20946 \begin_inset Text
20947
20948 \begin_layout Plain Layout
20949
20950 \backslash
20951 jmath
20952 \end_layout
20953
20954 \end_inset
20955 </cell>
20956 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20957 \begin_inset Text
20958
20959 \begin_layout Plain Layout
20960 \begin_inset Formula $\jmath$
20961 \end_inset
20962
20963
20964 \end_layout
20965
20966 \end_inset
20967 </cell>
20968 </row>
20969 </lyxtabular>
20970
20971 \end_inset
20972
20973
20974 \begin_inset space \hfill{}
20975 \end_inset
20976
20977
20978 \begin_inset Tabular
20979 <lyxtabular version="3" rows="10" columns="2">
20980 <features tabularvalignment="middle">
20981 <column alignment="center" valignment="top" width="0pt">
20982 <column alignment="center" valignment="top" width="0pt">
20983 <row>
20984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20985 \begin_inset Text
20986
20987 \begin_layout Plain Layout
20988 コマンド
20989 \end_layout
20990
20991 \end_inset
20992 </cell>
20993 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20994 \begin_inset Text
20995
20996 \begin_layout Plain Layout
20997 出力
20998 \begin_inset Note Note
20999 status collapsed
21000
21001 \begin_layout Plain Layout
21002 ここで
21003 \series bold
21004
21005 \backslash
21006 raisebox
21007 \series default
21008 はスペーサーとして使用しているだけです。
21009 \end_layout
21010
21011 \end_inset
21012
21013
21014 \end_layout
21015
21016 \end_inset
21017 </cell>
21018 </row>
21019 <row>
21020 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21021 \begin_inset Text
21022
21023 \begin_layout Plain Layout
21024
21025 \backslash
21026 forall
21027 \end_layout
21028
21029 \end_inset
21030 </cell>
21031 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21032 \begin_inset Text
21033
21034 \begin_layout Plain Layout
21035 \begin_inset Formula $\forall$
21036 \end_inset
21037
21038
21039 \end_layout
21040
21041 \end_inset
21042 </cell>
21043 </row>
21044 <row>
21045 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21046 \begin_inset Text
21047
21048 \begin_layout Plain Layout
21049
21050 \backslash
21051 exists
21052 \end_layout
21053
21054 \end_inset
21055 </cell>
21056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21057 \begin_inset Text
21058
21059 \begin_layout Plain Layout
21060 \begin_inset Formula $\exists$
21061 \end_inset
21062
21063
21064 \end_layout
21065
21066 \end_inset
21067 </cell>
21068 </row>
21069 <row>
21070 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21071 \begin_inset Text
21072
21073 \begin_layout Plain Layout
21074
21075 \backslash
21076 nexists
21077 \end_layout
21078
21079 \end_inset
21080 </cell>
21081 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21082 \begin_inset Text
21083
21084 \begin_layout Plain Layout
21085 \begin_inset Formula $\nexists$
21086 \end_inset
21087
21088
21089 \end_layout
21090
21091 \end_inset
21092 </cell>
21093 </row>
21094 <row>
21095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21096 \begin_inset Text
21097
21098 \begin_layout Plain Layout
21099
21100 \backslash
21101 emptyset
21102 \end_layout
21103
21104 \end_inset
21105 </cell>
21106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21107 \begin_inset Text
21108
21109 \begin_layout Plain Layout
21110 \begin_inset Formula $\emptyset$
21111 \end_inset
21112
21113
21114 \end_layout
21115
21116 \end_inset
21117 </cell>
21118 </row>
21119 <row>
21120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21121 \begin_inset Text
21122
21123 \begin_layout Plain Layout
21124
21125 \backslash
21126 varnothing
21127 \end_layout
21128
21129 \end_inset
21130 </cell>
21131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21132 \begin_inset Text
21133
21134 \begin_layout Plain Layout
21135 \begin_inset Formula $\varnothing$
21136 \end_inset
21137
21138
21139 \end_layout
21140
21141 \end_inset
21142 </cell>
21143 </row>
21144 <row>
21145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21146 \begin_inset Text
21147
21148 \begin_layout Plain Layout
21149
21150 \backslash
21151 dag
21152 \end_layout
21153
21154 \end_inset
21155 </cell>
21156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21157 \begin_inset Text
21158
21159 \begin_layout Plain Layout
21160 \begin_inset Formula $\dag$
21161 \end_inset
21162
21163
21164 \end_layout
21165
21166 \end_inset
21167 </cell>
21168 </row>
21169 <row>
21170 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21171 \begin_inset Text
21172
21173 \begin_layout Plain Layout
21174
21175 \backslash
21176 ddag
21177 \end_layout
21178
21179 \end_inset
21180 </cell>
21181 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21182 \begin_inset Text
21183
21184 \begin_layout Plain Layout
21185 \begin_inset Formula $\ddag$
21186 \end_inset
21187
21188
21189 \end_layout
21190
21191 \end_inset
21192 </cell>
21193 </row>
21194 <row>
21195 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21196 \begin_inset Text
21197
21198 \begin_layout Plain Layout
21199
21200 \backslash
21201 complement
21202 \end_layout
21203
21204 \end_inset
21205 </cell>
21206 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21207 \begin_inset Text
21208
21209 \begin_layout Plain Layout
21210 \begin_inset ERT
21211 status collapsed
21212
21213 \begin_layout Plain Layout
21214
21215
21216 \backslash
21217 raisebox{-0.8mm}{
21218 \end_layout
21219
21220 \end_inset
21221
21222
21223 \begin_inset Formula $\complement$
21224 \end_inset
21225
21226
21227 \begin_inset ERT
21228 status collapsed
21229
21230 \begin_layout Plain Layout
21231
21232 }
21233 \end_layout
21234
21235 \end_inset
21236
21237
21238 \end_layout
21239
21240 \end_inset
21241 </cell>
21242 </row>
21243 <row>
21244 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21245 \begin_inset Text
21246
21247 \begin_layout Plain Layout
21248
21249 \backslash
21250 Bbbk
21251 \end_layout
21252
21253 \end_inset
21254 </cell>
21255 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21256 \begin_inset Text
21257
21258 \begin_layout Plain Layout
21259 \begin_inset Formula $\Bbbk$
21260 \end_inset
21261
21262
21263 \end_layout
21264
21265 \end_inset
21266 </cell>
21267 </row>
21268 </lyxtabular>
21269
21270 \end_inset
21271
21272
21273 \begin_inset space \hfill{}
21274 \end_inset
21275
21276
21277 \begin_inset Tabular
21278 <lyxtabular version="3" rows="10" columns="2">
21279 <features tabularvalignment="middle">
21280 <column alignment="center" valignment="top" width="0pt">
21281 <column alignment="center" valignment="top" width="0pt">
21282 <row>
21283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21284 \begin_inset Text
21285
21286 \begin_layout Plain Layout
21287 コマンド
21288 \end_layout
21289
21290 \end_inset
21291 </cell>
21292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21293 \begin_inset Text
21294
21295 \begin_layout Plain Layout
21296 出力
21297 \end_layout
21298
21299 \end_inset
21300 </cell>
21301 </row>
21302 <row>
21303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21304 \begin_inset Text
21305
21306 \begin_layout Plain Layout
21307
21308 \backslash
21309 prime
21310 \end_layout
21311
21312 \end_inset
21313 </cell>
21314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21315 \begin_inset Text
21316
21317 \begin_layout Plain Layout
21318 \begin_inset Formula $\prime$
21319 \end_inset
21320
21321
21322 \end_layout
21323
21324 \end_inset
21325 </cell>
21326 </row>
21327 <row>
21328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21329 \begin_inset Text
21330
21331 \begin_layout Plain Layout
21332
21333 \backslash
21334 backprime
21335 \end_layout
21336
21337 \end_inset
21338 </cell>
21339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21340 \begin_inset Text
21341
21342 \begin_layout Plain Layout
21343 \begin_inset Formula $\backprime$
21344 \end_inset
21345
21346
21347 \end_layout
21348
21349 \end_inset
21350 </cell>
21351 </row>
21352 <row>
21353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21354 \begin_inset Text
21355
21356 \begin_layout Plain Layout
21357
21358 \backslash
21359 mho
21360 \end_layout
21361
21362 \end_inset
21363 </cell>
21364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21365 \begin_inset Text
21366
21367 \begin_layout Plain Layout
21368 \begin_inset Formula $\mho$
21369 \end_inset
21370
21371
21372 \end_layout
21373
21374 \end_inset
21375 </cell>
21376 </row>
21377 <row>
21378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21379 \begin_inset Text
21380
21381 \begin_layout Plain Layout
21382
21383 \backslash
21384 triangle
21385 \end_layout
21386
21387 \end_inset
21388 </cell>
21389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21390 \begin_inset Text
21391
21392 \begin_layout Plain Layout
21393 \begin_inset Formula $\triangle$
21394 \end_inset
21395
21396
21397 \end_layout
21398
21399 \end_inset
21400 </cell>
21401 </row>
21402 <row>
21403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21404 \begin_inset Text
21405
21406 \begin_layout Plain Layout
21407
21408 \backslash
21409 angle
21410 \end_layout
21411
21412 \end_inset
21413 </cell>
21414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21415 \begin_inset Text
21416
21417 \begin_layout Plain Layout
21418 \begin_inset Formula $\angle$
21419 \end_inset
21420
21421
21422 \end_layout
21423
21424 \end_inset
21425 </cell>
21426 </row>
21427 <row>
21428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21429 \begin_inset Text
21430
21431 \begin_layout Plain Layout
21432
21433 \backslash
21434 measuredangle
21435 \end_layout
21436
21437 \end_inset
21438 </cell>
21439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21440 \begin_inset Text
21441
21442 \begin_layout Plain Layout
21443 \begin_inset Formula $\measuredangle$
21444 \end_inset
21445
21446
21447 \end_layout
21448
21449 \end_inset
21450 </cell>
21451 </row>
21452 <row>
21453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21454 \begin_inset Text
21455
21456 \begin_layout Plain Layout
21457
21458 \backslash
21459 sphericalangle
21460 \end_layout
21461
21462 \end_inset
21463 </cell>
21464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21465 \begin_inset Text
21466
21467 \begin_layout Plain Layout
21468 \begin_inset Formula $\sphericalangle$
21469 \end_inset
21470
21471
21472 \end_layout
21473
21474 \end_inset
21475 </cell>
21476 </row>
21477 <row>
21478 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21479 \begin_inset Text
21480
21481 \begin_layout Plain Layout
21482
21483 \backslash
21484 top
21485 \end_layout
21486
21487 \end_inset
21488 </cell>
21489 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21490 \begin_inset Text
21491
21492 \begin_layout Plain Layout
21493 \begin_inset Formula $\top$
21494 \end_inset
21495
21496
21497 \end_layout
21498
21499 \end_inset
21500 </cell>
21501 </row>
21502 <row>
21503 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21504 \begin_inset Text
21505
21506 \begin_layout Plain Layout
21507
21508 \backslash
21509 bot
21510 \end_layout
21511
21512 \end_inset
21513 </cell>
21514 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21515 \begin_inset Text
21516
21517 \begin_layout Plain Layout
21518 \begin_inset Formula $\bot$
21519 \end_inset
21520
21521
21522 \end_layout
21523
21524 \end_inset
21525 </cell>
21526 </row>
21527 </lyxtabular>
21528
21529 \end_inset
21530
21531
21532 \begin_inset space \hfill{}
21533 \end_inset
21534
21535
21536 \end_layout
21537
21538 \begin_layout Subsection
21539 その他の記号
21540 \begin_inset CommandInset label
21541 LatexCommand label
21542 name "sub:その他の記号"
21543
21544 \end_inset
21545
21546
21547 \begin_inset Index idx
21548 status collapsed
21549
21550 \begin_layout Plain Layout
21551 きごう@記号 ! そのた@その他
21552 \end_layout
21553
21554 \end_inset
21555
21556
21557 \end_layout
21558
21559 \begin_layout Standard
21560 \noindent
21561 \align center
21562 \begin_inset Tabular
21563 <lyxtabular version="3" rows="10" columns="2">
21564 <features tabularvalignment="middle">
21565 <column alignment="center" valignment="top" width="0pt">
21566 <column alignment="center" valignment="top" width="0pt">
21567 <row>
21568 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21569 \begin_inset Text
21570
21571 \begin_layout Plain Layout
21572
21573 \family roman
21574 \series medium
21575 \shape up
21576 \size normal
21577 \emph off
21578 \bar no
21579 \noun off
21580 \color none
21581 コマンド
21582 \end_layout
21583
21584 \end_inset
21585 </cell>
21586 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21587 \begin_inset Text
21588
21589 \begin_layout Plain Layout
21590
21591 \family roman
21592 \series medium
21593 \shape up
21594 \size normal
21595 \emph off
21596 \bar no
21597 \noun off
21598 \color none
21599 出力
21600 \end_layout
21601
21602 \end_inset
21603 </cell>
21604 </row>
21605 <row>
21606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21607 \begin_inset Text
21608
21609 \begin_layout Plain Layout
21610
21611 \backslash
21612 flat
21613 \end_layout
21614
21615 \end_inset
21616 </cell>
21617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21618 \begin_inset Text
21619
21620 \begin_layout Plain Layout
21621 \begin_inset Formula $\flat$
21622 \end_inset
21623
21624
21625 \end_layout
21626
21627 \end_inset
21628 </cell>
21629 </row>
21630 <row>
21631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21632 \begin_inset Text
21633
21634 \begin_layout Plain Layout
21635
21636 \backslash
21637 natural
21638 \end_layout
21639
21640 \end_inset
21641 </cell>
21642 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21643 \begin_inset Text
21644
21645 \begin_layout Plain Layout
21646 \begin_inset Formula $\natural$
21647 \end_inset
21648
21649
21650 \end_layout
21651
21652 \end_inset
21653 </cell>
21654 </row>
21655 <row>
21656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21657 \begin_inset Text
21658
21659 \begin_layout Plain Layout
21660
21661 \backslash
21662 sharp
21663 \end_layout
21664
21665 \end_inset
21666 </cell>
21667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21668 \begin_inset Text
21669
21670 \begin_layout Plain Layout
21671 \begin_inset Formula $\sharp$
21672 \end_inset
21673
21674
21675 \end_layout
21676
21677 \end_inset
21678 </cell>
21679 </row>
21680 <row>
21681 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21682 \begin_inset Text
21683
21684 \begin_layout Plain Layout
21685
21686 \backslash
21687 surd
21688 \end_layout
21689
21690 \end_inset
21691 </cell>
21692 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21693 \begin_inset Text
21694
21695 \begin_layout Plain Layout
21696 \begin_inset Formula $\surd$
21697 \end_inset
21698
21699
21700 \end_layout
21701
21702 \end_inset
21703 </cell>
21704 </row>
21705 <row>
21706 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21707 \begin_inset Text
21708
21709 \begin_layout Plain Layout
21710
21711 \backslash
21712 checkmark
21713 \end_layout
21714
21715 \end_inset
21716 </cell>
21717 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21718 \begin_inset Text
21719
21720 \begin_layout Plain Layout
21721 \begin_inset Formula $\checkmark$
21722 \end_inset
21723
21724
21725 \end_layout
21726
21727 \end_inset
21728 </cell>
21729 </row>
21730 <row>
21731 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21732 \begin_inset Text
21733
21734 \begin_layout Plain Layout
21735
21736 \backslash
21737 yen
21738 \end_layout
21739
21740 \end_inset
21741 </cell>
21742 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21743 \begin_inset Text
21744
21745 \begin_layout Plain Layout
21746 \begin_inset Formula $\yen$
21747 \end_inset
21748
21749
21750 \end_layout
21751
21752 \end_inset
21753 </cell>
21754 </row>
21755 <row>
21756 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21757 \begin_inset Text
21758
21759 \begin_layout Plain Layout
21760
21761 \backslash
21762 pounds
21763 \end_layout
21764
21765 \end_inset
21766 </cell>
21767 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21768 \begin_inset Text
21769
21770 \begin_layout Plain Layout
21771 \begin_inset Formula $\pounds$
21772 \end_inset
21773
21774
21775 \end_layout
21776
21777 \end_inset
21778 </cell>
21779 </row>
21780 <row>
21781 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21782 \begin_inset Text
21783
21784 \begin_layout Plain Layout
21785 $
21786 \end_layout
21787
21788 \end_inset
21789 </cell>
21790 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21791 \begin_inset Text
21792
21793 \begin_layout Plain Layout
21794 \begin_inset Formula $\$$
21795 \end_inset
21796
21797
21798 \end_layout
21799
21800 \end_inset
21801 </cell>
21802 </row>
21803 <row>
21804 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21805 \begin_inset Text
21806
21807 \begin_layout Plain Layout
21808 §
21809 \end_layout
21810
21811 \end_inset
21812 </cell>
21813 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21814 \begin_inset Text
21815
21816 \begin_layout Plain Layout
21817 \begin_inset Formula $§$
21818 \end_inset
21819
21820
21821 \end_layout
21822
21823 \end_inset
21824 </cell>
21825 </row>
21826 </lyxtabular>
21827
21828 \end_inset
21829
21830
21831 \begin_inset Tabular
21832 <lyxtabular version="3" rows="10" columns="2">
21833 <features tabularvalignment="middle">
21834 <column alignment="center" valignment="top" width="0">
21835 <column alignment="center" valignment="top" width="0">
21836 <row>
21837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21838 \begin_inset Text
21839
21840 \begin_layout Plain Layout
21841
21842 \family roman
21843 \series medium
21844 \shape up
21845 \size normal
21846 \emph off
21847 \bar no
21848 \noun off
21849 \color none
21850 コマンド
21851 \end_layout
21852
21853 \end_inset
21854 </cell>
21855 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21856 \begin_inset Text
21857
21858 \begin_layout Plain Layout
21859
21860 \family roman
21861 \series medium
21862 \shape up
21863 \size normal
21864 \emph off
21865 \bar no
21866 \noun off
21867 \color none
21868 出力
21869 \end_layout
21870
21871 \end_inset
21872 </cell>
21873 </row>
21874 <row>
21875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21876 \begin_inset Text
21877
21878 \begin_layout Plain Layout
21879
21880 \backslash
21881 hbar
21882 \end_layout
21883
21884 \end_inset
21885 </cell>
21886 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21887 \begin_inset Text
21888
21889 \begin_layout Plain Layout
21890 \begin_inset Formula $\hbar$
21891 \end_inset
21892
21893
21894 \end_layout
21895
21896 \end_inset
21897 </cell>
21898 </row>
21899 <row>
21900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21901 \begin_inset Text
21902
21903 \begin_layout Plain Layout
21904
21905 \backslash
21906 hslash
21907 \end_layout
21908
21909 \end_inset
21910 </cell>
21911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21912 \begin_inset Text
21913
21914 \begin_layout Plain Layout
21915 \begin_inset Formula $\hslash$
21916 \end_inset
21917
21918
21919 \end_layout
21920
21921 \end_inset
21922 </cell>
21923 </row>
21924 <row>
21925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21926 \begin_inset Text
21927
21928 \begin_layout Plain Layout
21929
21930 \backslash
21931 clubsuit
21932 \end_layout
21933
21934 \end_inset
21935 </cell>
21936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21937 \begin_inset Text
21938
21939 \begin_layout Plain Layout
21940 \begin_inset Formula $\clubsuit$
21941 \end_inset
21942
21943
21944 \end_layout
21945
21946 \end_inset
21947 </cell>
21948 </row>
21949 <row>
21950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21951 \begin_inset Text
21952
21953 \begin_layout Plain Layout
21954
21955 \backslash
21956 spadesuit
21957 \end_layout
21958
21959 \end_inset
21960 </cell>
21961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21962 \begin_inset Text
21963
21964 \begin_layout Plain Layout
21965 \begin_inset Formula $\spadesuit$
21966 \end_inset
21967
21968
21969 \end_layout
21970
21971 \end_inset
21972 </cell>
21973 </row>
21974 <row>
21975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21976 \begin_inset Text
21977
21978 \begin_layout Plain Layout
21979
21980 \backslash
21981 bigstar
21982 \end_layout
21983
21984 \end_inset
21985 </cell>
21986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21987 \begin_inset Text
21988
21989 \begin_layout Plain Layout
21990 \begin_inset Formula $\bigstar$
21991 \end_inset
21992
21993
21994 \end_layout
21995
21996 \end_inset
21997 </cell>
21998 </row>
21999 <row>
22000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22001 \begin_inset Text
22002
22003 \begin_layout Plain Layout
22004
22005 \backslash
22006 blacklozenge
22007 \end_layout
22008
22009 \end_inset
22010 </cell>
22011 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22012 \begin_inset Text
22013
22014 \begin_layout Plain Layout
22015 \begin_inset Formula $\blacklozenge$
22016 \end_inset
22017
22018
22019 \end_layout
22020
22021 \end_inset
22022 </cell>
22023 </row>
22024 <row>
22025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22026 \begin_inset Text
22027
22028 \begin_layout Plain Layout
22029
22030 \backslash
22031 blacktriangle
22032 \end_layout
22033
22034 \end_inset
22035 </cell>
22036 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22037 \begin_inset Text
22038
22039 \begin_layout Plain Layout
22040 \begin_inset Formula $\blacktriangle$
22041 \end_inset
22042
22043
22044 \end_layout
22045
22046 \end_inset
22047 </cell>
22048 </row>
22049 <row>
22050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22051 \begin_inset Text
22052
22053 \begin_layout Plain Layout
22054
22055 \backslash
22056 blacktiangledown
22057 \end_layout
22058
22059 \end_inset
22060 </cell>
22061 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22062 \begin_inset Text
22063
22064 \begin_layout Plain Layout
22065 \begin_inset Formula $\blacktriangledown$
22066 \end_inset
22067
22068
22069 \end_layout
22070
22071 \end_inset
22072 </cell>
22073 </row>
22074 <row>
22075 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22076 \begin_inset Text
22077
22078 \begin_layout Plain Layout
22079
22080 \backslash
22081 bullet
22082 \end_layout
22083
22084 \end_inset
22085 </cell>
22086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22087 \begin_inset Text
22088
22089 \begin_layout Plain Layout
22090 \begin_inset Formula $\bullet$
22091 \end_inset
22092
22093
22094 \end_layout
22095
22096 \end_inset
22097 </cell>
22098 </row>
22099 </lyxtabular>
22100
22101 \end_inset
22102
22103
22104 \begin_inset Tabular
22105 <lyxtabular version="3" rows="10" columns="2">
22106 <features tabularvalignment="middle">
22107 <column alignment="center" valignment="top" width="0pt">
22108 <column alignment="center" valignment="top" width="0pt">
22109 <row>
22110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22111 \begin_inset Text
22112
22113 \begin_layout Plain Layout
22114
22115 \family roman
22116 \series medium
22117 \shape up
22118 \size normal
22119 \emph off
22120 \bar no
22121 \noun off
22122 \color none
22123 コマンド
22124 \end_layout
22125
22126 \end_inset
22127 </cell>
22128 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22129 \begin_inset Text
22130
22131 \begin_layout Plain Layout
22132
22133 \family roman
22134 \series medium
22135 \shape up
22136 \size normal
22137 \emph off
22138 \bar no
22139 \noun off
22140 \color none
22141 出力
22142 \end_layout
22143
22144 \end_inset
22145 </cell>
22146 </row>
22147 <row>
22148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22149 \begin_inset Text
22150
22151 \begin_layout Plain Layout
22152
22153 \backslash
22154 diamondsuit
22155 \end_layout
22156
22157 \end_inset
22158 </cell>
22159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22160 \begin_inset Text
22161
22162 \begin_layout Plain Layout
22163 \begin_inset Formula $\diamondsuit$
22164 \end_inset
22165
22166
22167 \end_layout
22168
22169 \end_inset
22170 </cell>
22171 </row>
22172 <row>
22173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22174 \begin_inset Text
22175
22176 \begin_layout Plain Layout
22177
22178 \backslash
22179 Diamond
22180 \end_layout
22181
22182 \end_inset
22183 </cell>
22184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22185 \begin_inset Text
22186
22187 \begin_layout Plain Layout
22188 \begin_inset Formula $\Diamond$
22189 \end_inset
22190
22191
22192 \end_layout
22193
22194 \end_inset
22195 </cell>
22196 </row>
22197 <row>
22198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22199 \begin_inset Text
22200
22201 \begin_layout Plain Layout
22202
22203 \backslash
22204 heartsuit
22205 \end_layout
22206
22207 \end_inset
22208 </cell>
22209 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22210 \begin_inset Text
22211
22212 \begin_layout Plain Layout
22213 \begin_inset Formula $\heartsuit$
22214 \end_inset
22215
22216
22217 \end_layout
22218
22219 \end_inset
22220 </cell>
22221 </row>
22222 <row>
22223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22224 \begin_inset Text
22225
22226 \begin_layout Plain Layout
22227
22228 \backslash
22229 P
22230 \end_layout
22231
22232 \end_inset
22233 </cell>
22234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22235 \begin_inset Text
22236
22237 \begin_layout Plain Layout
22238 \begin_inset Formula $\P$
22239 \end_inset
22240
22241
22242 \end_layout
22243
22244 \end_inset
22245 </cell>
22246 </row>
22247 <row>
22248 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22249 \begin_inset Text
22250
22251 \begin_layout Plain Layout
22252
22253 \backslash
22254 copyright
22255 \end_layout
22256
22257 \end_inset
22258 </cell>
22259 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22260 \begin_inset Text
22261
22262 \begin_layout Plain Layout
22263 \begin_inset Formula $\copyright$
22264 \end_inset
22265
22266
22267 \end_layout
22268
22269 \end_inset
22270 </cell>
22271 </row>
22272 <row>
22273 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22274 \begin_inset Text
22275
22276 \begin_layout Plain Layout
22277
22278 \backslash
22279 circledR
22280 \end_layout
22281
22282 \end_inset
22283 </cell>
22284 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22285 \begin_inset Text
22286
22287 \begin_layout Plain Layout
22288 \begin_inset Formula $\circledR$
22289 \end_inset
22290
22291
22292 \end_layout
22293
22294 \end_inset
22295 </cell>
22296 </row>
22297 <row>
22298 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22299 \begin_inset Text
22300
22301 \begin_layout Plain Layout
22302
22303 \backslash
22304 maltese
22305 \end_layout
22306
22307 \end_inset
22308 </cell>
22309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22310 \begin_inset Text
22311
22312 \begin_layout Plain Layout
22313 \begin_inset Formula $\maltese$
22314 \end_inset
22315
22316
22317 \end_layout
22318
22319 \end_inset
22320 </cell>
22321 </row>
22322 <row>
22323 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22324 \begin_inset Text
22325
22326 \begin_layout Plain Layout
22327
22328 \backslash
22329 diagup
22330 \end_layout
22331
22332 \end_inset
22333 </cell>
22334 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22335 \begin_inset Text
22336
22337 \begin_layout Plain Layout
22338 \begin_inset Formula $\diagup$
22339 \end_inset
22340
22341
22342 \end_layout
22343
22344 \end_inset
22345 </cell>
22346 </row>
22347 <row>
22348 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22349 \begin_inset Text
22350
22351 \begin_layout Plain Layout
22352
22353 \backslash
22354 diagdown
22355 \end_layout
22356
22357 \end_inset
22358 </cell>
22359 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22360 \begin_inset Text
22361
22362 \begin_layout Plain Layout
22363 \begin_inset Formula $\diagdown$
22364 \end_inset
22365
22366
22367 \end_layout
22368
22369 \end_inset
22370 </cell>
22371 </row>
22372 </lyxtabular>
22373
22374 \end_inset
22375
22376
22377 \end_layout
22378
22379 \begin_layout Standard
22380 \begin_inset VSpace medskip
22381 \end_inset
22382
22383 ここにある以上の記号が、第
22384 \begin_inset CommandInset ref
22385 LatexCommand ref
22386 reference "sub:他の特殊文字"
22387
22388 \end_inset
22389
22390 節に挙げてあります。
22391 \end_layout
22392
22393 \begin_layout Standard
22394 寸法を変えて表示することのできる記号もあります。第
22395 \begin_inset CommandInset ref
22396 LatexCommand ref
22397 reference "sub:書体寸法"
22398
22399 \end_inset
22400
22401 節をご参照下さい。
22402 \end_layout
22403
22404 \begin_layout Subsection
22405 ユーロ通貨記号€
22406 \begin_inset Index idx
22407 status collapsed
22408
22409 \begin_layout Plain Layout
22410 きごう@記号 ! ゆーろつうかきごう@ユーロ通貨記号
22411 \end_layout
22412
22413 \end_inset
22414
22415
22416 \begin_inset Index idx
22417 status collapsed
22418
22419 \begin_layout Plain Layout
22420
22421 \backslash
22422 @
22423 \begin_inset ERT
22424 status collapsed
22425
22426 \begin_layout Plain Layout
22427
22428
22429 \backslash
22430 officialeuro
22431 \end_layout
22432
22433 \end_inset
22434
22435
22436 \end_layout
22437
22438 \end_inset
22439
22440
22441 \end_layout
22442
22443 \begin_layout Standard
22444 ユーロ通貨記号を数式で使用するには、LaTeXパッケージ
22445 \series bold
22446 eurosym
22447 \series default
22448
22449 \begin_inset Index idx
22450 status collapsed
22451
22452 \begin_layout Plain Layout
22453 ぱっけーじ@パッケージ ! eurosym
22454 \end_layout
22455
22456 \end_inset
22457
22458 が導入されていて、以下のようなLaTeXプリアンブル行によって読み込まれていなくてはなりません。
22459 \end_layout
22460
22461 \begin_layout Standard
22462
22463 \series bold
22464
22465 \backslash
22466 usepackage[gennarrow]{eurosym}
22467 \end_layout
22468
22469 \begin_layout Standard
22470 すると、ユーロ通貨記号を
22471 \series bold
22472
22473 \backslash
22474 euro
22475 \series default
22476
22477 \begin_inset Index idx
22478 status collapsed
22479
22480 \begin_layout Plain Layout
22481 こまんど@コマンド ! E ! 
22482 \backslash
22483 euro
22484 \end_layout
22485
22486 \end_inset
22487
22488 コマンドで挿入することができるようになります。
22489 \end_layout
22490
22491 \begin_layout Standard
22492 数式テキストには、
22493 \series bold
22494 eurosym
22495 \series default
22496 が導入されていなくても、ユーロ通貨記号を直接€キーを使って挿入することができます。
22497 \series bold
22498 eurosym
22499 \series default
22500 が導入されていれば、
22501 \series bold
22502
22503 \backslash
22504 euro
22505 \series default
22506 はTeXモードでも挿入することができます。また、正式な通貨記号を
22507 \series bold
22508
22509 \backslash
22510 officialeuro
22511 \series default
22512
22513 \begin_inset Index idx
22514 status collapsed
22515
22516 \begin_layout Plain Layout
22517 こまんど@コマンド ! O ! 
22518 \backslash
22519 officialeuro
22520 \end_layout
22521
22522 \end_inset
22523
22524 コマンド(これはTeXモードでのみ使用することができます)で挿入することができます。
22525 \end_layout
22526
22527 \begin_layout Standard
22528 \begin_inset ERT
22529 status collapsed
22530
22531 \begin_layout Plain Layout
22532
22533
22534 \backslash
22535 ifeurosym 
22536 \end_layout
22537
22538 \end_inset
22539
22540
22541 \begin_inset Note Note
22542 status open
22543
22544 \begin_layout Plain Layout
22545 以下の表は、LaTeXパッケージ
22546 \series bold
22547 eurosym
22548 \series default
22549 が導入済みのときのみ表示されます。
22550 \end_layout
22551
22552 \end_inset
22553
22554
22555 \end_layout
22556
22557 \begin_layout Standard
22558 以下は、各ユーロ通貨記号のまとめです。
22559 \end_layout
22560
22561 \begin_layout Standard
22562 \align center
22563 \begin_inset Tabular
22564 <lyxtabular version="3" rows="4" columns="3">
22565 <features tabularvalignment="middle">
22566 <column alignment="center" valignment="top" width="0pt">
22567 <column alignment="center" valignment="top" width="0pt">
22568 <column alignment="center" valignment="top" width="0pt">
22569 <row>
22570 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22571 \begin_inset Text
22572
22573 \begin_layout Plain Layout
22574
22575 \end_layout
22576
22577 \end_inset
22578 </cell>
22579 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22580 \begin_inset Text
22581
22582 \begin_layout Plain Layout
22583 コマンド
22584 \end_layout
22585
22586 \end_inset
22587 </cell>
22588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22589 \begin_inset Text
22590
22591 \begin_layout Plain Layout
22592 出力
22593 \end_layout
22594
22595 \end_inset
22596 </cell>
22597 </row>
22598 <row>
22599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22600 \begin_inset Text
22601
22602 \begin_layout Plain Layout
22603 数式
22604 \end_layout
22605
22606 \end_inset
22607 </cell>
22608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22609 \begin_inset Text
22610
22611 \begin_layout Plain Layout
22612
22613 \backslash
22614 euro
22615 \end_layout
22616
22617 \end_inset
22618 </cell>
22619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22620 \begin_inset Text
22621
22622 \begin_layout Plain Layout
22623 \begin_inset Formula $\euro$
22624 \end_inset
22625
22626
22627 \end_layout
22628
22629 \end_inset
22630 </cell>
22631 </row>
22632 <row>
22633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22634 \begin_inset Text
22635
22636 \begin_layout Plain Layout
22637 数式テキスト
22638 \end_layout
22639
22640 \end_inset
22641 </cell>
22642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22643 \begin_inset Text
22644
22645 \begin_layout Plain Layout
22646
22647 \end_layout
22648
22649 \end_inset
22650 </cell>
22651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22652 \begin_inset Text
22653
22654 \begin_layout Plain Layout
22655 \begin_inset Formula $\mbox{€}$
22656 \end_inset
22657
22658
22659 \end_layout
22660
22661 \end_inset
22662 </cell>
22663 </row>
22664 <row>
22665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22666 \begin_inset Text
22667
22668 \begin_layout Plain Layout
22669 TeXモード
22670 \end_layout
22671
22672 \end_inset
22673 </cell>
22674 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22675 \begin_inset Text
22676
22677 \begin_layout Plain Layout
22678
22679 \backslash
22680 officialeuro
22681 \end_layout
22682
22683 \end_inset
22684 </cell>
22685 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22686 \begin_inset Text
22687
22688 \begin_layout Plain Layout
22689 \begin_inset ERT
22690 status collapsed
22691
22692 \begin_layout Plain Layout
22693
22694
22695 \backslash
22696 officialeuro
22697 \end_layout
22698
22699 \end_inset
22700
22701
22702 \end_layout
22703
22704 \end_inset
22705 </cell>
22706 </row>
22707 </lyxtabular>
22708
22709 \end_inset
22710
22711
22712 \end_layout
22713
22714 \begin_layout Standard
22715 \begin_inset ERT
22716 status collapsed
22717
22718 \begin_layout Plain Layout
22719
22720
22721 \backslash
22722 else 
22723 \end_layout
22724
22725 \end_inset
22726
22727
22728 \begin_inset Note Note
22729 status open
22730
22731 \begin_layout Plain Layout
22732 以下は、LaTeXパッケージ
22733 \series bold
22734 eurosym
22735 \series default
22736 が導入されていないときのみ表示されます。
22737 \end_layout
22738
22739 \end_inset
22740
22741
22742 \end_layout
22743
22744 \begin_layout Standard
22745 本節の残りを出力としてみるためには、LaTeXパッケージ
22746 \series bold
22747 eurosym
22748 \series default
22749 を導入する必要があります。
22750 \end_layout
22751
22752 \begin_layout Standard
22753 \begin_inset ERT
22754 status collapsed
22755
22756 \begin_layout Plain Layout
22757
22758
22759 \backslash
22760 fi 
22761 \end_layout
22762
22763 \end_inset
22764
22765
22766 \end_layout
22767
22768 \begin_layout Section
22769 関係子
22770 \begin_inset CommandInset label
22771 LatexCommand label
22772 name "sec:関係子"
22773
22774 \end_inset
22775
22776
22777 \begin_inset Index idx
22778 status collapsed
22779
22780 \begin_layout Plain Layout
22781 かんけいし@関係子
22782 \end_layout
22783
22784 \end_inset
22785
22786
22787 \begin_inset Index idx
22788 status collapsed
22789
22790 \begin_layout Plain Layout
22791 ひかくし@比較子|see
22792 \begin_inset ERT
22793 status collapsed
22794
22795 \begin_layout Plain Layout
22796
22797 {
22798 \end_layout
22799
22800 \end_inset
22801
22802 関係子
22803 \begin_inset ERT
22804 status collapsed
22805
22806 \begin_layout Plain Layout
22807
22808 }
22809 \end_layout
22810
22811 \end_inset
22812
22813
22814 \end_layout
22815
22816 \end_inset
22817
22818
22819 \end_layout
22820
22821 \begin_layout Standard
22822 関係子はすべて、ツールバーボタンの
22823 \begin_inset Graphics
22824         filename ../../images/math/leq.png
22825         scale 85
22826
22827 \end_inset
22828
22829 でも挿入することができます。
22830 \end_layout
22831
22832 \begin_layout Standard
22833 \begin_inset space \hfill{}
22834 \end_inset
22835
22836
22837 \begin_inset Tabular
22838 <lyxtabular version="3" rows="17" columns="2">
22839 <features tabularvalignment="middle">
22840 <column alignment="center" valignment="top" width="0pt">
22841 <column alignment="center" valignment="top" width="0pt">
22842 <row>
22843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22844 \begin_inset Text
22845
22846 \begin_layout Plain Layout
22847 コマンド
22848 \end_layout
22849
22850 \end_inset
22851 </cell>
22852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22853 \begin_inset Text
22854
22855 \begin_layout Plain Layout
22856 出力
22857 \end_layout
22858
22859 \end_inset
22860 </cell>
22861 </row>
22862 <row>
22863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22864 \begin_inset Text
22865
22866 \begin_layout Plain Layout
22867 \begin_inset Formula $<$
22868 \end_inset
22869
22870
22871 \end_layout
22872
22873 \end_inset
22874 </cell>
22875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22876 \begin_inset Text
22877
22878 \begin_layout Plain Layout
22879 \begin_inset Formula $<$
22880 \end_inset
22881
22882
22883 \end_layout
22884
22885 \end_inset
22886 </cell>
22887 </row>
22888 <row>
22889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22890 \begin_inset Text
22891
22892 \begin_layout Plain Layout
22893
22894 \backslash
22895 le
22896 \end_layout
22897
22898 \end_inset
22899 </cell>
22900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22901 \begin_inset Text
22902
22903 \begin_layout Plain Layout
22904 \begin_inset Formula $\le$
22905 \end_inset
22906
22907
22908 \end_layout
22909
22910 \end_inset
22911 </cell>
22912 </row>
22913 <row>
22914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22915 \begin_inset Text
22916
22917 \begin_layout Plain Layout
22918
22919 \backslash
22920 ll
22921 \end_layout
22922
22923 \end_inset
22924 </cell>
22925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22926 \begin_inset Text
22927
22928 \begin_layout Plain Layout
22929 \begin_inset Formula $\ll$
22930 \end_inset
22931
22932
22933 \end_layout
22934
22935 \end_inset
22936 </cell>
22937 </row>
22938 <row>
22939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22940 \begin_inset Text
22941
22942 \begin_layout Plain Layout
22943
22944 \backslash
22945 prec
22946 \end_layout
22947
22948 \end_inset
22949 </cell>
22950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22951 \begin_inset Text
22952
22953 \begin_layout Plain Layout
22954 \begin_inset Formula $\prec$
22955 \end_inset
22956
22957
22958 \end_layout
22959
22960 \end_inset
22961 </cell>
22962 </row>
22963 <row>
22964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22965 \begin_inset Text
22966
22967 \begin_layout Plain Layout
22968
22969 \backslash
22970 preceq
22971 \end_layout
22972
22973 \end_inset
22974 </cell>
22975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22976 \begin_inset Text
22977
22978 \begin_layout Plain Layout
22979 \begin_inset Formula $\preceq$
22980 \end_inset
22981
22982
22983 \end_layout
22984
22985 \end_inset
22986 </cell>
22987 </row>
22988 <row>
22989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22990 \begin_inset Text
22991
22992 \begin_layout Plain Layout
22993
22994 \backslash
22995 subset
22996 \end_layout
22997
22998 \end_inset
22999 </cell>
23000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23001 \begin_inset Text
23002
23003 \begin_layout Plain Layout
23004 \begin_inset Formula $\subset$
23005 \end_inset
23006
23007
23008 \end_layout
23009
23010 \end_inset
23011 </cell>
23012 </row>
23013 <row>
23014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23015 \begin_inset Text
23016
23017 \begin_layout Plain Layout
23018
23019 \backslash
23020 subseteq
23021 \end_layout
23022
23023 \end_inset
23024 </cell>
23025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23026 \begin_inset Text
23027
23028 \begin_layout Plain Layout
23029 \begin_inset Formula $\subseteq$
23030 \end_inset
23031
23032
23033 \end_layout
23034
23035 \end_inset
23036 </cell>
23037 </row>
23038 <row>
23039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23040 \begin_inset Text
23041
23042 \begin_layout Plain Layout
23043
23044 \backslash
23045 sqsubseteq
23046 \end_layout
23047
23048 \end_inset
23049 </cell>
23050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23051 \begin_inset Text
23052
23053 \begin_layout Plain Layout
23054 \begin_inset Formula $\sqsubseteq$
23055 \end_inset
23056
23057
23058 \end_layout
23059
23060 \end_inset
23061 </cell>
23062 </row>
23063 <row>
23064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23065 \begin_inset Text
23066
23067 \begin_layout Plain Layout
23068
23069 \backslash
23070 in
23071 \end_layout
23072
23073 \end_inset
23074 </cell>
23075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23076 \begin_inset Text
23077
23078 \begin_layout Plain Layout
23079 \begin_inset Formula $\in$
23080 \end_inset
23081
23082
23083 \end_layout
23084
23085 \end_inset
23086 </cell>
23087 </row>
23088 <row>
23089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23090 \begin_inset Text
23091
23092 \begin_layout Plain Layout
23093
23094 \backslash
23095 vdash
23096 \end_layout
23097
23098 \end_inset
23099 </cell>
23100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23101 \begin_inset Text
23102
23103 \begin_layout Plain Layout
23104 \begin_inset Formula $\vdash$
23105 \end_inset
23106
23107
23108 \end_layout
23109
23110 \end_inset
23111 </cell>
23112 </row>
23113 <row>
23114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23115 \begin_inset Text
23116
23117 \begin_layout Plain Layout
23118
23119 \backslash
23120 smile
23121 \end_layout
23122
23123 \end_inset
23124 </cell>
23125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23126 \begin_inset Text
23127
23128 \begin_layout Plain Layout
23129 \begin_inset Formula $\smile$
23130 \end_inset
23131
23132
23133 \end_layout
23134
23135 \end_inset
23136 </cell>
23137 </row>
23138 <row>
23139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23140 \begin_inset Text
23141
23142 \begin_layout Plain Layout
23143
23144 \backslash
23145 lhd
23146 \end_layout
23147
23148 \end_inset
23149 </cell>
23150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23151 \begin_inset Text
23152
23153 \begin_layout Plain Layout
23154 \begin_inset Formula $\lhd$
23155 \end_inset
23156
23157
23158 \end_layout
23159
23160 \end_inset
23161 </cell>
23162 </row>
23163 <row>
23164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23165 \begin_inset Text
23166
23167 \begin_layout Plain Layout
23168
23169 \backslash
23170 unlhd
23171 \end_layout
23172
23173 \end_inset
23174 </cell>
23175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23176 \begin_inset Text
23177
23178 \begin_layout Plain Layout
23179 \begin_inset Formula $\unlhd$
23180 \end_inset
23181
23182
23183 \end_layout
23184
23185 \end_inset
23186 </cell>
23187 </row>
23188 <row>
23189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23190 \begin_inset Text
23191
23192 \begin_layout Plain Layout
23193
23194 \backslash
23195 gtrless
23196 \end_layout
23197
23198 \end_inset
23199 </cell>
23200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23201 \begin_inset Text
23202
23203 \begin_layout Plain Layout
23204 \begin_inset Formula $\gtrless$
23205 \end_inset
23206
23207
23208 \end_layout
23209
23210 \end_inset
23211 </cell>
23212 </row>
23213 <row>
23214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23215 \begin_inset Text
23216
23217 \begin_layout Plain Layout
23218
23219 \backslash
23220 mid
23221 \end_layout
23222
23223 \end_inset
23224 </cell>
23225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23226 \begin_inset Text
23227
23228 \begin_layout Plain Layout
23229 \begin_inset Formula $\mid$
23230 \end_inset
23231
23232
23233 \end_layout
23234
23235 \end_inset
23236 </cell>
23237 </row>
23238 <row>
23239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23240 \begin_inset Text
23241
23242 \begin_layout Plain Layout
23243
23244 \backslash
23245 nmid
23246 \end_layout
23247
23248 \end_inset
23249 </cell>
23250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23251 \begin_inset Text
23252
23253 \begin_layout Plain Layout
23254 \begin_inset Formula $\nmid$
23255 \end_inset
23256
23257
23258 \end_layout
23259
23260 \end_inset
23261 </cell>
23262 </row>
23263 </lyxtabular>
23264
23265 \end_inset
23266
23267
23268 \begin_inset space \hfill{}
23269 \end_inset
23270
23271
23272 \begin_inset Tabular
23273 <lyxtabular version="3" rows="17" columns="2">
23274 <features tabularvalignment="middle">
23275 <column alignment="center" valignment="top" width="0pt">
23276 <column alignment="center" valignment="top" width="0pt">
23277 <row>
23278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23279 \begin_inset Text
23280
23281 \begin_layout Plain Layout
23282 コマンド
23283 \end_layout
23284
23285 \end_inset
23286 </cell>
23287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23288 \begin_inset Text
23289
23290 \begin_layout Plain Layout
23291 出力
23292 \end_layout
23293
23294 \end_inset
23295 </cell>
23296 </row>
23297 <row>
23298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23299 \begin_inset Text
23300
23301 \begin_layout Plain Layout
23302 =
23303 \end_layout
23304
23305 \end_inset
23306 </cell>
23307 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23308 \begin_inset Text
23309
23310 \begin_layout Plain Layout
23311 \begin_inset Formula $=$
23312 \end_inset
23313
23314
23315 \end_layout
23316
23317 \end_inset
23318 </cell>
23319 </row>
23320 <row>
23321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23322 \begin_inset Text
23323
23324 \begin_layout Plain Layout
23325
23326 \backslash
23327 not=
23328 \end_layout
23329
23330 \end_inset
23331 </cell>
23332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23333 \begin_inset Text
23334
23335 \begin_layout Plain Layout
23336 \begin_inset Formula $\not=$
23337 \end_inset
23338
23339
23340 \end_layout
23341
23342 \end_inset
23343 </cell>
23344 </row>
23345 <row>
23346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23347 \begin_inset Text
23348
23349 \begin_layout Plain Layout
23350
23351 \backslash
23352 equiv
23353 \end_layout
23354
23355 \end_inset
23356 </cell>
23357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23358 \begin_inset Text
23359
23360 \begin_layout Plain Layout
23361 \begin_inset Formula $\equiv$
23362 \end_inset
23363
23364
23365 \end_layout
23366
23367 \end_inset
23368 </cell>
23369 </row>
23370 <row>
23371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23372 \begin_inset Text
23373
23374 \begin_layout Plain Layout
23375
23376 \backslash
23377 sim
23378 \end_layout
23379
23380 \end_inset
23381 </cell>
23382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23383 \begin_inset Text
23384
23385 \begin_layout Plain Layout
23386 \begin_inset Formula $\sim$
23387 \end_inset
23388
23389
23390 \end_layout
23391
23392 \end_inset
23393 </cell>
23394 </row>
23395 <row>
23396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23397 \begin_inset Text
23398
23399 \begin_layout Plain Layout
23400
23401 \backslash
23402 simeq
23403 \end_layout
23404
23405 \end_inset
23406 </cell>
23407 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23408 \begin_inset Text
23409
23410 \begin_layout Plain Layout
23411 \begin_inset Formula $\simeq$
23412 \end_inset
23413
23414
23415 \end_layout
23416
23417 \end_inset
23418 </cell>
23419 </row>
23420 <row>
23421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23422 \begin_inset Text
23423
23424 \begin_layout Plain Layout
23425
23426 \backslash
23427 approx
23428 \end_layout
23429
23430 \end_inset
23431 </cell>
23432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23433 \begin_inset Text
23434
23435 \begin_layout Plain Layout
23436 \begin_inset Formula $\approx$
23437 \end_inset
23438
23439
23440 \end_layout
23441
23442 \end_inset
23443 </cell>
23444 </row>
23445 <row>
23446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23447 \begin_inset Text
23448
23449 \begin_layout Plain Layout
23450
23451 \backslash
23452 cong
23453 \end_layout
23454
23455 \end_inset
23456 </cell>
23457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23458 \begin_inset Text
23459
23460 \begin_layout Plain Layout
23461 \begin_inset Formula $\cong$
23462 \end_inset
23463
23464
23465 \end_layout
23466
23467 \end_inset
23468 </cell>
23469 </row>
23470 <row>
23471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23472 \begin_inset Text
23473
23474 \begin_layout Plain Layout
23475
23476 \backslash
23477 bowtie
23478 \end_layout
23479
23480 \end_inset
23481 </cell>
23482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23483 \begin_inset Text
23484
23485 \begin_layout Plain Layout
23486 \begin_inset Formula $\bowtie$
23487 \end_inset
23488
23489
23490 \end_layout
23491
23492 \end_inset
23493 </cell>
23494 </row>
23495 <row>
23496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23497 \begin_inset Text
23498
23499 \begin_layout Plain Layout
23500
23501 \backslash
23502 notin
23503 \end_layout
23504
23505 \end_inset
23506 </cell>
23507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23508 \begin_inset Text
23509
23510 \begin_layout Plain Layout
23511 \begin_inset Formula $\notin$
23512 \end_inset
23513
23514
23515 \end_layout
23516
23517 \end_inset
23518 </cell>
23519 </row>
23520 <row>
23521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23522 \begin_inset Text
23523
23524 \begin_layout Plain Layout
23525
23526 \backslash
23527 perp
23528 \end_layout
23529
23530 \end_inset
23531 </cell>
23532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23533 \begin_inset Text
23534
23535 \begin_layout Plain Layout
23536 \begin_inset Formula $\perp$
23537 \end_inset
23538
23539
23540 \end_layout
23541
23542 \end_inset
23543 </cell>
23544 </row>
23545 <row>
23546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23547 \begin_inset Text
23548
23549 \begin_layout Plain Layout
23550
23551 \backslash
23552 propto
23553 \end_layout
23554
23555 \end_inset
23556 </cell>
23557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23558 \begin_inset Text
23559
23560 \begin_layout Plain Layout
23561 \begin_inset Formula $\propto$
23562 \end_inset
23563
23564
23565 \end_layout
23566
23567 \end_inset
23568 </cell>
23569 </row>
23570 <row>
23571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23572 \begin_inset Text
23573
23574 \begin_layout Plain Layout
23575
23576 \backslash
23577 asymp
23578 \end_layout
23579
23580 \end_inset
23581 </cell>
23582 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23583 \begin_inset Text
23584
23585 \begin_layout Plain Layout
23586 \begin_inset Formula $\asymp$
23587 \end_inset
23588
23589
23590 \end_layout
23591
23592 \end_inset
23593 </cell>
23594 </row>
23595 <row>
23596 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23597 \begin_inset Text
23598
23599 \begin_layout Plain Layout
23600
23601 \backslash
23602 doteq
23603 \end_layout
23604
23605 \end_inset
23606 </cell>
23607 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23608 \begin_inset Text
23609
23610 \begin_layout Plain Layout
23611 \begin_inset Formula $\doteq$
23612 \end_inset
23613
23614
23615 \end_layout
23616
23617 \end_inset
23618 </cell>
23619 </row>
23620 <row>
23621 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23622 \begin_inset Text
23623
23624 \begin_layout Plain Layout
23625
23626 \backslash
23627 circeq
23628 \end_layout
23629
23630 \end_inset
23631 </cell>
23632 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23633 \begin_inset Text
23634
23635 \begin_layout Plain Layout
23636 \begin_inset Formula $\circeq$
23637 \end_inset
23638
23639
23640 \end_layout
23641
23642 \end_inset
23643 </cell>
23644 </row>
23645 <row>
23646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23647 \begin_inset Text
23648
23649 \begin_layout Plain Layout
23650
23651 \backslash
23652 models
23653 \end_layout
23654
23655 \end_inset
23656 </cell>
23657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23658 \begin_inset Text
23659
23660 \begin_layout Plain Layout
23661 \begin_inset Formula $\models$
23662 \end_inset
23663
23664
23665 \end_layout
23666
23667 \end_inset
23668 </cell>
23669 </row>
23670 <row>
23671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23672 \begin_inset Text
23673
23674 \begin_layout Plain Layout
23675
23676 \backslash
23677 widehat=
23678 \end_layout
23679
23680 \end_inset
23681 </cell>
23682 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23683 \begin_inset Text
23684
23685 \begin_layout Plain Layout
23686 \begin_inset Formula $\widehat{=}$
23687 \end_inset
23688
23689
23690 \end_layout
23691
23692 \end_inset
23693 </cell>
23694 </row>
23695 </lyxtabular>
23696
23697 \end_inset
23698
23699
23700 \begin_inset space \hfill{}
23701 \end_inset
23702
23703
23704 \begin_inset Tabular
23705 <lyxtabular version="3" rows="17" columns="2">
23706 <features tabularvalignment="middle">
23707 <column alignment="center" valignment="top" width="0pt">
23708 <column alignment="center" valignment="top" width="0pt">
23709 <row>
23710 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23711 \begin_inset Text
23712
23713 \begin_layout Plain Layout
23714
23715 \family roman
23716 \series medium
23717 \shape up
23718 \size normal
23719 \emph off
23720 \bar no
23721 \noun off
23722 \color none
23723 コマンド
23724 \end_layout
23725
23726 \end_inset
23727 </cell>
23728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23729 \begin_inset Text
23730
23731 \begin_layout Plain Layout
23732
23733 \family roman
23734 \series medium
23735 \shape up
23736 \size normal
23737 \emph off
23738 \bar no
23739 \noun off
23740 \color none
23741 出力
23742 \end_layout
23743
23744 \end_inset
23745 </cell>
23746 </row>
23747 <row>
23748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23749 \begin_inset Text
23750
23751 \begin_layout Plain Layout
23752 \begin_inset Formula $>$
23753 \end_inset
23754
23755
23756 \end_layout
23757
23758 \end_inset
23759 </cell>
23760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23761 \begin_inset Text
23762
23763 \begin_layout Plain Layout
23764 \begin_inset Formula $>$
23765 \end_inset
23766
23767
23768 \end_layout
23769
23770 \end_inset
23771 </cell>
23772 </row>
23773 <row>
23774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23775 \begin_inset Text
23776
23777 \begin_layout Plain Layout
23778
23779 \backslash
23780 ge
23781 \end_layout
23782
23783 \end_inset
23784 </cell>
23785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23786 \begin_inset Text
23787
23788 \begin_layout Plain Layout
23789 \begin_inset Formula $\ge$
23790 \end_inset
23791
23792
23793 \end_layout
23794
23795 \end_inset
23796 </cell>
23797 </row>
23798 <row>
23799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23800 \begin_inset Text
23801
23802 \begin_layout Plain Layout
23803
23804 \backslash
23805 gg
23806 \end_layout
23807
23808 \end_inset
23809 </cell>
23810 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23811 \begin_inset Text
23812
23813 \begin_layout Plain Layout
23814 \begin_inset Formula $\gg$
23815 \end_inset
23816
23817
23818 \end_layout
23819
23820 \end_inset
23821 </cell>
23822 </row>
23823 <row>
23824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23825 \begin_inset Text
23826
23827 \begin_layout Plain Layout
23828
23829 \backslash
23830 succ
23831 \end_layout
23832
23833 \end_inset
23834 </cell>
23835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23836 \begin_inset Text
23837
23838 \begin_layout Plain Layout
23839 \begin_inset Formula $\succ$
23840 \end_inset
23841
23842
23843 \end_layout
23844
23845 \end_inset
23846 </cell>
23847 </row>
23848 <row>
23849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23850 \begin_inset Text
23851
23852 \begin_layout Plain Layout
23853
23854 \backslash
23855 succeq
23856 \end_layout
23857
23858 \end_inset
23859 </cell>
23860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23861 \begin_inset Text
23862
23863 \begin_layout Plain Layout
23864 \begin_inset Formula $\succeq$
23865 \end_inset
23866
23867
23868 \end_layout
23869
23870 \end_inset
23871 </cell>
23872 </row>
23873 <row>
23874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23875 \begin_inset Text
23876
23877 \begin_layout Plain Layout
23878
23879 \backslash
23880 supset
23881 \end_layout
23882
23883 \end_inset
23884 </cell>
23885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23886 \begin_inset Text
23887
23888 \begin_layout Plain Layout
23889 \begin_inset Formula $\supset$
23890 \end_inset
23891
23892
23893 \end_layout
23894
23895 \end_inset
23896 </cell>
23897 </row>
23898 <row>
23899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23900 \begin_inset Text
23901
23902 \begin_layout Plain Layout
23903
23904 \backslash
23905 supseteq
23906 \end_layout
23907
23908 \end_inset
23909 </cell>
23910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23911 \begin_inset Text
23912
23913 \begin_layout Plain Layout
23914 \begin_inset Formula $\supseteq$
23915 \end_inset
23916
23917
23918 \end_layout
23919
23920 \end_inset
23921 </cell>
23922 </row>
23923 <row>
23924 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23925 \begin_inset Text
23926
23927 \begin_layout Plain Layout
23928
23929 \backslash
23930 sqsupseteq
23931 \end_layout
23932
23933 \end_inset
23934 </cell>
23935 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23936 \begin_inset Text
23937
23938 \begin_layout Plain Layout
23939 \begin_inset Formula $\sqsupseteq$
23940 \end_inset
23941
23942
23943 \end_layout
23944
23945 \end_inset
23946 </cell>
23947 </row>
23948 <row>
23949 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23950 \begin_inset Text
23951
23952 \begin_layout Plain Layout
23953
23954 \backslash
23955 ni
23956 \end_layout
23957
23958 \end_inset
23959 </cell>
23960 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23961 \begin_inset Text
23962
23963 \begin_layout Plain Layout
23964 \begin_inset Formula $\ni$
23965 \end_inset
23966
23967
23968 \end_layout
23969
23970 \end_inset
23971 </cell>
23972 </row>
23973 <row>
23974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23975 \begin_inset Text
23976
23977 \begin_layout Plain Layout
23978
23979 \backslash
23980 dashv
23981 \end_layout
23982
23983 \end_inset
23984 </cell>
23985 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23986 \begin_inset Text
23987
23988 \begin_layout Plain Layout
23989 \begin_inset Formula $\dashv$
23990 \end_inset
23991
23992
23993 \end_layout
23994
23995 \end_inset
23996 </cell>
23997 </row>
23998 <row>
23999 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24000 \begin_inset Text
24001
24002 \begin_layout Plain Layout
24003
24004 \backslash
24005 frown
24006 \end_layout
24007
24008 \end_inset
24009 </cell>
24010 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24011 \begin_inset Text
24012
24013 \begin_layout Plain Layout
24014 \begin_inset Formula $\frown$
24015 \end_inset
24016
24017
24018 \end_layout
24019
24020 \end_inset
24021 </cell>
24022 </row>
24023 <row>
24024 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24025 \begin_inset Text
24026
24027 \begin_layout Plain Layout
24028
24029 \backslash
24030 rhd
24031 \end_layout
24032
24033 \end_inset
24034 </cell>
24035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24036 \begin_inset Text
24037
24038 \begin_layout Plain Layout
24039 \begin_inset Formula $\rhd$
24040 \end_inset
24041
24042
24043 \end_layout
24044
24045 \end_inset
24046 </cell>
24047 </row>
24048 <row>
24049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24050 \begin_inset Text
24051
24052 \begin_layout Plain Layout
24053
24054 \backslash
24055 unrhd
24056 \end_layout
24057
24058 \end_inset
24059 </cell>
24060 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24061 \begin_inset Text
24062
24063 \begin_layout Plain Layout
24064 \begin_inset Formula $\unrhd$
24065 \end_inset
24066
24067
24068 \end_layout
24069
24070 \end_inset
24071 </cell>
24072 </row>
24073 <row>
24074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24075 \begin_inset Text
24076
24077 \begin_layout Plain Layout
24078
24079 \backslash
24080 lessgtr
24081 \end_layout
24082
24083 \end_inset
24084 </cell>
24085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24086 \begin_inset Text
24087
24088 \begin_layout Plain Layout
24089 \begin_inset Formula $\lessgtr$
24090 \end_inset
24091
24092
24093 \end_layout
24094
24095 \end_inset
24096 </cell>
24097 </row>
24098 <row>
24099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24100 \begin_inset Text
24101
24102 \begin_layout Plain Layout
24103
24104 \backslash
24105 parallel
24106 \end_layout
24107
24108 \end_inset
24109 </cell>
24110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24111 \begin_inset Text
24112
24113 \begin_layout Plain Layout
24114 \begin_inset Formula $\parallel$
24115 \end_inset
24116
24117
24118 \end_layout
24119
24120 \end_inset
24121 </cell>
24122 </row>
24123 <row>
24124 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24125 \begin_inset Text
24126
24127 \begin_layout Plain Layout
24128
24129 \backslash
24130 nparallel
24131 \end_layout
24132
24133 \end_inset
24134 </cell>
24135 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24136 \begin_inset Text
24137
24138 \begin_layout Plain Layout
24139 \begin_inset Formula $\nparallel$
24140 \end_inset
24141
24142
24143 \end_layout
24144
24145 \end_inset
24146 </cell>
24147 </row>
24148 </lyxtabular>
24149
24150 \end_inset
24151
24152
24153 \begin_inset space \hfill{}
24154 \end_inset
24155
24156
24157 \end_layout
24158
24159 \begin_layout Standard
24160 \begin_inset VSpace medskip
24161 \end_inset
24162
24163
24164 \series bold
24165
24166 \backslash
24167 lhd
24168 \series default
24169
24170 \series bold
24171
24172 \backslash
24173 rhd
24174 \series default
24175 の文字は、同じように見える演算子
24176 \series bold
24177
24178 \backslash
24179 triangleleft
24180 \series default
24181 および
24182 \series bold
24183
24184 \backslash
24185 triangleright
24186 \series default
24187 よりも大きくなっています。
24188 \end_layout
24189
24190 \begin_layout Standard
24191 関係子は、記号とは違って、つねに前後に余白が置かれます。
24192 \end_layout
24193
24194 \begin_layout Standard
24195
24196 \series bold
24197
24198 \backslash
24199 stackrel
24200 \series default
24201
24202 \begin_inset Index idx
24203 status collapsed
24204
24205 \begin_layout Plain Layout
24206 こまんど@コマンド ! S ! 
24207 \backslash
24208 stackrel
24209 \end_layout
24210
24211 \end_inset
24212
24213 コマンドを使うと、以下のように、ラベル付きの関係子を作ることができます。
24214 \end_layout
24215
24216 \begin_layout Standard
24217 \align center
24218 \begin_inset Tabular
24219 <lyxtabular version="3" rows="2" columns="2">
24220 <features tabularvalignment="middle">
24221 <column alignment="center" valignment="top" width="0">
24222 <column alignment="center" valignment="top" width="0">
24223 <row>
24224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24225 \begin_inset Text
24226
24227 \begin_layout Plain Layout
24228 コマンド
24229 \end_layout
24230
24231 \end_inset
24232 </cell>
24233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24234 \begin_inset Text
24235
24236 \begin_layout Plain Layout
24237 出力
24238 \begin_inset Note Note
24239 status collapsed
24240
24241 \begin_layout Plain Layout
24242 ここで
24243 \series bold
24244
24245 \backslash
24246 raisebox
24247 \series default
24248 はスペーサーとして使用しているだけです。
24249 \end_layout
24250
24251 \end_inset
24252
24253
24254 \end_layout
24255
24256 \end_inset
24257 </cell>
24258 </row>
24259 <row>
24260 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24261 \begin_inset Text
24262
24263 \begin_layout Plain Layout
24264 A(r)
24265 \backslash
24266 stackrel
24267 \begin_inset ERT
24268 status collapsed
24269
24270 \begin_layout Plain Layout
24271
24272
24273 \backslash
24274 spce 
24275 \end_layout
24276
24277 \end_inset
24278
24279 r
24280 \backslash
24281 to
24282 \backslash
24283 infty
24284 \begin_inset ERT
24285 status collapsed
24286
24287 \begin_layout Plain Layout
24288
24289
24290 \backslash
24291 spce 
24292 \end_layout
24293
24294 \end_inset
24295
24296
24297 \begin_inset Formula $\downarrow$
24298 \end_inset
24299
24300
24301 \backslash
24302 approx
24303 \begin_inset ERT
24304 status collapsed
24305
24306 \begin_layout Plain Layout
24307
24308
24309 \backslash
24310 spce 
24311 \end_layout
24312
24313 \end_inset
24314
24315
24316 \begin_inset ERT
24317 status collapsed
24318
24319 \begin_layout Plain Layout
24320
24321
24322 \backslash
24323 spce 
24324 \end_layout
24325
24326 \end_inset
24327
24328 B
24329 \end_layout
24330
24331 \end_inset
24332 </cell>
24333 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24334 \begin_inset Text
24335
24336 \begin_layout Plain Layout
24337 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24338 \end_inset
24339
24340
24341 \end_layout
24342
24343 \end_inset
24344 </cell>
24345 </row>
24346 </lyxtabular>
24347
24348 \end_inset
24349
24350
24351 \end_layout
24352
24353 \begin_layout Section
24354 函数
24355 \end_layout
24356
24357 \begin_layout Subsection
24358 定義済み函数
24359 \begin_inset CommandInset label
24360 LatexCommand label
24361 name "sub:定義済み函数"
24362
24363 \end_inset
24364
24365
24366 \begin_inset Index idx
24367 status collapsed
24368
24369 \begin_layout Plain Layout
24370 かんすう@函数 ! ていぎずみ@定義済み
24371 \end_layout
24372
24373 \end_inset
24374
24375
24376 \end_layout
24377
24378 \begin_layout Standard
24379 一般的に、数式表現では変数は
24380 \shape italic
24381 イタリック体
24382 \shape default
24383 に設定されますが、函数名はイタリック体にしません。なぜなら、
24384 \begin_inset Formula $sin$
24385 \end_inset
24386
24387
24388 \begin_inset Formula $s\cdot i\cdot n$
24389 \end_inset
24390
24391 であるかのように誤解させる恐れがあるためです。そのために、定義済み函数が存在し、これらは先行する要素よりも少し離れて配置されます。定義済み函数は、函数名の前にバ
24392 ックスラッシュを加えたコマンドとして挿入します。
24393 \end_layout
24394
24395 \begin_layout Standard
24396 \align center
24397 \begin_inset Tabular
24398 <lyxtabular version="3" rows="2" columns="4">
24399 <features tabularvalignment="middle">
24400 <column alignment="center" valignment="top" width="0pt">
24401 <column alignment="center" valignment="top" width="0pt">
24402 <column alignment="center" valignment="top" width="0pt">
24403 <column alignment="center" valignment="top" width="0pt">
24404 <row>
24405 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24406 \begin_inset Text
24407
24408 \begin_layout Plain Layout
24409 コマンド
24410 \end_layout
24411
24412 \end_inset
24413 </cell>
24414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24415 \begin_inset Text
24416
24417 \begin_layout Plain Layout
24418 出力
24419 \end_layout
24420
24421 \end_inset
24422 </cell>
24423 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24424 \begin_inset Text
24425
24426 \begin_layout Plain Layout
24427 コマンド
24428 \end_layout
24429
24430 \end_inset
24431 </cell>
24432 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24433 \begin_inset Text
24434
24435 \begin_layout Plain Layout
24436 出力
24437 \end_layout
24438
24439 \end_inset
24440 </cell>
24441 </row>
24442 <row>
24443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24444 \begin_inset Text
24445
24446 \begin_layout Plain Layout
24447 Asin(x)+B
24448 \end_layout
24449
24450 \end_inset
24451 </cell>
24452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24453 \begin_inset Text
24454
24455 \begin_layout Plain Layout
24456 \begin_inset Formula $Asin(x)+B$
24457 \end_inset
24458
24459
24460 \end_layout
24461
24462 \end_inset
24463 </cell>
24464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24465 \begin_inset Text
24466
24467 \begin_layout Plain Layout
24468 A
24469 \backslash
24470 sin(x)+B
24471 \end_layout
24472
24473 \end_inset
24474 </cell>
24475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24476 \begin_inset Text
24477
24478 \begin_layout Plain Layout
24479 \begin_inset Formula $A\sin(x)+B$
24480 \end_inset
24481
24482
24483 \end_layout
24484
24485 \end_inset
24486 </cell>
24487 </row>
24488 </lyxtabular>
24489
24490 \end_inset
24491
24492
24493 \end_layout
24494
24495 \begin_layout Standard
24496 以下の函数が定義済みです。
24497 \end_layout
24498
24499 \begin_layout Standard
24500 \begin_inset VSpace -2mm
24501 \end_inset
24502
24503
24504 \end_layout
24505
24506 \begin_layout Standard
24507 \align center
24508 \begin_inset Tabular
24509 <lyxtabular version="3" rows="9" columns="4">
24510 <features tabularvalignment="middle">
24511 <column alignment="center" valignment="top" width="0pt">
24512 <column alignment="center" valignment="top" width="0pt">
24513 <column alignment="center" valignment="top" width="0pt">
24514 <column alignment="center" valignment="top" width="0pt">
24515 <row>
24516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24517 \begin_inset Text
24518
24519 \begin_layout Plain Layout
24520 コマンド
24521 \end_layout
24522
24523 \end_inset
24524 </cell>
24525 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24526 \begin_inset Text
24527
24528 \begin_layout Plain Layout
24529 コマンド
24530 \end_layout
24531
24532 \end_inset
24533 </cell>
24534 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24535 \begin_inset Text
24536
24537 \begin_layout Plain Layout
24538 コマンド
24539 \end_layout
24540
24541 \end_inset
24542 </cell>
24543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24544 \begin_inset Text
24545
24546 \begin_layout Plain Layout
24547 コマンド
24548 \end_layout
24549
24550 \end_inset
24551 </cell>
24552 </row>
24553 <row>
24554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24555 \begin_inset Text
24556
24557 \begin_layout Plain Layout
24558
24559 \backslash
24560 sin
24561 \end_layout
24562
24563 \end_inset
24564 </cell>
24565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24566 \begin_inset Text
24567
24568 \begin_layout Plain Layout
24569
24570 \backslash
24571 sinh
24572 \end_layout
24573
24574 \end_inset
24575 </cell>
24576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24577 \begin_inset Text
24578
24579 \begin_layout Plain Layout
24580
24581 \backslash
24582 arcsin
24583 \end_layout
24584
24585 \end_inset
24586 </cell>
24587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24588 \begin_inset Text
24589
24590 \begin_layout Plain Layout
24591
24592 \backslash
24593 sup
24594 \end_layout
24595
24596 \end_inset
24597 </cell>
24598 </row>
24599 <row>
24600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24601 \begin_inset Text
24602
24603 \begin_layout Plain Layout
24604
24605 \backslash
24606 cos
24607 \end_layout
24608
24609 \end_inset
24610 </cell>
24611 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24612 \begin_inset Text
24613
24614 \begin_layout Plain Layout
24615
24616 \backslash
24617 cosh
24618 \end_layout
24619
24620 \end_inset
24621 </cell>
24622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24623 \begin_inset Text
24624
24625 \begin_layout Plain Layout
24626
24627 \backslash
24628 arccos
24629 \end_layout
24630
24631 \end_inset
24632 </cell>
24633 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24634 \begin_inset Text
24635
24636 \begin_layout Plain Layout
24637
24638 \backslash
24639 inf
24640 \end_layout
24641
24642 \end_inset
24643 </cell>
24644 </row>
24645 <row>
24646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24647 \begin_inset Text
24648
24649 \begin_layout Plain Layout
24650
24651 \backslash
24652 tan
24653 \end_layout
24654
24655 \end_inset
24656 </cell>
24657 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24658 \begin_inset Text
24659
24660 \begin_layout Plain Layout
24661
24662 \backslash
24663 tanh
24664 \end_layout
24665
24666 \end_inset
24667 </cell>
24668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24669 \begin_inset Text
24670
24671 \begin_layout Plain Layout
24672
24673 \backslash
24674 arctan
24675 \end_layout
24676
24677 \end_inset
24678 </cell>
24679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24680 \begin_inset Text
24681
24682 \begin_layout Plain Layout
24683
24684 \backslash
24685 lim
24686 \end_layout
24687
24688 \end_inset
24689 </cell>
24690 </row>
24691 <row>
24692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24693 \begin_inset Text
24694
24695 \begin_layout Plain Layout
24696
24697 \backslash
24698 cot
24699 \end_layout
24700
24701 \end_inset
24702 </cell>
24703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24704 \begin_inset Text
24705
24706 \begin_layout Plain Layout
24707
24708 \backslash
24709 coth
24710 \end_layout
24711
24712 \end_inset
24713 </cell>
24714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24715 \begin_inset Text
24716
24717 \begin_layout Plain Layout
24718
24719 \backslash
24720 arg
24721 \end_layout
24722
24723 \end_inset
24724 </cell>
24725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24726 \begin_inset Text
24727
24728 \begin_layout Plain Layout
24729
24730 \backslash
24731 liminf
24732 \end_layout
24733
24734 \end_inset
24735 </cell>
24736 </row>
24737 <row>
24738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24739 \begin_inset Text
24740
24741 \begin_layout Plain Layout
24742
24743 \backslash
24744 sec
24745 \end_layout
24746
24747 \end_inset
24748 </cell>
24749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24750 \begin_inset Text
24751
24752 \begin_layout Plain Layout
24753
24754 \backslash
24755 min
24756 \end_layout
24757
24758 \end_inset
24759 </cell>
24760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24761 \begin_inset Text
24762
24763 \begin_layout Plain Layout
24764
24765 \backslash
24766 deg
24767 \end_layout
24768
24769 \end_inset
24770 </cell>
24771 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24772 \begin_inset Text
24773
24774 \begin_layout Plain Layout
24775
24776 \backslash
24777 limsup
24778 \end_layout
24779
24780 \end_inset
24781 </cell>
24782 </row>
24783 <row>
24784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24785 \begin_inset Text
24786
24787 \begin_layout Plain Layout
24788
24789 \backslash
24790 csc
24791 \end_layout
24792
24793 \end_inset
24794 </cell>
24795 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24796 \begin_inset Text
24797
24798 \begin_layout Plain Layout
24799
24800 \backslash
24801 max
24802 \end_layout
24803
24804 \end_inset
24805 </cell>
24806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24807 \begin_inset Text
24808
24809 \begin_layout Plain Layout
24810
24811 \backslash
24812 det
24813 \end_layout
24814
24815 \end_inset
24816 </cell>
24817 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24818 \begin_inset Text
24819
24820 \begin_layout Plain Layout
24821
24822 \backslash
24823 Pr
24824 \end_layout
24825
24826 \end_inset
24827 </cell>
24828 </row>
24829 <row>
24830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24831 \begin_inset Text
24832
24833 \begin_layout Plain Layout
24834
24835 \backslash
24836 ln
24837 \end_layout
24838
24839 \end_inset
24840 </cell>
24841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24842 \begin_inset Text
24843
24844 \begin_layout Plain Layout
24845
24846 \backslash
24847 exp
24848 \end_layout
24849
24850 \end_inset
24851 </cell>
24852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24853 \begin_inset Text
24854
24855 \begin_layout Plain Layout
24856
24857 \backslash
24858 dim
24859 \end_layout
24860
24861 \end_inset
24862 </cell>
24863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24864 \begin_inset Text
24865
24866 \begin_layout Plain Layout
24867
24868 \backslash
24869 hom
24870 \end_layout
24871
24872 \end_inset
24873 </cell>
24874 </row>
24875 <row>
24876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24877 \begin_inset Text
24878
24879 \begin_layout Plain Layout
24880
24881 \backslash
24882 lg
24883 \end_layout
24884
24885 \end_inset
24886 </cell>
24887 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24888 \begin_inset Text
24889
24890 \begin_layout Plain Layout
24891
24892 \backslash
24893 log
24894 \end_layout
24895
24896 \end_inset
24897 </cell>
24898 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24899 \begin_inset Text
24900
24901 \begin_layout Plain Layout
24902
24903 \backslash
24904 ker
24905 \end_layout
24906
24907 \end_inset
24908 </cell>
24909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24910 \begin_inset Text
24911
24912 \begin_layout Plain Layout
24913
24914 \backslash
24915 gcd
24916 \end_layout
24917
24918 \end_inset
24919 </cell>
24920 </row>
24921 </lyxtabular>
24922
24923 \end_inset
24924
24925
24926 \end_layout
24927
24928 \begin_layout Standard
24929 上記は、数式ツールバーボタンの
24930 \begin_inset Graphics
24931         filename ../../images/math/functions.png
24932         scale 85
24933
24934 \end_inset
24935
24936 でも挿入することができます。
24937 \end_layout
24938
24939 \begin_layout Subsection
24940 自己定義函数
24941 \begin_inset Index idx
24942 status collapsed
24943
24944 \begin_layout Plain Layout
24945 かんすう@函数 ! じこていぎ@自己定義
24946 \end_layout
24947
24948 \end_inset
24949
24950
24951 \end_layout
24952
24953 \begin_layout Standard
24954 たとえば符号函数sgn(x)のように、定義済みでない函数を使うには、二つの方法があります。
24955 \end_layout
24956
24957 \begin_layout Itemize
24958 以下の行をLaTeXプリアンブルに加えることによって函数を定義します。
24959 \begin_inset Foot
24960 status collapsed
24961
24962 \begin_layout Plain Layout
24963
24964 \series bold
24965
24966 \backslash
24967 DeclareMathOperator
24968 \series default
24969 についての詳細は、第
24970 \begin_inset CommandInset ref
24971 LatexCommand ref
24972 reference "sub:自己定義演算子"
24973
24974 \end_inset
24975
24976 節をご参照下さい。
24977 \end_layout
24978
24979 \end_inset
24980
24981
24982 \begin_inset Newline newline
24983 \end_inset
24984
24985
24986 \begin_inset VSpace -3mm
24987 \end_inset
24988
24989
24990 \begin_inset Newline newline
24991 \end_inset
24992
24993
24994 \series bold
24995
24996 \backslash
24997 DeclareMathOperator{
24998 \backslash
24999 sgn}{sgn}
25000 \series default
25001
25002 \begin_inset Index idx
25003 status collapsed
25004
25005 \begin_layout Plain Layout
25006 こまんど@コマンド ! D ! 
25007 \backslash
25008 dbinom@
25009 \backslash
25010 DeclareMathOperator
25011 \end_layout
25012
25013 \end_inset
25014
25015
25016 \begin_inset Newline newline
25017 \end_inset
25018
25019
25020 \begin_inset VSpace -2mm
25021 \end_inset
25022
25023
25024 \begin_inset Newline newline
25025 \end_inset
25026
25027 これによって、新しく定義された函数を
25028 \series bold
25029
25030 \backslash
25031 sgn
25032 \series default
25033 コマンドで呼び出すことができるようになります。
25034 \end_layout
25035
25036 \begin_layout Itemize
25037 数式を普通に書き下し、函数名を選択して(上記の例では
25038 \emph on
25039 sgn
25040 \emph default
25041 の文字)、それを数式テキストに変更します。最後に、空白を先行する要素と函数の間に入れます。
25042 \end_layout
25043
25044 \begin_layout Standard
25045 双方とも定義済み函数と同等の出力をもたらします
25046 \begin_inset Foot
25047 status collapsed
25048
25049 \begin_layout Plain Layout
25050 LyX上では、自己定義函数は赤で表示され、定義済み函数は黒で表示されます。
25051 \end_layout
25052
25053 \end_inset
25054
25055
25056 \end_layout
25057
25058 \begin_layout Standard
25059 \align center
25060 \begin_inset Tabular
25061 <lyxtabular version="3" rows="3" columns="2">
25062 <features tabularvalignment="middle">
25063 <column alignment="center" valignment="top" width="0pt">
25064 <column alignment="center" valignment="top" width="0pt">
25065 <row>
25066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25067 \begin_inset Text
25068
25069 \begin_layout Plain Layout
25070 コマンド
25071 \end_layout
25072
25073 \end_inset
25074 </cell>
25075 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25076 \begin_inset Text
25077
25078 \begin_layout Plain Layout
25079 出力
25080 \end_layout
25081
25082 \end_inset
25083 </cell>
25084 </row>
25085 <row>
25086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25087 \begin_inset Text
25088
25089 \begin_layout Plain Layout
25090 A
25091 \backslash
25092 sgn(x)+B
25093 \end_layout
25094
25095 \end_inset
25096 </cell>
25097 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25098 \begin_inset Text
25099
25100 \begin_layout Plain Layout
25101 \begin_inset Formula $A\sgn(x)+B$
25102 \end_inset
25103
25104
25105 \end_layout
25106
25107 \end_inset
25108 </cell>
25109 </row>
25110 <row>
25111 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25112 \begin_inset Text
25113
25114 \begin_layout Plain Layout
25115 A
25116 \backslash
25117 ,
25118 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt+M}\,\textrm{M}}$
25119 \end_inset
25120
25121 (x)+B
25122 \end_layout
25123
25124 \end_inset
25125 </cell>
25126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25127 \begin_inset Text
25128
25129 \begin_layout Plain Layout
25130 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25131 \end_inset
25132
25133
25134 \end_layout
25135
25136 \end_inset
25137 </cell>
25138 </row>
25139 </lyxtabular>
25140
25141 \end_inset
25142
25143
25144 \end_layout
25145
25146 \begin_layout Standard
25147 自己定義函数を何回か使用する場合には、一番目の方法の方が適切です。
25148 \end_layout
25149
25150 \begin_layout Subsection
25151 極限
25152 \begin_inset Index idx
25153 status collapsed
25154
25155 \begin_layout Plain Layout
25156 きょくげん@極限
25157 \end_layout
25158
25159 \end_inset
25160
25161
25162 \end_layout
25163
25164 \begin_layout Standard
25165 極限用には、
25166 \series bold
25167
25168 \backslash
25169 lim
25170 \series default
25171
25172 \begin_inset Index idx
25173 status collapsed
25174
25175 \begin_layout Plain Layout
25176 こまんど@コマンド ! L ! 
25177 \backslash
25178 lim
25179 \end_layout
25180
25181 \end_inset
25182
25183
25184 \series bold
25185
25186 \backslash
25187 liminf
25188 \series default
25189
25190 \series bold
25191
25192 \backslash
25193 limsup
25194 \series default
25195 の他に、以下の函数があります。
25196 \end_layout
25197
25198 \begin_layout Standard
25199 \align center
25200 \begin_inset Tabular
25201 <lyxtabular version="3" rows="5" columns="2">
25202 <features tabularvalignment="middle">
25203 <column alignment="center" valignment="top" width="0">
25204 <column alignment="center" valignment="top" width="0">
25205 <row>
25206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25207 \begin_inset Text
25208
25209 \begin_layout Plain Layout
25210 コマンド
25211 \end_layout
25212
25213 \end_inset
25214 </cell>
25215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25216 \begin_inset Text
25217
25218 \begin_layout Plain Layout
25219 出力
25220 \begin_inset Note Note
25221 status collapsed
25222
25223 \begin_layout Plain Layout
25224 ここで
25225 \series bold
25226
25227 \backslash
25228 raisebox
25229 \series default
25230 はスペーサーとして使用しているだけです。
25231 \end_layout
25232
25233 \end_inset
25234
25235
25236 \end_layout
25237
25238 \end_inset
25239 </cell>
25240 </row>
25241 <row>
25242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25243 \begin_inset Text
25244
25245 \begin_layout Plain Layout
25246
25247 \backslash
25248 varliminf
25249 \end_layout
25250
25251 \end_inset
25252 </cell>
25253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25254 \begin_inset Text
25255
25256 \begin_layout Plain Layout
25257 \begin_inset Formula $\varliminf$
25258 \end_inset
25259
25260
25261 \end_layout
25262
25263 \end_inset
25264 </cell>
25265 </row>
25266 <row>
25267 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25268 \begin_inset Text
25269
25270 \begin_layout Plain Layout
25271
25272 \backslash
25273 varlimsup
25274 \end_layout
25275
25276 \end_inset
25277 </cell>
25278 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25279 \begin_inset Text
25280
25281 \begin_layout Plain Layout
25282 \begin_inset Formula $\varlimsup$
25283 \end_inset
25284
25285
25286 \end_layout
25287
25288 \end_inset
25289 </cell>
25290 </row>
25291 <row>
25292 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25293 \begin_inset Text
25294
25295 \begin_layout Plain Layout
25296
25297 \backslash
25298 varprojlim
25299 \end_layout
25300
25301 \end_inset
25302 </cell>
25303 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25304 \begin_inset Text
25305
25306 \begin_layout Plain Layout
25307 \begin_inset Formula $\varprojlim$
25308 \end_inset
25309
25310
25311 \end_layout
25312
25313 \end_inset
25314 </cell>
25315 </row>
25316 <row>
25317 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25318 \begin_inset Text
25319
25320 \begin_layout Plain Layout
25321
25322 \backslash
25323 varinjlim
25324 \end_layout
25325
25326 \end_inset
25327 </cell>
25328 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25329 \begin_inset Text
25330
25331 \begin_layout Plain Layout
25332 \begin_inset Formula $\varinjlim$
25333 \end_inset
25334
25335
25336 \begin_inset Formula $\raisebox{-2.5mm}{}$
25337 \end_inset
25338
25339
25340 \end_layout
25341
25342 \end_inset
25343 </cell>
25344 </row>
25345 </lyxtabular>
25346
25347 \end_inset
25348
25349
25350 \end_layout
25351
25352 \begin_layout Standard
25353 \begin_inset VSpace medskip
25354 \end_inset
25355
25356 極限は、下付き文字を挿入することによって示されます。行内数式では、極限は、以下のように函数の横に置かれます。
25357 \end_layout
25358
25359 \begin_layout Standard
25360 \align center
25361 \begin_inset Tabular
25362 <lyxtabular version="3" rows="2" columns="2">
25363 <features tabularvalignment="middle">
25364 <column alignment="center" valignment="top" width="0pt">
25365 <column alignment="center" valignment="top" width="0pt">
25366 <row>
25367 <cell alignment="center" valignment="top" usebox="none">
25368 \begin_inset Text
25369
25370 \begin_layout Plain Layout
25371 コマンド
25372 \end_layout
25373
25374 \end_inset
25375 </cell>
25376 <cell alignment="center" valignment="top" usebox="none">
25377 \begin_inset Text
25378
25379 \begin_layout Plain Layout
25380 \begin_inset space \hspace{}
25381 \length 1cm
25382 \end_inset
25383
25384 出力
25385 \begin_inset Note Note
25386 status collapsed
25387
25388 \begin_layout Plain Layout
25389 ここで
25390 \series bold
25391
25392 \backslash
25393 raisebox
25394 \series default
25395 はスペーサーとして使用しているだけです。
25396 \end_layout
25397
25398 \end_inset
25399
25400
25401 \end_layout
25402
25403 \end_inset
25404 </cell>
25405 </row>
25406 <row>
25407 <cell alignment="center" valignment="top" usebox="none">
25408 \begin_inset Text
25409
25410 \begin_layout Plain Layout
25411
25412 \backslash
25413 lim_x
25414 \backslash
25415 to
25416 \begin_inset ERT
25417 status collapsed
25418
25419 \begin_layout Plain Layout
25420
25421
25422 \backslash
25423 spce 
25424 \end_layout
25425
25426 \end_inset
25427
25428 A
25429 \begin_inset ERT
25430 status collapsed
25431
25432 \begin_layout Plain Layout
25433
25434
25435 \backslash
25436 spce 
25437 \end_layout
25438
25439 \end_inset
25440
25441 x=B
25442 \end_layout
25443
25444 \end_inset
25445 </cell>
25446 <cell alignment="center" valignment="top" usebox="none">
25447 \begin_inset Text
25448
25449 \begin_layout Plain Layout
25450 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25451 \end_inset
25452
25453
25454 \end_layout
25455
25456 \end_inset
25457 </cell>
25458 </row>
25459 </lyxtabular>
25460
25461 \end_inset
25462
25463
25464 \end_layout
25465
25466 \begin_layout Standard
25467 別行建て数式では、極限は、以下のように通常どおり下に置かれます。
25468 \begin_inset Formula \[
25469 \lim_{x\to A}x=B\]
25470
25471 \end_inset
25472
25473
25474 \end_layout
25475
25476 \begin_layout Subsection
25477 剰余函数
25478 \begin_inset Index idx
25479 status collapsed
25480
25481 \begin_layout Plain Layout
25482 かんすう@函数 ! じょうよ@剰余
25483 \end_layout
25484
25485 \end_inset
25486
25487
25488 \begin_inset Index idx
25489 status collapsed
25490
25491 \begin_layout Plain Layout
25492 かんすう@函数 ! もじゅらす@モジュラス | see
25493 \begin_inset ERT
25494 status collapsed
25495
25496 \begin_layout Plain Layout
25497
25498 {
25499 \end_layout
25500
25501 \end_inset
25502
25503 剰余
25504 \begin_inset ERT
25505 status collapsed
25506
25507 \begin_layout Plain Layout
25508
25509 }
25510 \end_layout
25511
25512 \end_inset
25513
25514
25515 \end_layout
25516
25517 \end_inset
25518
25519
25520 \end_layout
25521
25522 \begin_layout Standard
25523 剰余函数は、特別に4つの派生型があります。
25524 \end_layout
25525
25526 \begin_layout Standard
25527 以下は、別行建て数式での派生型です。
25528 \begin_inset Formula \begin{align*}
25529 \underline{\textrm{コマンド}\raisebox{-0.9mm}{}} &  & \underline{\textrm{出力}}\\
25530 \mathrm{a\backslash mod\textrm{\spce}b} &  & a\mod b\\
25531 \mathrm{a\backslash pmod\textrm{\spce}b} &  & a\pmod b\\
25532 \mathrm{a\backslash bmod\textrm{\spce}b} &  & a\bmod b\\
25533 \mathrm{a\backslash pod\textrm{\spce}b} &  & a\pod b
25534 \end{align*}
25535
25536 \end_inset
25537
25538
25539 \end_layout
25540
25541 \begin_layout Standard
25542 行内数式では、すべての派生型で、関数名の前の余白がすこし小さく設定されます。
25543 \end_layout
25544
25545 \begin_layout Section
25546 特殊文字
25547 \begin_inset Index idx
25548 status collapsed
25549
25550 \begin_layout Plain Layout
25551 とくしゅもじ@特殊文字
25552 \end_layout
25553
25554 \end_inset
25555
25556
25557 \end_layout
25558
25559 \begin_layout Subsection
25560 数式テキストにおける特殊文字
25561 \end_layout
25562
25563 \begin_layout Standard
25564 以下の各コマンドは、数式テキストかTeXモード中でのみ使用することができます。
25565 \end_layout
25566
25567 \begin_layout Standard
25568 \begin_inset space \hfill{}
25569 \end_inset
25570
25571
25572 \begin_inset Tabular
25573 <lyxtabular version="3" rows="8" columns="2">
25574 <features tabularvalignment="middle">
25575 <column alignment="block" valignment="top" width="0">
25576 <column alignment="block" valignment="top" width="0">
25577 <row>
25578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25579 \begin_inset Text
25580
25581 \begin_layout Plain Layout
25582 コマンド
25583 \end_layout
25584
25585 \end_inset
25586 </cell>
25587 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25588 \begin_inset Text
25589
25590 \begin_layout Plain Layout
25591 出力
25592 \end_layout
25593
25594 \end_inset
25595 </cell>
25596 </row>
25597 <row>
25598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25599 \begin_inset Text
25600
25601 \begin_layout Plain Layout
25602
25603 \backslash
25604 oe
25605 \end_layout
25606
25607 \end_inset
25608 </cell>
25609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25610 \begin_inset Text
25611
25612 \begin_layout Plain Layout
25613 \begin_inset Formula $\textrm{œ}$
25614 \end_inset
25615
25616
25617 \end_layout
25618
25619 \end_inset
25620 </cell>
25621 </row>
25622 <row>
25623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25624 \begin_inset Text
25625
25626 \begin_layout Plain Layout
25627
25628 \backslash
25629 OE
25630 \end_layout
25631
25632 \end_inset
25633 </cell>
25634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25635 \begin_inset Text
25636
25637 \begin_layout Plain Layout
25638 \begin_inset Formula $\textrm{Œ}$
25639 \end_inset
25640
25641
25642 \end_layout
25643
25644 \end_inset
25645 </cell>
25646 </row>
25647 <row>
25648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25649 \begin_inset Text
25650
25651 \begin_layout Plain Layout
25652
25653 \backslash
25654 ae
25655 \end_layout
25656
25657 \end_inset
25658 </cell>
25659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25660 \begin_inset Text
25661
25662 \begin_layout Plain Layout
25663 \begin_inset Formula $\textrm{æ}$
25664 \end_inset
25665
25666
25667 \end_layout
25668
25669 \end_inset
25670 </cell>
25671 </row>
25672 <row>
25673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25674 \begin_inset Text
25675
25676 \begin_layout Plain Layout
25677
25678 \backslash
25679 AE
25680 \end_layout
25681
25682 \end_inset
25683 </cell>
25684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25685 \begin_inset Text
25686
25687 \begin_layout Plain Layout
25688 \begin_inset Formula $\textrm{Æ}$
25689 \end_inset
25690
25691
25692 \end_layout
25693
25694 \end_inset
25695 </cell>
25696 </row>
25697 <row>
25698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25699 \begin_inset Text
25700
25701 \begin_layout Plain Layout
25702
25703 \backslash
25704 aa
25705 \end_layout
25706
25707 \end_inset
25708 </cell>
25709 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25710 \begin_inset Text
25711
25712 \begin_layout Plain Layout
25713 \begin_inset Formula $\textrm{\aa}$
25714 \end_inset
25715
25716
25717 \end_layout
25718
25719 \end_inset
25720 </cell>
25721 </row>
25722 <row>
25723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25724 \begin_inset Text
25725
25726 \begin_layout Plain Layout
25727
25728 \backslash
25729 AA
25730 \begin_inset Index idx
25731 status collapsed
25732
25733 \begin_layout Plain Layout
25734
25735 \lang english
25736
25737 \backslash
25738 @
25739 \begin_inset ERT
25740 status collapsed
25741
25742 \begin_layout Plain Layout
25743
25744
25745 \backslash
25746 textrm{
25747 \backslash
25748 AA}
25749 \end_layout
25750
25751 \end_inset
25752
25753
25754 \end_layout
25755
25756 \end_inset
25757
25758
25759 \end_layout
25760
25761 \end_inset
25762 </cell>
25763 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25764 \begin_inset Text
25765
25766 \begin_layout Plain Layout
25767 \begin_inset Formula $\textrm{Å}$
25768 \end_inset
25769
25770
25771 \end_layout
25772
25773 \end_inset
25774 </cell>
25775 </row>
25776 <row>
25777 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25778 \begin_inset Text
25779
25780 \begin_layout Plain Layout
25781
25782 \backslash
25783 i
25784 \end_layout
25785
25786 \end_inset
25787 </cell>
25788 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25789 \begin_inset Text
25790
25791 \begin_layout Plain Layout
25792 \begin_inset Formula $\textrm{ı}$
25793 \end_inset
25794
25795
25796 \end_layout
25797
25798 \end_inset
25799 </cell>
25800 </row>
25801 </lyxtabular>
25802
25803 \end_inset
25804
25805
25806 \begin_inset space \hfill{}
25807 \end_inset
25808
25809
25810 \begin_inset Tabular
25811 <lyxtabular version="3" rows="8" columns="2">
25812 <features tabularvalignment="middle">
25813 <column alignment="block" valignment="top" width="0">
25814 <column alignment="center" valignment="top" width="0">
25815 <row>
25816 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25817 \begin_inset Text
25818
25819 \begin_layout Plain Layout
25820 コマンド
25821 \begin_inset Note Note
25822 status collapsed
25823
25824 \begin_layout Plain Layout
25825 0
25826 \begin_inset space \thinspace{}
25827 \end_inset
25828
25829 mm空白を分離用に使っているのは、そうしないと出力が¡や¿になってしまうためです。
25830 \end_layout
25831
25832 \end_inset
25833
25834
25835 \end_layout
25836
25837 \end_inset
25838 </cell>
25839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25840 \begin_inset Text
25841
25842 \begin_layout Plain Layout
25843 出力
25844 \end_layout
25845
25846 \end_inset
25847 </cell>
25848 </row>
25849 <row>
25850 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25851 \begin_inset Text
25852
25853 \begin_layout Plain Layout
25854
25855 \backslash
25856 o
25857 \end_layout
25858
25859 \end_inset
25860 </cell>
25861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25862 \begin_inset Text
25863
25864 \begin_layout Plain Layout
25865 \begin_inset Formula $\textrm{ø}$
25866 \end_inset
25867
25868
25869 \end_layout
25870
25871 \end_inset
25872 </cell>
25873 </row>
25874 <row>
25875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25876 \begin_inset Text
25877
25878 \begin_layout Plain Layout
25879
25880 \backslash
25881 O
25882 \end_layout
25883
25884 \end_inset
25885 </cell>
25886 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25887 \begin_inset Text
25888
25889 \begin_layout Plain Layout
25890 \begin_inset Formula $\textrm{Ø}$
25891 \end_inset
25892
25893
25894 \end_layout
25895
25896 \end_inset
25897 </cell>
25898 </row>
25899 <row>
25900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25901 \begin_inset Text
25902
25903 \begin_layout Plain Layout
25904
25905 \backslash
25906 l
25907 \end_layout
25908
25909 \end_inset
25910 </cell>
25911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25912 \begin_inset Text
25913
25914 \begin_layout Plain Layout
25915 \begin_inset Formula $\textrm{ł}$
25916 \end_inset
25917
25918
25919 \end_layout
25920
25921 \end_inset
25922 </cell>
25923 </row>
25924 <row>
25925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25926 \begin_inset Text
25927
25928 \begin_layout Plain Layout
25929
25930 \backslash
25931 L
25932 \end_layout
25933
25934 \end_inset
25935 </cell>
25936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25937 \begin_inset Text
25938
25939 \begin_layout Plain Layout
25940 \begin_inset Formula $\textrm{Ł}$
25941 \end_inset
25942
25943
25944 \end_layout
25945
25946 \end_inset
25947 </cell>
25948 </row>
25949 <row>
25950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25951 \begin_inset Text
25952
25953 \begin_layout Plain Layout
25954 !
25955 \begin_inset space \hspace{}
25956 \length 0mm
25957 \end_inset
25958
25959 `
25960 \begin_inset ERT
25961 status collapsed
25962
25963 \begin_layout Plain Layout
25964
25965
25966 \backslash
25967 spce 
25968 \end_layout
25969
25970 \end_inset
25971
25972
25973 \end_layout
25974
25975 \end_inset
25976 </cell>
25977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25978 \begin_inset Text
25979
25980 \begin_layout Plain Layout
25981 \begin_inset Formula $\textrm{!`}$
25982 \end_inset
25983
25984
25985 \end_layout
25986
25987 \end_inset
25988 </cell>
25989 </row>
25990 <row>
25991 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25992 \begin_inset Text
25993
25994 \begin_layout Plain Layout
25995 ?
25996 \begin_inset space \hspace{}
25997 \length 0mm
25998 \end_inset
25999
26000 `
26001 \begin_inset ERT
26002 status collapsed
26003
26004 \begin_layout Plain Layout
26005
26006
26007 \backslash
26008 spce 
26009 \end_layout
26010
26011 \end_inset
26012
26013
26014 \end_layout
26015
26016 \end_inset
26017 </cell>
26018 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26019 \begin_inset Text
26020
26021 \begin_layout Plain Layout
26022 \begin_inset Formula $\textrm{?`}$
26023 \end_inset
26024
26025
26026 \end_layout
26027
26028 \end_inset
26029 </cell>
26030 </row>
26031 <row>
26032 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26033 \begin_inset Text
26034
26035 \begin_layout Plain Layout
26036
26037 \backslash
26038 j
26039 \end_layout
26040
26041 \end_inset
26042 </cell>
26043 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26044 \begin_inset Text
26045
26046 \begin_layout Plain Layout
26047 \begin_inset Formula $\textrm{ȷ}$
26048 \end_inset
26049
26050
26051 \end_layout
26052
26053 \end_inset
26054 </cell>
26055 </row>
26056 </lyxtabular>
26057
26058 \end_inset
26059
26060
26061 \begin_inset space \hfill{}
26062 \end_inset
26063
26064
26065 \end_layout
26066
26067 \begin_layout Standard
26068 \begin_inset Formula $\textrm{\textrm{Å}}$
26069 \end_inset
26070
26071
26072 \begin_inset Formula $\textrm{\textrm{Ø}}$
26073 \end_inset
26074
26075 の各文字は、数式ツールバーボタンの
26076 \begin_inset Graphics
26077         filename ../../images/math/digamma.png
26078         scale 85
26079
26080 \end_inset
26081
26082 からも挿入することができます。
26083 \end_layout
26084
26085 \begin_layout Standard
26086 例外は、
26087 \series bold
26088 !
26089 \begin_inset space \hspace{}
26090 \length 0mm
26091 \end_inset
26092
26093 `
26094 \series default
26095
26096 \series bold
26097 ?
26098 \begin_inset space \hspace{}
26099 \length 0mm
26100 \end_inset
26101
26102 `
26103 \series default
26104 の各コマンドで、これらは直接LyX中の本文に入れることができます。
26105 \end_layout
26106
26107 \begin_layout Subsection
26108 文章中のアクセント
26109 \begin_inset CommandInset label
26110 LatexCommand label
26111 name "sub:文章中のアクセント"
26112
26113 \end_inset
26114
26115
26116 \begin_inset Index idx
26117 status collapsed
26118
26119 \begin_layout Plain Layout
26120 あくせんと@アクセント ! ぶんしょうちゅうの@文章中の---
26121 \end_layout
26122
26123 \end_inset
26124
26125
26126 \end_layout
26127
26128 \begin_layout Standard
26129 以下に挙げる各コマンドを使えば、すべての文字にアクセントを付けることができます。これらのコマンドは、TeXモードで入れなくてはなりません。
26130 \end_layout
26131
26132 \begin_layout Standard
26133 \begin_inset space \hfill{}
26134 \end_inset
26135
26136
26137 \begin_inset Tabular
26138 <lyxtabular version="3" rows="8" columns="2">
26139 <features tabularvalignment="middle">
26140 <column alignment="block" valignment="top" width="0">
26141 <column alignment="block" valignment="top" width="0">
26142 <row>
26143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26144 \begin_inset Text
26145
26146 \begin_layout Plain Layout
26147 コマンド
26148 \end_layout
26149
26150 \end_inset
26151 </cell>
26152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26153 \begin_inset Text
26154
26155 \begin_layout Plain Layout
26156 出力
26157 \end_layout
26158
26159 \end_inset
26160 </cell>
26161 </row>
26162 <row>
26163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26164 \begin_inset Text
26165
26166 \begin_layout Plain Layout
26167
26168 \backslash
26169
26170 \begin_inset Quotes grd
26171 \end_inset
26172
26173 e
26174 \end_layout
26175
26176 \end_inset
26177 </cell>
26178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26179 \begin_inset Text
26180
26181 \begin_layout Plain Layout
26182 \begin_inset ERT
26183 status collapsed
26184
26185 \begin_layout Plain Layout
26186
26187
26188 \backslash
26189 "e
26190 \end_layout
26191
26192 \end_inset
26193
26194
26195 \end_layout
26196
26197 \end_inset
26198 </cell>
26199 </row>
26200 <row>
26201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26202 \begin_inset Text
26203
26204 \begin_layout Plain Layout
26205
26206 \backslash
26207 `e
26208 \end_layout
26209
26210 \end_inset
26211 </cell>
26212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26213 \begin_inset Text
26214
26215 \begin_layout Plain Layout
26216 \begin_inset ERT
26217 status collapsed
26218
26219 \begin_layout Plain Layout
26220
26221
26222 \backslash
26223 `e
26224 \end_layout
26225
26226 \end_inset
26227
26228
26229 \end_layout
26230
26231 \end_inset
26232 </cell>
26233 </row>
26234 <row>
26235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26236 \begin_inset Text
26237
26238 \begin_layout Plain Layout
26239
26240 \backslash
26241 ^
26242 \begin_inset ERT
26243 status collapsed
26244
26245 \begin_layout Plain Layout
26246
26247
26248 \backslash
26249 spce 
26250 \end_layout
26251
26252 \end_inset
26253
26254 e
26255 \end_layout
26256
26257 \end_inset
26258 </cell>
26259 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26260 \begin_inset Text
26261
26262 \begin_layout Plain Layout
26263 \begin_inset ERT
26264 status collapsed
26265
26266 \begin_layout Plain Layout
26267
26268
26269 \backslash
26270 ^e
26271 \end_layout
26272
26273 \end_inset
26274
26275
26276 \end_layout
26277
26278 \end_inset
26279 </cell>
26280 </row>
26281 <row>
26282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26283 \begin_inset Text
26284
26285 \begin_layout Plain Layout
26286
26287 \backslash
26288 =e
26289 \end_layout
26290
26291 \end_inset
26292 </cell>
26293 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26294 \begin_inset Text
26295
26296 \begin_layout Plain Layout
26297 \begin_inset ERT
26298 status collapsed
26299
26300 \begin_layout Plain Layout
26301
26302
26303 \backslash
26304 =e
26305 \end_layout
26306
26307 \end_inset
26308
26309
26310 \end_layout
26311
26312 \end_inset
26313 </cell>
26314 </row>
26315 <row>
26316 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26317 \begin_inset Text
26318
26319 \begin_layout Plain Layout
26320
26321 \backslash
26322 u
26323 \begin_inset ERT
26324 status collapsed
26325
26326 \begin_layout Plain Layout
26327
26328
26329 \backslash
26330 spce 
26331 \end_layout
26332
26333 \end_inset
26334
26335 e
26336 \end_layout
26337
26338 \end_inset
26339 </cell>
26340 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26341 \begin_inset Text
26342
26343 \begin_layout Plain Layout
26344 \begin_inset ERT
26345 status collapsed
26346
26347 \begin_layout Plain Layout
26348
26349
26350 \backslash
26351 u e
26352 \end_layout
26353
26354 \end_inset
26355
26356
26357 \end_layout
26358
26359 \end_inset
26360 </cell>
26361 </row>
26362 <row>
26363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26364 \begin_inset Text
26365
26366 \begin_layout Plain Layout
26367
26368 \backslash
26369 b
26370 \begin_inset ERT
26371 status collapsed
26372
26373 \begin_layout Plain Layout
26374
26375
26376 \backslash
26377 spce 
26378 \end_layout
26379
26380 \end_inset
26381
26382 e
26383 \end_layout
26384
26385 \end_inset
26386 </cell>
26387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26388 \begin_inset Text
26389
26390 \begin_layout Plain Layout
26391 \begin_inset ERT
26392 status collapsed
26393
26394 \begin_layout Plain Layout
26395
26396
26397 \backslash
26398 b e
26399 \end_layout
26400
26401 \end_inset
26402
26403
26404 \end_layout
26405
26406 \end_inset
26407 </cell>
26408 </row>
26409 <row>
26410 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26411 \begin_inset Text
26412
26413 \begin_layout Plain Layout
26414
26415 \backslash
26416 t
26417 \begin_inset ERT
26418 status collapsed
26419
26420 \begin_layout Plain Layout
26421
26422
26423 \backslash
26424 spce 
26425 \end_layout
26426
26427 \end_inset
26428
26429 ee
26430 \end_layout
26431
26432 \end_inset
26433 </cell>
26434 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26435 \begin_inset Text
26436
26437 \begin_layout Plain Layout
26438 \begin_inset ERT
26439 status collapsed
26440
26441 \begin_layout Plain Layout
26442
26443
26444 \backslash
26445 t ee
26446 \end_layout
26447
26448 \end_inset
26449
26450
26451 \end_layout
26452
26453 \end_inset
26454 </cell>
26455 </row>
26456 </lyxtabular>
26457
26458 \end_inset
26459
26460
26461 \begin_inset space \hfill{}
26462 \end_inset
26463
26464
26465 \begin_inset Tabular
26466 <lyxtabular version="3" rows="8" columns="2">
26467 <features tabularvalignment="middle">
26468 <column alignment="block" valignment="top" width="0">
26469 <column alignment="center" valignment="top" width="0">
26470 <row>
26471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26472 \begin_inset Text
26473
26474 \begin_layout Plain Layout
26475 コマンド
26476 \end_layout
26477
26478 \end_inset
26479 </cell>
26480 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26481 \begin_inset Text
26482
26483 \begin_layout Plain Layout
26484 出力
26485 \end_layout
26486
26487 \end_inset
26488 </cell>
26489 </row>
26490 <row>
26491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26492 \begin_inset Text
26493
26494 \begin_layout Plain Layout
26495
26496 \backslash
26497 H
26498 \begin_inset ERT
26499 status collapsed
26500
26501 \begin_layout Plain Layout
26502
26503
26504 \backslash
26505 spce 
26506 \end_layout
26507
26508 \end_inset
26509
26510 e
26511 \end_layout
26512
26513 \end_inset
26514 </cell>
26515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26516 \begin_inset Text
26517
26518 \begin_layout Plain Layout
26519 \begin_inset ERT
26520 status collapsed
26521
26522 \begin_layout Plain Layout
26523
26524
26525 \backslash
26526 H e
26527 \end_layout
26528
26529 \end_inset
26530
26531
26532 \end_layout
26533
26534 \end_inset
26535 </cell>
26536 </row>
26537 <row>
26538 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26539 \begin_inset Text
26540
26541 \begin_layout Plain Layout
26542
26543 \backslash
26544 'e
26545 \end_layout
26546
26547 \end_inset
26548 </cell>
26549 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26550 \begin_inset Text
26551
26552 \begin_layout Plain Layout
26553 \begin_inset ERT
26554 status collapsed
26555
26556 \begin_layout Plain Layout
26557
26558
26559 \backslash
26560 'e
26561 \end_layout
26562
26563 \end_inset
26564
26565
26566 \end_layout
26567
26568 \end_inset
26569 </cell>
26570 </row>
26571 <row>
26572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26573 \begin_inset Text
26574
26575 \begin_layout Plain Layout
26576
26577 \backslash
26578 ~e
26579 \begin_inset Index idx
26580 status collapsed
26581
26582 \begin_layout Plain Layout
26583
26584 \lang english
26585 Tilde
26586 \end_layout
26587
26588 \end_inset
26589
26590
26591 \end_layout
26592
26593 \end_inset
26594 </cell>
26595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26596 \begin_inset Text
26597
26598 \begin_layout Plain Layout
26599 \begin_inset ERT
26600 status collapsed
26601
26602 \begin_layout Plain Layout
26603
26604
26605 \backslash
26606 ~e
26607 \end_layout
26608
26609 \end_inset
26610
26611
26612 \end_layout
26613
26614 \end_inset
26615 </cell>
26616 </row>
26617 <row>
26618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26619 \begin_inset Text
26620
26621 \begin_layout Plain Layout
26622
26623 \backslash
26624 .e
26625 \end_layout
26626
26627 \end_inset
26628 </cell>
26629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26630 \begin_inset Text
26631
26632 \begin_layout Plain Layout
26633 \begin_inset ERT
26634 status collapsed
26635
26636 \begin_layout Plain Layout
26637
26638
26639 \backslash
26640 .e
26641 \end_layout
26642
26643 \end_inset
26644
26645
26646 \end_layout
26647
26648 \end_inset
26649 </cell>
26650 </row>
26651 <row>
26652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26653 \begin_inset Text
26654
26655 \begin_layout Plain Layout
26656
26657 \backslash
26658 v
26659 \begin_inset ERT
26660 status collapsed
26661
26662 \begin_layout Plain Layout
26663
26664
26665 \backslash
26666 spce 
26667 \end_layout
26668
26669 \end_inset
26670
26671 e
26672 \end_layout
26673
26674 \end_inset
26675 </cell>
26676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26677 \begin_inset Text
26678
26679 \begin_layout Plain Layout
26680 \begin_inset ERT
26681 status collapsed
26682
26683 \begin_layout Plain Layout
26684
26685
26686 \backslash
26687 v e
26688 \end_layout
26689
26690 \end_inset
26691
26692
26693 \end_layout
26694
26695 \end_inset
26696 </cell>
26697 </row>
26698 <row>
26699 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26700 \begin_inset Text
26701
26702 \begin_layout Plain Layout
26703
26704 \backslash
26705 d
26706 \begin_inset ERT
26707 status collapsed
26708
26709 \begin_layout Plain Layout
26710
26711
26712 \backslash
26713 spce 
26714 \end_layout
26715
26716 \end_inset
26717
26718 e
26719 \end_layout
26720
26721 \end_inset
26722 </cell>
26723 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26724 \begin_inset Text
26725
26726 \begin_layout Plain Layout
26727 \begin_inset ERT
26728 status collapsed
26729
26730 \begin_layout Plain Layout
26731
26732
26733 \backslash
26734 d e
26735 \end_layout
26736
26737 \end_inset
26738
26739
26740 \end_layout
26741
26742 \end_inset
26743 </cell>
26744 </row>
26745 <row>
26746 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26747 \begin_inset Text
26748
26749 \begin_layout Plain Layout
26750
26751 \backslash
26752 c
26753 \begin_inset ERT
26754 status collapsed
26755
26756 \begin_layout Plain Layout
26757
26758
26759 \backslash
26760 spce 
26761 \end_layout
26762
26763 \end_inset
26764
26765 e
26766 \end_layout
26767
26768 \end_inset
26769 </cell>
26770 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26771 \begin_inset Text
26772
26773 \begin_layout Plain Layout
26774 \begin_inset ERT
26775 status collapsed
26776
26777 \begin_layout Plain Layout
26778
26779
26780 \backslash
26781 c e
26782 \end_layout
26783
26784 \end_inset
26785
26786
26787 \end_layout
26788
26789 \end_inset
26790 </cell>
26791 </row>
26792 </lyxtabular>
26793
26794 \end_inset
26795
26796
26797 \begin_inset space \hfill{}
26798 \end_inset
26799
26800
26801 \end_layout
26802
26803 \begin_layout Standard
26804 \begin_inset VSpace medskip
26805 \end_inset
26806
26807
26808 \series bold
26809
26810 \backslash
26811 t
26812 \series default
26813 コマンドは異なる二つの文字にアクセントを付けることもできます。たとえば、コマンド
26814 \series bold
26815
26816 \backslash
26817 t
26818 \begin_inset ERT
26819 status collapsed
26820
26821 \begin_layout Plain Layout
26822
26823
26824 \backslash
26825 spce 
26826 \end_layout
26827
26828 \end_inset
26829
26830 sz
26831 \series default
26832 は、
26833 \begin_inset ERT
26834 status collapsed
26835
26836 \begin_layout Plain Layout
26837
26838
26839 \backslash
26840 t sz
26841 \end_layout
26842
26843 \end_inset
26844
26845 となります。
26846 \end_layout
26847
26848 \begin_layout Standard
26849
26850 \series bold
26851 `
26852 \series default
26853  ・
26854 \series bold
26855  '
26856 \series default
26857  ・ 
26858 \series bold
26859 ^
26860 \series default
26861  の各アクセントは、TeXモードを使わなくても、母音といっしょに直接キーボードから入力することもできます。チルダ
26862 \begin_inset Foot
26863 status collapsed
26864
26865 \begin_layout Plain Layout
26866 これは、チルダがアクセントとして定義されているキーボードのみに適用されます。
26867 \end_layout
26868
26869 \end_inset
26870
26871
26872 \series bold
26873 ~
26874 \series default
26875 を、
26876 \emph on
26877 a
26878 \emph default
26879
26880 \emph on
26881 n
26882 \emph default
26883
26884 \emph on
26885 o
26886 \emph default
26887 といっしょに使うときも同様です。
26888 \end_layout
26889
26890 \begin_layout Standard
26891
26892 \series bold
26893
26894 \backslash
26895 b
26896 \series default
26897
26898 \series bold
26899
26900 \backslash
26901 c
26902 \series default
26903
26904 \series bold
26905
26906 \backslash
26907 d
26908 \series default
26909
26910 \series bold
26911
26912 \backslash
26913 H
26914 \series default
26915
26916 \series bold
26917
26918 \backslash
26919 t
26920 \series default
26921
26922 \series bold
26923
26924 \backslash
26925 u
26926 \series default
26927
26928 \series bold
26929
26930 \backslash
26931 v
26932 \series default
26933 の各コマンドと、キーボードから直接挿入するアクセントは、数式テキスト中でも使うことができます。他のアクセントについては、数式内向けの特別な数式コマンドがあります
26934 。第
26935 \begin_inset CommandInset ref
26936 LatexCommand ref
26937 reference "sub:一文字に付けるアクセント"
26938
26939 \end_inset
26940
26941 節をご参照下さい。
26942 \end_layout
26943
26944 \begin_layout Standard
26945 \begin_inset VSpace bigskip
26946 \end_inset
26947
26948 さらに、
26949 \series bold
26950
26951 \backslash
26952 textcircled
26953 \series default
26954
26955 \begin_inset Index idx
26956 status collapsed
26957
26958 \begin_layout Plain Layout
26959 こまんど@コマンド ! T ! 
26960 \backslash
26961 textcircled
26962 \end_layout
26963
26964 \end_inset
26965
26966 コマンドを使えば、著作権マークのように、あらゆる数字や文字を丸で囲む---敢えて言えば、丸囲みでアクセントを付けるようなものといえるでしょう---ことができます
26967
26968 \end_layout
26969
26970 \begin_layout Standard
26971 \align center
26972 \begin_inset Tabular
26973 <lyxtabular version="3" rows="3" columns="2">
26974 <features tabularvalignment="middle">
26975 <column alignment="center" valignment="top" width="0">
26976 <column alignment="center" valignment="top" width="0">
26977 <row>
26978 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26979 \begin_inset Text
26980
26981 \begin_layout Plain Layout
26982 コマンド
26983 \end_layout
26984
26985 \end_inset
26986 </cell>
26987 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26988 \begin_inset Text
26989
26990 \begin_layout Plain Layout
26991 出力
26992 \begin_inset Note Note
26993 status collapsed
26994
26995 \begin_layout Plain Layout
26996 ここで
26997 \series bold
26998
26999 \backslash
27000 raisebox
27001 \series default
27002 はスペーサーとして使用しているだけです。
27003 \end_layout
27004
27005 \end_inset
27006
27007
27008 \end_layout
27009
27010 \end_inset
27011 </cell>
27012 </row>
27013 <row>
27014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27015 \begin_inset Text
27016
27017 \begin_layout Plain Layout
27018
27019 \backslash
27020 textcircled{w}
27021 \end_layout
27022
27023 \end_inset
27024 </cell>
27025 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27026 \begin_inset Text
27027
27028 \begin_layout Plain Layout
27029 \begin_inset ERT
27030 status collapsed
27031
27032 \begin_layout Plain Layout
27033
27034
27035 \backslash
27036 textcircled{w}
27037 \end_layout
27038
27039 \end_inset
27040
27041
27042 \end_layout
27043
27044 \end_inset
27045 </cell>
27046 </row>
27047 <row>
27048 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27049 \begin_inset Text
27050
27051 \begin_layout Plain Layout
27052
27053 \backslash
27054 Large 
27055 \backslash
27056 textcircled{
27057 \backslash
27058 normalsize
27059 \backslash
27060 protect
27061 \backslash
27062 raisebox{-1.5pt}{W}}
27063 \end_layout
27064
27065 \end_inset
27066 </cell>
27067 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27068 \begin_inset Text
27069
27070 \begin_layout Plain Layout
27071 \begin_inset Formula $\raisebox{4.5mm}{}$
27072 \end_inset
27073
27074
27075 \begin_inset ERT
27076 status collapsed
27077
27078 \begin_layout Plain Layout
27079
27080
27081 \backslash
27082 Large 
27083 \backslash
27084 textcircled{
27085 \backslash
27086 normalsize
27087 \backslash
27088 protect
27089 \backslash
27090 raisebox{-1.5pt}W}
27091 \end_layout
27092
27093 \end_inset
27094
27095
27096 \begin_inset Formula $\raisebox{-2mm}{}$
27097 \end_inset
27098
27099
27100 \end_layout
27101
27102 \end_inset
27103 </cell>
27104 </row>
27105 </lyxtabular>
27106
27107 \end_inset
27108
27109
27110 \end_layout
27111
27112 \begin_layout Standard
27113 ここではユーザーが、文字が丸のなかに収まるように調整してやらなくてはなりません。ここでは、
27114 \series bold
27115
27116 \backslash
27117 Large
27118 \series default
27119
27120 \begin_inset Foot
27121 status collapsed
27122
27123 \begin_layout Plain Layout
27124
27125 \begin_inset CommandInset ref
27126 LatexCommand ref
27127 reference "sub:書体寸法"
27128
27129 \end_inset
27130
27131 節参照のこと。
27132 \end_layout
27133
27134 \end_inset
27135
27136 で丸の大きさを指定しています。そして
27137 \series bold
27138
27139 \backslash
27140 raisebox
27141 \series default
27142
27143 \begin_inset Foot
27144 status collapsed
27145
27146 \begin_layout Plain Layout
27147
27148 \begin_inset CommandInset ref
27149 LatexCommand ref
27150 reference "sub:枠なしボックス"
27151
27152 \end_inset
27153
27154 節参照のこと。
27155 \end_layout
27156
27157 \end_inset
27158
27159 を使って、文字が真ん中にくるようにしています。
27160 \end_layout
27161
27162 \begin_layout Subsection
27163 小数字
27164 \begin_inset Index idx
27165 status collapsed
27166
27167 \begin_layout Plain Layout
27168 しょうすうじ@小数字
27169 \end_layout
27170
27171 \end_inset
27172
27173
27174 \end_layout
27175
27176 \begin_layout Standard
27177 小数字(minuscule number)は、
27178 \series bold
27179
27180 \backslash
27181 oldstylenums
27182 \series default
27183
27184 \begin_inset Index idx
27185 status collapsed
27186
27187 \begin_layout Plain Layout
27188 こまんど@コマンド ! O ! 
27189 \backslash
27190 oldstylenums
27191 \end_layout
27192
27193 \end_inset
27194
27195 コマンドで作成することができます。このコマンドは、数式中でもTeXモード中でも使うことができます。コマンド書式は、
27196 \end_layout
27197
27198 \begin_layout Standard
27199
27200 \series bold
27201
27202 \backslash
27203 oldstylenums{数字}
27204 \end_layout
27205
27206 \begin_layout Standard
27207 です。
27208 \series bold
27209
27210 \backslash
27211 oldstylenums{0123456789}
27212 \series default
27213 というコマンドは、
27214 \begin_inset Formula $\oldstylenums{0123456789}$
27215 \end_inset
27216
27217 のようになります。
27218 \end_layout
27219
27220 \begin_layout Subsection
27221 他の特殊文字
27222 \begin_inset CommandInset label
27223 LatexCommand label
27224 name "sub:他の特殊文字"
27225
27226 \end_inset
27227
27228
27229 \begin_inset Index idx
27230 status collapsed
27231
27232 \begin_layout Plain Layout
27233 とくしゅもじ@特殊文字 ! たの@他の
27234 \end_layout
27235
27236 \end_inset
27237
27238
27239 \end_layout
27240
27241 \begin_layout Standard
27242 以下の各文字は、数式中でコマンドを使用してのみ、挿入することができます。
27243 \end_layout
27244
27245 \begin_layout Standard
27246 \align center
27247 \begin_inset Tabular
27248 <lyxtabular version="3" rows="4" columns="2">
27249 <features tabularvalignment="middle">
27250 <column alignment="center" valignment="top" width="0">
27251 <column alignment="center" valignment="top" width="0">
27252 <row>
27253 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27254 \begin_inset Text
27255
27256 \begin_layout Plain Layout
27257 コマンド
27258 \end_layout
27259
27260 \end_inset
27261 </cell>
27262 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27263 \begin_inset Text
27264
27265 \begin_layout Plain Layout
27266 出力
27267 \end_layout
27268
27269 \end_inset
27270 </cell>
27271 </row>
27272 <row>
27273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27274 \begin_inset Text
27275
27276 \begin_layout Plain Layout
27277
27278 \backslash
27279 ^
27280 \begin_inset ERT
27281 status collapsed
27282
27283 \begin_layout Plain Layout
27284
27285
27286 \backslash
27287 spce 
27288 \end_layout
27289
27290 \end_inset
27291
27292
27293 \end_layout
27294
27295 \end_inset
27296 </cell>
27297 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27298 \begin_inset Text
27299
27300 \begin_layout Plain Layout
27301 \begin_inset Formula $\mathcircumflex$
27302 \end_inset
27303
27304
27305 \end_layout
27306
27307 \end_inset
27308 </cell>
27309 </row>
27310 <row>
27311 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27312 \begin_inset Text
27313
27314 \begin_layout Plain Layout
27315
27316 \backslash
27317 _
27318 \end_layout
27319
27320 \end_inset
27321 </cell>
27322 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27323 \begin_inset Text
27324
27325 \begin_layout Plain Layout
27326 \begin_inset Formula $\_$
27327 \end_inset
27328
27329
27330 \end_layout
27331
27332 \end_inset
27333 </cell>
27334 </row>
27335 <row>
27336 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27337 \begin_inset Text
27338
27339 \begin_layout Plain Layout
27340 ^
27341 \begin_inset ERT
27342 status collapsed
27343
27344 \begin_layout Plain Layout
27345
27346
27347 \backslash
27348 spce 
27349 \end_layout
27350
27351 \end_inset
27352
27353
27354 \backslash
27355 circ
27356 \begin_inset Index idx
27357 status collapsed
27358
27359 \begin_layout Plain Layout
27360
27361 \lang english
27362
27363 \backslash
27364
27365 \end_layout
27366
27367 \end_inset
27368
27369
27370 \end_layout
27371
27372 \end_inset
27373 </cell>
27374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27375 \begin_inset Text
27376
27377 \begin_layout Plain Layout
27378 \begin_inset Formula $^{\circ}$
27379 \end_inset
27380
27381
27382 \end_layout
27383
27384 \end_inset
27385 </cell>
27386 </row>
27387 </lyxtabular>
27388
27389 \end_inset
27390
27391
27392 \end_layout
27393
27394 \begin_layout Standard
27395 しかしながら、角度記号「°」は、以下の行をLaTeXプリアンブルに書き加えれば、直接挿入することができます
27396 \begin_inset Foot
27397 status collapsed
27398
27399 \begin_layout Plain Layout
27400 この件に関する詳細は、第
27401 \begin_inset CommandInset ref
27402 LatexCommand ref
27403 reference "sub:数式中のテキスト文字"
27404
27405 \end_inset
27406
27407 節にあります。
27408 \end_layout
27409
27410 \end_inset
27411
27412
27413 \end_layout
27414
27415 \begin_layout Standard
27416
27417 \series bold
27418
27419 \backslash
27420 DeclareInputtext{176}{
27421 \backslash
27422 ifmmode^
27423 \backslash
27424 circ
27425 \backslash
27426 else
27427 \backslash
27428 textdegree
27429 \backslash
27430 fi}
27431 \end_layout
27432
27433 \begin_layout Section
27434 数式様式
27435 \begin_inset CommandInset label
27436 LatexCommand label
27437 name "sec:数式様式"
27438
27439 \end_inset
27440
27441
27442 \begin_inset Index idx
27443 status collapsed
27444
27445 \begin_layout Plain Layout
27446 すうしき@数式 ! ようしき@様式
27447 \end_layout
27448
27449 \end_inset
27450
27451
27452 \end_layout
27453
27454 \begin_layout Itemize
27455 以下の二つの配置様式があります。
27456 \end_layout
27457
27458 \begin_deeper
27459 \begin_layout Description
27460 中央揃え 事前に定義された標準です。
27461 \end_layout
27462
27463 \begin_layout Description
27464 行頭下げ これを使うには、
27465 \family sans
27466 文書\SpecialChar \menuseparator
27467 設定
27468 \family default
27469 メニューの
27470 \family sans
27471 文書クラス
27472 \family default
27473 において、
27474 \series bold
27475 fleqn
27476 \series default
27477 オプションを指定しておかなくてはなりません。
27478 \end_layout
27479
27480 \begin_layout Standard
27481
27482 \series bold
27483 行頭下げ
27484 \series default
27485 を用いる場合には、行頭下げの大きさを
27486 \series bold
27487
27488 \backslash
27489 mathindent
27490 \series default
27491
27492 \begin_inset Index idx
27493 status collapsed
27494
27495 \begin_layout Plain Layout
27496 こまんど@コマンド ! M ! 
27497 \backslash
27498 mathindent
27499 \end_layout
27500
27501 \end_inset
27502
27503 の値で調整することができます。これを15
27504 \begin_inset space \thinspace{}
27505 \end_inset
27506
27507 mmにするには、LaTeXプリアンブルに以下のコマンドを入れておきます。
27508 \end_layout
27509
27510 \begin_layout Standard
27511
27512 \series bold
27513
27514 \backslash
27515 setlength{
27516 \backslash
27517 mathindent}{15mm}
27518 \end_layout
27519
27520 \begin_layout Standard
27521
27522 \series bold
27523
27524 \backslash
27525 mathindent
27526 \series default
27527 を明示的に指定しない場合には、事前に定義されている30
27528 \begin_inset space \thinspace{}
27529 \end_inset
27530
27531 ptが適用されます。
27532 \end_layout
27533
27534 \end_deeper
27535 \begin_layout Itemize
27536 また、以下の二つの連番様式があります。
27537 \end_layout
27538
27539 \begin_deeper
27540 \begin_layout Description
27541 右 事前に定義された標準です。
27542 \end_layout
27543
27544 \begin_layout Description
27545 左 これを使うには、
27546 \family sans
27547 文書\SpecialChar \menuseparator
27548 設定
27549 \family default
27550 メニューの
27551 \family sans
27552 文書クラス
27553 \family default
27554 において、
27555 \series bold
27556 leqno
27557 \series default
27558 オプションを指定しておかなくてはなりません。
27559 \end_layout
27560
27561 \end_deeper
27562 \begin_layout Standard
27563
27564 \series bold
27565 fleqn
27566 \series default
27567
27568 \series bold
27569 leqno
27570 \series default
27571 は、いっしょに指定することができます。両方のオプションを同時に入れる場合には、コンマで区切って下さい。
27572 \end_layout
27573
27574 \begin_layout Standard
27575 これで選択した様式は、文書中のすべての別行建て数式に用いられます。もし、中央揃えと行頭下げの両様式を同一文書中で用いたい場合には、
27576 \series bold
27577 中央揃え
27578 \series default
27579 様式を指定するようにします。そして、行頭下げにしたい数式は、flalign環境に指定するようにします。第
27580 \begin_inset CommandInset ref
27581 LatexCommand ref
27582 reference "sub:flalign環境"
27583
27584 \end_inset
27585
27586 節をご覧下さい。
27587 \end_layout
27588
27589 \begin_layout Section
27590 多行数式
27591 \begin_inset CommandInset label
27592 LatexCommand label
27593 name "sec:多行数式"
27594
27595 \end_inset
27596
27597
27598 \begin_inset Index idx
27599 status collapsed
27600
27601 \begin_layout Plain Layout
27602 すうしき@数式 ! たぎょう@多行
27603 \end_layout
27604
27605 \end_inset
27606
27607
27608 \end_layout
27609
27610 \begin_layout Subsection
27611 概要
27612 \end_layout
27613
27614 \begin_layout Standard
27615 LyXでは、多行数式は、数式中で
27616 \series bold
27617
27618 \begin_inset Info
27619 type  "shortcut"
27620 arg   "newline-insert newline"
27621 \end_inset
27622
27623
27624 \series default
27625 を押すことで作られます。この操作によって、第
27626 \begin_inset CommandInset ref
27627 LatexCommand ref
27628 reference "sub:eqnarray環境"
27629
27630 \end_inset
27631
27632 節に述べられている
27633 \series bold
27634 eqnarray環境
27635 \series default
27636 が作り出されるか、あるいは文書設定で
27637 \family sans
27638 AMS mathパッケージを使う
27639 \family default
27640 オプションが選択されている場合には、第
27641 \begin_inset CommandInset ref
27642 LatexCommand ref
27643 reference "sub:標準align環境"
27644
27645 \end_inset
27646
27647 節に述べられている
27648 \series bold
27649 align環境
27650 \series default
27651 が作り出されることになります。
27652 \end_layout
27653
27654 \begin_layout Standard
27655 他にも、
27656 \family sans
27657 挿入\SpecialChar \menuseparator
27658 数式
27659 \family default
27660 メニューで作ることのできる多行数式環境があります。これらの環境は、以下の各節で説明します。
27661 \end_layout
27662
27663 \begin_layout Standard
27664 すべての多行数式において、新規行は、
27665 \begin_inset Info
27666 type  "shortcut"
27667 arg   "newline-insert newline"
27668 \end_inset
27669
27670 を押すことによって作られます。行を足したり削ったりするには、数式ツールバーボタンの
27671 \begin_inset Graphics
27672         filename ../../images/tabular-feature_append-row.png
27673         scale 85
27674
27675 \end_inset
27676
27677
27678 \begin_inset Graphics
27679         filename ../../images/tabular-feature_delete-row.png
27680         scale 85
27681
27682 \end_inset
27683
27684 を使うか、
27685 \family sans
27686 編集\SpecialChar \menuseparator
27687 行と列
27688 \family default
27689 メニューを使うことができます。
27690 \end_layout
27691
27692 \begin_layout Subsubsection
27693 行間
27694 \begin_inset CommandInset label
27695 LatexCommand label
27696 name "sub:行間"
27697
27698 \end_inset
27699
27700
27701 \begin_inset Index idx
27702 status collapsed
27703
27704 \begin_layout Plain Layout
27705 すうしき@数式 ! たぎょう@多行 ! ぎょうかん@行間
27706 \end_layout
27707
27708 \end_inset
27709
27710
27711 \end_layout
27712
27713 \begin_layout Standard
27714 以下のように、多行数式において行のあいだの空白が足りないことが、ときどき起こります。
27715 \begin_inset Formula \begin{eqnarray*}
27716 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}\\
27717 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
27718 \end{eqnarray*}
27719
27720 \end_inset
27721
27722
27723 \end_layout
27724
27725 \begin_layout Standard
27726 LaTeXにおいて行間を付け加えるには、新規行コマンドに非必須の引数をとらせて指定しますが、これはまだLyXには実装されていない
27727 \begin_inset Foot
27728 status collapsed
27729
27730 \begin_layout Plain Layout
27731 \begin_inset CommandInset href
27732 LatexCommand href
27733 name "LyX-bug #1505"
27734 target "http://www.lyx.org/trac/ticket/1505"
27735
27736 \end_inset
27737
27738 を参照。
27739 \end_layout
27740
27741 \end_inset
27742
27743 ので、数式全体をTeXモードで入れなくてはなりません。上記の例の行間を大きくするには、最初の行の最後に
27744 \series bold
27745
27746 \backslash
27747
27748 \backslash
27749 [3mm]
27750 \series default
27751 というコマンドを入れます。すると、次のようになります。
27752 \begin_inset ERT
27753 status collapsed
27754
27755 \begin_layout Plain Layout
27756
27757
27758 \backslash
27759 begin{eqnarray*}
27760 \end_layout
27761
27762 \begin_layout Plain Layout
27763
27764 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
27765  = & 
27766 \backslash
27767 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
27768 \backslash
27769
27770 \backslash
27771 [3mm]
27772 \end_layout
27773
27774 \begin_layout Plain Layout
27775
27776 4x^{2}
27777 \backslash
27778 left(B^{2}+x_{0}^{2}
27779 \backslash
27780 right)+4x_{0}x
27781 \backslash
27782 left(D-B^{2}
27783 \backslash
27784 right)+B^{2}
27785 \backslash
27786 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
27787 \backslash
27788 right) & = & 0
27789 \end_layout
27790
27791 \begin_layout Plain Layout
27792
27793
27794 \backslash
27795 end{eqnarray*}
27796 \end_layout
27797
27798 \end_inset
27799
27800
27801 \end_layout
27802
27803 \begin_layout Standard
27804 \begin_inset VSpace bigskip
27805 \end_inset
27806
27807 同一数式内のすべての行の行間を一律に指定するには、
27808 \series bold
27809
27810 \backslash
27811 jot
27812 \series default
27813
27814 \begin_inset Index idx
27815 status collapsed
27816
27817 \begin_layout Plain Layout
27818 こまんど@コマンド ! J ! 
27819 \backslash
27820 jot
27821 \end_layout
27822
27823 \end_inset
27824
27825 変数を変更します。定義は、
27826 \begin_inset Formula $\mbox{行間}=\mathrm{6\, pt+\backslash jot}$
27827 \end_inset
27828
27829 となっています。
27830 \series bold
27831
27832 \backslash
27833 jot
27834 \series default
27835 の既定値は、3
27836 \begin_inset space \thinspace{}
27837 \end_inset
27838
27839 ptです。上記の例のように、行間を3
27840 \begin_inset space \thinspace{}
27841 \end_inset
27842
27843 mm追加するには、
27844 \end_layout
27845
27846 \begin_layout Standard
27847
27848 \series bold
27849
27850 \backslash
27851 setlength{
27852 \backslash
27853 jot}{3mm+3pt}
27854 \end_layout
27855
27856 \begin_layout Standard
27857 というコマンドを、数式直前にTeXモードで入れておきます。これを行うには、LaTeXプリアンブルに
27858 \end_layout
27859
27860 \begin_layout Standard
27861
27862 \series bold
27863
27864 \backslash
27865 usepackage{calc}
27866 \end_layout
27867
27868 \begin_layout Standard
27869 という行を入れて、LaTeXパッケージ
27870 \series bold
27871 calc
27872 \series default
27873
27874 \begin_inset Foot
27875 status collapsed
27876
27877 \begin_layout Plain Layout
27878
27879 \series bold
27880 calc
27881 \series default
27882 は標準的なLaTeX頒布版のすべてに付属しています。
27883 \end_layout
27884
27885 \end_inset
27886
27887
27888 \begin_inset Index idx
27889 status collapsed
27890
27891 \begin_layout Plain Layout
27892 ぱっけーじ@パッケージ ! calc
27893 \end_layout
27894
27895 \end_inset
27896
27897  を読み込んでおく必要があります。すると、
27898 \begin_inset ERT
27899 status collapsed
27900
27901 \begin_layout Plain Layout
27902
27903
27904 \backslash
27905 setlength{
27906 \backslash
27907 jot}{3mm+3pt}
27908 \end_layout
27909
27910 \end_inset
27911
27912
27913 \begin_inset Formula \begin{eqnarray*}
27914 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}\\
27915 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
27916 \end{eqnarray*}
27917
27918 \end_inset
27919
27920
27921 \end_layout
27922
27923 \begin_layout Standard
27924 \begin_inset ERT
27925 status collapsed
27926
27927 \begin_layout Plain Layout
27928
27929
27930 \backslash
27931 setlength{
27932 \backslash
27933 jot}{3pt}
27934 \end_layout
27935
27936 \end_inset
27937
27938 のような結果を得ます。行間を既定値に戻すには、
27939 \series bold
27940
27941 \backslash
27942 jot
27943 \series default
27944 をふたたび3
27945 \begin_inset space \thinspace{}
27946 \end_inset
27947
27948 ptに戻します。
27949 \end_layout
27950
27951 \begin_layout Subsubsection
27952 列間
27953 \begin_inset CommandInset label
27954 LatexCommand label
27955 name "sub:列間"
27956
27957 \end_inset
27958
27959
27960 \begin_inset Index idx
27961 status collapsed
27962
27963 \begin_layout Plain Layout
27964 すうしき@数式 ! たぎょうすうしき@多行数式 ! れつかん@列間
27965 \end_layout
27966
27967 \end_inset
27968
27969
27970 \end_layout
27971
27972 \begin_layout Standard
27973 多行数式は、行列を形成します。たとえば、eqnarray環境の数式は、3列からなる行列です。この環境で列間を変更すれば、関係子周辺の余白を変更することができます
27974
27975 \end_layout
27976
27977 \begin_layout Standard
27978 列間は、
27979 \series bold
27980
27981 \backslash
27982 arraycolsep
27983 \series default
27984
27985 \begin_inset Index idx
27986 status collapsed
27987
27988 \begin_layout Plain Layout
27989 こまんど@コマンド ! A ! 
27990 \backslash
27991 arraycolsep
27992 \end_layout
27993
27994 \end_inset
27995
27996 変数を使って指定し、
27997 \begin_inset Newline newline
27998 \end_inset
27999
28000 列間 = 2
28001 \begin_inset space \thinspace{}
28002 \end_inset
28003
28004
28005 \series bold
28006
28007 \backslash
28008 arraycolsep
28009 \series default
28010
28011 \begin_inset Newline newline
28012 \end_inset
28013
28014 という関係があります。したがって、
28015 \end_layout
28016
28017 \begin_layout Standard
28018
28019 \series bold
28020
28021 \backslash
28022 setlength{
28023 \backslash
28024 arraycolsep}{1cm}
28025 \end_layout
28026
28027 \begin_layout Standard
28028 というコマンドをTeXモードで入れると、ここから後のすべての数式の列間が2
28029 \begin_inset space \thinspace{}
28030 \end_inset
28031
28032 cmになります。これを既定値に戻すには、
28033 \series bold
28034
28035 \backslash
28036 arraycolsep
28037 \series default
28038 を5
28039 \begin_inset space \thinspace{}
28040 \end_inset
28041
28042 ptに戻して下さい。
28043 \end_layout
28044
28045 \begin_layout Standard
28046 以下は、2
28047 \begin_inset space \thinspace{}
28048 \end_inset
28049
28050 cmの列間を持つ数式です。
28051 \begin_inset ERT
28052 status collapsed
28053
28054 \begin_layout Plain Layout
28055
28056
28057 \backslash
28058 setlength{
28059 \backslash
28060 arraycolsep}{1cm}
28061 \end_layout
28062
28063 \end_inset
28064
28065
28066 \begin_inset Formula \begin{eqnarray*}
28067 A & = & B\\
28068 C & \ne & A
28069 \end{eqnarray*}
28070
28071 \end_inset
28072
28073 行列の既定の列間10
28074 \begin_inset space \thinspace{}
28075 \end_inset
28076
28077 ptを持つ数式です。
28078 \begin_inset ERT
28079 status collapsed
28080
28081 \begin_layout Plain Layout
28082
28083
28084 \backslash
28085 setlength{
28086 \backslash
28087 arraycolsep}{5pt}
28088 \end_layout
28089
28090 \end_inset
28091
28092
28093 \begin_inset Formula \begin{eqnarray*}
28094 A & = & B\\
28095 C & \ne & A
28096 \end{eqnarray*}
28097
28098 \end_inset
28099
28100
28101 \end_layout
28102
28103 \begin_layout Subsubsection
28104 長い数式
28105 \begin_inset Index idx
28106 status collapsed
28107
28108 \begin_layout Plain Layout
28109 すうしき@数式 ! ながい@長い
28110 \end_layout
28111
28112 \end_inset
28113
28114
28115 \end_layout
28116
28117 \begin_layout Standard
28118 長い数式は、以下の方法を使って組版することができます。
28119 \end_layout
28120
28121 \begin_layout Itemize
28122 左辺ないし右辺の一方が、行幅よりもかなり短いときには、以下のように、短い方を左辺に置き、右辺を二行に分けて組版します。
28123 \begin_inset Formula \begin{eqnarray}
28124 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 \\
28125  &  & -\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}
28126 \end{eqnarray}
28127
28128 \end_inset
28129
28130 二行目の最初のマイナス記号は、行頭の文字になってしまうため、通常、表示の上で演算子としては取り扱われません。前後に余白が置かれることもなく、分数線からも離れて表
28131 示されません。これを避けるために、マイナス記号の後に
28132 \series bold
28133
28134 \backslash
28135 hspace
28136 \series default
28137 .
28138 \begin_inset Foot
28139 status collapsed
28140
28141 \begin_layout Plain Layout
28142
28143 \series bold
28144
28145 \backslash
28146 hspace
28147 \series default
28148 に関しての詳細は、第
28149 \begin_inset CommandInset ref
28150 LatexCommand ref
28151 reference "sub:可変長の空白"
28152
28153 \end_inset
28154
28155 節をご覧下さい。
28156 \end_layout
28157
28158 \end_inset
28159
28160
28161 \begin_inset Index idx
28162 status collapsed
28163
28164 \begin_layout Plain Layout
28165 こまんど@コマンド ! H ! 
28166 \backslash
28167 hspace
28168 \end_layout
28169
28170 \end_inset
28171
28172 コマンドを使って3
28173 \begin_inset space \thinspace{}
28174 \end_inset
28175
28176 pt空白を入れてあります。
28177 \end_layout
28178
28179 \begin_layout Itemize
28180 数式の両辺がともに長すぎるときには、
28181 \series bold
28182
28183 \backslash
28184 lefteqn
28185 \series default
28186
28187 \begin_inset Index idx
28188 status collapsed
28189
28190 \begin_layout Plain Layout
28191 こまんど@コマンド ! L ! 
28192 \backslash
28193 lefteqn
28194 \end_layout
28195
28196 \end_inset
28197
28198 コマンドを使います。これを最初の行の第一列に入れると、以下のように、続きの内容が他の列にかかって表示されます。
28199 \begin_inset Formula \begin{eqnarray}
28200 \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 \\
28201  &  & -\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 \\
28202  &  & =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}
28203 \end{eqnarray}
28204
28205 \end_inset
28206
28207
28208 \series bold
28209
28210 \backslash
28211 lefteqn
28212 \series default
28213 を入力すると、青枠から少し左にずれたところに現れる紫枠にカーソルが移るので、ここに数式を入力します。
28214 \begin_inset Newline newline
28215 \end_inset
28216
28217 二行め以降の行の内容は、二列め以降の列に挿入します。挿入する列が右になるほど、字下げの量が大きくなります。
28218 \begin_inset VSpace medskip
28219 \end_inset
28220
28221
28222 \begin_inset Newline newline
28223 \end_inset
28224
28225
28226 \begin_inset Note Greyedout
28227 status open
28228
28229 \begin_layout Plain Layout
28230
28231 \series bold
28232
28233 \backslash
28234 lefteqn
28235 \series default
28236 を使用する際には、以下のことにご注意下さい。
28237 \end_layout
28238
28239 \begin_layout Itemize
28240 数式では、ページ幅全部を使うことはしません。たとえば、上記の例で、最初の行に
28241 \begin_inset Formula $-B^{2}$
28242 \end_inset
28243
28244 という項を置いたとすると、ページ余白の領域に出てしまいますが、これはよくありません。幅をうまく使うには、最初の行の行頭に負の空白を入れる方法もあります。
28245 \end_layout
28246
28247 \begin_layout Itemize
28248 LyXのバグによって、最初の行にマウスでカーソルを入れることはできません
28249 \begin_inset Foot
28250 status collapsed
28251
28252 \begin_layout Plain Layout
28253 \begin_inset CommandInset href
28254 LatexCommand href
28255 name "LyX-bug #1429"
28256 target "http://www.lyx.org/trac/ticket/1429"
28257
28258 \end_inset
28259
28260
28261 \end_layout
28262
28263 \end_inset
28264
28265 。カーソルを行頭に合わせて、矢印キーで移動するしかありません。
28266 \end_layout
28267
28268 \end_inset
28269
28270
28271 \end_layout
28272
28273 \begin_layout Itemize
28274 長い数式を組む他の方法として、第
28275 \begin_inset CommandInset ref
28276 LatexCommand ref
28277 reference "sub:multline環境"
28278
28279 \end_inset
28280
28281 節と第
28282 \begin_inset CommandInset ref
28283 LatexCommand ref
28284 reference "sub:数式の一部の多行化"
28285
28286 \end_inset
28287
28288 節で述べられている環境を用いる方法があります。
28289 \end_layout
28290
28291 \begin_layout Subsubsection
28292 多行にわたる括弧
28293 \begin_inset CommandInset label
28294 LatexCommand label
28295 name "sub:多行にわたる括弧"
28296
28297 \end_inset
28298
28299
28300 \begin_inset Index idx
28301 status collapsed
28302
28303 \begin_layout Plain Layout
28304 かっこ@括弧 ! たぎょうすうしきよう@多行数式用
28305 \end_layout
28306
28307 \end_inset
28308
28309
28310 \end_layout
28311
28312 \begin_layout Standard
28313 多行にわたる括弧を作ろうとすると、以下のような問題が生じます。
28314 \begin_inset Formula \begin{eqnarray*}
28315 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28316  &  & \left.\cdots+B-D\right]
28317 \end{eqnarray*}
28318
28319 \end_inset
28320
28321
28322 \end_layout
28323
28324 \begin_layout Standard
28325 可変寸法の括弧は多行にわたることができないので、閉じ括弧が初めの括弧よりも小さくなってしまっています。
28326 \end_layout
28327
28328 \begin_layout Standard
28329 二行めの括弧の大きさを正しく設定するには、最初の行の終わりを
28330 \series bold
28331
28332 \backslash
28333 right.
28334 \series default
28335
28336 \begin_inset Index idx
28337 status collapsed
28338
28339 \begin_layout Plain Layout
28340 こまんど@コマンド ! R ! 
28341 \backslash
28342 right
28343 \end_layout
28344
28345 \end_inset
28346
28347 とし、二行めの始めを
28348 \series bold
28349
28350 \backslash
28351 left.
28352 \begin_inset Foot
28353 status collapsed
28354
28355 \begin_layout Plain Layout
28356
28357 \series bold
28358
28359 \backslash
28360 left
28361 \series default
28362
28363 \series bold
28364
28365 \backslash
28366 right
28367 \series default
28368 に関する詳細は、第
28369 \begin_inset CommandInset ref
28370 LatexCommand ref
28371 reference "sub:自動の括弧丈"
28372
28373 \end_inset
28374
28375 節をご覧下さい。
28376 \end_layout
28377
28378 \end_inset
28379
28380
28381 \series default
28382
28383 \begin_inset Index idx
28384 status collapsed
28385
28386 \begin_layout Plain Layout
28387 こまんど@コマンド ! L ! 
28388 \backslash
28389 left
28390 \end_layout
28391
28392 \end_inset
28393
28394 とします。一行めにおいては、範囲付き積演算子がもっとも大きな記号であり、これが二行めの括弧の大きさにならなくてはならないので、
28395 \series bold
28396
28397 \backslash
28398 left.
28399 \series default
28400 の後に、
28401 \series bold
28402
28403 \backslash
28404 vphantom
28405 \series default
28406
28407 \begin_inset ERT
28408 status collapsed
28409
28410 \begin_layout Plain Layout
28411
28412
28413 \backslash
28414 spce 
28415 \end_layout
28416
28417 \end_inset
28418
28419
28420 \series bold
28421
28422 \backslash
28423 prod
28424 \series default
28425 ^
28426 \begin_inset ERT
28427 status collapsed
28428
28429 \begin_layout Plain Layout
28430
28431
28432 \backslash
28433 spce 
28434 \end_layout
28435
28436 \end_inset
28437
28438
28439 \series bold
28440
28441 \backslash
28442 infty
28443 \series default
28444
28445 \begin_inset ERT
28446 status collapsed
28447
28448 \begin_layout Plain Layout
28449
28450
28451 \backslash
28452 spce 
28453 \end_layout
28454
28455 \end_inset
28456
28457
28458 \series bold
28459
28460 \begin_inset Formula $\downarrow$
28461 \end_inset
28462
28463 _R=1}
28464 \series default
28465
28466 \begin_inset Index idx
28467 status collapsed
28468
28469 \begin_layout Plain Layout
28470 こまんど@コマンド ! V ! 
28471 \backslash
28472 vphantom
28473 \end_layout
28474
28475 \end_inset
28476
28477 というコマンドを挿入します。
28478 \end_layout
28479
28480 \begin_layout Standard
28481 その結果が以下の数式です。
28482 \begin_inset Formula \begin{eqnarray*}
28483 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28484  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
28485 \end{eqnarray*}
28486
28487 \end_inset
28488
28489
28490 \end_layout
28491
28492 \begin_layout Subsection
28493 align環境
28494 \end_layout
28495
28496 \begin_layout Standard
28497 align環境は、すべての型の多行数式に使うことができ、とくに、いくつかの数式を並べて表示させるのに便利です。
28498 \end_layout
28499
28500 \begin_layout Standard
28501 align環境には列があり、奇数列は右揃え、偶数列は左揃えに設定されます。align環境の行にはすべて、付番することができます。
28502 \end_layout
28503
28504 \begin_layout Standard
28505 align環境は、
28506 \family sans
28507 挿入\SpecialChar \menuseparator
28508 数式
28509 \family default
28510 メニューから作ることができます。
28511 \family sans
28512 編集\SpecialChar \menuseparator
28513 数式\SpecialChar \menuseparator
28514 数式の表記を変更
28515 \family default
28516 メニューを使えば、既存の数式をalign環境に変更することができます。
28517 \end_layout
28518
28519 \begin_layout Standard
28520 列を追加したり削除したりするには、数式ツールバーボタンの
28521 \begin_inset Graphics
28522         filename ../../images/tabular-feature_append-column.png
28523         scale 85
28524
28525 \end_inset
28526
28527
28528 \begin_inset Graphics
28529         filename ../../images/tabular-feature_delete-column.png
28530         scale 85
28531
28532 \end_inset
28533
28534 を使うか、
28535 \family sans
28536 編集\SpecialChar \menuseparator
28537 行と列
28538 \family default
28539 メニューを使います。
28540 \end_layout
28541
28542 \begin_layout Subsubsection
28543 標準align環境
28544 \begin_inset CommandInset label
28545 LatexCommand label
28546 name "sub:標準align環境"
28547
28548 \end_inset
28549
28550
28551 \begin_inset Index idx
28552 status collapsed
28553
28554 \begin_layout Plain Layout
28555 すうしき@数式 ! たぎょう@多行 ! alignかんきょう@align環境
28556 \end_layout
28557
28558 \end_inset
28559
28560
28561 \end_layout
28562
28563 \begin_layout Standard
28564 このalign環境は、数式中で
28565 \begin_inset Info
28566 type  "shortcut"
28567 arg   "newline-insert newline"
28568 \end_inset
28569
28570 を押すか、
28571 \family sans
28572 挿入\SpecialChar \menuseparator
28573 数式\SpecialChar \menuseparator
28574 AMS align環境
28575 \family default
28576 メニューで作ることができます。
28577 \end_layout
28578
28579 \begin_layout Standard
28580 以下は、二つの数式を横に並べた例ですが、これは4列からなるalign環境として作ります。
28581 \begin_inset Formula \begin{align*}
28582 A & =\sin(B) & C & =D\\
28583 C & \ne A & B & \ne D
28584 \end{align*}
28585
28586 \end_inset
28587
28588 ご覧になって分かるように、この環境の数式は、一列めの前と偶数列の後に
28589 \series bold
28590
28591 \backslash
28592 hfill
28593 \begin_inset Foot
28594 status collapsed
28595
28596 \begin_layout Plain Layout
28597
28598 \series bold
28599
28600 \backslash
28601 hfill
28602 \series default
28603 に関する詳細は、第
28604 \begin_inset CommandInset ref
28605 LatexCommand ref
28606 reference "sub:可変長の空白"
28607
28608 \end_inset
28609
28610 節をご覧下さい。
28611 \end_layout
28612
28613 \end_inset
28614
28615
28616 \series default
28617 があるかのように配置されます。数式様式として
28618 \series bold
28619 行頭下げ
28620 \begin_inset Foot
28621 status collapsed
28622
28623 \begin_layout Plain Layout
28624
28625 \series bold
28626 数式様式については、第
28627 \series default
28628
28629 \begin_inset CommandInset ref
28630 LatexCommand ref
28631 reference "sec:数式様式"
28632
28633 \end_inset
28634
28635 節をご覧下さい。
28636 \end_layout
28637
28638 \end_inset
28639
28640
28641 \series default
28642 を使う場合には、第一列の前の
28643 \series bold
28644
28645 \backslash
28646 hfill
28647 \series default
28648 はない形で数式が設定されます。
28649 \end_layout
28650
28651 \begin_layout Subsubsection
28652 alignat環境
28653 \begin_inset Index idx
28654 status collapsed
28655
28656 \begin_layout Plain Layout
28657 すうしき@数式 ! たぎょう@多行 ! alignatかんきょう@alignat環境
28658 \end_layout
28659
28660 \end_inset
28661
28662
28663 \end_layout
28664
28665 \begin_layout Standard
28666 alignat環境には、事前に設定された列間が存在しません。列間は、必要ならば、第
28667 \begin_inset CommandInset ref
28668 LatexCommand ref
28669 reference "sub:空白"
28670
28671 \end_inset
28672
28673 節に述べられている空白を使用して手動で入れます。
28674 \end_layout
28675
28676 \begin_layout Standard
28677 以下は、上記の例をalignat環境に設定し、二つめの数式の頭に1
28678 \begin_inset space \thinspace{}
28679 \end_inset
28680
28681 cmの空白を入れたものです。
28682 \begin_inset Formula \begin{alignat*}{2}
28683 A & =\sin(B) & \hspace{1cm}C & =D\\
28684 C & \ne A & B & \ne D
28685 \end{alignat*}
28686
28687 \end_inset
28688
28689 列間を各列ごとに設定することができるので、この環境は、とくに三つないし四つの数式を横に並べるのに向いています。
28690 \end_layout
28691
28692 \begin_layout Subsubsection
28693 flalign環境
28694 \begin_inset CommandInset label
28695 LatexCommand label
28696 name "sub:flalign環境"
28697
28698 \end_inset
28699
28700
28701 \begin_inset Index idx
28702 status collapsed
28703
28704 \begin_layout Plain Layout
28705 すうしき@数式 ! たぎょう@多行 ! flalignかんきょう@flalign環境
28706 \end_layout
28707
28708 \end_inset
28709
28710
28711 \end_layout
28712
28713 \begin_layout Standard
28714 この環境では、つねに、最初の二列をできるだけ左寄せにし、最後の二列をできるだけ右寄せにするように設定されます。以下がその例です。
28715 \begin_inset Formula \begin{flalign*}
28716 A & =1 & B & =2 & C & =3\\
28717 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
28718 \end{flalign*}
28719
28720 \end_inset
28721
28722
28723 \end_layout
28724
28725 \begin_layout Standard
28726 奇数列のflalign環境を作成し、最後の列に空のTeX括弧を入れておくと、数式様式として
28727 \series bold
28728 中央揃え
28729 \series default
28730 が用いられているときでも、一部の数式を左寄せにすることができます。以下は、例として
28731 \begin_inset CommandInset ref
28732 LatexCommand eqref
28733 reference "eq:VolInt"
28734
28735 \end_inset
28736
28737 式を行頭下げにしたものです。
28738 \begin_inset Formula \begin{flalign}
28739 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}\end{flalign}
28740
28741 \end_inset
28742
28743 ここで、最初の二列には数式が入れられており、行頭下げ数式様式と同等の字下げを行うために、30
28744 \begin_inset space \thinspace{}
28745 \end_inset
28746
28747 ptの空白が第1列の頭に入れてあります。
28748 \end_layout
28749
28750 \begin_layout Subsection
28751 eqnarray環境
28752 \begin_inset CommandInset label
28753 LatexCommand label
28754 name "sub:eqnarray環境"
28755
28756 \end_inset
28757
28758
28759 \begin_inset Index idx
28760 status collapsed
28761
28762 \begin_layout Plain Layout
28763 すうしき@数式 ! たぎょう@多行 ! eqnarrayかんきょう@eqnarray環境
28764 \end_layout
28765
28766 \end_inset
28767
28768
28769 \end_layout
28770
28771 \begin_layout Standard
28772 この環境を作成すると、三つの青枠が現れます。最初の枠の内容は右寄せに設定され、最後の枠の内容は左寄せに設定されます。中央の枠は、関係子のみを入れることを想定して
28773 いるので、その内容は中央揃えで少し小さく設定されます。
28774 \begin_inset Formula \begin{eqnarray*}
28775 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
28776 AB & AB & AB\\
28777 A & = & A
28778 \end{eqnarray*}
28779
28780 \end_inset
28781
28782
28783 \end_layout
28784
28785 \begin_layout Subsection
28786 gather環境
28787 \begin_inset Index idx
28788 status collapsed
28789
28790 \begin_layout Plain Layout
28791 すうしき@数式 ! たぎょう@多行 ! gatherかんきょう@gather環境
28792 \end_layout
28793
28794 \end_inset
28795
28796
28797 \end_layout
28798
28799 \begin_layout Standard
28800 この環境には、中央揃えに設定された列一つしかありません。行はすべて付番することができます。
28801 \begin_inset Formula \begin{gather}
28802 A=1\\
28803 X=\textrm{-}1
28804 \end{gather}
28805
28806 \end_inset
28807
28808
28809 \end_layout
28810
28811 \begin_layout Subsection
28812 multline環境
28813 \begin_inset CommandInset label
28814 LatexCommand label
28815 name "sub:multline環境"
28816
28817 \end_inset
28818
28819
28820 \begin_inset Index idx
28821 status collapsed
28822
28823 \begin_layout Plain Layout
28824 すうしき@数式 ! たぎょう@多行 ! multlineかんきょう@multpline環境
28825 \end_layout
28826
28827 \end_inset
28828
28829
28830 \end_layout
28831
28832 \begin_layout Standard
28833 gather環境同様、multline環境には、中央揃えに設定された列一つしかありません。ただし、一行めが左揃えに設定され、最終行が右揃えに設定されるのです。他
28834 の行はすべて中央揃えになります。このことから、この環境は、長い数式に使うのに向いています。用例として、
28835 \begin_inset CommandInset ref
28836 LatexCommand eqref
28837 reference "eq:lefteqn"
28838
28839 \end_inset
28840
28841 式をmultline環境に置いたものを示します。
28842 \begin_inset Formula \begin{multline}
28843 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}\\
28844 -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}\\
28845 =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}}
28846 \end{multline}
28847
28848 \end_inset
28849
28850
28851 \end_layout
28852
28853 \begin_layout Standard
28854 文書の付番設定が右寄せ(左寄せ)になっているときには、出力では、multline環境の最後(最初)の行だけが付番されます
28855 \begin_inset Foot
28856 status collapsed
28857
28858 \begin_layout Plain Layout
28859 付番様式については、第
28860 \begin_inset CommandInset ref
28861 LatexCommand ref
28862 reference "sec:数式様式"
28863
28864 \end_inset
28865
28866 節を参照。
28867 \end_layout
28868
28869 \end_inset
28870
28871
28872 \end_layout
28873
28874 \begin_layout Standard
28875
28876 \series bold
28877
28878 \backslash
28879 shoveright
28880 \begin_inset Index idx
28881 status collapsed
28882
28883 \begin_layout Plain Layout
28884 こまんど@コマンド ! S ! 
28885 \backslash
28886 shoveright
28887 \end_layout
28888
28889 \end_inset
28890
28891 コマンドや
28892 \backslash
28893 shoveleft
28894 \begin_inset Index idx
28895 status collapsed
28896
28897 \begin_layout Plain Layout
28898 こまんど@コマンド ! S ! 
28899 \backslash
28900 shoveleft
28901 \end_layout
28902
28903 \end_inset
28904
28905
28906 \series default
28907 コマンドを使えば、中央揃えの行を右寄せや左寄せにすることができます。これらのコマンドは、以下のようにして使います。
28908 \end_layout
28909
28910 \begin_layout Standard
28911
28912 \series bold
28913
28914 \backslash
28915 shoveright{行の内容}
28916 \series default
28917 あるいは
28918 \series bold
28919
28920 \backslash
28921 shoveleft{行の内容}
28922 \end_layout
28923
28924 \begin_layout Standard
28925 \begin_inset VSpace medskip
28926 \end_inset
28927
28928
28929 \series bold
28930
28931 \backslash
28932 multlinegap
28933 \begin_inset Index idx
28934 status collapsed
28935
28936 \begin_layout Plain Layout
28937 こまんど@コマンド ! M ! 
28938 \backslash
28939 multlinegap
28940 \end_layout
28941
28942 \end_inset
28943
28944
28945 \series default
28946 長は、一行めの左ページ余白からの距離を指定します。既定値は0
28947 \begin_inset space \thinspace{}
28948 \end_inset
28949
28950 ptの長さです。
28951 \end_layout
28952
28953 \begin_layout Standard
28954 以下は、上記の数式に
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 というコマンドを、TeXモードで直前に挿入した例です。
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}}
28988 \end{multline}
28989
28990 \end_inset
28991
28992
28993 \begin_inset ERT
28994 status collapsed
28995
28996 \begin_layout Plain Layout
28997
28998
28999 \backslash
29000 setlength{
29001 \backslash
29002 multlinegap}{0pt}
29003 \end_layout
29004
29005 \end_inset
29006
29007 二行めは、
29008 \series bold
29009
29010 \backslash
29011 shoveleft
29012 \series default
29013 を使って左揃えにしています。
29014 \end_layout
29015
29016 \begin_layout Subsection
29017 数式の一部の多行化
29018 \begin_inset CommandInset label
29019 LatexCommand label
29020 name "sub:数式の一部の多行化"
29021
29022 \end_inset
29023
29024
29025 \begin_inset Index idx
29026 status collapsed
29027
29028 \begin_layout Plain Layout
29029 すうしき@数式 ! たぎょう@多行 ! すうしきのいちぶ@数式の一部
29030 \end_layout
29031
29032 \end_inset
29033
29034
29035 \end_layout
29036
29037 \begin_layout Standard
29038 数式の一部分のみを多行表示したい場合には、
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
29051 \series bold
29052 split
29053 \series default
29054 のうちのいずれかの環境を使用します。これらは、
29055 \family sans
29056 挿入\SpecialChar \menuseparator
29057 数式
29058 \family default
29059 メニューか、本節で解説している各コマンドを使用して挿入することができます。
29060 \end_layout
29061
29062 \begin_layout Standard
29063 最初の三つの環境は、環境名から
29064 \series bold
29065 ed
29066 \series default
29067 を省いた同名の多行数式環境と同じ性格を持ちますが、環境の前後に数式を続けることが可能です。たとえば、
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}
29071 \end{aligned}
29072 \right\} \textrm{不確定性原理}\]
29073
29074 \end_inset
29075
29076
29077 \end_layout
29078
29079 \begin_layout Standard
29080 この数式を作るには、別行建て数式をまず作っておいて、そこに
29081 \series bold
29082
29083 \backslash
29084 aligned
29085 \begin_inset Index idx
29086 status collapsed
29087
29088 \begin_layout Plain Layout
29089 こまんど@コマンド ! A ! 
29090 \backslash
29091 aligned
29092 \end_layout
29093
29094 \end_inset
29095
29096
29097 \series default
29098 コマンドを挿入しています。紫枠の中に青枠が現れるので、そこに必要に応じて、列や行を加えていきます。この多行環境の外には、括弧などの他の数式要素を入れることができ
29099 ます。
29100 \end_layout
29101
29102 \begin_layout Standard
29103 aligned環境は、長い数式を水平方向を揃えて表示するのにも向いています。別行建て数式内でalignedを用いるようにすると、数式番号を行末の、数式全高の中心
29104 に配置できる利点があります。以下に例として、
29105 \begin_inset CommandInset ref
29106 LatexCommand eqref
29107 reference "eq:shortlong"
29108
29109 \end_inset
29110
29111 式にaligned環境を適用したものを示します。
29112 \begin_inset Formula \begin{equation}
29113 \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}|}\\
29114  & -\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}|}
29115 \end{aligned}
29116 \end{equation}
29117
29118 \end_inset
29119
29120
29121 \end_layout
29122
29123 \begin_layout Standard
29124
29125 \series bold
29126 alignedat
29127 \series default
29128
29129 \series bold
29130 gathered
29131 \series default
29132
29133 \series bold
29134 split
29135 \series default
29136 の各環境を使うには、それぞれ
29137 \series bold
29138
29139 \backslash
29140 alignedat
29141 \series default
29142
29143 \begin_inset Index idx
29144 status collapsed
29145
29146 \begin_layout Plain Layout
29147 こまんど@コマンド ! A ! 
29148 \backslash
29149 alignedat
29150 \end_layout
29151
29152 \end_inset
29153
29154
29155 \series bold
29156
29157 \backslash
29158 gathered
29159 \series default
29160
29161 \begin_inset Index idx
29162 status collapsed
29163
29164 \begin_layout Plain Layout
29165 こまんど@コマンド ! G ! 
29166 \backslash
29167 gathered
29168 \end_layout
29169
29170 \end_inset
29171
29172
29173 \series bold
29174
29175 \backslash
29176 split
29177 \series default
29178
29179 \begin_inset Index idx
29180 status collapsed
29181
29182 \begin_layout Plain Layout
29183 こまんど@コマンド ! S ! 
29184 \backslash
29185 split
29186 \end_layout
29187
29188 \end_inset
29189
29190 の各コマンドを挿入します。split環境は、aligned環境と同じ性格を持ちますが、二つの列しか作ることができません。
29191 \end_layout
29192
29193 \begin_layout Subsection
29194 多行数式中のテキスト
29195 \begin_inset CommandInset label
29196 LatexCommand label
29197 name "sub:多行数式中のテキスト"
29198
29199 \end_inset
29200
29201
29202 \begin_inset Index idx
29203 status collapsed
29204
29205 \begin_layout Plain Layout
29206 てきすと@テキスト ! すうしきちゅうの@数式中の
29207 \end_layout
29208
29209 \end_inset
29210
29211
29212 \begin_inset Index idx
29213 status collapsed
29214
29215 \begin_layout Plain Layout
29216 すうしき@数式 ! たぎょう@多行 ! てきすと@テキスト
29217 \end_layout
29218
29219 \end_inset
29220
29221
29222 \end_layout
29223
29224 \begin_layout Standard
29225 各align系環境およびmultline・gather環境では、独立した行に列揃えの影響を受けない形でテキストを挿入することができます。これを行うには、以下の書
29226 式を持つ
29227 \series bold
29228
29229 \backslash
29230 intertext
29231 \begin_inset Index idx
29232 status collapsed
29233
29234 \begin_layout Plain Layout
29235 こまんど@コマンド ! I ! 
29236 \backslash
29237 intertext
29238 \end_layout
29239
29240 \end_inset
29241
29242 コマンドを使います。
29243 \end_layout
29244
29245 \begin_layout Standard
29246
29247 \series bold
29248
29249 \backslash
29250 intertext{テキスト}
29251 \end_layout
29252
29253 \begin_layout Standard
29254 テキストのハイフネーションを行うことはできないので、テキストは一行に収めなくてはなりません。LyXは、現時点では
29255 \series bold
29256
29257 \backslash
29258 intertext
29259 \series default
29260 を直接サポートしていないので、テキストは数式テキストとして書き入れます。ここで、
29261 \series bold
29262
29263 \backslash
29264 intertext
29265 \series default
29266 は行頭になくてはならず、当該行の上に出力されます。以下は、二行めの行頭にテキストを入れた例です。
29267 \begin_inset Formula \begin{align}
29268 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29269 \intertext{\text{integrand is symmetric to \ensuremath{\phi=\pi}, therefore}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29270 \end{align}
29271
29272 \end_inset
29273
29274
29275 \end_layout
29276
29277 \begin_layout Section
29278 数式番号
29279 \begin_inset Index idx
29280 status collapsed
29281
29282 \begin_layout Plain Layout
29283 すうしきばんごう@数式番号
29284 \end_layout
29285
29286 \end_inset
29287
29288
29289 \begin_inset Index idx
29290 status collapsed
29291
29292 \begin_layout Plain Layout
29293 すうしき@数式 ! ばんごう@番号|see
29294 \begin_inset ERT
29295 status collapsed
29296
29297 \begin_layout Plain Layout
29298
29299 {
29300 \end_layout
29301
29302 \end_inset
29303
29304 数式番号
29305 \begin_inset ERT
29306 status collapsed
29307
29308 \begin_layout Plain Layout
29309
29310 }
29311 \end_layout
29312
29313 \end_inset
29314
29315
29316 \end_layout
29317
29318 \end_inset
29319
29320
29321 \end_layout
29322
29323 \begin_layout Subsection
29324 概要
29325 \end_layout
29326
29327 \begin_layout Standard
29328 付番数式は、
29329 \family sans
29330 挿入\SpecialChar \menuseparator
29331 数式\SpecialChar \menuseparator
29332 付番数式
29333 \family default
29334 メニュー(短絡キー
29335 \family sans
29336 Ctrl+Alt
29337 \begin_inset space ~
29338 \end_inset
29339
29340 N
29341 \family default
29342 )で作ることができます。既存の数式に番号を振るには、
29343 \family sans
29344 編集\SpecialChar \menuseparator
29345 数式\SpecialChar \menuseparator
29346 数式全体を付番
29347 \family default
29348 メニュー(短絡キー
29349 \begin_inset Info
29350 type  "shortcut"
29351 arg   "math-number-toggle"
29352 \end_inset
29353
29354 )を使います。LyX中において数式番号は、数式の後に括弧に囲まれた「#」で表されます。「#」は、実際の出力では数式番号に置き換えられます。
29355 \end_layout
29356
29357 \begin_layout Standard
29358 多行数式で付番が有効になっているときには、すべての行に番号が振られます。ただし、
29359 \family sans
29360 編集\SpecialChar \menuseparator
29361 数式\SpecialChar \menuseparator
29362 この行を付番
29363 \family default
29364 メニュー(短絡キー
29365 \begin_inset Info
29366 type  "shortcut"
29367 arg   "math-number-line-toggle"
29368 \end_inset
29369
29370 )を使用すれば、各行毎に付番するかどうか指定することができます。
29371 \end_layout
29372
29373 \begin_layout Standard
29374 行内数式を除いて、すべての数式は二通りの様式で番号を振ることができます。第
29375 \begin_inset CommandInset ref
29376 LatexCommand ref
29377 reference "sec:数式様式"
29378
29379 \end_inset
29380
29381 節をご覧下さい。
29382 \end_layout
29383
29384 \begin_layout Subsection
29385 相互参照
29386 \begin_inset Index idx
29387 status collapsed
29388
29389 \begin_layout Plain Layout
29390 そうごさんしょう@相互参照 ! すうしきへの@数式への
29391 \end_layout
29392
29393 \end_inset
29394
29395
29396 \end_layout
29397
29398 \begin_layout Standard
29399 ラベルを付けた数式は、すべて相互参照することができます。ラベルは、
29400 \family sans
29401 挿入\SpecialChar \menuseparator
29402 ラベル
29403 \family default
29404 メニューか、ツールバーボタンの
29405 \begin_inset Graphics
29406         filename ../../images/label-insert.png
29407         scale 85
29408
29409 \end_inset
29410
29411 で付けることができます。このとき、カーソルは別行建て数式の中になくてはなりません。すると、テキストフィールドの中に
29412 \series bold
29413 eq:と
29414 \series default
29415 いう接頭語の入ったダイアログが現れるので、接頭語の後にラベルを挿入します。この既定の接頭辞は「equation(数式)」を意味し、こうして数式ラベルであるとの標
29416 を付けることによって、節ラベルなどから区別し、大きな文書の中でラベルを見つけるのを容易にします。ラベルを変更するには、
29417 \family sans
29418 挿入\SpecialChar \menuseparator
29419 ラベル
29420 \family default
29421 メニューをもういちど使って下さい。
29422 \end_layout
29423
29424 \begin_layout Standard
29425 LyX中でラベル名は、数式の後ろに、二つの括弧に囲まれて表示されます。ラベル付きの数式はつねに付番されます。
29426 \end_layout
29427
29428 \begin_layout Standard
29429 相互参照は、
29430 \family sans
29431 挿入\SpecialChar \menuseparator
29432 相互参照
29433 \family default
29434 メニューかツールバーボタンの
29435 \begin_inset Graphics
29436         filename ../../images/dialog-show-new-inset_ref.png
29437         scale 85
29438
29439 \end_inset
29440
29441 を使って挿入します。数式相互参照は、出力では数式番号として表示されます。相互参照ダイアログで「
29442 \series bold
29443 (<参照>)
29444 \series default
29445 」書式を選択した場合には、出力での相互参照は、括弧に囲まれた数式番号として表示されます。
29446 \begin_inset Newline newline
29447 \end_inset
29448
29449 LyX中で相互参照を右クリックすると、参照先の数式に移動することができます。
29450 \end_layout
29451
29452 \begin_layout Standard
29453 以下は、後の各小節に現れる数式への相互参照を含む例です。
29454 \begin_inset Note Note
29455 status open
29456
29457 \begin_layout Plain Layout
29458 相互参照の型の違いに留意してください。
29459 \end_layout
29460
29461 \end_inset
29462
29463
29464 \end_layout
29465
29466 \begin_layout Standard
29467 \begin_inset CommandInset ref
29468 LatexCommand eqref
29469 reference "eq:tag"
29470
29471 \end_inset
29472
29473 式と
29474 \begin_inset CommandInset ref
29475 LatexCommand eqref
29476 reference "eq:c"
29477
29478 \end_inset
29479
29480 式は、等価です。(
29481 \begin_inset CommandInset ref
29482 LatexCommand ref
29483 reference "eq:Rom"
29484
29485 \end_inset
29486
29487 )式とは異なり、(
29488 \begin_inset CommandInset ref
29489 LatexCommand ref
29490 reference "eq:Lat"
29491
29492 \end_inset
29493
29494 )式では、付番にラテン数字を使用しています。
29495 \end_layout
29496
29497 \begin_layout Standard
29498 \begin_inset VSpace medskip
29499 \end_inset
29500
29501
29502 \series bold
29503
29504 \backslash
29505 tag
29506 \begin_inset Foot
29507 status collapsed
29508
29509 \begin_layout Plain Layout
29510
29511 \series bold
29512
29513 \backslash
29514 tag
29515 \series default
29516 は、第
29517 \begin_inset CommandInset ref
29518 LatexCommand ref
29519 reference "sub:ユーザー定義番号"
29520
29521 \end_inset
29522
29523 節に説明があります。
29524 \end_layout
29525
29526 \end_inset
29527
29528
29529 \series default
29530 の引数が、第
29531 \begin_inset CommandInset ref
29532 LatexCommand ref
29533 reference "sub:段落ボックス"
29534
29535 \end_inset
29536
29537 節で述べたボックスを含んでいるときには、その数式を参照することはできません。
29538 \end_layout
29539
29540 \begin_layout Subsection
29541 細目番号
29542 \begin_inset Index idx
29543 status collapsed
29544
29545 \begin_layout Plain Layout
29546 すうしきばんごう@数式番号 ! さいもくばんごう@細目番号
29547 \end_layout
29548
29549 \end_inset
29550
29551
29552 \end_layout
29553
29554 \begin_layout Standard
29555
29556 \series bold
29557
29558 \backslash
29559 begin{subequations}
29560 \series default
29561 および
29562 \series bold
29563
29564 \backslash
29565 end{subequations}
29566 \series default
29567 コマンドを使うと、数式に細目番号を付けることができます。これらのコマンドは、TeXモードで入れます。
29568 \end_layout
29569
29570 \begin_layout Standard
29571 たとえば、
29572 \begin_inset Formula \begin{equation}
29573 A=C-B\label{eq:a}\end{equation}
29574
29575 \end_inset
29576
29577
29578 \begin_inset ERT
29579 status collapsed
29580
29581 \begin_layout Plain Layout
29582
29583
29584 \backslash
29585 addtocounter{equation}{-1}
29586 \end_layout
29587
29588 \end_inset
29589
29590
29591 \begin_inset ERT
29592 status collapsed
29593
29594 \begin_layout Plain Layout
29595
29596
29597 \backslash
29598 begin{subequations}
29599 \end_layout
29600
29601 \end_inset
29602
29603
29604 \begin_inset VSpace -5mm
29605 \end_inset
29606
29607
29608 \begin_inset Formula \begin{equation}
29609 B=C-A\label{eq:b}\end{equation}
29610
29611 \end_inset
29612
29613
29614 \begin_inset Formula \begin{equation}
29615 C=A+B\label{eq:c}\end{equation}
29616
29617 \end_inset
29618
29619
29620 \end_layout
29621
29622 \begin_layout Standard
29623 \begin_inset ERT
29624 status collapsed
29625
29626 \begin_layout Plain Layout
29627
29628
29629 \backslash
29630 end{subequations}
29631 \end_layout
29632
29633 \end_inset
29634
29635
29636 \end_layout
29637
29638 \begin_layout Standard
29639 この例を作るには、次のようにします。
29640 \end_layout
29641
29642 \begin_layout Enumerate
29643 一つめの数式を入力します。
29644 \end_layout
29645
29646 \begin_layout Enumerate
29647 一つめの数式の後に
29648 \begin_inset Newline newline
29649 \end_inset
29650
29651
29652 \series bold
29653
29654 \backslash
29655 addtocounter{equation}{-1} 
29656 \backslash
29657 begin{subequations}
29658 \begin_inset Index idx
29659 status collapsed
29660
29661 \begin_layout Plain Layout
29662 こまんど@コマンド ! A ! 
29663 \backslash
29664 addtocounter
29665 \end_layout
29666
29667 \end_inset
29668
29669
29670 \begin_inset Newline newline
29671 \end_inset
29672
29673
29674 \series default
29675 を入力します。
29676 \end_layout
29677
29678 \begin_layout Enumerate
29679 二つめの数式を入力します。
29680 \end_layout
29681
29682 \begin_layout Enumerate
29683 三つめの数式を入力します。
29684 \end_layout
29685
29686 \begin_layout Enumerate
29687 三つめの数式の後に、
29688 \series bold
29689
29690 \backslash
29691 end{subequations}
29692 \series default
29693 を入力します。
29694 \end_layout
29695
29696 \begin_layout Standard
29697
29698 \series bold
29699
29700 \backslash
29701 begin
29702 \series default
29703 コマンドと
29704 \series bold
29705
29706 \backslash
29707 end
29708 \series default
29709 コマンドのあいだの数式はすべて、a・b・
29710 \begin_inset Newline linebreak
29711 \end_inset
29712
29713 c\SpecialChar \ldots{}
29714 のように細目番号が振られます。多行数式の場合は、すべての行に細目番号が振られます。細目番号が振られた数式はすべて、
29715 \emph on
29716 ひとつの
29717 \emph default
29718 付番数式として扱われますが、それぞれの付番数式が
29719 \series bold
29720 equation
29721 \series default
29722 カウンタを一つずつ進めてしまうので、
29723 \series bold
29724
29725 \backslash
29726 addtocounter
29727 \series default
29728 コマンドを使ってカウンタを戻さなくてはなりません。これを怠ると、
29729 \begin_inset CommandInset ref
29730 LatexCommand eqref
29731 reference "eq:a"
29732
29733 \end_inset
29734
29735 式・
29736 \begin_inset CommandInset ref
29737 LatexCommand eqref
29738 reference "eq:b"
29739
29740 \end_inset
29741
29742 式・
29743 \begin_inset CommandInset ref
29744 LatexCommand eqref
29745 reference "eq:c"
29746
29747 \end_inset
29748
29749 式は、それぞれ
29750 \begin_inset CommandInset ref
29751 LatexCommand eqref
29752 reference "eq:a"
29753
29754 \end_inset
29755
29756 式・
29757 \begin_inset CommandInset ref
29758 LatexCommand eqref
29759 reference "eq:d"
29760
29761 \end_inset
29762
29763 式・
29764 \begin_inset CommandInset ref
29765 LatexCommand eqref
29766 reference "eq:f"
29767
29768 \end_inset
29769
29770 式として番号が振られてしまいます。
29771 \end_layout
29772
29773 \begin_layout Standard
29774 上記のように、コマンドをTeXモードで入れると、最初の二つの数式のあいだに空白が生じてしまいます。これを戻すために、-5
29775 \begin_inset space \thinspace{}
29776 \end_inset
29777
29778 mmの垂直空白を
29779 \series bold
29780
29781 \backslash
29782 begin{subequations}
29783 \series default
29784 コマンドの後に入れています。数式様式として
29785 \series bold
29786 行頭下げ
29787 \begin_inset Foot
29788 status collapsed
29789
29790 \begin_layout Plain Layout
29791
29792 \series bold
29793 数式様式に関しては、第
29794 \series default
29795
29796 \begin_inset CommandInset ref
29797 LatexCommand ref
29798 reference "sec:数式様式"
29799
29800 \end_inset
29801
29802 節を参照。
29803 \end_layout
29804
29805 \end_inset
29806
29807
29808 \series default
29809 を用いているときには、これを-7
29810 \begin_inset space \thinspace{}
29811 \end_inset
29812
29813 mm空白にしてください。
29814 \end_layout
29815
29816 \begin_layout Standard
29817 以下は、二行めのみ付番を無効にしている多行数式の例です。
29818 \begin_inset ERT
29819 status collapsed
29820
29821 \begin_layout Plain Layout
29822
29823
29824 \backslash
29825 begin{subequations}
29826 \end_layout
29827
29828 \end_inset
29829
29830
29831 \begin_inset Formula \begin{eqnarray}
29832 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
29833  & = & B^{2}-ZB-BZ+Z^{2}\nonumber \\
29834  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
29835 \end{eqnarray}
29836
29837 \end_inset
29838
29839
29840 \begin_inset ERT
29841 status collapsed
29842
29843 \begin_layout Plain Layout
29844
29845
29846 \backslash
29847 end{subequations}
29848 \end_layout
29849
29850 \end_inset
29851
29852
29853 \end_layout
29854
29855 \begin_layout Subsection
29856 ユーザー定義番号
29857 \begin_inset CommandInset label
29858 LatexCommand label
29859 name "sub:ユーザー定義番号"
29860
29861 \end_inset
29862
29863
29864 \begin_inset Index idx
29865 status collapsed
29866
29867 \begin_layout Plain Layout
29868 すうしきばんごう@数式番号 ! ゆーざーていぎ@ユーザー定義
29869 \end_layout
29870
29871 \end_inset
29872
29873
29874 \end_layout
29875
29876 \begin_layout Standard
29877 \begin_inset Index idx
29878 status collapsed
29879
29880 \begin_layout Plain Layout
29881 すうしきばんごう@数式番号 ! じこていぎくぎり@自己定義区切り
29882 \end_layout
29883
29884 \end_inset
29885
29886 標準の付番では、数式番号の周りに括弧が表示されます。括弧をたとえば縦棒に置き換えるには、LaTeXプリアンブルに以下の行を付け加えます。
29887 \end_layout
29888
29889 \begin_layout Standard
29890
29891 \series bold
29892
29893 \backslash
29894 def
29895 \backslash
29896 tagform@#1{
29897 \backslash
29898 maketag@@@{
29899 \series default
29900
29901 \begin_inset Formula $\boldsymbol{|}$
29902 \end_inset
29903
29904
29905 \series bold
29906 #1
29907 \series default
29908
29909 \begin_inset Formula $\boldsymbol{|}$
29910 \end_inset
29911
29912
29913 \series bold
29914 }}
29915 \series default
29916
29917 \begin_inset Note Note
29918 status collapsed
29919
29920 \begin_layout Plain Layout
29921 このマクロは、テスト用にLaTeXプリアンブルで既に宣言されています。これを有効にするには、最初のパーセント記号を取り除いて下さい。
29922 \end_layout
29923
29924 \end_inset
29925
29926
29927 \end_layout
29928
29929 \begin_layout Standard
29930 他の記号を使いたいときには、
29931 \series bold
29932 #1
29933 \series default
29934 脇の縦棒を一つないし複数の文字で置き換えて下さい。数式番号だけで良い時は、縦棒を削除して下さい。
29935 \end_layout
29936
29937 \begin_layout Standard
29938 \begin_inset VSpace bigskip
29939 \end_inset
29940
29941 数式の後ろに、括弧に囲まれた連番の代わりに、何かしらの表現が欲しいときには、以下のように
29942 \series bold
29943
29944 \backslash
29945 tag
29946 \series default
29947
29948 \begin_inset Index idx
29949 status collapsed
29950
29951 \begin_layout Plain Layout
29952 こまんど@コマンド ! T ! 
29953 \backslash
29954 tag
29955 \end_layout
29956
29957 \end_inset
29958
29959 コマンドを使います。
29960 \begin_inset Formula \begin{equation}
29961 A+B=C\tag{何とかかんとか}\label{eq:tag}\end{equation}
29962
29963 \end_inset
29964
29965 上記の例では、
29966 \series bold
29967
29968 \backslash
29969 tag
29970 \begin_inset ERT
29971 status collapsed
29972
29973 \begin_layout Plain Layout
29974
29975
29976 \backslash
29977 spce 
29978 \end_layout
29979
29980 \end_inset
29981
29982 何とかかんとか
29983 \series default
29984 というコマンドを数式に打ち込んでいます。
29985 \end_layout
29986
29987 \begin_layout Standard
29988 代わりに
29989 \series bold
29990
29991 \backslash
29992 tag*
29993 \begin_inset ERT
29994 status collapsed
29995
29996 \begin_layout Plain Layout
29997
29998
29999 \backslash
30000 spce 
30001 \end_layout
30002
30003 \end_inset
30004
30005 何とかかんとか
30006 \series default
30007 というコマンドを使うと、星印は表現の周りの括弧を抑制するので、以下のようになります。
30008 \begin_inset Formula \[
30009 A+B=C\tag*{something}\]
30010
30011 \end_inset
30012
30013
30014 \end_layout
30015
30016 \begin_layout Standard
30017 \begin_inset VSpace bigskip
30018 \end_inset
30019
30020 数式番号を、文書中の新しい部門や節ごとに振りなおしたいときには、部に関しては
30021 \begin_inset Newline newline
30022 \end_inset
30023
30024
30025 \series bold
30026
30027 \backslash
30028 @addtoreset{equation}{part}
30029 \series default
30030
30031 \begin_inset Index idx
30032 status collapsed
30033
30034 \begin_layout Plain Layout
30035 こまんど@コマンド ! 
30036 \begin_inset ERT
30037 status collapsed
30038
30039 \begin_layout Plain Layout
30040
30041 "
30042 \end_layout
30043
30044 \end_inset
30045
30046 @
30047 \begin_inset ERT
30048 status collapsed
30049
30050 \begin_layout Plain Layout
30051
30052 "
30053 \end_layout
30054
30055 \end_inset
30056
30057  ! 
30058 \backslash
30059
30060 \begin_inset ERT
30061 status collapsed
30062
30063 \begin_layout Plain Layout
30064
30065 "
30066 \end_layout
30067
30068 \end_inset
30069
30070 @
30071 \begin_inset ERT
30072 status collapsed
30073
30074 \begin_layout Plain Layout
30075
30076 "
30077 \end_layout
30078
30079 \end_inset
30080
30081 addtoreset
30082 \end_layout
30083
30084 \end_inset
30085
30086
30087 \begin_inset Newline newline
30088 \end_inset
30089
30090 節に関しては
30091 \begin_inset Newline newline
30092 \end_inset
30093
30094
30095 \series bold
30096
30097 \backslash
30098 @addtoreset{equation}{section}
30099 \begin_inset Newline newline
30100 \end_inset
30101
30102
30103 \series default
30104 というコマンドを使います。
30105 \end_layout
30106
30107 \begin_layout Standard
30108 これらのコマンドをTeXモードで使えるようにするためには、
30109 \series bold
30110
30111 \backslash
30112 makeatletter
30113 \series default
30114 コマンドで「@」字をLaTeX中で「有効」にしてやらなくてはなりません。一方、
30115 \series bold
30116
30117 \backslash
30118 makeatother
30119 \series default
30120 コマンドはこれを無効にします。したがって、TeXモード中での上記コマンド列は、
30121 \end_layout
30122
30123 \begin_layout Standard
30124
30125 \series bold
30126
30127 \backslash
30128 makeatletter
30129 \begin_inset Newline newline
30130 \end_inset
30131
30132
30133 \backslash
30134 @addtoreset{equation}{section}
30135 \begin_inset Newline newline
30136 \end_inset
30137
30138
30139 \backslash
30140 makeatother
30141 \begin_inset Newline newline
30142 \end_inset
30143
30144
30145 \series default
30146 のようにならなくてはなりません。
30147 \end_layout
30148
30149 \begin_layout Standard
30150 LaTeXプリアンブル中では、
30151 \series bold
30152
30153 \backslash
30154 makeatletter
30155 \series default
30156
30157 \series bold
30158
30159 \backslash
30160 makeatother
30161 \series default
30162 は、LyXが内部的に自動で挿入するので省略してかまいません。
30163 \end_layout
30164
30165 \begin_layout Standard
30166
30167 \series bold
30168
30169 \backslash
30170 @addtoreset
30171 \series default
30172 を戻すには、まずLaTeXプリアンブル中に
30173 \end_layout
30174
30175 \begin_layout Standard
30176
30177 \series bold
30178
30179 \backslash
30180 usepackage{remreset}
30181 \end_layout
30182
30183 \begin_layout Standard
30184 という行を入れて、
30185 \series bold
30186 remreset.sty
30187 \series default
30188
30189 \begin_inset Foot
30190 status collapsed
30191
30192 \begin_layout Plain Layout
30193
30194 \series bold
30195 remreset
30196 \series default
30197 は、LaTeXパッケージの
30198 \series bold
30199 carlisle
30200 \series default
30201
30202 \begin_inset Index idx
30203 status collapsed
30204
30205 \begin_layout Plain Layout
30206 ぱっけーじ@パッケージ ! carlisle
30207 \end_layout
30208
30209 \end_inset
30210
30211 の一部として含まれており、LaTeX標準頒布版には含まれています。
30212 \end_layout
30213
30214 \end_inset
30215
30216
30217 \begin_inset Index idx
30218 status collapsed
30219
30220 \begin_layout Plain Layout
30221 ぱっけーじ@パッケージ ! remreset
30222 \end_layout
30223
30224 \end_inset
30225
30226 ファイルを読み込んでおかなくてはなりません。その後
30227 \begin_inset Newline newline
30228 \end_inset
30229
30230
30231 \series bold
30232
30233 \backslash
30234 @removefromreset
30235 \series default
30236
30237 \begin_inset Index idx
30238 status collapsed
30239
30240 \begin_layout Plain Layout
30241 こまんど@コマンド ! 
30242 \begin_inset ERT
30243 status collapsed
30244
30245 \begin_layout Plain Layout
30246
30247 "
30248 \end_layout
30249
30250 \end_inset
30251
30252 @
30253 \begin_inset ERT
30254 status collapsed
30255
30256 \begin_layout Plain Layout
30257
30258 "
30259 \end_layout
30260
30261 \end_inset
30262
30263  ! 
30264 \backslash
30265
30266 \begin_inset ERT
30267 status collapsed
30268
30269 \begin_layout Plain Layout
30270
30271 "
30272 \end_layout
30273
30274 \end_inset
30275
30276 @
30277 \begin_inset ERT
30278 status collapsed
30279
30280 \begin_layout Plain Layout
30281
30282 "
30283 \end_layout
30284
30285 \end_inset
30286
30287 removefromreset
30288 \end_layout
30289
30290 \end_inset
30291
30292 コマンドを
30293 \series bold
30294
30295 \backslash
30296 @addtoreset
30297 \series default
30298 と同じ書式で使用すると、
30299 \series bold
30300
30301 \backslash
30302 @addtoreset
30303 \series default
30304 を戻すことができます。
30305 \end_layout
30306
30307 \begin_layout Standard
30308 \begin_inset VSpace bigskip
30309 \end_inset
30310
30311 ときには、数式を
30312 \end_layout
30313
30314 \begin_layout Standard
30315
30316 \family typewriter
30317 (節番号.数式番号)
30318 \end_layout
30319
30320 \begin_layout Standard
30321 のような形で付番し、節ごとに数式番号を「1」から始めさせなくてはならないときがあります。
30322 \end_layout
30323
30324 \begin_layout Standard
30325 このような場合のために、
30326 \series bold
30327
30328 \backslash
30329 numberwithin
30330 \series default
30331
30332 \begin_inset Index idx
30333 status collapsed
30334
30335 \begin_layout Plain Layout
30336 こまんど@コマンド ! N ! 
30337 \backslash
30338 numberwithin
30339 \end_layout
30340
30341 \end_inset
30342
30343 というコマンドがあり、
30344 \end_layout
30345
30346 \begin_layout Standard
30347
30348 \series bold
30349
30350 \backslash
30351 numberwithin{カウンタ}{節階層}
30352 \end_layout
30353
30354 \begin_layout Standard
30355 という書式で用います。「カウンタ」は、どの番号を制御するかを表し、「節階層」は点の前に何の番号を振るのかを表します。
30356 \end_layout
30357
30358 \begin_layout Standard
30359 したがって、ここではLaTeXプリアンブルかTeXコードで
30360 \end_layout
30361
30362 \begin_layout Standard
30363
30364 \series bold
30365
30366 \backslash
30367 numberwithin{equation}{section}
30368 \end_layout
30369
30370 \begin_layout Standard
30371 という行を用いることにしましょう。その結果がこれです。
30372 \begin_inset ERT
30373 status collapsed
30374
30375 \begin_layout Plain Layout
30376
30377
30378 \backslash
30379 numberwithin{equation}{section}
30380 \end_layout
30381
30382 \end_inset
30383
30384
30385 \begin_inset Formula \begin{equation}
30386 A+B=C\end{equation}
30387
30388 \end_inset
30389
30390
30391 \end_layout
30392
30393 \begin_layout Standard
30394 たとえば、部番号を節階層として使用して、表に付番を施すときには
30395 \begin_inset Newline newline
30396 \end_inset
30397
30398
30399 \series bold
30400
30401 \backslash
30402 numberwithin{table}{part}
30403 \series default
30404 を用います。
30405 \end_layout
30406
30407 \begin_layout Standard
30408 標準の付番方式に戻したいときや、この種の付番が文書クラスで定義されているときに、それを止めさせたい場合には、
30409 \end_layout
30410
30411 \begin_layout Standard
30412
30413 \series bold
30414
30415 \backslash
30416 renewcommand{
30417 \backslash
30418 theequation}{
30419 \backslash
30420 arabic{equation}}
30421 \begin_inset Index idx
30422 status collapsed
30423
30424 \begin_layout Plain Layout
30425 こまんど@コマンド ! A ! 
30426 \backslash
30427 arabic
30428 \end_layout
30429
30430 \end_inset
30431
30432
30433 \series default
30434
30435 \begin_inset ERT
30436 status collapsed
30437
30438 \begin_layout Plain Layout
30439
30440
30441 \backslash
30442 renewcommand{
30443 \backslash
30444 theequation}{
30445 \backslash
30446 arabic{equation}}
30447 \end_layout
30448
30449 \end_inset
30450
30451
30452 \series bold
30453
30454 \begin_inset Newline newline
30455 \end_inset
30456
30457
30458 \series default
30459 あるいは
30460 \series bold
30461
30462 \begin_inset Newline newline
30463 \end_inset
30464
30465
30466 \backslash
30467 renewcommand{
30468 \backslash
30469 thetable}{
30470 \backslash
30471 arabic{table}}
30472 \end_layout
30473
30474 \begin_layout Standard
30475 というコマンドをTeXコードとして入れるか、LaTeXプリアンブルに入れます。
30476 \series bold
30477
30478 \backslash
30479 numberwithin
30480 \series default
30481 は、内部的に上記で述べた
30482 \series bold
30483
30484 \backslash
30485 @addtoreset
30486 \series default
30487 コマンドを使用しているので、これも使用後は戻しておかなくてはなりません。
30488 \begin_inset ERT
30489 status collapsed
30490
30491 \begin_layout Plain Layout
30492
30493
30494 \backslash
30495 makeatletter
30496 \end_layout
30497
30498 \begin_layout Plain Layout
30499
30500
30501 \backslash
30502 @removefromreset{equation}{section}
30503 \end_layout
30504
30505 \begin_layout Plain Layout
30506
30507
30508 \backslash
30509 makeatother
30510 \end_layout
30511
30512 \end_inset
30513
30514
30515 \end_layout
30516
30517 \begin_layout Subsection
30518 ローマ数字や文字を使った付番
30519 \begin_inset Index idx
30520 status collapsed
30521
30522 \begin_layout Plain Layout
30523 すうしきばんごう@数式番号 ! もじをつかった@文字を使った
30524 \end_layout
30525
30526 \end_inset
30527
30528
30529 \begin_inset Index idx
30530 status collapsed
30531
30532 \begin_layout Plain Layout
30533 すうしきばんごう@数式番号 ! ろーますうじをつかった@ローマ数字を使った
30534 \end_layout
30535
30536 \end_inset
30537
30538
30539 \end_layout
30540
30541 \begin_layout Standard
30542 数式は、ローマ数字やラテン文字を使って付番することもできます。たとえば、小文字のローマ数字を使って付番するには、数式の前にTeXモードで
30543 \end_layout
30544
30545 \begin_layout Standard
30546
30547 \series bold
30548
30549 \backslash
30550 renewcommand{
30551 \backslash
30552 theequation}{
30553 \backslash
30554 roman{equation}}
30555 \end_layout
30556
30557 \begin_layout Standard
30558 というコマンドを入れます。
30559 \series bold
30560
30561 \backslash
30562 renewcommand
30563 \series default
30564
30565 \begin_inset Index idx
30566 status collapsed
30567
30568 \begin_layout Plain Layout
30569 こまんど@コマンド ! R ! 
30570 \backslash
30571 renewcommand
30572 \end_layout
30573
30574 \end_inset
30575
30576 は、定義済みのコマンド
30577 \series bold
30578
30579 \backslash
30580 theequation
30581 \series default
30582 をコマンド
30583 \series bold
30584
30585 \backslash
30586 roman{equation}
30587 \series default
30588 に再定義します
30589 \begin_inset Foot
30590 status collapsed
30591
30592 \begin_layout Plain Layout
30593
30594 \series bold
30595
30596 \backslash
30597 renewcommand
30598 \series default
30599 コマンドは、第
30600 \begin_inset CommandInset ref
30601 LatexCommand ref
30602 reference "sub:newcommandコマンド"
30603
30604 \end_inset
30605
30606 節に述べられている
30607 \series bold
30608
30609 \backslash
30610 newcommand
30611 \series default
30612 コマンドと同じ書式を持ちます。
30613 \end_layout
30614
30615 \end_inset
30616
30617 。ここで、
30618 \series bold
30619 equation
30620 \series default
30621 は数式カウンタです。コマンド
30622 \series bold
30623
30624 \backslash
30625 the
30626 \series default
30627 をカウンタの接頭辞として使用すると、カウンタの値がアラビア数字として出力されます。数式に番号を振ると、LaTeXは、内部的に
30628 \series bold
30629
30630 \backslash
30631 theequation
30632 \series default
30633 コマンドを数式の後ろに置くのです。
30634 \series bold
30635
30636 \backslash
30637 roman{equation}
30638 \begin_inset Index idx
30639 status collapsed
30640
30641 \begin_layout Plain Layout
30642 こまんど@コマンド ! R ! 
30643 \backslash
30644 roman
30645 \end_layout
30646
30647 \end_inset
30648
30649
30650 \series default
30651 は、カウンタを小文字のローマ数字として出力します。
30652 \end_layout
30653
30654 \begin_layout Standard
30655 こうして、
30656 \series bold
30657
30658 \backslash
30659 renew
30660 \series default
30661 c
30662 \series bold
30663 ommand
30664 \series default
30665 コマンド以降の数式はすべて、ローマ数字で付番されるようになります。大文字のローマ数字での付番に切り替えたいときは、同じコマンドの
30666 \series bold
30667
30668 \backslash
30669 roman
30670 \series default
30671 の部分を
30672 \series bold
30673
30674 \backslash
30675 Roman
30676 \series default
30677
30678 \begin_inset Index idx
30679 status collapsed
30680
30681 \begin_layout Plain Layout
30682 こまんど@コマンド ! R ! 
30683 \backslash
30684 roman@
30685 \backslash
30686 Roman
30687 \end_layout
30688
30689 \end_inset
30690
30691 に変えて挿入します。また、小文字ラテン文字を使って「付番」したいときのために、
30692 \series bold
30693
30694 \backslash
30695 alph
30696 \series default
30697
30698 \begin_inset Index idx
30699 status collapsed
30700
30701 \begin_layout Plain Layout
30702 こまんど@コマンド ! A ! 
30703 \backslash
30704 alph
30705 \end_layout
30706
30707 \end_inset
30708
30709 コマンドがあり、大文字ラテン文字を使って付番したいときのためには、
30710 \series bold
30711
30712 \backslash
30713 Alph
30714 \series default
30715
30716 \begin_inset Index idx
30717 status collapsed
30718
30719 \begin_layout Plain Layout
30720 こまんど@コマンド ! A ! 
30721 \backslash
30722 alph@
30723 \backslash
30724 Alph
30725 \end_layout
30726
30727 \end_inset
30728
30729 コマンドがあります。
30730 \end_layout
30731
30732 \begin_layout Standard
30733 \begin_inset Note Greyedout
30734 status open
30735
30736 \begin_layout Plain Layout
30737
30738 \series bold
30739 (注意)
30740 \series default
30741 ラテン文字を使うと、一つの文書の中で、最大26個の数式しか番号を振ることができません。
30742 \end_layout
30743
30744 \end_inset
30745
30746
30747 \end_layout
30748
30749 \begin_layout Standard
30750 \begin_inset ERT
30751 status collapsed
30752
30753 \begin_layout Plain Layout
30754
30755
30756 \backslash
30757 renewcommand{
30758 \backslash
30759 theequation}{
30760 \backslash
30761 roman{equation}}
30762 \end_layout
30763
30764 \end_inset
30765
30766
30767 \end_layout
30768
30769 \begin_layout Standard
30770 \begin_inset Formula \begin{equation}
30771 A=\textrm{小文字ローマ数字}\end{equation}
30772
30773 \end_inset
30774
30775
30776 \begin_inset ERT
30777 status collapsed
30778
30779 \begin_layout Plain Layout
30780
30781
30782 \backslash
30783 renewcommand{
30784 \backslash
30785 theequation}{
30786 \backslash
30787 Roman{equation}}
30788 \end_layout
30789
30790 \end_inset
30791
30792
30793 \begin_inset Formula \begin{equation}
30794 B=\textrm{大文字ローマ数字}\label{eq:Rom}\end{equation}
30795
30796 \end_inset
30797
30798
30799 \begin_inset ERT
30800 status collapsed
30801
30802 \begin_layout Plain Layout
30803
30804
30805 \backslash
30806 renewcommand{
30807 \backslash
30808 theequation}{
30809 \backslash
30810 alph{equation}}
30811 \end_layout
30812
30813 \end_inset
30814
30815
30816 \begin_inset Formula \begin{equation}
30817 C=\textrm{小文字ラテン文字}\end{equation}
30818
30819 \end_inset
30820
30821
30822 \begin_inset ERT
30823 status collapsed
30824
30825 \begin_layout Plain Layout
30826
30827
30828 \backslash
30829 renewcommand{
30830 \backslash
30831 theequation}{
30832 \backslash
30833 Alph{equation}}
30834 \end_layout
30835
30836 \end_inset
30837
30838
30839 \begin_inset Formula \begin{equation}
30840 D=\textrm{大文字ラテン文字}\label{eq:Lat}\end{equation}
30841
30842 \end_inset
30843
30844
30845 \end_layout
30846
30847 \begin_layout Standard
30848 既定の付番方式に戻すには、以下のコマンドを挿入してください。
30849 \end_layout
30850
30851 \begin_layout Standard
30852
30853 \series bold
30854
30855 \backslash
30856 renewcommand{
30857 \backslash
30858 theequation}{
30859 \backslash
30860 arabic{equation}}
30861 \begin_inset Index idx
30862 status collapsed
30863
30864 \begin_layout Plain Layout
30865 こまんど@コマンド ! A ! 
30866 \backslash
30867 arabic
30868 \end_layout
30869
30870 \end_inset
30871
30872
30873 \end_layout
30874
30875 \begin_layout Standard
30876 \begin_inset ERT
30877 status collapsed
30878
30879 \begin_layout Plain Layout
30880
30881
30882 \backslash
30883 renewcommand{
30884 \backslash
30885 theequation}{
30886 \backslash
30887 arabic{equation}}
30888 \end_layout
30889
30890 \end_inset
30891
30892
30893 \begin_inset Formula \begin{equation}
30894 E=\textrm{アラビア数字}\end{equation}
30895
30896 \end_inset
30897
30898
30899 \end_layout
30900
30901 \begin_layout Standard
30902 \begin_inset VSpace medskip
30903 \end_inset
30904
30905 以上からわかるとおり、付番様式の違いに関わらず、数式番号は連番で振られます。様式変更時に「1」から番号が始まるようにするためには、新しい数式カウンタを定義しなく
30906 てはなりません。この点に関する説明は、ファイル
30907 \begin_inset CommandInset href
30908 LatexCommand href
30909 name "Formula-numbering.lyx"
30910 target "run:Formula-numbering.lyx"
30911
30912 \end_inset
30913
30914 にあります。
30915 \end_layout
30916
30917 \begin_layout Section
30918 化学記号と化学式
30919 \begin_inset CommandInset label
30920 LatexCommand label
30921 name "sub:化学記号と化学式"
30922
30923 \end_inset
30924
30925
30926 \begin_inset Index idx
30927 status collapsed
30928
30929 \begin_layout Plain Layout
30930 かがくきごう@化学記号 ! きごう@記号
30931 \end_layout
30932
30933 \end_inset
30934
30935
30936 \begin_inset Index idx
30937 status collapsed
30938
30939 \begin_layout Plain Layout
30940 かがくしき@化学式
30941 \end_layout
30942
30943 \end_inset
30944
30945
30946 \begin_inset Index idx
30947 status collapsed
30948
30949 \begin_layout Plain Layout
30950 きごう@記号 ! かがく@化学
30951 \end_layout
30952
30953 \end_inset
30954
30955
30956 \end_layout
30957
30958 \begin_layout Standard
30959 以下は、化学関係の文章の例です。
30960 \end_layout
30961
30962 \begin_layout Quote
30963 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
30964 \end_inset
30965
30966 イオンは、2つの
30967 \begin_inset Formula $\mathrm{Na^{+}}$
30968 \end_inset
30969
30970 イオンと反応して、硫酸化塩
30971 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
30972 \end_inset
30973
30974 を形成します。この化学式は以下のようになります。
30975 \begin_inset Formula \begin{equation}
30976 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chem-reaction}\end{equation}
30977
30978 \end_inset
30979
30980
30981 \end_layout
30982
30983 \begin_layout Standard
30984 この化学式は、直接数式として作成することができます。記号がイタリック体として表示されることを防ぐには、全体を選択してから短絡キー
30985 \begin_inset Info
30986 type  "shortcut"
30987 arg   "font-roman"
30988 \end_inset
30989
30990 を押せば、アップライトフォント様式に変更することができます
30991 \begin_inset Foot
30992 status collapsed
30993
30994 \begin_layout Plain Layout
30995 フォント様式に関しては、第
30996 \begin_inset CommandInset ref
30997 LatexCommand ref
30998 reference "sub:書体様式"
30999
31000 \end_inset
31001
31002 節を参照のこと。
31003 \end_layout
31004
31005 \end_inset
31006
31007
31008 \end_layout
31009
31010 \begin_layout Standard
31011 化学式を組版するのにもう少し便利な方法は、LaTeXパッケージ
31012 \series bold
31013 mhchem
31014 \series default
31015
31016 \begin_inset Index idx
31017 status collapsed
31018
31019 \begin_layout Plain Layout
31020 ぱっけーじ@パッケージ ! mhchem
31021 \end_layout
31022
31023 \end_inset
31024
31025 が導入されているときに使用することができる
31026 \series bold
31027
31028 \backslash
31029 ce
31030 \series default
31031
31032 \begin_inset Index idx
31033 status collapsed
31034
31035 \begin_layout Plain Layout
31036 こまんど@コマンド ! C ! 
31037 \backslash
31038 ce
31039 \end_layout
31040
31041 \end_inset
31042
31043 コマンドを使用することです。
31044 \series bold
31045
31046 \backslash
31047 ce
31048 \series default
31049 を数式に入力すると、新しい青いボックスが現れ、直感的に化学式を入力することができます。
31050 \end_layout
31051
31052 \begin_layout Standard
31053 \align center
31054 \begin_inset Tabular
31055 <lyxtabular version="3" rows="9" columns="2">
31056 <features tabularvalignment="middle">
31057 <column alignment="center" valignment="top" width="0">
31058 <column alignment="center" valignment="top" width="0">
31059 <row>
31060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31061 \begin_inset Text
31062
31063 \begin_layout Plain Layout
31064 コマンド
31065 \end_layout
31066
31067 \end_inset
31068 </cell>
31069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31070 \begin_inset Text
31071
31072 \begin_layout Plain Layout
31073 出力
31074 \begin_inset Note Note
31075 status collapsed
31076
31077 \begin_layout Plain Layout
31078
31079 \series bold
31080
31081 \backslash
31082 raisebox
31083 \series default
31084 はスペーサーとしてのみ使用されています。
31085 \end_layout
31086
31087 \end_inset
31088
31089
31090 \end_layout
31091
31092 \end_inset
31093 </cell>
31094 </row>
31095 <row>
31096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31097 \begin_inset Text
31098
31099 \begin_layout Plain Layout
31100
31101 \backslash
31102 ce
31103 \begin_inset ERT
31104 status collapsed
31105
31106 \begin_layout Plain Layout
31107
31108
31109 \backslash
31110 spce 
31111 \end_layout
31112
31113 \end_inset
31114
31115 H2CO3
31116 \end_layout
31117
31118 \end_inset
31119 </cell>
31120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31121 \begin_inset Text
31122
31123 \begin_layout Plain Layout
31124 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31125 \end_inset
31126
31127
31128 \end_layout
31129
31130 \end_inset
31131 </cell>
31132 </row>
31133 <row>
31134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31135 \begin_inset Text
31136
31137 \begin_layout Plain Layout
31138
31139 \backslash
31140 ce
31141 \begin_inset ERT
31142 status collapsed
31143
31144 \begin_layout Plain Layout
31145
31146
31147 \backslash
31148 spce 
31149 \end_layout
31150
31151 \end_inset
31152
31153 SO4^2-
31154 \end_layout
31155
31156 \end_inset
31157 </cell>
31158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31159 \begin_inset Text
31160
31161 \begin_layout Plain Layout
31162 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
31163 \end_inset
31164
31165
31166 \end_layout
31167
31168 \end_inset
31169 </cell>
31170 </row>
31171 <row>
31172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31173 \begin_inset Text
31174
31175 \begin_layout Plain Layout
31176
31177 \backslash
31178 ce
31179 \begin_inset ERT
31180 status collapsed
31181
31182 \begin_layout Plain Layout
31183
31184
31185 \backslash
31186 spce 
31187 \end_layout
31188
31189 \end_inset
31190
31191 (NH4)2S
31192 \end_layout
31193
31194 \end_inset
31195 </cell>
31196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31197 \begin_inset Text
31198
31199 \begin_layout Plain Layout
31200 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
31201 \end_inset
31202
31203
31204 \end_layout
31205
31206 \end_inset
31207 </cell>
31208 </row>
31209 <row>
31210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31211 \begin_inset Text
31212
31213 \begin_layout Plain Layout
31214
31215 \backslash
31216 ce
31217 \begin_inset ERT
31218 status collapsed
31219
31220 \begin_layout Plain Layout
31221
31222
31223 \backslash
31224 spce 
31225 \end_layout
31226
31227 \end_inset
31228
31229 KCr(SO4)2.12H2O
31230 \end_layout
31231
31232 \end_inset
31233 </cell>
31234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31235 \begin_inset Text
31236
31237 \begin_layout Plain Layout
31238 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
31239 \end_inset
31240
31241
31242 \end_layout
31243
31244 \end_inset
31245 </cell>
31246 </row>
31247 <row>
31248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31249 \begin_inset Text
31250
31251 \begin_layout Plain Layout
31252
31253 \backslash
31254 ce
31255 \begin_inset ERT
31256 status collapsed
31257
31258 \begin_layout Plain Layout
31259
31260
31261 \backslash
31262 spce 
31263 \end_layout
31264
31265 \end_inset
31266
31267 A-B
31268 \backslash
31269 dbond
31270 \begin_inset ERT
31271 status collapsed
31272
31273 \begin_layout Plain Layout
31274
31275
31276 \backslash
31277 spce 
31278 \end_layout
31279
31280 \end_inset
31281
31282 C
31283 \backslash
31284 tbond
31285 \begin_inset ERT
31286 status collapsed
31287
31288 \begin_layout Plain Layout
31289
31290
31291 \backslash
31292 spce 
31293 \end_layout
31294
31295 \end_inset
31296
31297 D
31298 \end_layout
31299
31300 \end_inset
31301 </cell>
31302 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31303 \begin_inset Text
31304
31305 \begin_layout Plain Layout
31306 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
31307 \end_inset
31308
31309
31310 \end_layout
31311
31312 \end_inset
31313 </cell>
31314 </row>
31315 <row>
31316 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31317 \begin_inset Text
31318
31319 \begin_layout Plain Layout
31320
31321 \backslash
31322 ce
31323 \begin_inset ERT
31324 status collapsed
31325
31326 \begin_layout Plain Layout
31327
31328
31329 \backslash
31330 spce 
31331 \end_layout
31332
31333 \end_inset
31334
31335 ^227
31336 \begin_inset Formula $\downarrow$
31337 \end_inset
31338
31339 _90
31340 \begin_inset Formula $\to$
31341 \end_inset
31342
31343 Th+
31344 \end_layout
31345
31346 \end_inset
31347 </cell>
31348 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31349 \begin_inset Text
31350
31351 \begin_layout Plain Layout
31352 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
31353 \end_inset
31354
31355
31356 \end_layout
31357
31358 \end_inset
31359 </cell>
31360 </row>
31361 <row>
31362 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31363 \begin_inset Text
31364
31365 \begin_layout Plain Layout
31366
31367 \backslash
31368 ce
31369 \begin_inset ERT
31370 status collapsed
31371
31372 \begin_layout Plain Layout
31373
31374
31375 \backslash
31376 spce 
31377 \end_layout
31378
31379 \end_inset
31380
31381 CO2
31382 \begin_inset ERT
31383 status collapsed
31384
31385 \begin_layout Plain Layout
31386
31387
31388 \backslash
31389 spce 
31390 \end_layout
31391
31392 \end_inset
31393
31394 +
31395 \begin_inset ERT
31396 status collapsed
31397
31398 \begin_layout Plain Layout
31399
31400
31401 \backslash
31402 spce 
31403 \end_layout
31404
31405 \end_inset
31406
31407 C
31408 \begin_inset ERT
31409 status collapsed
31410
31411 \begin_layout Plain Layout
31412
31413
31414 \backslash
31415 spce 
31416 \end_layout
31417
31418 \end_inset
31419
31420 <=>
31421 \begin_inset ERT
31422 status collapsed
31423
31424 \begin_layout Plain Layout
31425
31426
31427 \backslash
31428 spce 
31429 \end_layout
31430
31431 \end_inset
31432
31433 2CO
31434 \end_layout
31435
31436 \end_inset
31437 </cell>
31438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31439 \begin_inset Text
31440
31441 \begin_layout Plain Layout
31442 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
31443 \end_inset
31444
31445
31446 \end_layout
31447
31448 \end_inset
31449 </cell>
31450 </row>
31451 <row>
31452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31453 \begin_inset Text
31454
31455 \begin_layout Plain Layout
31456
31457 \backslash
31458 ce
31459 \begin_inset ERT
31460 status collapsed
31461
31462 \begin_layout Plain Layout
31463
31464
31465 \backslash
31466 spce 
31467 \end_layout
31468
31469 \end_inset
31470
31471 CO2
31472 \begin_inset ERT
31473 status collapsed
31474
31475 \begin_layout Plain Layout
31476
31477
31478 \backslash
31479 spce 
31480 \end_layout
31481
31482 \end_inset
31483
31484 +
31485 \begin_inset ERT
31486 status collapsed
31487
31488 \begin_layout Plain Layout
31489
31490
31491 \backslash
31492 spce 
31493 \end_layout
31494
31495 \end_inset
31496
31497 C
31498 \begin_inset ERT
31499 status collapsed
31500
31501 \begin_layout Plain Layout
31502
31503
31504 \backslash
31505 spce 
31506 \end_layout
31507
31508 \end_inset
31509
31510 ->[
31511 \backslash
31512 alpha][
31513 \backslash
31514 beta]
31515 \begin_inset ERT
31516 status collapsed
31517
31518 \begin_layout Plain Layout
31519
31520
31521 \backslash
31522 spce 
31523 \end_layout
31524
31525 \end_inset
31526
31527 2CO}
31528 \end_layout
31529
31530 \end_inset
31531 </cell>
31532 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31533 \begin_inset Text
31534
31535 \begin_layout Plain Layout
31536 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
31537 \end_inset
31538
31539
31540 \end_layout
31541
31542 \end_inset
31543 </cell>
31544 </row>
31545 </lyxtabular>
31546
31547 \end_inset
31548
31549
31550 \end_layout
31551
31552 \begin_layout Standard
31553 \begin_inset Note Greyedout
31554 status open
31555
31556 \begin_layout Plain Layout
31557
31558 \series bold
31559 【註】
31560 \backslash
31561 ce
31562 \series default
31563 ボックスに数式を入れようとすると、LaTeXエラーが発生します。このような場合には、
31564 \series bold
31565
31566 \backslash
31567 ce{$
31568 \backslash
31569 mu
31570 \backslash
31571 hyphen$Cl}
31572 \series default
31573
31574 \begin_inset ERT
31575 status collapsed
31576
31577 \begin_layout Plain Layout
31578
31579
31580 \backslash
31581 ce{$
31582 \backslash
31583 mu
31584 \backslash
31585 hyphen$Cl}
31586 \end_layout
31587
31588 \end_inset
31589
31590 )のようにTeXコードを使わなくてはなりません。
31591 \end_layout
31592
31593 \end_inset
31594
31595
31596 \end_layout
31597
31598 \begin_layout Standard
31599
31600 \series bold
31601
31602 \backslash
31603 ce
31604 \series default
31605 を使うと
31606 \begin_inset CommandInset ref
31607 LatexCommand eqref
31608 reference "eq:chem-reaction"
31609
31610 \end_inset
31611
31612 式のコマンドは
31613 \begin_inset Newline newline
31614 \end_inset
31615
31616
31617 \series bold
31618  
31619 \backslash
31620 ce
31621 \begin_inset ERT
31622 status collapsed
31623
31624 \begin_layout Plain Layout
31625
31626
31627 \backslash
31628 spce 
31629 \end_layout
31630
31631 \end_inset
31632
31633 2Na+
31634 \begin_inset ERT
31635 status collapsed
31636
31637 \begin_layout Plain Layout
31638
31639
31640 \backslash
31641 spce 
31642 \end_layout
31643
31644 \end_inset
31645
31646 +
31647 \begin_inset ERT
31648 status collapsed
31649
31650 \begin_layout Plain Layout
31651
31652
31653 \backslash
31654 spce 
31655 \end_layout
31656
31657 \end_inset
31658
31659 SO4^2-
31660 \begin_inset ERT
31661 status collapsed
31662
31663 \begin_layout Plain Layout
31664
31665
31666 \backslash
31667 spce 
31668 \end_layout
31669
31670 \end_inset
31671
31672
31673 \begin_inset ERT
31674 status collapsed
31675
31676 \begin_layout Plain Layout
31677
31678
31679 \backslash
31680 spce 
31681 \end_layout
31682
31683 \end_inset
31684
31685 ->
31686 \begin_inset ERT
31687 status collapsed
31688
31689 \begin_layout Plain Layout
31690
31691
31692 \backslash
31693 spce 
31694 \end_layout
31695
31696 \end_inset
31697
31698 Na2SO4
31699 \begin_inset Newline newline
31700 \end_inset
31701
31702
31703 \series default
31704 のようになります。
31705 \end_layout
31706
31707 \begin_layout Standard
31708 複数行の化学式を作るには、第
31709 \begin_inset CommandInset ref
31710 LatexCommand ref
31711 reference "sec:多行数式"
31712
31713 \end_inset
31714
31715 節に述べられている方法で、多行数式をまず作ります。その後、数式の小さな青いボックスそれぞれに
31716 \series bold
31717
31718 \backslash
31719 ce
31720 \series default
31721 コマンドを使用します。
31722 \begin_inset CommandInset ref
31723 LatexCommand eqref
31724 reference "eq:TEOS-reaction-1"
31725
31726 \end_inset
31727
31728 式と
31729 \begin_inset CommandInset ref
31730 LatexCommand eqref
31731 reference "eq:TEOS-reaction-2"
31732
31733 \end_inset
31734
31735 式は、多段化学反応式の例で、一つの式毎に番号が振られています。
31736 \begin_inset Formula \begin{eqnarray}
31737 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-reaction-1}\\
31738 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-reaction-2}
31739 \end{eqnarray}
31740
31741 \end_inset
31742
31743
31744 \end_layout
31745
31746 \begin_layout Standard
31747
31748 \series bold
31749 mhchem
31750 \series default
31751 パッケージは、
31752 \series bold
31753
31754 \backslash
31755 ce
31756 \series default
31757 の他に、特殊ケースに使用する
31758 \series bold
31759
31760 \backslash
31761 cf
31762 \series default
31763
31764 \begin_inset Index idx
31765 status collapsed
31766
31767 \begin_layout Plain Layout
31768 こまんど@コマンド ! C ! 
31769 \backslash
31770 cf
31771 \end_layout
31772
31773 \end_inset
31774
31775 コマンドを提供しています。
31776 \series bold
31777
31778 \backslash
31779 cf
31780 \series default
31781 の詳しい情報と例示については、
31782 \series bold
31783 mhchem
31784 \series default
31785
31786 \begin_inset CommandInset citation
31787 LatexCommand cite
31788 key "mhchem"
31789
31790 \end_inset
31791
31792 の取扱説明書をご覧ください。
31793 \end_layout
31794
31795 \begin_layout Standard
31796 \begin_inset Newpage newpage
31797 \end_inset
31798
31799
31800 \end_layout
31801
31802 \begin_layout Section
31803 図解
31804 \end_layout
31805
31806 \begin_layout Standard
31807 LyXは、二つの型の可換図
31808 \series bold
31809 amscd
31810 \series default
31811 および
31812 \series bold
31813 xymatrix
31814 \series default
31815 をサポートしており、以下でこれらの説明をします。
31816 \end_layout
31817
31818 \begin_layout Subsection
31819 amscd図解
31820 \begin_inset Index idx
31821 status collapsed
31822
31823 \begin_layout Plain Layout
31824 ずかい@図解 ! amscd
31825 \end_layout
31826
31827 \end_inset
31828
31829
31830 \end_layout
31831
31832 \begin_layout Standard
31833 この型の図解は、以下のように、関係を縦横の線や矢印で図示します。
31834 \begin_inset Formula \[
31835 \begin{CD}A@>>>B@>>>C\\
31836 @AAA@.@VVV\\
31837 F@<<<E@<<<D
31838 \end{CD}\]
31839
31840 \end_inset
31841
31842
31843 \end_layout
31844
31845 \begin_layout Standard
31846 これを作るには、数式に
31847 \series bold
31848
31849 \backslash
31850 CD
31851 \begin_inset Index idx
31852 status collapsed
31853
31854 \begin_layout Plain Layout
31855 こまんど@コマンド ! C ! 
31856 \backslash
31857 CD
31858 \end_layout
31859
31860 \end_inset
31861
31862
31863 \series default
31864 コマンドを挿入します。二つの点線に囲まれた青枠が現れるので、ここにコマンドを入れていきます。
31865 \begin_inset Info
31866 type  "shortcut"
31867 arg   "newline-insert newline"
31868 \end_inset
31869
31870 を押すと、新しい行が作られます。水平方向の関係は奇数行に入れ、垂直方向の関係は偶数行に入れます。
31871 \end_layout
31872
31873 \begin_layout Standard
31874 関係を作るには、以下のコマンドがあります。
31875 \end_layout
31876
31877 \begin_layout Itemize
31878 \begin_inset Formula $\boldsymbol{@<<<}$
31879 \end_inset
31880
31881 は左矢印、
31882 \begin_inset Formula $\boldsymbol{@>>>}$
31883 \end_inset
31884
31885 は右矢印、
31886 \series bold
31887 @=
31888 \series default
31889 は長い等号を生成します。
31890 \end_layout
31891
31892 \begin_layout Itemize
31893
31894 \series bold
31895 @AAA
31896 \series default
31897 は上矢印、
31898 \series bold
31899 @VVV
31900 \series default
31901 は下矢印、
31902 \begin_inset Formula $\boldsymbol{@|}$
31903 \end_inset
31904
31905 は縦向きの等号を生成します。
31906 \end_layout
31907
31908 \begin_layout Itemize
31909
31910 \series bold
31911 @.
31912 \series default
31913 は関係が存在しない部分に置きます。
31914 \end_layout
31915
31916 \begin_layout Standard
31917 矢印はすべて、以下のようにラベル付けをすることができます。
31918 \end_layout
31919
31920 \begin_layout Itemize
31921 文章を、第1と第2の「
31922 \begin_inset Formula $<$
31923 \end_inset
31924
31925 」ないし「
31926 \begin_inset Formula $>$
31927 \end_inset
31928
31929 」のあいだに入れると、この文章は矢印の上に表示されます。第2・第3の「
31930 \begin_inset Formula $<$
31931 \end_inset
31932
31933 」ないし「
31934 \begin_inset Formula $>$
31935 \end_inset
31936
31937 」のあいだに入れると、矢印の下に表示されます。
31938 \end_layout
31939
31940 \begin_layout Itemize
31941 縦矢印に付ける文章を、第1・第2の「A」ないし「V」のあいだに入れると、この文章は矢印の左に表示されます。第2・第3のもののあいだに入れると、矢印の右に表示され
31942 ます。文章中に「A」や「V」の文字があるときには、これらはTeX括弧の中に入れなくてはなりません。
31943 \end_layout
31944
31945 \begin_layout Standard
31946 以下は、上記のすべての関係を使った例です。
31947 \end_layout
31948
31949 \begin_layout Standard
31950 \begin_inset Formula \[
31951 \begin{CD}A@>j>>B@>>k>C@=F\\
31952 @AmAA@.@VV{V}V@|\\
31953 D@<<j<E@>k>>F@=C
31954 \end{CD}\]
31955
31956 \end_inset
31957
31958
31959 \end_layout
31960
31961 \begin_layout Standard
31962 これを作るコマンドは、以下のとおりです。
31963 \begin_inset Newline newline
31964 \end_inset
31965
31966
31967 \series bold
31968
31969 \backslash
31970 CD
31971 \begin_inset ERT
31972 status collapsed
31973
31974 \begin_layout Plain Layout
31975
31976
31977 \backslash
31978 spce 
31979 \end_layout
31980
31981 \end_inset
31982
31983 A
31984 \begin_inset Formula $\boldsymbol{@>}$
31985 \end_inset
31986
31987 j
31988 \begin_inset Formula $\boldsymbol{>>}$
31989 \end_inset
31990
31991 B
31992 \begin_inset Formula $\boldsymbol{@>>}$
31993 \end_inset
31994
31995 k
31996 \begin_inset Formula $\boldsymbol{>}$
31997 \end_inset
31998
31999 C@=F Ctrl+Return
32000 \begin_inset Newline newline
32001 \end_inset
32002
32003
32004 \begin_inset Phantom HPhantom
32005 status open
32006
32007 \begin_layout Plain Layout
32008
32009 \series bold
32010
32011 \backslash
32012 CD
32013 \begin_inset ERT
32014 status collapsed
32015
32016 \begin_layout Plain Layout
32017
32018
32019 \backslash
32020 spce 
32021 \end_layout
32022
32023 \end_inset
32024
32025
32026 \end_layout
32027
32028 \end_inset
32029
32030 @AmAA@.@VV
32031 \backslash
32032 {V
32033 \series default
32034
32035 \begin_inset Formula $\to$
32036 \end_inset
32037
32038
32039 \series bold
32040 V
32041 \begin_inset Formula $\boldsymbol{@|}$
32042 \end_inset
32043
32044  Ctrl+Return
32045 \begin_inset Newline newline
32046 \end_inset
32047
32048
32049 \begin_inset Phantom HPhantom
32050 status open
32051
32052 \begin_layout Plain Layout
32053
32054 \series bold
32055
32056 \backslash
32057 CD
32058 \begin_inset ERT
32059 status collapsed
32060
32061 \begin_layout Plain Layout
32062
32063
32064 \backslash
32065 spce 
32066 \end_layout
32067
32068 \end_inset
32069
32070
32071 \end_layout
32072
32073 \end_inset
32074
32075 D
32076 \begin_inset Formula $\boldsymbol{@<<}$
32077 \end_inset
32078
32079 j
32080 \begin_inset Formula $\boldsymbol{<}$
32081 \end_inset
32082
32083 E
32084 \begin_inset Formula $\boldsymbol{@>}$
32085 \end_inset
32086
32087 k
32088 \begin_inset Formula $\boldsymbol{>>}$
32089 \end_inset
32090
32091 F@=C
32092 \end_layout
32093
32094 \begin_layout Subsection
32095 xymatrix図解
32096 \begin_inset Index idx
32097 status collapsed
32098
32099 \begin_layout Plain Layout
32100 ずかい@図解 ! xymatrix
32101 \end_layout
32102
32103 \end_inset
32104
32105
32106 \end_layout
32107
32108 \begin_layout Standard
32109 xymatricesを使うには、LaTeXパッケージの
32110 \series bold
32111 xypic
32112 \series default
32113 が導入済みである必要があります。xymatrixは、数式中に
32114 \series bold
32115
32116 \backslash
32117 xymatrix
32118 \series default
32119 コマンドを入れることで作ることができます。すると、通常の行列と同じようにして、列や行を付け加えることができます。第
32120 \begin_inset CommandInset ref
32121 LatexCommand ref
32122 reference "sec:行列"
32123
32124 \end_inset
32125
32126 節をご参照下さい。
32127 \end_layout
32128
32129 \begin_layout Standard
32130 amscd図解とは異なり、xymatricesは、対角矢印や曲がった矢印など多様なサポートをしています。作ることのできる可換図と装飾は、
32131 \family sans
32132 ヘルプ\SpecialChar \menuseparator
32133 用途別説明書\SpecialChar \menuseparator
32134 XY-pic説明書
32135 \family default
32136 メニューにある
32137 \emph on
32138 XY-pic説明書
32139 \emph default
32140 で詳しく網羅しています。
32141 \end_layout
32142
32143 \begin_layout Subsection
32144
32145 \noun on
32146 \lang english
32147 Feynman
32148 \noun default
32149  Diagrams
32150 \lang japanese
32151
32152 \begin_inset Index idx
32153 status collapsed
32154
32155 \begin_layout Plain Layout
32156 ずかい@図解 ! Feynman
32157 \end_layout
32158
32159 \end_inset
32160
32161
32162 \end_layout
32163
32164 \begin_layout Standard
32165
32166 \lang english
32167 To be able to use 
32168 \noun on
32169 Feynman
32170 \noun default
32171 -diagrams, the LaTeX-package 
32172 \series bold
32173 feyn
32174 \series default
32175  must be installed.
32176  A 
32177 \noun on
32178 Feynman
32179 \noun default
32180 -diagram is created by inserting the command 
32181 \series bold
32182
32183 \backslash
32184 Diagram
32185 \series default
32186  in a formula.
32187  Then you are able to add new matrix columns and rows like for normal matrices,
32188  see
32189 \lang japanese
32190  
32191 \begin_inset CommandInset ref
32192 LatexCommand ref
32193 reference "sec:行列"
32194
32195 \end_inset
32196
32197 .
32198 \end_layout
32199
32200 \begin_layout Standard
32201
32202 \lang english
32203 Examples how to create 
32204 \noun on
32205 Feynman-
32206 \noun default
32207 diagrams in LyX is given in the 
32208 \emph on
32209 Feynman-diagram manual
32210 \emph default
32211  that you find in the menu 
32212 \family sans
32213 Help\SpecialChar \menuseparator
32214 Specific
32215 \begin_inset space ~
32216 \end_inset
32217
32218 Manuals
32219 \family default
32220 .
32221 \end_layout
32222
32223 \begin_layout Standard
32224 \begin_inset Newpage newpage
32225 \end_inset
32226
32227
32228 \end_layout
32229
32230 \begin_layout Section
32231 ユーザー定義コマンド
32232 \begin_inset Index idx
32233 status collapsed
32234
32235 \begin_layout Plain Layout
32236 ゆーざーていぎこまんど@ユーザー定義コマンド
32237 \end_layout
32238
32239 \end_inset
32240
32241
32242 \end_layout
32243
32244 \begin_layout Standard
32245 \begin_inset Note Greyedout
32246 status open
32247
32248 \begin_layout Plain Layout
32249 (注意)ユーザー定義コマンド名及びマクロ名には、ラテン文字しか使用することができません。
32250 \end_layout
32251
32252 \end_inset
32253
32254
32255 \end_layout
32256
32257 \begin_layout Subsection
32258
32259 \backslash
32260 newcommandコマンド
32261 \begin_inset CommandInset label
32262 LatexCommand label
32263 name "sub:newcommandコマンド"
32264
32265 \end_inset
32266
32267
32268 \begin_inset Index idx
32269 status collapsed
32270
32271 \begin_layout Plain Layout
32272 ゆーざーていぎこまんど@ユーザー定義コマンド ! 
32273 \backslash
32274 newcommand
32275 \end_layout
32276
32277 \end_inset
32278
32279
32280 \begin_inset Index idx
32281 status collapsed
32282
32283 \begin_layout Plain Layout
32284 こまんど@コマンド ! N ! 
32285 \backslash
32286 newcommand
32287 \end_layout
32288
32289 \end_inset
32290
32291
32292 \end_layout
32293
32294 \begin_layout Standard
32295 頻繁に用いるには、長すぎるLaTeXコマンドはたくさんありますが、
32296 \series bold
32297
32298 \backslash
32299 newcommand
32300 \series default
32301 コマンドを使えば、新しい短縮コマンドを定義することが可能です。
32302 \end_layout
32303
32304 \begin_layout Standard
32305
32306 \series bold
32307
32308 \backslash
32309 newcommand
32310 \series default
32311 コマンドの書式は、
32312 \end_layout
32313
32314 \begin_layout Standard
32315
32316 \series bold
32317
32318 \backslash
32319 newcommand{新コマンド名}[引数の数][オプションの値]
32320 \begin_inset Newline newline
32321 \end_inset
32322
32323
32324 \begin_inset Phantom HPhantom
32325 status open
32326
32327 \begin_layout Plain Layout
32328
32329 \series bold
32330
32331 \backslash
32332 newcommand
32333 \end_layout
32334
32335 \end_inset
32336
32337 {コマンド定義}
32338 \end_layout
32339
32340 \begin_layout Standard
32341 です。
32342 \end_layout
32343
32344 \begin_layout Standard
32345 \begin_inset Note Greyedout
32346 status open
32347
32348 \begin_layout Plain Layout
32349
32350 \series bold
32351 (注意)
32352 \series default
32353 新コマンド名が、使用中の文書や呼び出しているLaTeXパッケージで、既に使用されていないことを確認して下さい。たとえば、
32354 \series bold
32355
32356 \backslash
32357 Leftarrow
32358 \series default
32359 の短縮のつもりで
32360 \series bold
32361
32362 \backslash
32363 le
32364 \series default
32365 というコマンドを定義したとすると、
32366 \series bold
32367
32368 \backslash
32369 le
32370 \series default
32371 は既に「
32372 \begin_inset Formula $\le$
32373 \end_inset
32374
32375 」を表すコマンドとして定義されてしまっているので、エラーメッセージが表示されます。
32376 \end_layout
32377
32378 \end_inset
32379
32380
32381 \end_layout
32382
32383 \begin_layout Standard
32384 「引数の数」は、0
32385 \begin_inset space \thinspace{}
32386 \end_inset
32387
32388 -
32389 \begin_inset space \thinspace{}
32390 \end_inset
32391
32392 9の範囲の整数であり、新コマンドがいくつの引数をとるかを指定するものです。「オプションの値」では、非必須の引数の既定値を定義できます。これを指定すると、新コマン
32393 ドの
32394 \emph on
32395 最初の
32396 \emph default
32397 引数は、自動的に非必須の引数になります。
32398 \end_layout
32399
32400 \begin_layout Standard
32401 以下にいくつかの例を挙げます。
32402 \end_layout
32403
32404 \begin_layout Itemize
32405
32406 \series bold
32407
32408 \backslash
32409 Longrightarrow
32410 \series default
32411 の短縮形として
32412 \series bold
32413
32414 \backslash
32415 gr
32416 \series default
32417 というコマンドを定義するには、LaTeXプリアンブルに以下の行を加えます。
32418 \begin_inset VSpace medskip
32419 \end_inset
32420
32421
32422 \begin_inset Newline newline
32423 \end_inset
32424
32425
32426 \series bold
32427
32428 \backslash
32429 newcommand{
32430 \backslash
32431 gr}{
32432 \backslash
32433 Longrightarrow}
32434 \end_layout
32435
32436 \begin_layout Itemize
32437
32438 \series bold
32439
32440 \backslash
32441 underline
32442 \series default
32443 の短縮形として
32444 \series bold
32445
32446 \backslash
32447 us
32448 \series default
32449 というコマンドを定義するには、(下線を引くべき文字列を示す)引数を考慮に入れなくてはなりません。このためには、以下のようなプリアンブル行を入れます。
32450 \begin_inset VSpace medskip
32451 \end_inset
32452
32453
32454 \begin_inset Newline newline
32455 \end_inset
32456
32457
32458 \series bold
32459
32460 \backslash
32461 newcommand{
32462 \backslash
32463 us}[1]{
32464 \backslash
32465 underline{#1}}
32466 \series default
32467
32468 \begin_inset VSpace medskip
32469 \end_inset
32470
32471
32472 \begin_inset Newline newline
32473 \end_inset
32474
32475
32476 \series bold
32477 #
32478 \series default
32479 」という文字は、引数の入る場所を示し、その後ろの「
32480 \series bold
32481 1
32482 \series default
32483 」は、これが第1引数の入る場所であることを示します。
32484 \end_layout
32485
32486 \begin_layout Itemize
32487
32488 \series bold
32489
32490 \backslash
32491 framebox
32492 \series default
32493 の短縮形として、たとえば
32494 \series bold
32495
32496 \backslash
32497 fb
32498 \series default
32499 というコマンドを定義するには、
32500 \begin_inset VSpace medskip
32501 \end_inset
32502
32503
32504 \begin_inset Newline newline
32505 \end_inset
32506
32507
32508 \series bold
32509
32510 \backslash
32511 newcommand{
32512 \backslash
32513 fb}[3]{
32514 \backslash
32515 framebox#1#2{$#3$}}
32516 \series default
32517
32518 \begin_inset VSpace medskip
32519 \end_inset
32520
32521
32522 \begin_inset Newline newline
32523 \end_inset
32524
32525 二つのドルマークは、
32526 \series bold
32527
32528 \backslash
32529 framebox
32530 \series default
32531 が必要とする内部の数式を作り出します。第
32532 \begin_inset CommandInset ref
32533 LatexCommand ref
32534 reference "sub:縁付きボックス"
32535
32536 \end_inset
32537
32538 節をご参照下さい。
32539 \end_layout
32540
32541 \begin_layout Itemize
32542 ボックスの色を指定する必要がない
32543 \series bold
32544
32545 \backslash
32546 fcolorbox
32547 \series default
32548 用の新コマンドを作るには、以下のように、色を示す引数を非必須として定義します。
32549 \begin_inset VSpace medskip
32550 \end_inset
32551
32552
32553 \begin_inset Newline newline
32554 \end_inset
32555
32556
32557 \series bold
32558
32559 \backslash
32560 newcommand{
32561 \backslash
32562 cb}[3][white]{
32563 \backslash
32564 fcolorbox{#2}{#1}{$#3$}}
32565 \series default
32566
32567 \begin_inset VSpace medskip
32568 \end_inset
32569
32570
32571 \begin_inset Newline newline
32572 \end_inset
32573
32574
32575 \series bold
32576
32577 \backslash
32578 cb
32579 \series default
32580 を使うときに色が指定されなければ、事前に定義された色である
32581 \series bold
32582 white
32583 \series default
32584 が使用されます。
32585 \end_layout
32586
32587 \begin_layout Standard
32588 以下は、上で定義したコマンドの動作テストです。
32589 \end_layout
32590
32591 \begin_layout Standard
32592 \align center
32593 \begin_inset Tabular
32594 <lyxtabular version="3" rows="6" columns="2">
32595 <features tabularvalignment="middle">
32596 <column alignment="center" valignment="top" width="0">
32597 <column alignment="center" valignment="top" width="0">
32598 <row>
32599 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32600 \begin_inset Text
32601
32602 \begin_layout Plain Layout
32603 コマンド
32604 \end_layout
32605
32606 \end_inset
32607 </cell>
32608 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32609 \begin_inset Text
32610
32611 \begin_layout Plain Layout
32612 出力
32613 \begin_inset Note Note
32614 status collapsed
32615
32616 \begin_layout Plain Layout
32617 ここで
32618 \series bold
32619
32620 \backslash
32621 raisebox
32622 \series default
32623 はスペーサーとして使用しているだけです。
32624 \end_layout
32625
32626 \end_inset
32627
32628
32629 \end_layout
32630
32631 \end_inset
32632 </cell>
32633 </row>
32634 <row>
32635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32636 \begin_inset Text
32637
32638 \begin_layout Plain Layout
32639 A
32640 \backslash
32641 gr
32642 \begin_inset ERT
32643 status collapsed
32644
32645 \begin_layout Plain Layout
32646
32647
32648 \backslash
32649 spce 
32650 \end_layout
32651
32652 \end_inset
32653
32654 B
32655 \end_layout
32656
32657 \end_inset
32658 </cell>
32659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32660 \begin_inset Text
32661
32662 \begin_layout Plain Layout
32663 \begin_inset Formula $A\gr B$
32664 \end_inset
32665
32666
32667 \end_layout
32668
32669 \end_inset
32670 </cell>
32671 </row>
32672 <row>
32673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32674 \begin_inset Text
32675
32676 \begin_layout Plain Layout
32677
32678 \backslash
32679 us{ABcd
32680 \end_layout
32681
32682 \end_inset
32683 </cell>
32684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32685 \begin_inset Text
32686
32687 \begin_layout Plain Layout
32688 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
32689 \end_inset
32690
32691
32692 \end_layout
32693
32694 \end_inset
32695 </cell>
32696 </row>
32697 <row>
32698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32699 \begin_inset Text
32700
32701 \begin_layout Plain Layout
32702
32703 \backslash
32704 fb{[2cm]
32705 \begin_inset Formula $\to$
32706 \end_inset
32707
32708
32709 \backslash
32710 {
32711 \begin_inset Formula $\to$
32712 \end_inset
32713
32714
32715 \backslash
32716 {
32717 \backslash
32718 int
32719 \begin_inset ERT
32720 status collapsed
32721
32722 \begin_layout Plain Layout
32723
32724
32725 \backslash
32726 spce 
32727 \end_layout
32728
32729 \end_inset
32730
32731 A=B
32732 \end_layout
32733
32734 \end_inset
32735 </cell>
32736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32737 \begin_inset Text
32738
32739 \begin_layout Plain Layout
32740 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
32741 \end_inset
32742
32743
32744 \end_layout
32745
32746 \end_inset
32747 </cell>
32748 </row>
32749 <row>
32750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32751 \begin_inset Text
32752
32753 \begin_layout Plain Layout
32754
32755 \backslash
32756 cb{red
32757 \begin_inset Formula $\to$
32758 \end_inset
32759
32760
32761 \backslash
32762 {
32763 \backslash
32764 int
32765 \begin_inset ERT
32766 status collapsed
32767
32768 \begin_layout Plain Layout
32769
32770
32771 \backslash
32772 spce 
32773 \end_layout
32774
32775 \end_inset
32776
32777 A=B
32778 \end_layout
32779
32780 \end_inset
32781 </cell>
32782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32783 \begin_inset Text
32784
32785 \begin_layout Plain Layout
32786 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
32787 \end_inset
32788
32789
32790 \end_layout
32791
32792 \end_inset
32793 </cell>
32794 </row>
32795 <row>
32796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32797 \begin_inset Text
32798
32799 \begin_layout Plain Layout
32800
32801 \backslash
32802 cb[green]
32803 \backslash
32804 {red
32805 \begin_inset Formula $\to$
32806 \end_inset
32807
32808
32809 \backslash
32810 {
32811 \backslash
32812 int
32813 \begin_inset ERT
32814 status collapsed
32815
32816 \begin_layout Plain Layout
32817
32818
32819 \backslash
32820 spce 
32821 \end_layout
32822
32823 \end_inset
32824
32825 A=B
32826 \end_layout
32827
32828 \end_inset
32829 </cell>
32830 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32831 \begin_inset Text
32832
32833 \begin_layout Plain Layout
32834 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
32835 \end_inset
32836
32837
32838 \end_layout
32839
32840 \end_inset
32841 </cell>
32842 </row>
32843 </lyxtabular>
32844
32845 \end_inset
32846
32847
32848 \end_layout
32849
32850 \begin_layout Subsection
32851 数式マクロ
32852 \begin_inset Index idx
32853 status collapsed
32854
32855 \begin_layout Plain Layout
32856 ゆーざーていぎこまんど@ユーザー定義コマンド ! すうしきまくろ@数式マクロ
32857 \end_layout
32858
32859 \end_inset
32860
32861
32862 \begin_inset Index idx
32863 status collapsed
32864
32865 \begin_layout Plain Layout
32866 まくろ@マクロ
32867 \end_layout
32868
32869 \end_inset
32870
32871
32872 \end_layout
32873
32874 \begin_layout Standard
32875 ユーザー定義コマンドは、複雑な表現を使うときに特に便利です。たとえば、文書中で二次方程式を扱っているとすると、同じような解の形が何度も出てきます。二次方程式の一
32876 般型は、
32877 \begin_inset Formula \[
32878 0=\lambda^{2}+p\lambda+q\]
32879
32880 \end_inset
32881
32882 であり、その解の一般型は
32883 \begin_inset Formula \[
32884 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}\]
32885
32886 \end_inset
32887
32888
32889 \end_layout
32890
32891 \begin_layout Standard
32892 です。
32893 \begin_inset Formula $\lambda$
32894 \end_inset
32895
32896
32897 \begin_inset Formula $p$
32898 \end_inset
32899
32900
32901 \begin_inset Formula $q$
32902 \end_inset
32903
32904 の3つのパラメータを指定することが必須であり、
32905 \begin_inset Formula $\lambda$
32906 \end_inset
32907
32908 の指数をオプションとして与えることができるような、解の公式のコマンドを定義するには、以下のようなLaTeXプリアンブル行を加えます。
32909 \begin_inset Newline newline
32910 \end_inset
32911
32912
32913 \series bold
32914
32915 \backslash
32916 newcommand{
32917 \backslash
32918 qG}[4][1,
32919 \backslash
32920 ,2]{#2_{#1}=-
32921 \backslash
32922 frac{#3}{2}
32923 \backslash
32924 pm
32925 \begin_inset Newline newline
32926 \end_inset
32927
32928
32929 \begin_inset Phantom HPhantom
32930 status open
32931
32932 \begin_layout Plain Layout
32933
32934 \series bold
32935
32936 \backslash
32937 newcommand
32938 \end_layout
32939
32940 \end_inset
32941
32942
32943 \backslash
32944 sqrt{
32945 \backslash
32946 frac{#3^{2}}{4}-#4}}
32947 \end_layout
32948
32949 \begin_layout Standard
32950 これを使って解の公式を作るには、
32951 \begin_inset Newline newline
32952 \end_inset
32953
32954
32955 \series bold
32956
32957 \backslash
32958 qG{
32959 \backslash
32960 lambda
32961 \begin_inset Formula $\to$
32962 \end_inset
32963
32964
32965 \backslash
32966 {p
32967 \begin_inset Formula $\to$
32968 \end_inset
32969
32970
32971 \backslash
32972 {q
32973 \series default
32974 というコマンドを数式に入れます。
32975 \end_layout
32976
32977 \begin_layout Standard
32978 新コマンドを定義する方法は、たとえばLaTeX中で分数は
32979 \series bold
32980
32981 \backslash
32982 frac{分子}{分母}
32983 \series default
32984 の形で入れなくてはならないことなど、使用するすべてのLaTeXコマンドの書式を知っている必要があるので、直感的ではありません。さらに、定義中で中括弧を入れ忘れる
32985 ことはよくあり、それをやってしまうと、LyXからは新コマンドが何をやらかしているか確認しにくくなってしまいます。これらの問題を回避するために、LyXは、
32986 \series bold
32987
32988 \backslash
32989 newcommand
32990 \series default
32991 コマンドの代わりに、数式マクロを使う方法を提供しています。
32992 \end_layout
32993
32994 \begin_layout Standard
32995 数式マクロは、
32996 \family sans
32997 挿入\SpecialChar \menuseparator
32998 数式\SpecialChar \menuseparator
32999 マクロ
33000 \family default
33001 メニューか、ツールバーボタンの
33002 \begin_inset Graphics
33003         filename ../../images/math-macro_newmacroname_newcommand.png
33004         scale 85
33005
33006 \end_inset
33007
33008 で作ることができます。すると、数式マクロツールバーが表示されるとともに、マクロを定義した箇所に以下のようなボックスが現れます。
33009 \begin_inset Newline newline
33010 \end_inset
33011
33012
33013 \begin_inset space \hspace*{\fill}
33014 \end_inset
33015
33016
33017 \begin_inset Graphics
33018         filename ../clipart/macrobox.png
33019
33020 \end_inset
33021
33022
33023 \begin_inset space \hspace*{\fill}
33024 \end_inset
33025
33026
33027 \begin_inset Newline newline
33028 \end_inset
33029
33030
33031 \begin_inset FormulaMacro
33032 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33033 \end_inset
33034
33035
33036 \backslash
33037 newmacronameが既定のマクロ名として現れますが、意味のある名称に変更するべきでしょう。欲しい数式は一つ目の青枠の中に入れます。引数を置く場所は、
33038 \series bold
33039
33040 \backslash
33041 #1
33042 \series default
33043 のように
33044 \series bold
33045
33046 \backslash
33047 #引数番号
33048 \series default
33049 というコマンドで入力するか、マクロツールバーボタンの
33050 \begin_inset Graphics
33051         filename ../../images/math-macro-add-param.png
33052         scale 85
33053
33054 \end_inset
33055
33056 を使用します。引数位置は赤で表示されます。引数は、最大で9つまでとることができます。非必須引数は、ツールバーボタンの
33057 \begin_inset Graphics
33058         filename ../../images/math-macro-add-optional-param.png
33059         scale 85
33060
33061 \end_inset
33062
33063 で作ることができます。最初の必須引数は、ツールバーボタンの
33064 \begin_inset Graphics
33065         filename ../../images/math-macro-make-optional.png
33066         scale 85
33067
33068 \end_inset
33069
33070 を使って、非必須引数にすることができます。二つ目の青枠には、LyX中でのマクロの表示のしかたを定義することができます。通常は、定義したとおりに表示された方が便利
33071 なので、この枠は空白にしておきます。しかし、画面の過半を占拠してしまうようなマクロを作ってしまった場合には、たとえばこの枠に
33072 \begin_inset Newline newline
33073 \end_inset
33074
33075
33076 \series bold
33077 qG: 
33078 \backslash
33079 #1
33080 \series default
33081  
33082 \series bold
33083 ,
33084 \series default
33085  
33086 \series bold
33087
33088 \backslash
33089 #2
33090 \series default
33091  
33092 \series bold
33093 ,
33094 \series default
33095  
33096 \series bold
33097
33098 \backslash
33099 #3, 
33100 \backslash
33101 #4
33102 \begin_inset Newline newline
33103 \end_inset
33104
33105
33106 \series default
33107 のように入れることができます。このようにすると、マクロ名と引数のみがLyX上に表示され、見通しが良くなります。一方、出力での数式は、最初の枠で定義したように表示
33108 されます。
33109 \begin_inset Newline newline
33110 \end_inset
33111
33112 さらに、数式中のマクロ表示は、マクロの中にカーソルを置いて、
33113 \family sans
33114 表示\SpecialChar \menuseparator
33115 数式マクロを展開(畳む)
33116 \family default
33117 メニューを使うことで、マクロ毎に変えることができます。
33118 \end_layout
33119
33120 \begin_layout Standard
33121 マクロを使うには、数式中にマクロ名をコマンドとして入れます。上記の例では、
33122 \series bold
33123
33124 \backslash
33125 qG
33126 \series default
33127 とします。このマクロは、LyX中では以下のように表示されます。
33128 \begin_inset Newline newline
33129 \end_inset
33130
33131
33132 \begin_inset space \hspace*{\fill}
33133 \end_inset
33134
33135
33136 \begin_inset Graphics
33137         filename ../clipart/macrouse.png
33138
33139 \end_inset
33140
33141
33142 \begin_inset space \hspace*{\fill}
33143 \end_inset
33144
33145
33146 \begin_inset Newline newline
33147 \end_inset
33148
33149 以下は、上記の例に、引数
33150 \begin_inset Formula $x$
33151 \end_inset
33152
33153
33154 \begin_inset Formula $\ln(x)$
33155 \end_inset
33156
33157
33158 \begin_inset Formula $B$
33159 \end_inset
33160
33161 を指定したものです。
33162 \end_layout
33163
33164 \begin_layout Standard
33165 \begin_inset Formula \[
33166 \qG x{\ln(x)}B\]
33167
33168 \end_inset
33169
33170
33171 \end_layout
33172
33173 \begin_layout Standard
33174 LyXは、
33175 \family sans
33176 ツール\SpecialChar \menuseparator
33177 設定\SpecialChar \menuseparator
33178 編集\SpecialChar \menuseparator
33179 制御
33180 \family default
33181 メニューで、マクロを編集するのに複数の様式を用意しています。あなたに最も合った様式を見つけるには、様式を選択してから、違いを見るために数式マクロにカーソルを合わ
33182 せてみてください。
33183 \end_layout
33184
33185 \begin_layout Standard
33186 数式マクロは、文書書き出し時に、内部的に
33187 \series bold
33188
33189 \backslash
33190 newcommand
33191 \series default
33192 コマンドに変換されます。こうして生成された
33193 \series bold
33194
33195 \backslash
33196 newcommand
33197 \series default
33198 コマンドは、LaTeXプリアンブルには置かれませんので、マクロは、文書中、マクロ定義ボックスよりも後の数式でのみ使うことができます。
33199 \end_layout
33200
33201 \begin_layout Standard
33202 数式マクロは、
33203 \series bold
33204
33205 \backslash
33206 newcommand
33207 \series default
33208 コマンドから直接作ることもできます。たとえば、LyX中に通常の文章として、
33209 \series bold
33210
33211 \begin_inset Newline newline
33212 \end_inset
33213
33214
33215 \backslash
33216 newcommand{
33217 \backslash
33218 larrow}[2]{
33219 \backslash
33220 xleftarrow[#2]{#1}}
33221 \begin_inset Newline newline
33222 \end_inset
33223
33224
33225 \series default
33226 というコマンドを書き入れ、この全体を選択して、短絡キー
33227 \family sans
33228 Ctrl+M
33229 \family default
33230 を押すと、このコマンドは数式マクロに変換されます。この方法を使うに当たっては、
33231 \series bold
33232
33233 \backslash
33234 newcommand
33235 \series default
33236 コマンドが正しく入力されていることに気をつけなくてはなりません。さもないと、間違ったマクロが作られてしまって、LaTeXエラーが発生します。
33237 \end_layout
33238
33239 \begin_layout Standard
33240 数式マクロには、まだ、マクロ定義中に再帰的に数式を入れてしまうと、正しく処理されないという問題が残っています。したがって、第
33241 \begin_inset CommandInset ref
33242 LatexCommand ref
33243 reference "sub:newcommandコマンド"
33244
33245 \end_inset
33246
33247 節で例として作った
33248 \series bold
33249
33250 \backslash
33251 fb
33252 \series default
33253 は、マクロとしては作ることができません。
33254 \end_layout
33255
33256 \begin_layout Standard
33257 カーソルがマクロ定義ボックスの中にあるとき、LyX中に以下のようなマクロツールバーが表示されます。
33258 \end_layout
33259
33260 \begin_layout Standard
33261 \begin_inset VSpace defskip
33262 \end_inset
33263
33264
33265 \end_layout
33266
33267 \begin_layout Standard
33268 \begin_inset Graphics
33269         filename ../clipart/MacroToolbar.png
33270
33271 \end_inset
33272
33273
33274 \begin_inset Index idx
33275 status collapsed
33276
33277 \begin_layout Plain Layout
33278 まくろ@マクロ ! つーるばー@ツールバー
33279 \end_layout
33280
33281 \end_inset
33282
33283
33284 \end_layout
33285
33286 \begin_layout Standard
33287 \begin_inset VSpace defskip
33288 \end_inset
33289
33290
33291 \end_layout
33292
33293 \begin_layout Standard
33294 マクロツールバーは、左から右に、以下の各ボタンがあります。
33295 \end_layout
33296
33297 \begin_layout Standard
33298 \begin_inset VSpace defskip
33299 \end_inset
33300
33301
33302 \end_layout
33303
33304 \begin_layout Standard
33305 \begin_inset Tabular
33306 <lyxtabular version="3" rows="9" columns="2">
33307 <features islongtable="true" longtabularalignment="center">
33308 <column alignment="left" valignment="top" width="0">
33309 <column alignment="left" valignment="top" width="85col%">
33310 <row interlinespace="2.5mm">
33311 <cell alignment="center" valignment="top" usebox="none">
33312 \begin_inset Text
33313
33314 \begin_layout Plain Layout
33315 \begin_inset Graphics
33316         filename ../../images/math-macro-remove-param.png
33317         rotateOrigin center
33318
33319 \end_inset
33320
33321
33322 \end_layout
33323
33324 \end_inset
33325 </cell>
33326 <cell alignment="center" valignment="top" usebox="none">
33327 \begin_inset Text
33328
33329 \begin_layout Plain Layout
33330
33331 \family sans
33332 編集\SpecialChar \menuseparator
33333 数式\SpecialChar \menuseparator
33334 マクロ定義\SpecialChar \menuseparator
33335 最後の引数を削除
33336 \end_layout
33337
33338 \end_inset
33339 </cell>
33340 </row>
33341 <row interlinespace="2.5mm">
33342 <cell alignment="center" valignment="top" usebox="none">
33343 \begin_inset Text
33344
33345 \begin_layout Plain Layout
33346 \begin_inset Graphics
33347         filename ../../images/math-macro-add-param.png
33348         rotateOrigin center
33349
33350 \end_inset
33351
33352
33353 \end_layout
33354
33355 \end_inset
33356 </cell>
33357 <cell alignment="center" valignment="top" usebox="none">
33358 \begin_inset Text
33359
33360 \begin_layout Plain Layout
33361
33362 \family sans
33363 編集\SpecialChar \menuseparator
33364 数式\SpecialChar \menuseparator
33365 マクロ定義\SpecialChar \menuseparator
33366 引数を追加
33367 \end_layout
33368
33369 \end_inset
33370 </cell>
33371 </row>
33372 <row interlinespace="2.5mm">
33373 <cell alignment="center" valignment="top" usebox="none">
33374 \begin_inset Text
33375
33376 \begin_layout Plain Layout
33377 \begin_inset Graphics
33378         filename ../../images/math-macro-make-optional.png
33379         rotateOrigin center
33380
33381 \end_inset
33382
33383
33384 \end_layout
33385
33386 \end_inset
33387 </cell>
33388 <cell alignment="center" valignment="top" usebox="none">
33389 \begin_inset Text
33390
33391 \begin_layout Plain Layout
33392
33393 \family sans
33394 編集\SpecialChar \menuseparator
33395 数式\SpecialChar \menuseparator
33396 マクロ定義\SpecialChar \menuseparator
33397 最初の必須引数を
33398 \begin_inset Newline newline
33399 \end_inset
33400
33401
33402 \begin_inset Phantom HPhantom
33403 status open
33404
33405 \begin_layout Plain Layout
33406
33407 \family sans
33408 編集\SpecialChar \menuseparator
33409 数式\SpecialChar \menuseparator
33410 マクロ定義\SpecialChar \menuseparator
33411
33412 \end_layout
33413
33414 \end_inset
33415
33416 非必須引数にする
33417 \end_layout
33418
33419 \end_inset
33420 </cell>
33421 </row>
33422 <row interlinespace="2.5mm">
33423 <cell alignment="center" valignment="top" usebox="none">
33424 \begin_inset Text
33425
33426 \begin_layout Plain Layout
33427 \begin_inset Graphics
33428         filename ../../images/math-macro-make-nonoptional.png
33429         rotateOrigin center
33430
33431 \end_inset
33432
33433
33434 \end_layout
33435
33436 \end_inset
33437 </cell>
33438 <cell alignment="center" valignment="top" usebox="none">
33439 \begin_inset Text
33440
33441 \begin_layout Plain Layout
33442
33443 \family sans
33444 編集\SpecialChar \menuseparator
33445 数式\SpecialChar \menuseparator
33446 マクロ定義\SpecialChar \menuseparator
33447 最後の非必須引数を
33448 \begin_inset Newline newline
33449 \end_inset
33450
33451
33452 \begin_inset Phantom HPhantom
33453 status open
33454
33455 \begin_layout Plain Layout
33456
33457 \family sans
33458 編集\SpecialChar \menuseparator
33459 数式\SpecialChar \menuseparator
33460 マクロ定義\SpecialChar \menuseparator
33461
33462 \end_layout
33463
33464 \end_inset
33465
33466 必須引数にする
33467 \end_layout
33468
33469 \end_inset
33470 </cell>
33471 </row>
33472 <row interlinespace="2.5mm">
33473 <cell alignment="center" valignment="top" usebox="none">
33474 \begin_inset Text
33475
33476 \begin_layout Plain Layout
33477 \begin_inset Graphics
33478         filename ../../images/math-macro-remove-optional-param.png
33479         rotateOrigin center
33480
33481 \end_inset
33482
33483
33484 \end_layout
33485
33486 \end_inset
33487 </cell>
33488 <cell alignment="center" valignment="top" usebox="none">
33489 \begin_inset Text
33490
33491 \begin_layout Plain Layout
33492
33493 \family sans
33494 編集\SpecialChar \menuseparator
33495 数式\SpecialChar \menuseparator
33496 マクロ定義\SpecialChar \menuseparator
33497 非必須引数を削除
33498 \end_layout
33499
33500 \end_inset
33501 </cell>
33502 </row>
33503 <row interlinespace="2.5mm">
33504 <cell alignment="center" valignment="top" usebox="none">
33505 \begin_inset Text
33506
33507 \begin_layout Plain Layout
33508 \begin_inset Graphics
33509         filename ../../images/math-macro-add-optional-param.png
33510         rotateOrigin center
33511
33512 \end_inset
33513
33514
33515 \end_layout
33516
33517 \end_inset
33518 </cell>
33519 <cell alignment="center" valignment="top" usebox="none">
33520 \begin_inset Text
33521
33522 \begin_layout Plain Layout
33523
33524 \family sans
33525 編集\SpecialChar \menuseparator
33526 数式\SpecialChar \menuseparator
33527 マクロ定義\SpecialChar \menuseparator
33528 非必須引数を挿入
33529 \end_layout
33530
33531 \end_inset
33532 </cell>
33533 </row>
33534 <row interlinespace="2.5mm">
33535 <cell alignment="center" valignment="top" usebox="none">
33536 \begin_inset Text
33537
33538 \begin_layout Plain Layout
33539 \begin_inset Graphics
33540         filename ../../images/math-macro-remove-greedy-param.png
33541         rotateOrigin center
33542
33543 \end_inset
33544
33545
33546 \end_layout
33547
33548 \end_inset
33549 </cell>
33550 <cell alignment="center" valignment="top" usebox="none">
33551 \begin_inset Text
33552
33553 \begin_layout Plain Layout
33554
33555 \family sans
33556 編集\SpecialChar \menuseparator
33557 数式\SpecialChar \menuseparator
33558 マクロ定義\SpecialChar \menuseparator
33559 右に吐き出す形で
33560 \begin_inset Newline newline
33561 \end_inset
33562
33563
33564 \begin_inset Phantom HPhantom
33565 status open
33566
33567 \begin_layout Plain Layout
33568
33569 \family sans
33570 編集\SpecialChar \menuseparator
33571 数式\SpecialChar \menuseparator
33572 マクロ定義\SpecialChar \menuseparator
33573
33574 \end_layout
33575
33576 \end_inset
33577
33578 最後の引数を削除
33579 \end_layout
33580
33581 \end_inset
33582 </cell>
33583 </row>
33584 <row interlinespace="2.5mm">
33585 <cell alignment="center" valignment="top" usebox="none">
33586 \begin_inset Text
33587
33588 \begin_layout Plain Layout
33589 \begin_inset Graphics
33590         filename ../../images/math-macro-append-greedy-param.png
33591         rotateOrigin center
33592
33593 \end_inset
33594
33595
33596 \end_layout
33597
33598 \end_inset
33599 </cell>
33600 <cell alignment="center" valignment="top" usebox="none">
33601 \begin_inset Text
33602
33603 \begin_layout Plain Layout
33604
33605 \family sans
33606 編集\SpecialChar \menuseparator
33607 数式\SpecialChar \menuseparator
33608 マクロ定義\SpecialChar \menuseparator
33609 右から喰う形で
33610 \begin_inset Newline newline
33611 \end_inset
33612
33613
33614 \begin_inset Phantom HPhantom
33615 status open
33616
33617 \begin_layout Plain Layout
33618
33619 \family sans
33620 編集\SpecialChar \menuseparator
33621 数式\SpecialChar \menuseparator
33622 マクロ定義\SpecialChar \menuseparator
33623
33624 \end_layout
33625
33626 \end_inset
33627
33628 引数を追加
33629 \end_layout
33630
33631 \end_inset
33632 </cell>
33633 </row>
33634 <row interlinespace="2.5mm">
33635 <cell alignment="center" valignment="top" usebox="none">
33636 \begin_inset Text
33637
33638 \begin_layout Plain Layout
33639 \begin_inset Graphics
33640         filename ../../images/math-macro-add-greedy-optional-param.png
33641         rotateOrigin center
33642
33643 \end_inset
33644
33645
33646 \end_layout
33647
33648 \end_inset
33649 </cell>
33650 <cell alignment="center" valignment="top" usebox="none">
33651 \begin_inset Text
33652
33653 \begin_layout Plain Layout
33654
33655 \family sans
33656 編集\SpecialChar \menuseparator
33657 数式\SpecialChar \menuseparator
33658 マクロ定義\SpecialChar \menuseparator
33659 右から喰う形で
33660 \begin_inset Newline newline
33661 \end_inset
33662
33663
33664 \begin_inset Phantom HPhantom
33665 status open
33666
33667 \begin_layout Plain Layout
33668
33669 \family sans
33670 編集\SpecialChar \menuseparator
33671 数式\SpecialChar \menuseparator
33672 マクロ定義\SpecialChar \menuseparator
33673
33674 \end_layout
33675
33676 \end_inset
33677
33678 非必須引数を追加
33679 \end_layout
33680
33681 \end_inset
33682 </cell>
33683 </row>
33684 </lyxtabular>
33685
33686 \end_inset
33687
33688
33689 \end_layout
33690
33691 \begin_layout Standard
33692 \begin_inset Newpage newpage
33693 \end_inset
33694
33695
33696 \end_layout
33697
33698 \begin_layout Section
33699 さまざまな秘訣
33700 \begin_inset Index idx
33701 status collapsed
33702
33703 \begin_layout Plain Layout
33704 ひけつ@秘訣
33705 \end_layout
33706
33707 \end_inset
33708
33709
33710 \end_layout
33711
33712 \begin_layout Subsection
33713 負の数
33714 \begin_inset Index idx
33715 status collapsed
33716
33717 \begin_layout Plain Layout
33718 かず@数 ! ふの@負の ---
33719 \end_layout
33720
33721 \end_inset
33722
33723
33724 \end_layout
33725
33726 \begin_layout Standard
33727 数式中の負の数は、数の前の負符号が、差演算子記号と同じ長さに設定されてしまうために、汚く見えてしまうことがあります。負の数を通常の文章として書くと、負符号は正し
33728 く表示されます。
33729 \end_layout
33730
33731 \begin_layout Standard
33732 したがって、この問題は、負符号を数式テキストに変換することによって、解消されます。
33733 \end_layout
33734
33735 \begin_layout Standard
33736 以下は、この問題を示す例です。
33737 \end_layout
33738
33739 \begin_layout Standard
33740 \align center
33741 \begin_inset Tabular
33742 <lyxtabular version="3" rows="3" columns="2">
33743 <features tabularvalignment="middle">
33744 <column alignment="right" valignment="top" width="0">
33745 <column alignment="left" valignment="top" width="0">
33746 <row>
33747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33748 \begin_inset Text
33749
33750 \begin_layout Plain Layout
33751 通常の文章:
33752 \end_layout
33753
33754 \end_inset
33755 </cell>
33756 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
33757 \begin_inset Text
33758
33759 \begin_layout Plain Layout
33760 x = -2
33761 \end_layout
33762
33763 \end_inset
33764 </cell>
33765 </row>
33766 <row>
33767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33768 \begin_inset Text
33769
33770 \begin_layout Plain Layout
33771 数式:
33772 \end_layout
33773
33774 \end_inset
33775 </cell>
33776 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
33777 \begin_inset Text
33778
33779 \begin_layout Plain Layout
33780 \begin_inset Formula $x=-2$
33781 \end_inset
33782
33783
33784 \end_layout
33785
33786 \end_inset
33787 </cell>
33788 </row>
33789 <row>
33790 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33791 \begin_inset Text
33792
33793 \begin_layout Plain Layout
33794 解決策:
33795 \end_layout
33796
33797 \end_inset
33798 </cell>
33799 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
33800 \begin_inset Text
33801
33802 \begin_layout Plain Layout
33803 \begin_inset Formula $x=\textrm{-}2$
33804 \end_inset
33805
33806
33807 \end_layout
33808
33809 \end_inset
33810 </cell>
33811 </row>
33812 </lyxtabular>
33813
33814 \end_inset
33815
33816
33817 \end_layout
33818
33819 \begin_layout Subsection
33820 位区切りとしてのコンマ
33821 \begin_inset Index idx
33822 status collapsed
33823
33824 \begin_layout Plain Layout
33825 こんま@コンマ
33826 \end_layout
33827
33828 \end_inset
33829
33830
33831 \begin_inset Index idx
33832 status collapsed
33833
33834 \begin_layout Plain Layout
33835 かんま@カンマ|see
33836 \begin_inset ERT
33837 status collapsed
33838
33839 \begin_layout Plain Layout
33840
33841 {
33842 \end_layout
33843
33844 \end_inset
33845
33846 コンマ
33847 \begin_inset ERT
33848 status collapsed
33849
33850 \begin_layout Plain Layout
33851
33852 }
33853 \end_layout
33854
33855 \end_inset
33856
33857
33858 \end_layout
33859
33860 \end_inset
33861
33862
33863 \end_layout
33864
33865 \begin_layout Standard
33866 LaTeXでは、英語の慣習にしたがい、数式中のコンマを数字の位区切りに使用します。よって、数式中のコンマの後ろには、つねに空白が加わります。
33867 \end_layout
33868
33869 \begin_layout Standard
33870 これを回避するためには、コンマを選択して、数式テキストに変更して下さい(短絡キー
33871 \begin_inset Info
33872 type  "shortcut"
33873 arg   "math-mode"
33874 \end_inset
33875
33876 )。
33877 \end_layout
33878
33879 \begin_layout Standard
33880 文書中の数式コンマを、すべて小数点として使うには、LaTeXプリアンブルに
33881 \end_layout
33882
33883 \begin_layout Standard
33884
33885 \series bold
33886
33887 \backslash
33888 usepackage{icomma}
33889 \end_layout
33890
33891 \begin_layout Standard
33892 という行を加えて、
33893 \series bold
33894 icomma.sty
33895 \series default
33896
33897 \begin_inset Foot
33898 status collapsed
33899
33900 \begin_layout Plain Layout
33901
33902 \series bold
33903 icomma
33904 \series default
33905 は、LaTeXパッケージ
33906 \series bold
33907 was
33908 \series default
33909
33910 \begin_inset Index idx
33911 status collapsed
33912
33913 \begin_layout Plain Layout
33914 ぱっけーじ@パッケージ ! was
33915 \begin_inset ERT
33916 status collapsed
33917
33918 \begin_layout Plain Layout
33919
33920
33921 \backslash
33922 vspace{4mm}
33923 \end_layout
33924
33925 \end_inset
33926
33927
33928 \end_layout
33929
33930 \end_inset
33931
33932 に含まれています。
33933 \end_layout
33934
33935 \end_inset
33936
33937
33938 \begin_inset Index idx
33939 status collapsed
33940
33941 \begin_layout Plain Layout
33942 ぱっけーじ@パッケージ ! icomma
33943 \end_layout
33944
33945 \end_inset
33946
33947 ファイルを読み込みます。
33948 \end_layout
33949
33950 \begin_layout Subsection
33951 物理ベクトル
33952 \begin_inset CommandInset label
33953 LatexCommand label
33954 name "sub:物理ベクトル"
33955
33956 \end_inset
33957
33958
33959 \begin_inset Index idx
33960 status collapsed
33961
33962 \begin_layout Plain Layout
33963 Vectors ! physical
33964 \end_layout
33965
33966 \end_inset
33967
33968
33969 \end_layout
33970
33971 \begin_layout Standard
33972 LaTeXパッケージ
33973 \series bold
33974 braket
33975 \series default
33976
33977 \begin_inset Foot
33978 status collapsed
33979
33980 \begin_layout Plain Layout
33981
33982 \series bold
33983 braket
33984 \series default
33985  は標準的LaTeX頒布版のすべてに含まれています。
33986 \end_layout
33987
33988 \end_inset
33989
33990
33991 \begin_inset Index idx
33992 status collapsed
33993
33994 \begin_layout Plain Layout
33995 ぱっけーじ@パッケージ ! braket
33996 \end_layout
33997
33998 \end_inset
33999
34000 には、定義済みのベクトルが提供されており、
34001 \end_layout
34002
34003 \begin_layout Standard
34004
34005 \series bold
34006
34007 \backslash
34008 usepackage{braket}
34009 \end_layout
34010
34011 \begin_layout Standard
34012 というLaTeXプリアンブル行で読み込むことができます。
34013 \end_layout
34014
34015 \begin_layout Standard
34016 \begin_inset ERT
34017 status collapsed
34018
34019 \begin_layout Plain Layout
34020
34021
34022 \backslash
34023 ifbraket 
34024 \end_layout
34025
34026 \end_inset
34027
34028
34029 \begin_inset Note Note
34030 status open
34031
34032 \begin_layout Plain Layout
34033 以下の表は、
34034 \series bold
34035 braket
34036 \series default
34037  LaTeXパッケージが導入済みのときのみ表示されます。
34038 \end_layout
34039
34040 \end_inset
34041
34042 以下のコマンドが定義されています。
34043 \end_layout
34044
34045 \begin_layout Standard
34046 \align center
34047 \begin_inset Tabular
34048 <lyxtabular version="3" rows="4" columns="2">
34049 <features tabularvalignment="middle">
34050 <column alignment="center" valignment="top" width="0">
34051 <column alignment="center" valignment="top" width="0">
34052 <row>
34053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34054 \begin_inset Text
34055
34056 \begin_layout Plain Layout
34057 コマンド
34058 \end_layout
34059
34060 \end_inset
34061 </cell>
34062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34063 \begin_inset Text
34064
34065 \begin_layout Plain Layout
34066 出力
34067 \end_layout
34068
34069 \end_inset
34070 </cell>
34071 </row>
34072 <row>
34073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34074 \begin_inset Text
34075
34076 \begin_layout Plain Layout
34077
34078 \backslash
34079 Bra{
34080 \backslash
34081 psi
34082 \end_layout
34083
34084 \end_inset
34085 </cell>
34086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34087 \begin_inset Text
34088
34089 \begin_layout Plain Layout
34090 \begin_inset Formula $\Bra{\psi}$
34091 \end_inset
34092
34093
34094 \end_layout
34095
34096 \end_inset
34097 </cell>
34098 </row>
34099 <row>
34100 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34101 \begin_inset Text
34102
34103 \begin_layout Plain Layout
34104
34105 \backslash
34106 Ket{
34107 \backslash
34108 psi
34109 \end_layout
34110
34111 \end_inset
34112 </cell>
34113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34114 \begin_inset Text
34115
34116 \begin_layout Plain Layout
34117 \begin_inset Formula $\Ket{\psi}$
34118 \end_inset
34119
34120
34121 \end_layout
34122
34123 \end_inset
34124 </cell>
34125 </row>
34126 <row>
34127 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34128 \begin_inset Text
34129
34130 \begin_layout Plain Layout
34131
34132 \backslash
34133 Braket{
34134 \backslash
34135 psi
34136 \begin_inset Formula $|$
34137 \end_inset
34138
34139
34140 \backslash
34141 phi
34142 \end_layout
34143
34144 \end_inset
34145 </cell>
34146 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34147 \begin_inset Text
34148
34149 \begin_layout Plain Layout
34150 \begin_inset Formula $\Braket{\psi|\phi}$
34151 \end_inset
34152
34153
34154 \end_layout
34155
34156 \end_inset
34157 </cell>
34158 </row>
34159 </lyxtabular>
34160
34161 \end_inset
34162
34163
34164 \end_layout
34165
34166 \begin_layout Standard
34167
34168 \series bold
34169
34170 \backslash
34171 Braket
34172 \series default
34173 コマンドを使うと、以下のように、すべての縦棒がそれを囲む括弧と同じ大きさに設定されます。
34174 \begin_inset Formula \[
34175 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
34176
34177 \end_inset
34178
34179
34180 \begin_inset ERT
34181 status collapsed
34182
34183 \begin_layout Plain Layout
34184
34185
34186 \backslash
34187 else 
34188 \end_layout
34189
34190 \end_inset
34191
34192
34193 \begin_inset Note Note
34194 status open
34195
34196 \begin_layout Plain Layout
34197
34198 \series bold
34199 braket
34200 \series default
34201  LaTeXパッケージが導入されていないときには、以下が表示されます。
34202 \end_layout
34203
34204 \end_inset
34205
34206
34207 \end_layout
34208
34209 \begin_layout Standard
34210 本小節の全体を出力で見るためには、
34211 \series bold
34212 braket
34213 \series default
34214  LaTeXパッケージを導入する必要があります。
34215 \end_layout
34216
34217 \begin_layout Standard
34218 \begin_inset ERT
34219 status collapsed
34220
34221 \begin_layout Plain Layout
34222
34223
34224 \backslash
34225 fi 
34226 \end_layout
34227
34228 \end_inset
34229
34230
34231 \end_layout
34232
34233 \begin_layout Standard
34234
34235 \series bold
34236
34237 \backslash
34238 Braket
34239 \series default
34240 と同じ効果は、第
34241 \begin_inset CommandInset ref
34242 LatexCommand ref
34243 reference "sub:自動の括弧丈"
34244
34245 \end_inset
34246
34247 節に説明されているとおり、
34248 \series bold
34249
34250 \backslash
34251 middle
34252 \series default
34253 コマンドを用いることによっても実現できます。
34254 \end_layout
34255
34256 \begin_layout Subsection
34257 自己定義の分数
34258 \begin_inset CommandInset label
34259 LatexCommand label
34260 name "sub:自己定義の分数"
34261
34262 \end_inset
34263
34264
34265 \begin_inset Index idx
34266 status collapsed
34267
34268 \begin_layout Plain Layout
34269 ぶんすう@分数 ! じこていぎの@自己定義の ---
34270 \end_layout
34271
34272 \end_inset
34273
34274
34275 \end_layout
34276
34277 \begin_layout Standard
34278 分数用の自製コマンドを定義するには、以下の書式を持つ
34279 \series bold
34280
34281 \backslash
34282 genfrac
34283 \series default
34284
34285 \begin_inset Index idx
34286 status collapsed
34287
34288 \begin_layout Plain Layout
34289 こまんど@コマンド ! G ! 
34290 \backslash
34291 genfrac
34292 \end_layout
34293
34294 \end_inset
34295
34296 コマンドを使います。
34297 \end_layout
34298
34299 \begin_layout Standard
34300
34301 \series bold
34302
34303 \backslash
34304 genfrac{左括弧}{右括弧}{分数線の厚み}{様式}
34305 \begin_inset Newline newline
34306 \end_inset
34307
34308
34309 \begin_inset Phantom HPhantom
34310 status open
34311
34312 \begin_layout Plain Layout
34313
34314 \series bold
34315
34316 \backslash
34317 genfrac
34318 \end_layout
34319
34320 \end_inset
34321
34322 {分子}{分母}
34323 \end_layout
34324
34325 \begin_layout Standard
34326 ここで「様式」は、0
34327 \begin_inset space \thinspace{}
34328 \end_inset
34329
34330 -
34331 \begin_inset space \thinspace{}
34332 \end_inset
34333
34334 3の範囲の数字です。
34335 \end_layout
34336
34337 \begin_layout Standard
34338 \align center
34339 \begin_inset Tabular
34340 <lyxtabular version="3" rows="5" columns="2">
34341 <features tabularvalignment="middle">
34342 <column alignment="center" valignment="top" width="0">
34343 <column alignment="center" valignment="top" width="0">
34344 <row>
34345 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34346 \begin_inset Text
34347
34348 \begin_layout Plain Layout
34349 数字
34350 \end_layout
34351
34352 \end_inset
34353 </cell>
34354 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34355 \begin_inset Text
34356
34357 \begin_layout Plain Layout
34358 様式(大きさ)
34359 \end_layout
34360
34361 \end_inset
34362 </cell>
34363 </row>
34364 <row>
34365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34366 \begin_inset Text
34367
34368 \begin_layout Plain Layout
34369 0
34370 \end_layout
34371
34372 \end_inset
34373 </cell>
34374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34375 \begin_inset Text
34376
34377 \begin_layout Plain Layout
34378 別行建て様式の数式
34379 \end_layout
34380
34381 \end_inset
34382 </cell>
34383 </row>
34384 <row>
34385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34386 \begin_inset Text
34387
34388 \begin_layout Plain Layout
34389 1
34390 \end_layout
34391
34392 \end_inset
34393 </cell>
34394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34395 \begin_inset Text
34396
34397 \begin_layout Plain Layout
34398 行内数式
34399 \end_layout
34400
34401 \end_inset
34402 </cell>
34403 </row>
34404 <row>
34405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34406 \begin_inset Text
34407
34408 \begin_layout Plain Layout
34409 2
34410 \end_layout
34411
34412 \end_inset
34413 </cell>
34414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34415 \begin_inset Text
34416
34417 \begin_layout Plain Layout
34418 やや小(small)
34419 \end_layout
34420
34421 \end_inset
34422 </cell>
34423 </row>
34424 <row>
34425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34426 \begin_inset Text
34427
34428 \begin_layout Plain Layout
34429 3
34430 \end_layout
34431
34432 \end_inset
34433 </cell>
34434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34435 \begin_inset Text
34436
34437 \begin_layout Plain Layout
34438 最小(tiny)
34439 \end_layout
34440
34441 \end_inset
34442 </cell>
34443 </row>
34444 </lyxtabular>
34445
34446 \end_inset
34447
34448
34449 \end_layout
34450
34451 \begin_layout Standard
34452 「様式」を指定しないときには、
34453 \series bold
34454
34455 \backslash
34456 frac
34457 \series default
34458 コマンドのように、大きさは周囲の環境に合わせて調節されます。 
34459 \end_layout
34460
34461 \begin_layout Standard
34462 「分数線の厚み」を指定しないときには、既定値である0.4
34463 \begin_inset space \thinspace{}
34464 \end_inset
34465
34466 ptが用いられます。
34467 \end_layout
34468
34469 \begin_layout Standard
34470 \begin_inset VSpace medskip
34471 \end_inset
34472
34473 たとえば、第
34474 \begin_inset CommandInset ref
34475 LatexCommand ref
34476 reference "sub:分数"
34477
34478 \end_inset
34479
34480 節の
34481 \series bold
34482
34483 \backslash
34484 dfrac
34485 \series default
34486 コマンドおよび
34487 \series bold
34488
34489 \backslash
34490 tbinom
34491 \series default
34492 コマンドは、
34493 \end_layout
34494
34495 \begin_layout Standard
34496
34497 \series bold
34498
34499 \backslash
34500 newcommand{
34501 \backslash
34502 dfrac}[2]{
34503 \backslash
34504 genfrac{}{}{}{0}{#1}{#2}}
34505 \end_layout
34506
34507 \begin_layout Standard
34508 あるいは
34509 \end_layout
34510
34511 \begin_layout Standard
34512
34513 \series bold
34514
34515 \backslash
34516 newcommand{
34517 \backslash
34518 tbinom}[2]{
34519 \backslash
34520 genfrac{(}{)}{0pt}{1}{#1}{#2}}
34521 \end_layout
34522
34523 \begin_layout Standard
34524 というコマンドで定義できます。
34525 \end_layout
34526
34527 \begin_layout Standard
34528 \begin_inset VSpace medskip
34529 \end_inset
34530
34531 分数線の厚みを非必須の引数として与えることのできる分数を定義するには、LaTeXプリアンブルに
34532 \end_layout
34533
34534 \begin_layout Standard
34535
34536 \series bold
34537
34538 \backslash
34539 newcommand{
34540 \backslash
34541 fracS}[3][]{
34542 \backslash
34543 genfrac{}{}{#1}{}{#2}{#3}}
34544 \end_layout
34545
34546 \begin_layout Standard
34547 という行を入れます。
34548 \end_layout
34549
34550 \begin_layout Standard
34551 以下は、そのテストです。
34552 \begin_inset Formula \begin{align*}
34553 \text{コマンド} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
34554 \text{出力} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
34555 \end{align*}
34556
34557 \end_inset
34558
34559 ご覧になってわかるように、分子や分母から分数線までの距離は、分数線の厚みの約3倍になります。
34560 \end_layout
34561
34562 \begin_layout Subsection
34563 数式の取り消し
34564 \begin_inset Index idx
34565 status collapsed
34566
34567 \begin_layout Plain Layout
34568 すうしき@数式 ! とりけし@取り消し
34569 \end_layout
34570
34571 \end_inset
34572
34573
34574 \end_layout
34575
34576 \begin_layout Standard
34577 数式あるいはその一部を取り消すには、
34578 \series bold
34579 cancel
34580 \series default
34581
34582 \begin_inset Foot
34583 status collapsed
34584
34585 \begin_layout Plain Layout
34586
34587 \series bold
34588 cancel
34589 \series default
34590 は、標準的なLaTeX頒布版のすべてに含まれています。
34591 \end_layout
34592
34593 \end_inset
34594
34595
34596 \begin_inset Index idx
34597 status collapsed
34598
34599 \begin_layout Plain Layout
34600 ぱっけーじ@パッケージ ! cancel
34601 \end_layout
34602
34603 \end_inset
34604
34605  LaTeXパッケージを、LaTeXプリアンブル行に
34606 \end_layout
34607
34608 \begin_layout Standard
34609
34610 \series bold
34611
34612 \backslash
34613 usepackage[samesize]{cancel}
34614 \end_layout
34615
34616 \begin_layout Standard
34617 と書いて読み込む必要があります。
34618 \end_layout
34619
34620 \begin_layout Standard
34621 数式を取り消すには、4つの方法があります。
34622 \end_layout
34623
34624 \begin_layout Standard
34625 \align center
34626 \begin_inset Tabular
34627 <lyxtabular version="3" rows="5" columns="2">
34628 <features tabularvalignment="middle">
34629 <column alignment="center" valignment="top" width="0">
34630 <column alignment="center" valignment="top" width="0">
34631 <row>
34632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34633 \begin_inset Text
34634
34635 \begin_layout Plain Layout
34636 コマンド
34637 \end_layout
34638
34639 \end_inset
34640 </cell>
34641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34642 \begin_inset Text
34643
34644 \begin_layout Plain Layout
34645 出力
34646 \begin_inset Note Note
34647 status collapsed
34648
34649 \begin_layout Plain Layout
34650 ここで
34651 \series bold
34652
34653 \backslash
34654 raisebox
34655 \series default
34656 はスペーサーとして使用しているだけです。
34657 \end_layout
34658
34659 \end_inset
34660
34661
34662 \end_layout
34663
34664 \end_inset
34665 </cell>
34666 </row>
34667 <row>
34668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34669 \begin_inset Text
34670
34671 \begin_layout Plain Layout
34672
34673 \backslash
34674 cancel{
34675 \backslash
34676 int
34677 \begin_inset ERT
34678 status collapsed
34679
34680 \begin_layout Plain Layout
34681
34682
34683 \backslash
34684 spce 
34685 \end_layout
34686
34687 \end_inset
34688
34689 A=B
34690 \end_layout
34691
34692 \end_inset
34693 </cell>
34694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34695 \begin_inset Text
34696
34697 \begin_layout Plain Layout
34698 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
34699 \end_inset
34700
34701
34702 \end_layout
34703
34704 \end_inset
34705 </cell>
34706 </row>
34707 <row>
34708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34709 \begin_inset Text
34710
34711 \begin_layout Plain Layout
34712
34713 \backslash
34714 bcancel{
34715 \backslash
34716 int
34717 \begin_inset ERT
34718 status collapsed
34719
34720 \begin_layout Plain Layout
34721
34722
34723 \backslash
34724 spce 
34725 \end_layout
34726
34727 \end_inset
34728
34729 A=B
34730 \end_layout
34731
34732 \end_inset
34733 </cell>
34734 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34735 \begin_inset Text
34736
34737 \begin_layout Plain Layout
34738 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
34739 \end_inset
34740
34741
34742 \end_layout
34743
34744 \end_inset
34745 </cell>
34746 </row>
34747 <row>
34748 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34749 \begin_inset Text
34750
34751 \begin_layout Plain Layout
34752
34753 \backslash
34754 xcancel{
34755 \backslash
34756 int
34757 \begin_inset ERT
34758 status collapsed
34759
34760 \begin_layout Plain Layout
34761
34762
34763 \backslash
34764 spce 
34765 \end_layout
34766
34767 \end_inset
34768
34769 A=B
34770 \end_layout
34771
34772 \end_inset
34773 </cell>
34774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34775 \begin_inset Text
34776
34777 \begin_layout Plain Layout
34778 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
34779 \end_inset
34780
34781
34782 \end_layout
34783
34784 \end_inset
34785 </cell>
34786 </row>
34787 <row>
34788 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34789 \begin_inset Text
34790
34791 \begin_layout Plain Layout
34792
34793 \backslash
34794 cancelto{1
34795 \begin_inset Formula $\to$
34796 \end_inset
34797
34798
34799 \backslash
34800 {
34801 \backslash
34802 int
34803 \begin_inset ERT
34804 status collapsed
34805
34806 \begin_layout Plain Layout
34807
34808
34809 \backslash
34810 spce 
34811 \end_layout
34812
34813 \end_inset
34814
34815 A=B
34816 \end_layout
34817
34818 \end_inset
34819 </cell>
34820 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34821 \begin_inset Text
34822
34823 \begin_layout Plain Layout
34824 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
34825 \end_inset
34826
34827
34828 \end_layout
34829
34830 \end_inset
34831 </cell>
34832 </row>
34833 </lyxtabular>
34834
34835 \end_inset
34836
34837
34838 \end_layout
34839
34840 \begin_layout Standard
34841
34842 \series bold
34843
34844 \backslash
34845 cancelto
34846 \series default
34847 は、以下のように、とくに数式中の分数を約分を表示するのに適しています。
34848 \begin_inset Formula \[
34849 \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}}}\]
34850
34851 \end_inset
34852
34853
34854 \end_layout
34855
34856 \begin_layout Subsection
34857 節見出し中の数式
34858 \begin_inset CommandInset label
34859 LatexCommand label
34860 name "sub:節見出し中の数式"
34861
34862 \end_inset
34863
34864
34865 \begin_inset Index idx
34866 status collapsed
34867
34868 \begin_layout Plain Layout
34869 すうしき@数式 ! せつみだしちゅうの@節見出し中の ---
34870 \end_layout
34871
34872 \end_inset
34873
34874
34875 \end_layout
34876
34877 \begin_layout Standard
34878 数式を節見出し中で使う際には、以下のことに留意しなくてはなりません。
34879 \end_layout
34880
34881 \begin_layout Standard
34882 \begin_inset Note Greyedout
34883 status open
34884
34885 \begin_layout Plain Layout
34886 文書設定ダイアログの
34887 \family sans
34888 PDF特性
34889 \family default
34890
34891 \series bold
34892 hyperref
34893 \series default
34894
34895 \begin_inset Index idx
34896 status collapsed
34897
34898 \begin_layout Plain Layout
34899 ぱっけーじ@パッケージ ! hyperref
34900 \end_layout
34901
34902 \end_inset
34903
34904 サポートが有効になっている場合、PDFのしおりが、目次にある節見出しすべてに関して生成されます。しおり中に数式を入れることはPDFの慣習に違反しているため、節見
34905 出しに数式が含まれている場合、数式はしおり中に誤った文字列として表示されます。
34906 \end_layout
34907
34908 \end_inset
34909
34910
34911 \end_layout
34912
34913 \begin_layout Standard
34914 これらの問題は、
34915 \family sans
34916 挿入\SpecialChar \menuseparator
34917 短縮タイトル
34918 \family default
34919 メニューを使って、問題となる節見出しの最後に短縮タイトルを入れることで解決することができます。短縮タイトルは、目次が美しく整形されるように、多行にわたる節見出し
34920 に別名を付けるものです。目次中には、短縮タイトルのみが表示され、したがってPDFしおり中にも短縮タイトルのみが表示されます。
34921 \end_layout
34922
34923 \begin_layout Standard
34924 数式を目次中でも使わなくてもならないが、
34925 \series bold
34926 hyperref
34927 \series default
34928 も使用しなくてはならないときには、
34929 \end_layout
34930
34931 \begin_layout Standard
34932
34933 \series bold
34934
34935 \backslash
34936 texorpdfstring{部分}{代替文字列}
34937 \begin_inset Index idx
34938 status collapsed
34939
34940 \begin_layout Plain Layout
34941 こまんど@コマンド ! T ! 
34942 \backslash
34943 texorpdfstring
34944 \end_layout
34945
34946 \end_inset
34947
34948
34949 \end_layout
34950
34951 \begin_layout Standard
34952 というコマンドをTeXモードで使う方法があります。
34953 \end_layout
34954
34955 \begin_layout Standard
34956 「部分」は、見出し中、PDFしおりに表示したくない部分です。これは、文字・数式・脚注のほかに相互参照をとることもできます。しおりには、この部分の代わりに、「代替
34957 文字列」が用いられます。
34958 \end_layout
34959
34960 \begin_layout Standard
34961 以下の二つは、見出しの例です。
34962 \begin_inset VSpace -3mm
34963 \end_inset
34964
34965
34966 \begin_inset ERT
34967 status collapsed
34968
34969 \begin_layout Plain Layout
34970
34971
34972 \backslash
34973 boldmath 
34974 \end_layout
34975
34976 \end_inset
34977
34978
34979 \end_layout
34980
34981 \begin_layout Subsubsection
34982 目次中では数式を使わない見出し
34983 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
34984 \end_inset
34985
34986
34987 \begin_inset Argument
34988 status collapsed
34989
34990 \begin_layout Plain Layout
34991 目次中では数式を使わない見出し
34992 \end_layout
34993
34994 \end_inset
34995
34996
34997 \end_layout
34998
34999 \begin_layout Subsubsection
35000 目次中で数式を使う見出し
35001 \begin_inset ERT
35002 status collapsed
35003
35004 \begin_layout Plain Layout
35005
35006
35007 \backslash
35008 texorpdfstring{
35009 \end_layout
35010
35011 \end_inset
35012
35013  
35014 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35015 \end_inset
35016
35017
35018 \begin_inset ERT
35019 status collapsed
35020
35021 \begin_layout Plain Layout
35022
35023 }{}
35024 \end_layout
35025
35026 \end_inset
35027
35028
35029 \end_layout
35030
35031 \begin_layout Standard
35032 \begin_inset ERT
35033 status collapsed
35034
35035 \begin_layout Plain Layout
35036
35037
35038 \backslash
35039 unboldmath 
35040 \end_layout
35041
35042 \end_inset
35043
35044 一つめの見出しでは短縮タイトルが使われており、二つめの見出しでは
35045 \series bold
35046
35047 \backslash
35048 texorpdfstring
35049 \series default
35050 が使われています。
35051 \end_layout
35052
35053 \begin_layout Standard
35054 他の節見出しと同じ書式を得るために、上の見出し全体は
35055 \series bold
35056 boldmath
35057 \series default
35058 環境に設定してあります
35059 \begin_inset Foot
35060 status collapsed
35061
35062 \begin_layout Plain Layout
35063
35064 \begin_inset CommandInset ref
35065 LatexCommand ref
35066 reference "sub:ボールド体の数式"
35067
35068 \end_inset
35069
35070 節参照。
35071 \end_layout
35072
35073 \end_inset
35074
35075
35076 \end_layout
35077
35078 \begin_layout Subsection
35079 多段組文中の数式
35080 \begin_inset Index idx
35081 status collapsed
35082
35083 \begin_layout Plain Layout
35084 すうしき@数式 ! ただんくみぶんちゅうの@多段組文中の ---
35085 \end_layout
35086
35087 \end_inset
35088
35089
35090 \end_layout
35091
35092 \begin_layout Standard
35093 多段組文中に数式を作ると、段の中に収まりきらないことも多く、ページ幅全体に広がるようにする必要があることがあります。これは、
35094 \series bold
35095 multicol
35096 \series default
35097
35098 \begin_inset Foot
35099 status collapsed
35100
35101 \begin_layout Plain Layout
35102
35103 \series bold
35104 multicol
35105 \series default
35106 は、標準的LaTeX頒布版のすべてに含まれています。
35107 \end_layout
35108
35109 \end_inset
35110
35111
35112 \begin_inset Index idx
35113 status collapsed
35114
35115 \begin_layout Plain Layout
35116 ぱっけーじ@パッケージ ! multicol
35117 \end_layout
35118
35119 \end_inset
35120
35121  LaTeXパッケージを、
35122 \end_layout
35123
35124 \begin_layout Standard
35125
35126 \series bold
35127
35128 \backslash
35129 usepackage{multicol}
35130 \end_layout
35131
35132 \begin_layout Standard
35133 というLaTeXプリアンブル行を書いて読み込むことで、実現できます。
35134 \end_layout
35135
35136 \begin_layout Standard
35137 \begin_inset Note Greyedout
35138 status open
35139
35140 \begin_layout Plain Layout
35141 ここで、
35142 \family sans
35143 文書\SpecialChar \menuseparator
35144 設定
35145 \family default
35146 メニューの
35147 \family sans
35148 本文レイアウト
35149 \family default
35150 で、
35151 \family sans
35152 二段組文書
35153 \family default
35154 の設定を
35155 \emph on
35156 有効にしてはならない
35157 \emph default
35158 ことに注意してください。
35159 \end_layout
35160
35161 \end_inset
35162
35163
35164 \end_layout
35165
35166 \begin_layout Standard
35167 多段組文の前に
35168 \end_layout
35169
35170 \begin_layout Standard
35171
35172 \series bold
35173
35174 \backslash
35175 begin{multicols}{段数}
35176 \end_layout
35177
35178 \begin_layout Standard
35179 というコマンドをTeXモードで書き入れます。「段数」は、2
35180 \begin_inset space \thinspace{}
35181 \end_inset
35182
35183 -
35184 \begin_inset space \thinspace{}
35185 \end_inset
35186
35187 10のあいだの数字です。多段組文の終わる数式の前には、
35188 \end_layout
35189
35190 \begin_layout Standard
35191
35192 \series bold
35193
35194 \backslash
35195 end{multicols}
35196 \end_layout
35197
35198 \begin_layout Standard
35199 というコマンドをTeXモードで入れます。
35200 \end_layout
35201
35202 \begin_layout Standard
35203 このコマンドによって、数式の前にいくらかの余白が、自動的に作られます。これをなくすには、数式の前に-6
35204 \begin_inset space \thinspace{}
35205 \end_inset
35206
35207 mmの垂直空白を入れて下さい。数式様式
35208 \series bold
35209
35210 \begin_inset Foot
35211 status collapsed
35212
35213 \begin_layout Plain Layout
35214
35215 \series bold
35216 数式様式に関しては、第
35217 \series default
35218
35219 \begin_inset CommandInset ref
35220 LatexCommand ref
35221 reference "sec:数式様式"
35222
35223 \end_inset
35224
35225 節をご覧下さい。
35226 \end_layout
35227
35228 \end_inset
35229
35230
35231 \series default
35232 として
35233 \series bold
35234 行頭下げ
35235 \series default
35236 を使用している場合には、代わりに-9
35237 \begin_inset space \thinspace{}
35238 \end_inset
35239
35240 mmの垂直空白を入れて下さい。
35241 \end_layout
35242
35243 \begin_layout Standard
35244 以下は、別行建て数式を含む、多段組文の例です。
35245 \end_layout
35246
35247 \begin_layout Standard
35248 \begin_inset ERT
35249 status collapsed
35250
35251 \begin_layout Plain Layout
35252
35253
35254 \backslash
35255 begin{multicols}{2}
35256 \end_layout
35257
35258 \end_inset
35259
35260
35261 \lang ngerman
35262 Das Spektrum wird fouriertransformiert.
35263  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
35264 , Lösungsmittel) zu trennen.
35265  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
35266  nun das Aussehen des Ausgangssignals.
35267  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so das man
35268  über alle Phasen integrieren muss.
35269  Sei nun 
35270 \begin_inset Formula $S$
35271 \end_inset
35272
35273  unser normiertes Ausgangssignal und 
35274 \begin_inset Formula $P$
35275 \end_inset
35276
35277  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
35278 \lang japanese
35279
35280 \begin_inset ERT
35281 status collapsed
35282
35283 \begin_layout Plain Layout
35284
35285
35286 \backslash
35287 end{multicols}
35288 \end_layout
35289
35290 \end_inset
35291
35292
35293 \begin_inset VSpace -6mm
35294 \end_inset
35295
35296
35297 \begin_inset Formula \begin{equation}
35298 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\end{equation}
35299
35300 \end_inset
35301
35302
35303 \begin_inset ERT
35304 status collapsed
35305
35306 \begin_layout Plain Layout
35307
35308
35309 \backslash
35310 begin{multicols}{2}
35311 \end_layout
35312
35313 \end_inset
35314
35315
35316 \lang ngerman
35317 wobei 
35318 \begin_inset Formula $S_{0}$
35319 \end_inset
35320
35321  das Signal ohne Gradient ist und die Normierungsbedingung 
35322 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
35323 \end_inset
35324
35325  gilt.
35326  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
35327  Direkt nach dem 
35328 \begin_inset Formula $\nicefrac{\pi}{2}$
35329 \end_inset
35330
35331
35332 \begin_inset space \thinspace{}
35333 \end_inset
35334
35335 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
35336  das Signal zusätzlich abschwächt.
35337  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
35338  
35339 \begin_inset Formula $T_{2}$
35340 \end_inset
35341
35342 -Zeit.
35343 \end_layout
35344
35345 \begin_layout Standard
35346 \begin_inset ERT
35347 status collapsed
35348
35349 \begin_layout Plain Layout
35350
35351
35352 \backslash
35353 end{multicols}
35354 \end_layout
35355
35356 \end_inset
35357
35358  
35359 \end_layout
35360
35361 \begin_layout Subsection
35362 変数の説明付き数式
35363 \begin_inset Index idx
35364 status collapsed
35365
35366 \begin_layout Plain Layout
35367 すうしき@数式 ! へんすうのせつめいつき@変数の説明付き
35368 \end_layout
35369
35370 \end_inset
35371
35372
35373 \end_layout
35374
35375 \begin_layout Standard
35376 \begin_inset CommandInset ref
35377 LatexCommand eqref
35378 reference "eq:within"
35379
35380 \end_inset
35381
35382 式のように、数式内で変数の説明をするには、
35383 \begin_inset Formula $n$
35384 \end_inset
35385
35386 個の変数が使われている場合、左寄せの列を持つ2
35387 \series bold
35388 ×
35389 \series default
35390
35391 \begin_inset Formula $n$
35392 \end_inset
35393
35394 行列を使用します
35395 \begin_inset Foot
35396 status collapsed
35397
35398 \begin_layout Plain Layout
35399 行列に関しては、第
35400 \begin_inset CommandInset ref
35401 LatexCommand ref
35402 reference "sec:行列"
35403
35404 \end_inset
35405
35406 節参照。
35407 \end_layout
35408
35409 \end_inset
35410
35411 。説明を小さな文字にするには、行列の前に、たとえば
35412 \series bold
35413
35414 \backslash
35415 footnotesize
35416 \series default
35417 コマンドを挿入します
35418 \begin_inset Foot
35419 status collapsed
35420
35421 \begin_layout Plain Layout
35422 フォント寸法に関しては、第
35423 \begin_inset CommandInset ref
35424 LatexCommand ref
35425 reference "sub:書体寸法"
35426
35427 \end_inset
35428
35429 節参照。
35430 \end_layout
35431
35432 \end_inset
35433
35434
35435 \end_layout
35436
35437 \begin_layout Standard
35438 数式様式に
35439 \series bold
35440 行頭下げ
35441 \begin_inset Foot
35442 status collapsed
35443
35444 \begin_layout Plain Layout
35445
35446 \series bold
35447 数式様式に関しては、第
35448 \series default
35449
35450 \begin_inset CommandInset ref
35451 LatexCommand ref
35452 reference "sec:数式様式"
35453
35454 \end_inset
35455
35456 節参照。
35457 \end_layout
35458
35459 \end_inset
35460
35461
35462 \series default
35463 を使っている場合、行列を数式とページ余白から等距離に置くために、行列の前後に
35464 \series bold
35465
35466 \backslash
35467 hfill
35468 \series default
35469
35470 \begin_inset Foot
35471 status collapsed
35472
35473 \begin_layout Plain Layout
35474
35475 \series bold
35476
35477 \backslash
35478 hfill
35479 \series default
35480 は、
35481 \series bold
35482 行頭下げ
35483 \series default
35484 様式のときのみ機能します。第
35485 \begin_inset CommandInset ref
35486 LatexCommand ref
35487 reference "sub:可変長の空白"
35488
35489 \end_inset
35490
35491 節をご覧下さい。
35492 \end_layout
35493
35494 \end_inset
35495
35496 を入れます。
35497 \end_layout
35498
35499 \begin_layout Standard
35500 数式様式に
35501 \series bold
35502 中央揃え
35503 \series default
35504 を使っている場合、数式を字下げするには、第
35505 \begin_inset CommandInset ref
35506 LatexCommand ref
35507 reference "sub:flalign環境"
35508
35509 \end_inset
35510
35511 節で述べた方法を使用します。
35512 \begin_inset CommandInset ref
35513 LatexCommand eqref
35514 reference "eq:within"
35515
35516 \end_inset
35517
35518 式には5列があり、最初の2列には数式、3列めには行列、最終列には空のTeX括弧が入っています。
35519 \begin_inset Formula \begin{flalign}
35520 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
35521 \rho & \textrm{density}\\
35522 V & \textrm{volume}\\
35523 g & \textrm{gravitational acceleration}
35524 \end{array} &  & {}\label{eq:within}\end{flalign}
35525
35526 \end_inset
35527
35528
35529 \end_layout
35530
35531 \begin_layout Subsection
35532 アップライト体のギリシャ小文字
35533 \begin_inset CommandInset label
35534 LatexCommand label
35535 name "sub:アップライト体ギリシャ小文字"
35536
35537 \end_inset
35538
35539
35540 \begin_inset Index idx
35541 status collapsed
35542
35543 \begin_layout Plain Layout
35544 ぎりしゃもじ@ギリシャ文字 ! あっぷらいとたい@アップライト体
35545 \end_layout
35546
35547 \end_inset
35548
35549
35550 \end_layout
35551
35552 \begin_layout Standard
35553 ほとんどの数式書体は、イタリック体のギリシャ小文字しか提供していません。しかし、
35554 \begin_inset Formula $\pi$
35555 \end_inset
35556
35557 中間子やニュートリノのような素粒子の記号には、アップライト体のギリシャ文字が必要とされます。
35558 \series bold
35559 upgreek.sty
35560 \series default
35561
35562 \begin_inset Foot
35563 status collapsed
35564
35565 \begin_layout Plain Layout
35566
35567 \series bold
35568 upgreek
35569 \series default
35570 は、
35571 \series bold
35572 was
35573 \series default
35574
35575 \begin_inset Index idx
35576 status collapsed
35577
35578 \begin_layout Plain Layout
35579 ぱっけーじ@パッケージ ! was
35580 \begin_inset ERT
35581 status collapsed
35582
35583 \begin_layout Plain Layout
35584
35585
35586 \backslash
35587 vspace{4mm}
35588 \end_layout
35589
35590 \end_inset
35591
35592
35593 \end_layout
35594
35595 \end_inset
35596
35597  LaTeXパッケージの一部です。
35598 \end_layout
35599
35600 \end_inset
35601
35602
35603 \begin_inset Index idx
35604 status collapsed
35605
35606 \begin_layout Plain Layout
35607 ぱっけーじ@パッケージ ! upgreek
35608 \end_layout
35609
35610 \end_inset
35611
35612  ファイルを
35613 \end_layout
35614
35615 \begin_layout Standard
35616
35617 \series bold
35618
35619 \backslash
35620 usepackage{upgreek}
35621 \end_layout
35622
35623 \begin_layout Standard
35624 というLaTeXプリアンブル行で読み込めば、これらが提供されるようになります。
35625 \begin_inset ERT
35626 status collapsed
35627
35628 \begin_layout Plain Layout
35629
35630
35631 \backslash
35632 ifupgreek 
35633 \end_layout
35634
35635 \end_inset
35636
35637
35638 \begin_inset Note Note
35639 status open
35640
35641 \begin_layout Plain Layout
35642 以下の表は、
35643 \series bold
35644 upgreek
35645 \series default
35646  LaTeXパッケージが導入済みのときのみ表示されます。
35647 \end_layout
35648
35649 \end_inset
35650
35651 アップライト体のギリシャ小文字は、ギリシャ小文字のコマンド名の前に
35652 \series bold
35653 up
35654 \series default
35655 を付けると作ることができます。たとえば
35656 \series bold
35657
35658 \backslash
35659 uptau
35660 \series default
35661 コマンドは、
35662 \begin_inset Formula $\uptau$
35663 \end_inset
35664
35665 のようになります。
35666 \end_layout
35667
35668 \begin_layout Standard
35669 これらのコマンドを使えば、以下のような素粒子の反応を組版することができるようになります。
35670 \begin_inset Formula \[
35671 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}\]
35672
35673 \end_inset
35674
35675
35676 \end_layout
35677
35678 \begin_layout Standard
35679 アップライト体の文字は、イタリック体のものよりも太く幅広です。したがって、これらを「µm」のような単位に使うべきではありません。
35680 \end_layout
35681
35682 \begin_layout Standard
35683 \begin_inset ERT
35684 status collapsed
35685
35686 \begin_layout Plain Layout
35687
35688
35689 \backslash
35690 else 
35691 \end_layout
35692
35693 \end_inset
35694
35695
35696 \begin_inset Note Note
35697 status open
35698
35699 \begin_layout Plain Layout
35700 以下は、
35701 \series bold
35702 upgreek
35703 \series default
35704  LaTeXパッケージが導入されていないときのみ表示されます。
35705 \end_layout
35706
35707 \end_inset
35708
35709
35710 \end_layout
35711
35712 \begin_layout Standard
35713 この小節のすべてを出力で見るには、
35714 \series bold
35715 upgreek
35716 \series default
35717  LaTeXパッケージを導入する必要があります。
35718 \end_layout
35719
35720 \begin_layout Standard
35721 \begin_inset ERT
35722 status collapsed
35723
35724 \begin_layout Plain Layout
35725
35726
35727 \backslash
35728 fi 
35729 \end_layout
35730
35731 \end_inset
35732
35733
35734 \end_layout
35735
35736 \begin_layout Subsection
35737 数式中のテキスト文字
35738 \begin_inset CommandInset label
35739 LatexCommand label
35740 name "sub:数式中のテキスト文字"
35741
35742 \end_inset
35743
35744
35745 \begin_inset Index idx
35746 status collapsed
35747
35748 \begin_layout Plain Layout
35749 てきすと@テキスト ! すうしきちゅうの@数式中の ---
35750 \end_layout
35751
35752 \end_inset
35753
35754
35755 \end_layout
35756
35757 \begin_layout Standard
35758 折にふれて、テキスト文字を直接数式中に入れたいときがあるでしょう。たとえば、中黒「·」を
35759 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
35760 \end_inset
35761
35762 のように数式中で頻繁に用いようとすると、この中黒はすべてのエンコーディングでテキスト文字として定義されているために、代わりに
35763 \series bold
35764
35765 \backslash
35766 cdot
35767 \series default
35768
35769 \begin_inset Foot
35770 status collapsed
35771
35772 \begin_layout Plain Layout
35773
35774 \begin_inset CommandInset ref
35775 LatexCommand ref
35776 reference "sub:二項演算子"
35777
35778 \end_inset
35779
35780 節参照。
35781 \end_layout
35782
35783 \end_inset
35784
35785 コマンドを挿入しなくてはならなくなることでしょう。しかし、
35786 \end_layout
35787
35788 \begin_layout Standard
35789
35790 \series bold
35791
35792 \backslash
35793 Declare Inputtext{183}{
35794 \backslash
35795 ifmmode
35796 \backslash
35797 cdot
35798 \backslash
35799 else
35800 \backslash
35801 textperiodcentered
35802 \backslash
35803 f\SpecialChar \textcompwordmark{}
35804 i}
35805 \end_layout
35806
35807 \begin_layout Standard
35808 というLaTeXプリアンブル行を使えば、エンコーディングに変更を加えることができます。
35809 \end_layout
35810
35811 \begin_layout Standard
35812 文字エンコーディング(
35813 \family sans
35814 文書\SpecialChar \menuseparator
35815 設定\SpecialChar \menuseparator
35816 言語
35817 \family default
35818 メニュー)は、キーボード上のキーが押されたときにどの文字が表示されるかを指定します。「·」文字に対応するキーが押されると、内部的には
35819 \series bold
35820
35821 \backslash
35822 textperiodcentered
35823 \series default
35824 コマンドが使用されます。しかし、このコマンドは数式中では使えないので、LaTeXエラーが発生するのです。変更後のエンコーディングでは、文字が数式中に挿入されたか
35825 否かによって、正しいコマンドが自動的に選択されます。
35826 \end_layout
35827
35828 \begin_layout Standard
35829 定義ファイル中には、複数の文字のエンコーディングが保管されています。たとえば、
35830 \series bold
35831 latin9
35832 \series default
35833 エンコーディングは、LaTeXがインストールされたフォルダにある
35834 \series bold
35835 latin9.def
35836 \series default
35837 ファイルに定義されています。エンコーディングは、LaTeXプリアンブルで変更するべきであって、定義ファイルを変更してはなりません。さもないと、自分の作成した文書
35838 は、他のコンピューターで作業をしている他のユーザーによっては編集することができなくなってしまいます。
35839 \end_layout
35840
35841 \begin_layout Standard
35842 \begin_inset VSpace medskip
35843 \end_inset
35844
35845 中黒の他にこの文書では、角度記号「°」が、数式に直接入れることができるよう、以下のようなLaTeXプリアンブル行で定義されています
35846 \begin_inset Foot
35847 status collapsed
35848
35849 \begin_layout Plain Layout
35850 (訳註)pLaTeXでは、これらの定義は必要ないので、コメントアウトして無効にしてあります。
35851 \end_layout
35852
35853 \end_inset
35854
35855
35856 \end_layout
35857
35858 \begin_layout Standard
35859
35860 \series bold
35861
35862 \backslash
35863 DeclareInputtext{176}{
35864 \backslash
35865 ifmmode^
35866 \backslash
35867 circ
35868 \backslash
35869 else
35870 \backslash
35871 textdegree
35872 \backslash
35873 f\SpecialChar \textcompwordmark{}
35874 i}
35875 \end_layout
35876
35877 \begin_layout Standard
35878 \begin_inset Newpage newpage
35879 \end_inset
35880
35881
35882 \end_layout
35883
35884 \begin_layout Section
35885 \start_of_appendix
35886 組版上の助言
35887 \begin_inset Index idx
35888 status collapsed
35889
35890 \begin_layout Plain Layout
35891 くみばんじょうのじょげん@組版上の助言
35892 \end_layout
35893
35894 \end_inset
35895
35896
35897 \end_layout
35898
35899 \begin_layout Standard
35900 この節は、ISO規範に掲げてある、もっとも重要な組版ルールの要約です
35901 \begin_inset Foot
35902 status collapsed
35903
35904 \begin_layout Plain Layout
35905 この要約の一部は、ISO規則を取り上げている「Duden」
35906 \begin_inset CommandInset citation
35907 LatexCommand cite
35908 key "Duden"
35909
35910 \end_inset
35911
35912 と呼ばれるドイツの半公的辞書から採られています。
35913 \end_layout
35914
35915 \end_inset
35916
35917
35918 \end_layout
35919
35920 \begin_layout Itemize
35921 物理単位は、つねに(イタリック文中にあるときも)アップライト体にします
35922 \begin_inset Foot
35923 status collapsed
35924
35925 \begin_layout Plain Layout
35926 書体様式で指定します。第
35927 \begin_inset CommandInset ref
35928 LatexCommand ref
35929 reference "sub:書体様式"
35930
35931 \end_inset
35932
35933 節を参照。
35934 \end_layout
35935
35936 \end_inset
35937
35938 :30
35939 \begin_inset space \thinspace{}
35940 \end_inset
35941
35942 km/h
35943 \begin_inset Newline newline
35944 \end_inset
35945
35946 値と単位の間には、最小空白を入れます。第
35947 \begin_inset CommandInset ref
35948 LatexCommand ref
35949 reference "sub:定義済みの空白"
35950
35951 \end_inset
35952
35953 節を参照。
35954 \begin_inset Newline newline
35955 \end_inset
35956
35957 この慣習は、
35958 \series bold
35959
35960 \backslash
35961 unittwo
35962 \series default
35963 コマンドを使用すると、つねに満たされます。このコマンドを数式に入れると、二つの枠が現れます。最初の枠には値をいれ、第二の枠に単位を入れると、上記と同じような結果
35964 が得られます:
35965 \begin_inset Formula $\unit[30]{km/h}$
35966 \end_inset
35967
35968
35969 \begin_inset space \thinspace{}
35970 \end_inset
35971
35972 。実は、
35973 \series bold
35974
35975 \backslash
35976 unittwo
35977 \series default
35978 は、LaTeXコマンドの実体ではなく、
35979 \series bold
35980
35981 \backslash
35982 unit[値]{単位}
35983 \series default
35984 というコマンドです。したがって、これをTeXコード中で使用することはできません。
35985 \end_layout
35986
35987 \begin_layout Itemize
35988 百分率記号と千分率記号は、物理単位と同様に組みます:
35989 \begin_inset Newline newline
35990 \end_inset
35991
35992 血中アルコール1,2
35993 \begin_inset space \thinspace{}
35994 \end_inset
35995
35996
35997 \end_layout
35998
35999 \begin_layout Itemize
36000 角度記号は値の直後に置きます:15°。しかし、単位として用いられるときは別です:15
36001 \begin_inset space \thinspace{}
36002 \end_inset
36003
36004 °C
36005 \end_layout
36006
36007 \begin_layout Itemize
36008 4桁以上の数は、3桁ごとに最小空白を直前に挿入して、グループ化します:18
36009 \begin_inset space \thinspace{}
36010 \end_inset
36011
36012 473
36013 \begin_inset space \thinspace{}
36014 \end_inset
36015
36016 588
36017 \end_layout
36018
36019 \begin_layout Itemize
36020 120×90×40
36021 \begin_inset space \thinspace{}
36022 \end_inset
36023
36024 cmのような寸法には、積記号「×」を用います。これは、
36025 \series bold
36026
36027 \backslash
36028 times
36029 \series default
36030 コマンドか、
36031 \family sans
36032 挿入\SpecialChar \menuseparator
36033 特殊文字\SpecialChar \menuseparator
36034 記号
36035 \family default
36036 メニューから入れることができます。
36037 \end_layout
36038
36039 \begin_layout Itemize
36040 いくつかの文字を含む函数名は、混乱を防ぐためにアップライト体にします。第
36041 \begin_inset CommandInset ref
36042 LatexCommand ref
36043 reference "sub:定義済み函数"
36044
36045 \end_inset
36046
36047 節を参照。
36048 \end_layout
36049
36050 \begin_layout Itemize
36051 複数の文字を含む指数は、アップライト体にします:
36052 \begin_inset Formula $E_{\mathrm{kin}}$
36053 \end_inset
36054
36055
36056 \begin_inset Newline newline
36057 \end_inset
36058
36059 行列要素はイタリック体にします:
36060 \begin_inset Formula $\hat{H}_{kl}$
36061 \end_inset
36062
36063
36064 \end_layout
36065
36066 \begin_layout Itemize
36067 微分作用素・積分作用素「d」、オイラー数「e」、虚数単位「i」は、他の変数と間違えることを避けるために、アップライト体にします。
36068 \end_layout
36069
36070 \begin_layout Itemize
36071
36072 \noun on
36073 フーリエ
36074 \noun default
36075 変換を表す文字は、
36076 \series bold
36077
36078 \backslash
36079 mathscr
36080 \begin_inset ERT
36081 status collapsed
36082
36083 \begin_layout Plain Layout
36084
36085
36086 \backslash
36087 spce 
36088 \end_layout
36089
36090 \end_inset
36091
36092 {F
36093 \series default
36094 コマンド
36095 \begin_inset Index idx
36096 status collapsed
36097
36098 \begin_layout Plain Layout
36099 こまんど@コマンド! M ! 
36100 \backslash
36101 mathscr
36102 \end_layout
36103
36104 \end_inset
36105
36106
36107 \family sans
36108 挿入\SpecialChar \menuseparator
36109 特殊文字\SpecialChar \menuseparator
36110 記号\SpecialChar \menuseparator
36111 文字様記号
36112 \family default
36113 メニューの
36114 \begin_inset Formula $\mathscr{F}$
36115 \end_inset
36116
36117 で入れることができます。
36118 \begin_inset Newline newline
36119 \end_inset
36120
36121
36122 \series bold
36123
36124 \backslash
36125 mathscr
36126 \series default
36127 コマンドを使うためには、LaTeXパッケージの
36128 \series bold
36129 mathrsfs
36130 \series default
36131
36132 \begin_inset Index idx
36133 status collapsed
36134
36135 \begin_layout Plain Layout
36136 ぱっけーじ@パッケージ! mathrsfs
36137 \end_layout
36138
36139 \end_inset
36140
36141 を、LaTeXプリアンブルで
36142 \series bold
36143
36144 \backslash
36145 usepackage{mathrsfs}
36146 \series default
36147 として読み込む必要があります。
36148 \end_layout
36149
36150 \begin_layout Standard
36151 \begin_inset Newpage newpage
36152 \end_inset
36153
36154
36155 \end_layout
36156
36157 \begin_layout Section
36158 同義語
36159 \begin_inset Index idx
36160 status collapsed
36161
36162 \begin_layout Plain Layout
36163 どうぎご@同義語
36164 \end_layout
36165
36166 \end_inset
36167
36168
36169 \end_layout
36170
36171 \begin_layout Standard
36172 いくつかの文字や記号は、複数のコマンドから作ることができます。以下は、同義のコマンドの一覧です。
36173 \end_layout
36174
36175 \begin_layout Standard
36176 \begin_inset VSpace bigskip
36177 \end_inset
36178
36179
36180 \begin_inset space \hfill{}
36181 \end_inset
36182
36183
36184 \begin_inset Tabular
36185 <lyxtabular version="3" rows="12" columns="2">
36186 <features tabularvalignment="middle">
36187 <column alignment="center" valignment="top" width="0pt">
36188 <column alignment="center" valignment="top" width="0pt">
36189 <row>
36190 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36191 \begin_inset Text
36192
36193 \begin_layout Plain Layout
36194 コマンド
36195 \end_layout
36196
36197 \end_inset
36198 </cell>
36199 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36200 \begin_inset Text
36201
36202 \begin_layout Plain Layout
36203 同義のコマンド
36204 \begin_inset Note Note
36205 status collapsed
36206
36207 \begin_layout Plain Layout
36208 ここで
36209 \series bold
36210
36211 \backslash
36212 raisebox
36213 \series default
36214 はスペーサーとして使用しているだけです。
36215 \end_layout
36216
36217 \end_inset
36218
36219
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 ast
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 \begin_inset ERT
36242 status collapsed
36243
36244 \begin_layout Plain Layout
36245
36246
36247 \backslash
36248 raisebox{-1.2mm}{
36249 \end_layout
36250
36251 \end_inset
36252
36253 *
36254 \begin_inset ERT
36255 status collapsed
36256
36257 \begin_layout Plain Layout
36258
36259 }
36260 \end_layout
36261
36262 \end_inset
36263
36264
36265 \end_layout
36266
36267 \end_inset
36268 </cell>
36269 </row>
36270 <row>
36271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36272 \begin_inset Text
36273
36274 \begin_layout Plain Layout
36275
36276 \backslash
36277 choose
36278 \end_layout
36279
36280 \end_inset
36281 </cell>
36282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36283 \begin_inset Text
36284
36285 \begin_layout Plain Layout
36286
36287 \backslash
36288 binom
36289 \end_layout
36290
36291 \end_inset
36292 </cell>
36293 </row>
36294 <row>
36295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36296 \begin_inset Text
36297
36298 \begin_layout Plain Layout
36299
36300 \backslash
36301 geq
36302 \end_layout
36303
36304 \end_inset
36305 </cell>
36306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36307 \begin_inset Text
36308
36309 \begin_layout Plain Layout
36310
36311 \backslash
36312 ge
36313 \end_layout
36314
36315 \end_inset
36316 </cell>
36317 </row>
36318 <row>
36319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36320 \begin_inset Text
36321
36322 \begin_layout Plain Layout
36323
36324 \backslash
36325 lbrace
36326 \end_layout
36327
36328 \end_inset
36329 </cell>
36330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36331 \begin_inset Text
36332
36333 \begin_layout Plain Layout
36334 {
36335 \end_layout
36336
36337 \end_inset
36338 </cell>
36339 </row>
36340 <row>
36341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36342 \begin_inset Text
36343
36344 \begin_layout Plain Layout
36345
36346 \backslash
36347 lbracket
36348 \end_layout
36349
36350 \end_inset
36351 </cell>
36352 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36353 \begin_inset Text
36354
36355 \begin_layout Plain Layout
36356 [
36357 \end_layout
36358
36359 \end_inset
36360 </cell>
36361 </row>
36362 <row>
36363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36364 \begin_inset Text
36365
36366 \begin_layout Plain Layout
36367
36368 \backslash
36369 leftarrow
36370 \end_layout
36371
36372 \end_inset
36373 </cell>
36374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36375 \begin_inset Text
36376
36377 \begin_layout Plain Layout
36378
36379 \backslash
36380 gets
36381 \end_layout
36382
36383 \end_inset
36384 </cell>
36385 </row>
36386 <row>
36387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36388 \begin_inset Text
36389
36390 \begin_layout Plain Layout
36391
36392 \backslash
36393 leq
36394 \end_layout
36395
36396 \end_inset
36397 </cell>
36398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36399 \begin_inset Text
36400
36401 \begin_layout Plain Layout
36402
36403 \backslash
36404 le
36405 \end_layout
36406
36407 \end_inset
36408 </cell>
36409 </row>
36410 <row>
36411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36412 \begin_inset Text
36413
36414 \begin_layout Plain Layout
36415
36416 \backslash
36417 lor
36418 \end_layout
36419
36420 \end_inset
36421 </cell>
36422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36423 \begin_inset Text
36424
36425 \begin_layout Plain Layout
36426
36427 \backslash
36428 vee
36429 \end_layout
36430
36431 \end_inset
36432 </cell>
36433 </row>
36434 <row>
36435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36436 \begin_inset Text
36437
36438 \begin_layout Plain Layout
36439
36440 \backslash
36441 neq
36442 \end_layout
36443
36444 \end_inset
36445 </cell>
36446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36447 \begin_inset Text
36448
36449 \begin_layout Plain Layout
36450
36451 \backslash
36452 not=
36453 \end_layout
36454
36455 \end_inset
36456 </cell>
36457 </row>
36458 <row>
36459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36460 \begin_inset Text
36461
36462 \begin_layout Plain Layout
36463
36464 \backslash
36465 slash
36466 \end_layout
36467
36468 \end_inset
36469 </cell>
36470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36471 \begin_inset Text
36472
36473 \begin_layout Plain Layout
36474 /
36475 \end_layout
36476
36477 \end_inset
36478 </cell>
36479 </row>
36480 <row>
36481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36482 \begin_inset Text
36483
36484 \begin_layout Plain Layout
36485
36486 \backslash
36487 vert
36488 \end_layout
36489
36490 \end_inset
36491 </cell>
36492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36493 \begin_inset Text
36494
36495 \begin_layout Plain Layout
36496 \begin_inset Formula $|$
36497 \end_inset
36498
36499
36500 \end_layout
36501
36502 \end_inset
36503 </cell>
36504 </row>
36505 </lyxtabular>
36506
36507 \end_inset
36508
36509
36510 \begin_inset space \hfill{}
36511 \end_inset
36512
36513
36514 \begin_inset Tabular
36515 <lyxtabular version="3" rows="12" columns="2">
36516 <features tabularvalignment="middle">
36517 <column alignment="center" valignment="top" width="0pt">
36518 <column alignment="center" valignment="top" width="0pt">
36519 <row>
36520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36521 \begin_inset Text
36522
36523 \begin_layout Plain Layout
36524 コマンド
36525 \end_layout
36526
36527 \end_inset
36528 </cell>
36529 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36530 \begin_inset Text
36531
36532 \begin_layout Plain Layout
36533 同義のコマンド
36534 \end_layout
36535
36536 \end_inset
36537 </cell>
36538 </row>
36539 <row>
36540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36541 \begin_inset Text
36542
36543 \begin_layout Plain Layout
36544
36545 \backslash
36546 backslash
36547 \end_layout
36548
36549 \end_inset
36550 </cell>
36551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36552 \begin_inset Text
36553
36554 \begin_layout Plain Layout
36555
36556 \backslash
36557
36558 \backslash
36559
36560 \end_layout
36561
36562 \end_inset
36563 </cell>
36564 </row>
36565 <row>
36566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36567 \begin_inset Text
36568
36569 \begin_layout Plain Layout
36570
36571 \backslash
36572 dasharrow
36573 \end_layout
36574
36575 \end_inset
36576 </cell>
36577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36578 \begin_inset Text
36579
36580 \begin_layout Plain Layout
36581
36582 \backslash
36583 dashrightarrow
36584 \end_layout
36585
36586 \end_inset
36587 </cell>
36588 </row>
36589 <row>
36590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36591 \begin_inset Text
36592
36593 \begin_layout Plain Layout
36594
36595 \backslash
36596 land
36597 \end_layout
36598
36599 \end_inset
36600 </cell>
36601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36602 \begin_inset Text
36603
36604 \begin_layout Plain Layout
36605
36606 \backslash
36607 wedge
36608 \end_layout
36609
36610 \end_inset
36611 </cell>
36612 </row>
36613 <row>
36614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36615 \begin_inset Text
36616
36617 \begin_layout Plain Layout
36618
36619 \backslash
36620 rbrace
36621 \end_layout
36622
36623 \end_inset
36624 </cell>
36625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36626 \begin_inset Text
36627
36628 \begin_layout Plain Layout
36629 }
36630 \end_layout
36631
36632 \end_inset
36633 </cell>
36634 </row>
36635 <row>
36636 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36637 \begin_inset Text
36638
36639 \begin_layout Plain Layout
36640
36641 \backslash
36642 rbracket
36643 \end_layout
36644
36645 \end_inset
36646 </cell>
36647 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36648 \begin_inset Text
36649
36650 \begin_layout Plain Layout
36651 ]
36652 \end_layout
36653
36654 \end_inset
36655 </cell>
36656 </row>
36657 <row>
36658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36659 \begin_inset Text
36660
36661 \begin_layout Plain Layout
36662
36663 \backslash
36664 rightarrow
36665 \end_layout
36666
36667 \end_inset
36668 </cell>
36669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36670 \begin_inset Text
36671
36672 \begin_layout Plain Layout
36673
36674 \backslash
36675 to
36676 \end_layout
36677
36678 \end_inset
36679 </cell>
36680 </row>
36681 <row>
36682 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36683 \begin_inset Text
36684
36685 \begin_layout Plain Layout
36686
36687 \backslash
36688 lnot
36689 \end_layout
36690
36691 \end_inset
36692 </cell>
36693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36694 \begin_inset Text
36695
36696 \begin_layout Plain Layout
36697
36698 \backslash
36699 neg
36700 \end_layout
36701
36702 \end_inset
36703 </cell>
36704 </row>
36705 <row>
36706 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36707 \begin_inset Text
36708
36709 \begin_layout Plain Layout
36710
36711 \backslash
36712 ne
36713 \end_layout
36714
36715 \end_inset
36716 </cell>
36717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36718 \begin_inset Text
36719
36720 \begin_layout Plain Layout
36721
36722 \backslash
36723 not=
36724 \end_layout
36725
36726 \end_inset
36727 </cell>
36728 </row>
36729 <row>
36730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36731 \begin_inset Text
36732
36733 \begin_layout Plain Layout
36734
36735 \backslash
36736 owns
36737 \end_layout
36738
36739 \end_inset
36740 </cell>
36741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36742 \begin_inset Text
36743
36744 \begin_layout Plain Layout
36745
36746 \backslash
36747 ni
36748 \end_layout
36749
36750 \end_inset
36751 </cell>
36752 </row>
36753 <row>
36754 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
36755 \begin_inset Text
36756
36757 \begin_layout Plain Layout
36758
36759 \backslash
36760 square
36761 \end_layout
36762
36763 \end_inset
36764 </cell>
36765 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
36766 \begin_inset Text
36767
36768 \begin_layout Plain Layout
36769
36770 \backslash
36771 Box
36772 \end_layout
36773
36774 \end_inset
36775 </cell>
36776 </row>
36777 <row>
36778 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36779 \begin_inset Text
36780
36781 \begin_layout Plain Layout
36782
36783 \backslash
36784 Vert
36785 \end_layout
36786
36787 \end_inset
36788 </cell>
36789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36790 \begin_inset Text
36791
36792 \begin_layout Plain Layout
36793
36794 \backslash
36795
36796 \begin_inset Formula $|$
36797 \end_inset
36798
36799
36800 \end_layout
36801
36802 \end_inset
36803 </cell>
36804 </row>
36805 </lyxtabular>
36806
36807 \end_inset
36808
36809
36810 \begin_inset space \hfill{}
36811 \end_inset
36812
36813
36814 \end_layout
36815
36816 \begin_layout Standard
36817 \begin_inset Newpage newpage
36818 \end_inset
36819
36820
36821 \end_layout
36822
36823 \begin_layout Bibliography
36824 \labelwidthstring 参考文献
36825 \begin_inset CommandInset bibitem
36826 LatexCommand bibitem
36827 key "TLC2"
36828
36829 \end_inset
36830
36831
36832 \shape smallcaps
36833 Mittelbach, F.
36834  ; Goossens, M.
36835 \shape default
36836
36837 \shape italic
36838 The LaTeX Companion
36839 \shape default
36840 , 2nd ed.
36841  Addison Wesley, 2004
36842 \end_layout
36843
36844 \begin_layout Bibliography
36845 \labelwidthstring 参考文献
36846 \begin_inset CommandInset bibitem
36847 LatexCommand bibitem
36848 key "Mathmode"
36849
36850 \end_inset
36851
36852 LaTeXの数式能力の
36853 \begin_inset CommandInset href
36854 LatexCommand href
36855 name "説明"
36856 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
36857
36858 \end_inset
36859
36860
36861 \end_layout
36862
36863 \begin_layout Bibliography
36864 \labelwidthstring 参考文献
36865 \begin_inset CommandInset bibitem
36866 LatexCommand bibitem
36867 key "Voss"
36868
36869 \end_inset
36870
36871 LaTeXの技と秘訣の
36872 \begin_inset CommandInset href
36873 LatexCommand href
36874 name "ページ"
36875 target "http://tug.org/TeXnik/"
36876
36877 \end_inset
36878
36879
36880 \end_layout
36881
36882 \begin_layout Bibliography
36883 \labelwidthstring 参考文献
36884 \begin_inset CommandInset bibitem
36885 LatexCommand bibitem
36886 key "AMS"
36887
36888 \end_inset
36889
36890
36891 \begin_inset ERT
36892 status collapsed
36893
36894 \begin_layout Plain Layout
36895
36896
36897 \backslash
36898 AmS
36899 \end_layout
36900
36901 \end_inset
36902
36903 -LaTeXの
36904 \begin_inset CommandInset href
36905 LatexCommand href
36906 name "説明"
36907 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
36908
36909 \end_inset
36910
36911
36912 \end_layout
36913
36914 \begin_layout Bibliography
36915 \labelwidthstring 参考文献
36916 \begin_inset CommandInset bibitem
36917 LatexCommand bibitem
36918 key "Symbols"
36919
36920 \end_inset
36921
36922 LaTeXパッケージで利用できる記号の
36923 \begin_inset CommandInset href
36924 LatexCommand href
36925 name "全覧"
36926 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
36927
36928 \end_inset
36929
36930
36931 \end_layout
36932
36933 \begin_layout Bibliography
36934 \labelwidthstring 参考文献
36935 \begin_inset CommandInset bibitem
36936 LatexCommand bibitem
36937 key "hyperref"
36938
36939 \end_inset
36940
36941 LaTeX 
36942 \series bold
36943 hyperref
36944 \series default
36945
36946 \begin_inset Index idx
36947 status collapsed
36948
36949 \begin_layout Plain Layout
36950 ぱっけーじ@パッケージ ! hyperref
36951 \end_layout
36952
36953 \end_inset
36954
36955 パッケージの
36956 \begin_inset CommandInset href
36957 LatexCommand href
36958 name "取扱説明書"
36959 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
36960
36961 \end_inset
36962
36963
36964 \end_layout
36965
36966 \begin_layout Bibliography
36967 \labelwidthstring 参考文献
36968 \begin_inset CommandInset bibitem
36969 LatexCommand bibitem
36970 key "Mathclap"
36971
36972 \end_inset
36973
36974
36975 \begin_inset CommandInset ref
36976 LatexCommand ref
36977 reference "sub:演算子の範囲"
36978
36979 \end_inset
36980
36981 節に述べられている
36982 \series bold
36983
36984 \backslash
36985 mathclap
36986 \series default
36987 コマンドの
36988 \begin_inset CommandInset href
36989 LatexCommand href
36990 name "説明"
36991 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
36992
36993 \end_inset
36994
36995
36996 \begin_inset Index idx
36997 status collapsed
36998
36999 \begin_layout Plain Layout
37000 こまんど@コマンド ! M ! 
37001 \backslash
37002 mathclap
37003 \end_layout
37004
37005 \end_inset
37006
37007
37008 \end_layout
37009
37010 \begin_layout Bibliography
37011 \labelwidthstring 参考文献
37012 \begin_inset CommandInset bibitem
37013 LatexCommand bibitem
37014 key "Duden"
37015
37016 \end_inset
37017
37018
37019 \emph on
37020 Duden Band 1
37021 \emph default
37022 .
37023  22.
37024  Auflage, Duden 2001
37025 \end_layout
37026
37027 \begin_layout Subsubsection*
37028 \begin_inset CommandInset index_print
37029 LatexCommand printindex
37030 type "idx"
37031
37032 \end_inset
37033
37034
37035 \end_layout
37036
37037 \end_body
37038 \end_document