-
Notifications
You must be signed in to change notification settings - Fork 8
/
math.tex
3689 lines (3476 loc) · 117 KB
/
math.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% -*- coding: utf-8 -*-
% This is part of the book TeX for the Impatient.
% Copyright (C) 2003, 2014 Paul W. Abrahams, Kathryn A. Hargreaves, Karl Berry.
% See file fdl.tex for copying conditions.
\input macros
%\chapter {Commands \linebreak for composing \linebreak math formulas}
\chapter {数学公式命令}
%\bix^^{math}
%\chapterdef{math}
\bix^^{数学}
\chapterdef{math}
%This section covers commands for constructing math formulas.
%For an explanation of the conventions used in this section,
%see \headcit{Descriptions of the commands}{cmddesc}.
这一章包括排印数学公式所需要的命令。
在\headcit{命令描述}{cmddesc}这一节中给出了这章的惯例。
\begindescriptions
%==========================================================================
%\section {Simple parts of formulas}
\section {简单公式排版}
%==========================================================================
%\subsection {Greek letters}
\subsection {希腊字母}
%\begindesc
%\bix^^{Greek letters}
%\dothreecolumns 40
%\easy\ctsdisplay alpha {}
%\ctsdisplay beta {}
%\ctsdisplay chi {}
%\ctsdisplay delta {}
%\ctsdisplay Delta {}
%\ctsdisplay epsilon {}
%\ctsdisplay varepsilon {}
%\ctsdisplay eta {}
%\ctsdisplay gamma {}
%\ctsdisplay Gamma {}
%\ctsdisplay iota {}
%\ctsdisplay kappa {}
%\ctsdisplay lambda {}
%\ctsdisplay Lambda {}
%\ctsdisplay mu {}
%\ctsdisplay nu {}
%\ctsdisplay omega {}
%\ctsdisplay Omega {}
%\ctsdisplay phi {}
%\ctsdisplay varphi {}
%\ctsdisplay Phi {}
%\ctsdisplay pi {}
%\ctsdisplay varpi {}
%\ctsdisplay Pi {}
%\ctsdisplay psi {}
%\ctsdisplay Psi {}
%\ctsdisplay rho {}
%\ctsdisplay varrho {}
%\ctsdisplay sigma {}
%\ctsdisplay varsigma {}
%\ctsdisplay Sigma {}
%\ctsdisplay tau {}
%\ctsdisplay theta {}
%\ctsdisplay vartheta {}
%\ctsdisplay Theta {}
%\ctsdisplay upsilon {}
%\ctsdisplay Upsilon {}
%\ctsdisplay xi {}
%\ctsdisplay Xi {}
%\ctsdisplay zeta {}
%\egroup
\begindesc
\bix^^{希腊字母}
\dothreecolumns 40
\easy\ctsdisplay alpha {}
\ctsdisplay beta {}
\ctsdisplay chi {}
\ctsdisplay delta {}
\ctsdisplay Delta {}
\ctsdisplay epsilon {}
\ctsdisplay varepsilon {}
\ctsdisplay eta {}
\ctsdisplay gamma {}
\ctsdisplay Gamma {}
\ctsdisplay iota {}
\ctsdisplay kappa {}
\ctsdisplay lambda {}
\ctsdisplay Lambda {}
\ctsdisplay mu {}
\ctsdisplay nu {}
\ctsdisplay omega {}
\ctsdisplay Omega {}
\ctsdisplay phi {}
\ctsdisplay varphi {}
\ctsdisplay Phi {}
\ctsdisplay pi {}
\ctsdisplay varpi {}
\ctsdisplay Pi {}
\ctsdisplay psi {}
\ctsdisplay Psi {}
\ctsdisplay rho {}
\ctsdisplay varrho {}
\ctsdisplay sigma {}
\ctsdisplay varsigma {}
\ctsdisplay Sigma {}
\ctsdisplay tau {}
\ctsdisplay theta {}
\ctsdisplay vartheta {}
\ctsdisplay Theta {}
\ctsdisplay upsilon {}
\ctsdisplay Upsilon {}
\ctsdisplay xi {}
\ctsdisplay Xi {}
\ctsdisplay zeta {}
\egroup
%\explain
%These commands produce Greek letters suitable for mathematics.
%You can only use them
%within a math formula, so if you need a Greek letter within ordinary
%text you must enclose it in dollar signs (|$|). \TeX\ does not have
%commands for Greek letters that look like their roman
%counterparts, since you can get them by using those roman
%counterparts. For example, you can get a lowercase
%^{omicron} in a formula by writing the letter `o', i.e.,
%`|{\rm o}|' or an uppercase ^{beta} (`B') by writing
%`|{\rm B}|'.
\explain
输入这些命令可以排印出数学公式中的相应的希腊字母符号。
你只能在数学模式中使用它们,所以如在普通的文本中使用它们时,
你必须把它们括在美元符号 (|$|) 内。
\TeX\ 并不包含这些数学中使用的希腊字母所对应的正体字符的命令,
不过你可以很方便地得到这些字符。
比如说,你可以在公式中使用 `|{\rm o}|' 来得到一个小写的 ^{omicron} `o',
又比如,你可以使用 `|{\rm B}|' 得到大写的 ^{beta} (`B').
%Don't confuse the following letters:
%\ulist \compact
%\li |\upsilon| (`$\upsilon$'), |{\rm v}| (`v'), and |\nu| (`$\nu$').
%\li |\varsigma| (`$\varsigma$') and |\zeta| (`$\zeta$').
%\endulist
注意不要混淆下面的符号:
\ulist \compact
\li |\upsilon| (`$\upsilon$'), |{\rm v}| (`v'), 和 |\nu| (`$\nu$').
\li |\varsigma| (`$\varsigma$') 和 |\zeta| (`$\zeta$').
\endulist
%You can get slanted capital Greek letters by using the math italic
%(|\mit|) \minref{font}.
使用数学的意大利\minref{字体} (|\mit|) 可以得到斜体的大写希腊字母。
%\TeX\ treats Greek letters as ordinary symbols when it's figuring how
%much space to put around them.
在计算在希腊字母周围插入多少的空白时,\TeX\ 把它们当作正常的符号。
%\example
%If $\rho$ and $\theta$ are both positive, then $f(\theta)
%-{\mit \Gamma}_{\theta} < f(\rho)-{\mit \Gamma}_{\rho}$.
%|
%\produces
%If $\rho$ and $\theta$ are both positive, then
%$f(\theta)-{\mit \Gamma}_{\theta} < f(\rho)-{\mit \Gamma}_{\rho}$.
%\endexample
%\eix^^{Greek letters}
%\enddesc
\example
如果 $\rho$ 和 $\theta$ 都是正数,那么 $f(\theta)
-{\mit \Gamma}_{\theta} < f(\rho)-{\mit \Gamma}_{\rho}$.
|
\produces
如果 $\rho$ 和 $\theta$ 都是正数,那么
$f(\theta)-{\mit \Gamma}_{\theta} < f(\rho)-{\mit \Gamma}_{\rho}$.
\endexample
\eix^^{希腊字母}
\enddesc
%==========================================================================
%\subsection {Miscellaneous ordinary math symbols}
\subsection {各种普通数学符号}
\begindesc
\xrdef{specsyms}
\dothreecolumns 34
\easy\ctsdisplay infty {}
\ctsdisplay Re {}
\ctsdisplay Im {}
\ctsdisplay angle {}
\ctsdisplay triangle {}
\ctsdisplay backslash {}
\ctsdisplay vert {}
\ctsydisplayn \| @bar {} \directidx{"\"|+@\hskip-.5em\tt\\\char`"\"|\rm}
\ctsdisplay Vert {}
\ctsdisplay emptyset {}
\ctsdisplay bot {}
\ctsdisplay top {}
\ctsdisplay exists {}
\ctsdisplay forall {}
\ctsdisplay hbar {}
\ctsdisplay ell {}
\ctsdisplay aleph {}
\ctsdisplay imath {}
\ctsdisplay jmath {}
\ctsdisplay nabla {}
\ctsdisplay neg {}
\ctsdisplay lnot {}
\actdisplay \' @prime \ (上标点)
\ctsdisplay prime {}
\ctsdisplay partial {}
\ctsdisplay surd {}
\ctsdisplay wp {}
\ctsdisplay flat {}
\ctsdisplay sharp {}
\ctsdisplay natural {}
\ctsdisplay clubsuit {}
\ctsdisplay diamondsuit {}
\ctsdisplay heartsuit {}
\ctsdisplay spadesuit {}
\egroup
\explain
^^{音符} ^^{花色}
这些命令可以排印各种符号。
为了把它们和其它的符号,比如关系符号等,区分开来,它们被称为普通数学符号。
你只能在数学模式中使用这些符号,所以如果在普通的文本中使用,你必须使用美元符号 (|$|) 把它们括起来。
当你想在 `$i$' 或 `$j$' 上加上重音符号,则需要使用 |\imath| 和 |\jmath| 命令来表示它们本身。
上标点符号 (|'|) 是一个 |\prime| 的上标的简写。
(|\prime| 本身可以排印一个很大的丑陋的撇号。)
|\!|| 和 ^|\Vert| 命令是等价的,就像 ^|\neg| 和 ^|\lnot| 命令一样。
\margin{增加了 {\tt\\vert} 的解释}
|\vert| 符号可以排印出和 `|!||' 相同的效果。
\directidx{"\"|@\tt\char`"\"|\rm}
由 |\backslash|, |\vert|, 和 |\Vert| 排印的命令叫做 \minref{分界符}.
使用 ^|\bigm| 等 (\xref \bigm) 命令可以排印大号的这些字符。
\example
The Knave of $\heartsuit$s, he stole some tarts.
|
\produces
The Knave of $\heartsuit$s, he stole some tarts.
\nextexample
如 $\hat\imath < \hat\jmath$ 则 $i' \leq j^\prime$.
|
\produces
如 $\hat\imath < \hat\jmath$ 则 $i' \leq j^\prime$.
\nextexample
$${{x-a}\over{x+a}}\biggm\backslash{{y-b}\over{y+b}}$$
|
\dproduces
$${{x-a}\over{x+a}}\biggm\backslash{{y-b}\over{y+b}}$$
\endexample
\enddesc
%==========================================================================
\subsection {二元运算符}
\begindesc
\bix^^{运算符}
\xrdef{binops}
\dothreecolumns 34
\easy\ctsdisplay vee {}
\ctsdisplay wedge {}
\ctsdisplay amalg {}
\ctsdisplay cap {}
\ctsdisplay cup {}
\ctsdisplay uplus {}
\ctsdisplay sqcap {}
\ctsdisplay sqcup {}
\ctsdisplay dagger {}
\ctsdisplay ddagger {}
\ctsdisplay land {}
\ctsdisplay lor {}
\ctsdisplay cdot {}
\ctsdisplay diamond {}
\ctsdisplay bullet {}
\ctsdisplay circ {}
\ctsdisplay bigcirc {}
\ctsdisplay odot {}
\ctsdisplay ominus {}
\ctsdisplay oplus {}
\ctsdisplay oslash {}
\ctsdisplay otimes {}
\ctsdisplay pm {}
\ctsdisplay mp {}
\ctsdisplay triangleleft {}
\ctsdisplay triangleright {}
\ctsdisplay bigtriangledown {}
\ctsdisplay bigtriangleup {}
\ctsdisplay ast {}
\ctsdisplay star {}
\ctsdisplay times {}
\ctsdisplay div {}
\ctsdisplay setminus {}
\ctsdisplay wr {}
\egroup
\explain
这些命令可以排印各种二元运算符。
二元运算符是 \TeX\ 的一种符号\minref{集}.
\TeX\ 在不同的符号集周围会插入不同的空白。
当 \TeX\ 需要在一个数学公式中间断行时,
它会考虑在二元运算符后面进行断行---不过仅在它出现在公式的最外层时,而不是在一个组中。
除了这些命令以外,\TeX\ 也把 `|+|' and `|-|' 作为二元运算符。
它把 `|/|' 当作一个普通符号,
因为虽然事实上在数学中它是一个二元运算,
但是它在周围加入的空白更少时看上去更漂亮。
\example
$$z = x \div y \quad \hbox{当且仅当} \quad
z \times y = x \;\hbox{且}\; y \neq 0$$
|
\dproduces
$$z = x \div y \quad \hbox{当且仅当} \quad
z \times y = x \;\hbox{且}\; y \neq 0$$
\endexample
\enddesc
%\begindesc
%\ctsymbol \* \ctsxrdef{@star}
%\explain
%The |\*| command indicates a discretionary multiplication symbol
%($\times$), which is a binary operation. This multiplication symbol
%behaves like a discretionary hyphen when it appears in a formula within
%text\minrefs{text math}. That is, \TeX\ will typeset the |\times|
%symbol \emph{only} if the formula needs to be broken at that point.
%There's no point in using |\*| in a displayed formula \minrefs{display
%math} since \TeX\ never breaks displayed formulas on its own.
\begindesc
\ctsymbol \* \ctsxrdef{@star}
\explain
命令 |\*| 表示自定断点的乘法符号 ($\times$),它是一个二元运算符。
该符号在文内公式中功能与自定连字符类似。
这就是说,\emph{仅当}公式需要在该处断行时,\TeX\ 才会排版 |\times| 符号。
因为 \TeX\ 永远不会在陈列公式中断行,所以 |\*| 在陈列公式\minrefs{陈列公式}中是没有任何作用的。
\example
Let $c = a\*b$. In the case that $c=0$ or $c=1$, let
$\Delta$ be $(\hbox{the smallest $q$})\*(\hbox{the
largest $q$})$ in the set of approximate $\tau$-values.
|
\produces
Let $c = a\*b$. In the case that $c=0$ or $c=1$, let
$\Delta$ be $(\hbox{the smallest $q$})\*(\hbox{the
largest $q$})$ in the set of approximate $\tau$-values.
\eix^^{运算符}
\endexample
\enddesc
%==========================================================================
\subsection {关系符号}
\begindesc
\xrdef {relations}
\bix^^{关系符}
\dothreecolumns 39
\easy\ctsdisplay asymp {}
\ctsdisplay cong {}
\ctsdisplay dashv {}
\ctsdisplay vdash {}
\ctsdisplay perp {}
\ctsdisplay mid {}
\ctsdisplay parallel {}
\ctsdisplay doteq {}
\ctsdisplay equiv {}
\ctsdisplay ge {}
\ctsdisplay geq {}
\ctsdisplay le {}
\ctsdisplay leq {}
\ctsdisplay gg {}
\ctsdisplay ll {}
\ctsdisplay models {}
\ctsdisplay ne {}
\ctsdisplay neq {}
\ctsdisplay notin {}
\ctsdisplay in {}
\ctsdisplay ni {}
\ctsdisplay owns {}
\ctsdisplay prec {}
\ctsdisplay preceq {}
\ctsdisplay succ {}
\ctsdisplay succeq {}
\ctsdisplay bowtie {}
\ctsdisplay propto {}
\ctsdisplay approx {}
\ctsdisplay sim {}
\ctsdisplay simeq {}
\ctsdisplay frown {}
\ctsdisplay smile {}
\ctsdisplay subset {}
\ctsdisplay subseteq {}
\ctsdisplay supset {}
\ctsdisplay supseteq {}
\ctsdisplay sqsubseteq {}
\ctsdisplay sqsupseteq {}
\egroup
\explain
这些命令可以排印各种关系符号。
关系符号是 \TeX\ 的数学符号中的\minref{类}之一。
\TeX\ 在不同的\minref{类}之间插入不同的空白长度。
当 \TeX\ 需要在一个数学公式处断行,\minrefs{断行}
它会考虑在一个关系符后进行断行---不过仅在它出现在公式的最外层时,而不是在一个组中。
除了这里列出的命令以外,\TeX\ 也把 `|=|' \chidxref{\=} 和``箭头'' 命令 (\xref{arrows}) 作为关系运算符。
一些关系符有多种命令表达方式,你可以使用任何一个来排印它们:
\ulist \compact
\li `$\ge$' (|\ge| 和 |\geq|).
\li `$\le$' (|\le| 和 |\leq|).
\li `$\ne$' (|\ne|, |\neq|, 和 |\not=|).
\li `$\ni$' (|\ni| 和 |\owns|).
\endulist
\xrdef{\not}
在这些符号前加上 |\not|, 可以排印它们的非运算:
\nobreak
\threecolumns 21
\basicdisplay {$\not\asymp$}{\\not\\asymp}\ctsidxref{asymp}
\basicdisplay {$\not\cong$}{\\not\\cong}\ctsidxref{cong}
\basicdisplay {$\not\equiv$}{\\not\\equiv}\ctsidxref{equiv}
\basicdisplay {$\not=$}{\\not=}\chidxref{\=}
\basicdisplay {$\not\ge$}{\\not\\ge}\ctsidxref{ge}
\basicdisplay {$\not\geq$}{\\not\\geq}\ctsidxref{geq}
\basicdisplay {$\not\le$}{\\not\\le}\ctsidxref{le}
\basicdisplay {$\not\leq$}{\\not\\leq}\ctsidxref{leq}
\basicdisplay {$\not\prec$}{\\not\\prec}\ctsidxref{prec}
\basicdisplay {$\not\preceq$}{\\not\\preceq}\ctsidxref{preceq}
\basicdisplay {$\not\succ$}{\\not\\succ}\ctsidxref{succ}
\basicdisplay {$\not\succeq$}{\\not\\succeq}\ctsidxref{succeq}
\basicdisplay {$\not\approx$}{\\not\\approx}\ctsidxref{approx}
\basicdisplay {$\not\sim$}{\\not\\sim}\ctsidxref{sim}
\basicdisplay {$\not\simeq$}{\\not\\simeq}\ctsidxref{simeq}
\basicdisplay {$\not\subset$}{\\not\\subset}\ctsidxref{subset}
\basicdisplay {$\not\subseteq$}{\\not\\subseteq}\ctsidxref{subseteq}
\basicdisplay {$\not\supset$}{\\not\\supset}\ctsidxref{supset}
\basicdisplay {$\not\supseteq$}{\\not\\supseteq}\ctsidxref{supseteq}
\basicdisplay {$\not\sqsubseteq$}{\\not\\sqsubseteq}%
\ctsidxref{sqsubseteq}
\basicdisplay {$\not\sqsupseteq$}{\\not\\sqsupseteq}%
\ctsidxref{sqsupseteq}
\egroup
\example
我们可以得到 $AB \perp AC$,且
$\triangle ABF \not\sim \triangle ACF$.
|
\produces
我们可以得到 $AB \perp AC$,且
$\triangle ABF \not\sim \triangle ACF$.
\eix^^{关系符}
\endexample
\enddesc
%==========================================================================
%\subsection {Left and right delimiters}
\subsection {左右定界符}
%\begindesc
%\bix^^{delimiters}
%%
%\dothreecolumns 12
%\easy\ctsdisplay lbrace {}
%\ctsydisplay { @lbrace {}
%\ctsdisplay rbrace {}
%\ctsydisplay } @rbrace {}
%\ctsdisplay lbrack {}
%\ctsdisplay rbrack {}
%\ctsdisplay langle {}
%\ctsdisplay rangle {}
%\ctsdisplay lceil {}
%\ctsdisplay rceil {}
%\ctsdisplay lfloor {}
%\ctsdisplay rfloor {}
%\egroup
%\explain
%These commands produce left and right \minref{delimiter}s.
%Mathematicians use delimiters to indicate the boundaries between parts
%of a formula. Left delimiters are also called ``^{opening}s'', and
%right delimiters are also called ``^{closing}s''. Openings and closings
%are two of \TeX's \minref{class}es of math symbols. \TeX\ puts
%different amounts of space around different \minref{class}es of math
%symbols. You might expect the space that \TeX\ puts around openings and
%closings to be symmetrical, but in fact it isn't.
\begindesc
\bix^^{定界符}
%
\dothreecolumns 12
\easy\ctsdisplay lbrace {}
\ctsydisplay \{ @lbrace {}
\ctsdisplay rbrace {}
\ctsydisplay \} @rbrace {}
\ctsdisplay lbrack {}
\ctsdisplay rbrack {}
\ctsdisplay langle {}
\ctsdisplay rangle {}
\ctsdisplay lceil {}
\ctsdisplay rceil {}
\ctsdisplay lfloor {}
\ctsdisplay rfloor {}
\egroup
\explain
这些命令排印各种左右\minref{定界符}。
数学家用定界符指明公式各部分的边界。
左定界符又称为``^{开符号}'',右定界符又称为``^{闭符号}''。
开符号和闭符号是 \TeX\ 数学公式中的两种字符类。
\TeX\ 在不同\minref{类}的数学符号之间留下不同大小的间隔。
你也许认为在开符号和闭符号旁边的间隔是对称的,但实际上并非如此。
%Some left and right delimiters have more than one command that you can
%use to produce them:
有些左定界符和右定界符可以用不止一个命令排印:
%\ulist\compact
%\li `$\{$' (|\lbrace| and |\{|)
%\li `$\}$' (|\rbrace| and |\}|)
%\li `$[$' (|\lbrack| and `|[|')
%\li `$]$' (|\rbrack| and `|]|')
%\endulist
%\noindent You can also use the left and right bracket characters
%(in either form) outside of math mode.
\ulist\compact
\li `$\{$' (|\lbrace| 和 |\{|)
\li `$\}$' (|\rbrace| 和 |\}|)
\li `$[$' (|\lbrack| 和 `|[|')
\li `$]$' (|\rbrack| 和 `|]|')
\endulist
\noindent 左右方括号(两种形式皆可)在数学模式之外也可以使用。
%In addition to these commands, \TeX\ treats `|(|' as a left
%delimiter and `|)|' as a right delimiter.
除这些命令之外,\TeX\ 还将 `|(|' 视为左定界符,将 `|)|' 视为右定界符。
%You can have \TeX\
%choose the size for a delimiter by using |\left| and |\right| (\xref\left).
%Alternatively,
%you can get a delimiter of a specific size by using one of the |\big|$x$
%commands (see |\big| et al., \xref{\big}).
利用 |\left| 和 |\right|(\xref\left )命令,
你可以让 \TeX\ 选择定界符的尺寸。
或者利用某个 |\big|$x$ 命令(见 |\big| 等,\xref{\big}),
你可以选择特定尺寸的定界符。
%\example
%The set $\{\,x \mid x>0\,\}$ is empty.
%|
%\produces
%The set $\{\,x \mid x>0\,\}$ is empty.
\example
集合 $\{\,x \mid x>0\,\}$ 是空集。
|
\produces
集合 $\{\,x \mid x>0\,\}$ 是空集。
%\eix^^{delimiters}
%\endexample
%\enddesc
\eix^^{定界符}
\endexample
\enddesc
%==========================================================================
%\subsection {Arrows}
\subsection {箭头}
%\begindesc
%\bix^^{arrows}
%\xrdef{arrows}
%%
%{\symbolspace=24pt \makecolumns 34/2:
%\easy%
%\ctsdisplay leftarrow {}
%\ctsdisplay gets {}
%\ctsdisplay Leftarrow {}
%\ctsdisplay rightarrow {}
%\ctsdisplay to {}
%\ctsdisplay Rightarrow {}
%\ctsdisplay leftrightarrow {}
%\ctsdisplay Leftrightarrow {}
%\ctsdisplay longleftarrow {}
%\ctsdisplay Longleftarrow {}
%\ctsdisplay longrightarrow {}
%\ctsdisplay Longrightarrow {}
%\ctsdisplay longleftrightarrow {}
%\ctsdisplay Longleftrightarrow {}
%\basicdisplay {$\Longleftrightarrow$}{\\iff}\pix\ctsidxref{iff}\xrdef{\iff}
%\ctsdisplay hookleftarrow {}
%\ctsdisplay hookrightarrow {}
%\ctsdisplay leftharpoondown {}
%\ctsdisplay rightharpoondown {}
%\ctsdisplay leftharpoonup {}
%\ctsdisplay rightharpoonup {}
%\ctsdisplay rightleftharpoons {}
%\ctsdisplay mapsto {}
%\ctsdisplay longmapsto {}
%\ctsdisplay downarrow {}
%\ctsdisplay Downarrow {}
%\ctsdisplay uparrow {}
%\ctsdisplay Uparrow {}
%\ctsdisplay updownarrow {}
%\ctsdisplay Updownarrow {}
%\ctsdisplay nearrow {}
%\ctsdisplay searrow {}
%\ctsdisplay nwarrow {}
%\ctsdisplay swarrow {}
%}
%\explain
%These commands provide arrows of different kinds. They
%are classified as relations (\xref{relations}).
%The vertical arrows in the list are also \minref{delimiter}s, so you can make
%them larger by using |\big| et al.\ (\xref \big).
\begindesc
\bix^^{箭头}
\xrdef{arrows}
%
{\symbolspace=24pt \makecolumns 34/2:
\easy%
\ctsdisplay leftarrow {}
\ctsdisplay gets {}
\ctsdisplay Leftarrow {}
\ctsdisplay rightarrow {}
\ctsdisplay to {}
\ctsdisplay Rightarrow {}
\ctsdisplay leftrightarrow {}
\ctsdisplay Leftrightarrow {}
\ctsdisplay longleftarrow {}
\ctsdisplay Longleftarrow {}
\ctsdisplay longrightarrow {}
\ctsdisplay Longrightarrow {}
\ctsdisplay longleftrightarrow {}
\ctsdisplay Longleftrightarrow {}
\basicdisplay {$\Longleftrightarrow$}{\\iff}\pix\ctsidxref{iff}\xrdef{\iff}
\ctsdisplay hookleftarrow {}
\ctsdisplay hookrightarrow {}
\ctsdisplay leftharpoondown {}
\ctsdisplay rightharpoondown {}
\ctsdisplay leftharpoonup {}
\ctsdisplay rightharpoonup {}
\ctsdisplay rightleftharpoons {}
\ctsdisplay mapsto {}
\ctsdisplay longmapsto {}
\ctsdisplay downarrow {}
\ctsdisplay Downarrow {}
\ctsdisplay uparrow {}
\ctsdisplay Uparrow {}
\ctsdisplay updownarrow {}
\ctsdisplay Updownarrow {}
\ctsdisplay nearrow {}
\ctsdisplay searrow {}
\ctsdisplay nwarrow {}
\ctsdisplay swarrow {}
}
\explain
这些命令提供各种箭头。它们被划分为关系符号(\xref{relations})。
上面的竖直箭头同时也是\minref{定界符},
因此你可以用 |\big| 等命令让它们变大(\xref \big )。
%The command |\iff| differs from |\Longleftrightarrow| in that
%it produces extra space to the left and right of the arrow.
命令 |\iff| 和 |\Longleftrightarrow| 的差别之处在于,
它在箭头两边生成额外间隔。
%You can place symbols or other legends on top of a left or right arrow
%with |\buildrel| (\xref \buildrel).
你可以用 |\buildrel|(\xref \buildrel )命令将符号或者其他文字放在箭头上边。
%\example
%$$f(x)\mapsto f(y) \iff x \mapsto y$$
%|
%\dproduces
%$$f(x)\mapsto f(y) \iff x \mapsto y$$
\example
$$f(x)\mapsto f(y) \iff x \mapsto y$$
|
\dproduces
$$f(x)\mapsto f(y) \iff x \mapsto y$$
%\eix^^{arrows}
%\endexample
%\enddesc
\eix^^{箭头}
\endexample
\enddesc
%==========================================================================
%\subsection {Named mathematical functions}
\subsection {已命名的数学函数}
%\begindesc
%\xrdef{namedfns}
%\bix^^{functions, names of}
%{\symbolspace = 36pt
%\threecolumns 32
%\easy\ctsdisplay cos {}
%\ctsdisplay sin {}
%\ctsdisplay tan {}
%\ctsdisplay cot {}
%\ctsdisplay csc {}
%\ctsdisplay sec {}
%\ctsdisplay arccos {}
%\ctsdisplay arcsin {}
%\ctsdisplay arctan {}
%\ctsdisplay cosh {}
%\ctsdisplay coth {}
%\ctsdisplay sinh {}
%\ctsdisplay tanh {}
%\ctsdisplay det {}
%\ctsdisplay dim {}
%\ctsdisplay exp {}
%\ctsdisplay ln {}
%\ctsdisplay log {}
%\ctsdisplay lg {}
%\ctsdisplay arg {}
%\ctsdisplay deg {}
%\ctsdisplay gcd {}
%\ctsdisplay hom {}
%\ctsdisplay ker {}
%\ctsdisplay inf {}
%\ctsdisplay sup {}
%\ctsdisplay lim {}
%\ctsdisplay liminf {}
%\ctsdisplay limsup {}
%\ctsdisplay max {}
%\ctsdisplay min {}
%\ctsdisplay Pr {}
%\egroup}
%\explain
%These commands set the names of various mathematical functions
%in roman type, as is customary.
%If you apply a superscript or subscript to one of these commands,
%\TeX\ will in most cases typeset it in the usual place.
%In display style, \TeX\ typesets superscripts and subscripts
%on |\det|, |\gcd|, |\inf|, |\lim|, |\liminf|,
%|\limsup|, |\max|, |\min|, |\Pr|, and |\sup|
%as though they were limits,
%i.e., directly above or directly below the function name.
\begindesc
\xrdef{namedfns}
\bix^^{函数名称}
{\symbolspace = 36pt
\threecolumns 32
\easy\ctsdisplay cos {}
\ctsdisplay sin {}
\ctsdisplay tan {}
\ctsdisplay cot {}
\ctsdisplay csc {}
\ctsdisplay sec {}
\ctsdisplay arccos {}
\ctsdisplay arcsin {}
\ctsdisplay arctan {}
\ctsdisplay cosh {}
\ctsdisplay coth {}
\ctsdisplay sinh {}
\ctsdisplay tanh {}
\ctsdisplay det {}
\ctsdisplay dim {}
\ctsdisplay exp {}
\ctsdisplay ln {}
\ctsdisplay log {}
\ctsdisplay lg {}
\ctsdisplay arg {}
\ctsdisplay deg {}
\ctsdisplay gcd {}
\ctsdisplay hom {}
\ctsdisplay ker {}
\ctsdisplay inf {}
\ctsdisplay sup {}
\ctsdisplay lim {}
\ctsdisplay liminf {}
\ctsdisplay limsup {}
\ctsdisplay max {}
\ctsdisplay min {}
\ctsdisplay Pr {}
\egroup}
\explain
这些命令以惯用的罗马字体排印各种数学函数的名称。
如果你给这些命令中的任何一个加上上标或下标,
\TeX\ 将在通常的位置排版它。
在陈列样式中,对于 |\det|、|\gcd|、|\inf|、|\lim|、|\liminf|、
|\limsup|、|\max|、|\min|、|\Pr| 和 |\sup|,
\TeX\ 将上标和下标当成极限那样排版,
即将它们直接放在函数名的上边或下边。
%\example
%$\cos^2 x + \sin^2 x = 1\qquad\max_{a \in A} g(a) = 1$
%|
%\produces
%$\cos^2 x + \sin^2 x = 1\qquad\max_{a \in A} g(a) = 1$
%\endexample\enddesc
\example
$\cos^2 x + \sin^2 x = 1\qquad\max_{a \in A} g(a) = 1$
|
\produces
$\cos^2 x + \sin^2 x = 1\qquad\max_{a \in A} g(a) = 1$
\endexample\enddesc
%\begindesc
%\cts bmod {}
%\explain
%This command produces a binary operation for indicating a ^{modulus}
%within a formula.
%\example
%$$x = (y+1) \bmod 2$$
%|
%\dproduces
%$$x = (y+1) \bmod 2$$
%\endexample
%\enddesc
\begindesc
\cts bmod {}
\explain
此命令排印一个标明公式内的^{模运算}的二元运算符。
\example
$$x = (y+1) \bmod 2$$
|
\dproduces
$$x = (y+1) \bmod 2$$
\endexample
\enddesc
%\begindesc
%\cts pmod {}
%\explain
%This command provides a notation for indicating a ^{modulus} in parentheses
%at the end of a formula.
%\example
%$$x \equiv y+1 \pmod 2$$
%|
%\dproduces
%$$x \equiv y+1 \pmod 2$$
\begindesc
\cts pmod {}
\explain
此命令在公式末尾排印放在圆括号中的^{模运算}。
\example
$$x \equiv y+1 \pmod 2$$
|
\dproduces
$$x \equiv y+1 \pmod 2$$
%\eix^^{functions, names of}
%\endexample
%\enddesc
\eix^^{函数名称}
\endexample
\enddesc
%==========================================================================
%\subsection {Large operators}
\subsection {巨算符}
%\begindesc
%\bix^^{operators//large}
%\threecolumns 15
%\easy\ctsdoubledisplay bigcap {}
%\ctsdoubledisplay bigcup {}
%\ctsdoubledisplay bigodot {}
%\ctsdoubledisplay bigoplus {}
%\ctsdoubledisplay bigotimes {}
%\ctsdoubledisplay bigsqcup {}
%\ctsdoubledisplay biguplus {}
%\ctsdoubledisplay bigvee {}
%\ctsdoubledisplay bigwedge {}
%\ctsdoubledisplay coprod {}
%{\symbolspace = 42pt\basicdisplay {\hskip 26pt$\smallint$}%
% {\\smallint}\ddstrut}%
% \xrdef{\smallint} \pix\ctsidxref{smallint}
%\ctsdoubledisplay int {}
%\ctsdoubledisplay oint {}
%\ctsdoubledisplay prod {}
%\ctsdoubledisplay sum {}
%}
%\explain
%These commands produce various large operator symbols.
%\TeX\ produces the smaller size when it's in ^{text style}
%\minrefs{math mode} and the larger size when it's in ^{display style}.
%Operators are one of \TeX's \minref{class}es of math symbols.
%\TeX\ puts different amounts of space
%around different classes of math symbols.
\begindesc
\bix^^{运算符//巨算符}
\threecolumns 15
\easy\ctsdoubledisplay bigcap {}
\ctsdoubledisplay bigcup {}
\ctsdoubledisplay bigodot {}
\ctsdoubledisplay bigoplus {}
\ctsdoubledisplay bigotimes {}
\ctsdoubledisplay bigsqcup {}
\ctsdoubledisplay biguplus {}
\ctsdoubledisplay bigvee {}
\ctsdoubledisplay bigwedge {}
\ctsdoubledisplay coprod {}
{\symbolspace = 42pt\basicdisplay {\hskip 26pt$\smallint$}%
{\\smallint}\ddstrut}%
\xrdef{\smallint} \pix\ctsidxref{smallint}
\ctsdoubledisplay int {}
\ctsdoubledisplay oint {}
\ctsdoubledisplay prod {}
\ctsdoubledisplay sum {}
}
\explain
这些命令排印各种巨算符。
\TeX\ 在^{文内样式}中排印小号字符,
\minrefs{math mode}而在^{陈列样式}中排印大号字符。
巨算符是 \TeX\ 数学符号的其中一\minref{类}。
\TeX\ 在不同类数学符号间留下不同大小的间隔。
%The large operator symbols with `|big|' in their names are different
%from the corresponding binary operations (see \xref{binops}) such as
%|\cap| ($\cap$) since they usually appear at the beginning
%of a formula. \TeX\ uses different spacing for a large operator
%than it does for a binary operation.
名称中带有 `|big|' 的巨算符和对应的二元运算符%
(比如 |\cap| ($\cap$),见\xref{binops})不同,
因为它们通常出现公式的开头。
\TeX\ 给巨算符留下的间隔与二元运算符的不同。
%Don't confuse `$\sum$' (|\sum|) with `$\Sigma$'^^|\Sigma| (|\Sigma|)
%or confuse `$\prod$' (|\prod|) with `$\Pi$' ^^|\Pi| (|\Pi|).
%|\Sigma| and |\Pi| produce capital Greek letters, which are smaller and
%have a different appearance.
不要混淆 `$\sum$' (|\sum|) 和 `$\Sigma$'^^|\Sigma| (|\Sigma|),
或者 `$\prod$' (|\prod|) 和 `$\Pi$' ^^|\Pi| (|\Pi|)。
|\Sigma| 和 |\Pi| 排印大写希腊字母,它们尺寸更小,外观也不同。
%A large operator can have ^{limits}. The lower limit is specified as a
%subscript and the upper limit as a superscript.
巨算符可以带有^{极限}。下极限用下标指定,而上极限用上标指定。
%\example
%$$\bigcap_{k=1}^r (a_k \cup b_k)$$
%|
%\dproduces
%$$\bigcap_{k=1}^r (a_k \cup b_k)$$
%\endexample
%\interexampleskip
%\example
%$${\int_0^\pi \sin^2 ax\,dx} = {\pi \over 2}$$
%|
%\dproduces
%$${\int_0^\pi \sin^2 ax\,dx} = {\pi \over 2}$$
%\endexample
%\enddesc
\example
$$\bigcap_{k=1}^r (a_k \cup b_k)$$
|
\dproduces
$$\bigcap_{k=1}^r (a_k \cup b_k)$$
\endexample
\interexampleskip
\example
$${\int_0^\pi \sin^2 ax\,dx} = {\pi \over 2}$$
|
\dproduces
$${\int_0^\pi \sin^2 ax\,dx} = {\pi \over 2}$$
\endexample
\enddesc
%\begindesc
%\cts limits {}
%\explain
%In text style, \TeX\ normally places limits after a large operator.
%This command tells \TeX\ to place limits above and below a large
%operator rather than after it.
\begindesc
\cts limits {}
\explain
在文内样式中,\TeX\ 通常将极限放在巨算符后边。
此命令让 \TeX\ 将极限放在巨算符的上边和下边,而不是在后边。
%If you specify more than one of |\limits|, |\nolimits|,
%and |\display!-limits|, the last command rules.
如果你多次使用 |\limits|、|\nolimits| 或 |\display!-limits|,
仅最后一个命令生效。
%\example
%Suppose that $\bigcap\limits_{i=1}^Nq_i$ contains at least
%two elements.
%|
%\produces
%Suppose that $\bigcap\limits_{i=1}^Nq_i$ contains at least
%two elements.
%\endexample
%\enddesc
\example
Suppose that $\bigcap\limits_{i=1}^Nq_i$ contains at least
two elements.
|
\produces
Suppose that $\bigcap\limits_{i=1}^Nq_i$ contains at least
two elements.
\endexample
\enddesc
%\begindesc