-
Notifications
You must be signed in to change notification settings - Fork 18
/
glossary.tex
3472 lines (3140 loc) · 116 KB
/
glossary.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
%% This file is part of TeX by Topic
%% Copyright 2007 Victor
%% see file TeXbyTopic.tex for copying conditions
% This file is part of TeX by Topic
% Copyright 2007 Victor
% see file TeXbyTopic.tex for copying conditions
%This chapter gives the list of all primitives of
%\TeX. After each control sequence
%the grammatical category of the command or parameter
%is given, plus a short description. For some commands
%the syntax of their use is given.
This chapter gives the list of all primitives of
\TeX. After each control sequence
the grammatical category of the command or parameter
is given, plus a short description. For some commands
the syntax of their use is given.
%For parameters the class to which they belong is given.
%Commands that have no grammatical category
%in \TeXbook\ are denoted either
%`\gr{expandable command}' or
%`\gr{primitive command}' in this list.
For parameters the class to which they belong is given.
Commands that have no grammatical category
in \TeXbook\ are denoted either
`\gr{expandable command}' or
`\gr{primitive command}' in this list.
%Grammatical terms such as \gr{equals} and \gr{optional space}
%are explained in Chapter~\ref{gramm}.
Grammatical terms such as \gr{equals} and \gr{optional space}
are explained in Chapter~\ref{gramm}.
%\begin{glossinventory}
\begin{glossinventory}
%\item [\cs{-}]
% \gr{horizontal command}
% Discretionary hyphen; this is
% equivalent to \cs{discretionary}""\verb|{-}{}{}|.
% Can be used to indicate hyphenatable points in a word.
%Chapter~\ref{cschap:-}.
\item [\cs{-}]
\gr{horizontal command}
Discretionary hyphen; this is
equivalent to \cs{discretionary}""\verb|{-}{}{}|.
Can be used to indicate hyphenatable points in a word.
Chapter~\ref{cschap:-}.
%\item [\cs{char32}]
% \gr{horizontal command}
% Control space.
% Insert the same amount of space as a space token would
% \alt
% if \cs{spacefactor}${}=1000$.
%Chapter~\ref{cschap:char32},\ref{cschap:char322}.
\item [\cs{char32}]
\gr{horizontal command}
Control space.
Insert the same amount of space as a space token would
\alt
if \cs{spacefactor}${}=1000$.
Chapter~\ref{cschap:char32},\ref{cschap:char322}.
%\item [\cs{char47}]
% \gr{primitive command}
% Italic correction: insert a kern specified by the
% preceding character.
% Each character has an italic correction, possibly zero,
% specified in the \n{tfm} file.
% For slanted fonts this compensates for overhang.
%Chapter~\ref{cschap:char47}.
\item [\cs{char47}]
\gr{primitive command}
Italic correction: insert a kern specified by the
preceding character.
Each character has an italic correction, possibly zero,
specified in the \n{tfm} file.
For slanted fonts this compensates for overhang.
Chapter~\ref{cschap:char47}.
%\item [\cs{above\gr{dimen}}]
% \gr{generalized fraction command}
% Fraction with specified bar width.
%Chapter~\ref{cschap:above}.
\item [\cs{above\gr{dimen}}]
\gr{generalized fraction command}
Fraction with specified bar width.
Chapter~\ref{cschap:above}.
%\item [\cs{abovedisplayshortskip}]
% \gr{glue parameter}
% Glue above a display if the line preceding the display was short.
%Chapter~\ref{cschap:abovedisplayshortskip}.
\item [\cs{abovedisplayshortskip}]
\gr{glue parameter}
Glue above a display if the line preceding the display was short.
Chapter~\ref{cschap:abovedisplayshortskip}.
%\item [\cs{abovedisplayskip}]
% \gr{glue parameter}
% Glue above a display.
%Chapter~\ref{cschap:abovedisplayskip}.
\item [\cs{abovedisplayskip}]
\gr{glue parameter}
Glue above a display.
Chapter~\ref{cschap:abovedisplayskip}.
%\item [\cs{abovewithdelims\gr{delim$_1$}\gr{delim$_2$}\gr{dimen}}]
% \gr{generalized fraction command}
% Generalized fraction with delimiters.
%Chapter~\ref{cschap:abovewithdelims}.
\item [\cs{abovewithdelims\gr{delim$_1$}\gr{delim$_2$}\gr{dimen}}]
\gr{generalized fraction command}
Generalized fraction with delimiters.
Chapter~\ref{cschap:abovewithdelims}.
%\item [\cs{accent\gr{8-bit number}\gr{optional assignments}\gr{character}}]
% \gr{horizontal command}
% Command to place accents on characters.\alt
%Chapter~\ref{cschap:accent}.
\item [\cs{accent\gr{8-bit number}\gr{optional assignments}\gr{character}}]
\gr{horizontal command}
Command to place accents on characters.\alt
Chapter~\ref{cschap:accent}.
%\item [\cs{adjdemerits}]
% \gr{integer parameter}
% Penalty for adjacent not visually compatible lines.
% Default~\n{10$\,$000} in plain \TeX.
%Chapter~\ref{cschap:adjdemerits}.
\item [\cs{adjdemerits}]
\gr{integer parameter}
Penalty for adjacent not visually compatible lines.
Default~\n{10$\,$000} in plain \TeX.
Chapter~\ref{cschap:adjdemerits}.
%\item [\cs{advance\gr{numeric variable}\gr{optional \n{by}}\gr{number}}]
% \gr{arithmetic assignment}
% Arithmetic command to increase or decrease a
% \gr{numeric variable}, that is,
% \alt
% a \gr{count variable}, \gr{dimen variable}, \gr{glue variable},
% or \gr{muglue variable}.
%Chapter~\ref{cschap:advance},\ref{cschap:advance2}.
\item [\cs{advance\gr{numeric variable}\gr{optional \n{by}}\gr{number}}]
\gr{arithmetic assignment}
Arithmetic command to increase or decrease a
\gr{numeric variable}, that is,
\alt
a \gr{count variable}, \gr{dimen variable}, \gr{glue variable},
or \gr{muglue variable}.
Chapter~\ref{cschap:advance},\ref{cschap:advance2}.
%\item [\cs{afterassignment\gr{token}}]
% \gr{primitive command}
% Save the next token for execution after the next assignment.
% Only one token can be saved this way.
%Chapter~\ref{cschap:afterassignment}.
\item [\cs{afterassignment\gr{token}}]
\gr{primitive command}
Save the next token for execution after the next assignment.
Only one token can be saved this way.
Chapter~\ref{cschap:afterassignment}.
%\item [\cs{aftergroup\gr{token}}]
% \gr{primitive command}
% Save the next token for insertion after the current group.
% Several tokens can be saved this way.
%Chapter~\ref{cschap:aftergroup}.
\item [\cs{aftergroup\gr{token}}]
\gr{primitive command}
Save the next token for insertion after the current group.
Several tokens can be saved this way.
Chapter~\ref{cschap:aftergroup}.
%\item [\cs{atop\gr{dimen}}]
% \gr{generalized fraction command}
% Place objects over one another.
%Chapter~\ref{cschap:atop}.
\item [\cs{atop\gr{dimen}}]
\gr{generalized fraction command}
Place objects over one another.
Chapter~\ref{cschap:atop}.
%\item [\cs{atopwithdelims\gr{delim$_1$}\gr{delim$_2$}}]
% \gr{generalized fraction command}
% Place objects over one another with delimiters.
%Chapter~\ref{cschap:atopwithdelims}.
\item [\cs{atopwithdelims\gr{delim$_1$}\gr{delim$_2$}}]
\gr{generalized fraction command}
Place objects over one another with delimiters.
Chapter~\ref{cschap:atopwithdelims}.
%\item [\cs{badness}]
% \gr{internal integer}
% (\TeX3 only)
% Badness of the most recently constructed box.
%Chapter~\ref{cschap:badness}.
\item [\cs{badness}]
\gr{internal integer}
(\TeX3 only)
Badness of the most recently constructed box.
Chapter~\ref{cschap:badness}.
%\item [\cs{baselineskip}]
% \gr{glue parameter}
% The `ideal' baseline distance between neighbouring
% boxes on a vertical list; \n{12pt} in plain \TeX.
%Chapter~\ref{cschap:baselineskip}.
\item [\cs{baselineskip}]
\gr{glue parameter}
The `ideal' baseline distance between neighbouring
boxes on a vertical list; \n{12pt} in plain \TeX.
Chapter~\ref{cschap:baselineskip}.
%\item [\cs{batchmode}]
% \gr{interaction mode assignment}
% \TeX\ patches errors itself
% \alt
% and performs an emergency stop on serious errors
% such as missing input files,
% but no terminal output is generated.
%Chapter~\ref{cschap:batchmode}.
\item [\cs{batchmode}]
\gr{interaction mode assignment}
\TeX\ patches errors itself
\alt
and performs an emergency stop on serious errors
such as missing input files,
but no terminal output is generated.
Chapter~\ref{cschap:batchmode}.
%\item [\cs{begingroup}]
% \gr{primitive command}
% Open a group that must be closed with \verb-\endgroup-.
%Chapter~\ref{cschap:begingroup}.
\item [\cs{begingroup}]
\gr{primitive command}
Open a group that must be closed with \verb-\endgroup-.
Chapter~\ref{cschap:begingroup}.
%\item [\cs{belowdisplayshortskip}]
% \gr{glue parameter}
% Glue below a display if the line preceding the display was short.
%Chapter~\ref{cschap:belowdisplayshortskip}.
\item [\cs{belowdisplayshortskip}]
\gr{glue parameter}
Glue below a display if the line preceding the display was short.
Chapter~\ref{cschap:belowdisplayshortskip}.
%\item [\cs{belowdisplayskip}]
% \gr{glue parameter}
% Glue below a display.
%Chapter~\ref{cschap:belowdisplayskip}.
\item [\cs{belowdisplayskip}]
\gr{glue parameter}
Glue below a display.
Chapter~\ref{cschap:belowdisplayskip}.
%\item [\cs{binoppenalty}]
% \gr{integer parameter}
% Penalty for breaking after a binary operator not enclosed in
% a subformula.
% Plain \TeX\ default:~\n{700}.
%Chapter~\ref{cschap:binoppenalty}.
\item [\cs{binoppenalty}]
\gr{integer parameter}
Penalty for breaking after a binary operator not enclosed in
a subformula.
Plain \TeX\ default:~\n{700}.
Chapter~\ref{cschap:binoppenalty}.
%\item [\cs{botmark}]
% \gr{expandable command}
% The last mark on the current page.
%Chapter~\ref{cschap:botmark}.
\item [\cs{botmark}]
\gr{expandable command}
The last mark on the current page.
Chapter~\ref{cschap:botmark}.
%\item [\cs{box\gr{8-bit number}}]
% \gr{box}
% Use a box register, emptying it.
%Chapter~\ref{cschap:box}.
\item [\cs{box\gr{8-bit number}}]
\gr{box}
Use a box register, emptying it.
Chapter~\ref{cschap:box}.
%\item [\cs{boxmaxdepth}]
% \gr{dimen parameter}
% Maximum allowed depth of boxes.
% Default~\cs{maxdimen} in plain \TeX.
%Chapter~\ref{cschap:boxmaxdepth}.
\item [\cs{boxmaxdepth}]
\gr{dimen parameter}
Maximum allowed depth of boxes.
Default~\cs{maxdimen} in plain \TeX.
Chapter~\ref{cschap:boxmaxdepth}.
%\item [\cs{brokenpenalty}]
% \gr{integer parameter}
% Additional penalty for breaking a page after a hyphenated line.
% Default~\n{100} in plain \TeX.
%Chapter~\ref{cschap:brokenpenalty}.
\item [\cs{brokenpenalty}]
\gr{integer parameter}
Additional penalty for breaking a page after a hyphenated line.
Default~\n{100} in plain \TeX.
Chapter~\ref{cschap:brokenpenalty}.
%\item [\cs{catcode\gr{8-bit number}}]
% \gr{internal integer}; the control sequence itself
% is a~\gr{codename}.
% Access category codes.
%Chapter~\ref{cschap:catcode}.
\item [\cs{catcode\gr{8-bit number}}]
\gr{internal integer}; the control sequence itself
is a~\gr{codename}.
Access category codes.
Chapter~\ref{cschap:catcode}.
%\item [\cs{char\gr{number}}]
% \gr{character}
% Explicit denotation of a character to be typeset.
%Chapter~\ref{cschap:char}.
\item [\cs{char\gr{number}}]
\gr{character}
Explicit denotation of a character to be typeset.
Chapter~\ref{cschap:char}.
%\item [\cs{chardef\gr{control sequence}\gr{equals}\gr{number}}]
% \gr{shorthand definition}
% Define a control sequence to be a synonym for
% a~character code.
%Chapter~\ref{cschap:chardef}.
\item [\cs{chardef\gr{control sequence}\gr{equals}\gr{number}}]
\gr{shorthand definition}
Define a control sequence to be a synonym for
a~character code.
Chapter~\ref{cschap:chardef}.
%\item [\cs{cleaders}]
% \gr{leaders}
% As \verb=\leaders=, but with box leaders
% any excess space is split into equal glue items
% \alt
% before and after the leaders.
%Chapter~\ref{cschap:cleaders}.
\item [\cs{cleaders}]
\gr{leaders}
As \verb=\leaders=, but with box leaders
any excess space is split into equal glue items
\alt
before and after the leaders.
Chapter~\ref{cschap:cleaders}.
%\item [\cs{closein\gr{4-bit number}}]
% \gr{primitive command}
% Close an input stream.
%Chapter~\ref{cschap:closein}.
\item [\cs{closein\gr{4-bit number}}]
\gr{primitive command}
Close an input stream.
Chapter~\ref{cschap:closein}.
%\item [\cs{closeout\gr{4-bit number}}]
% \gr{primitive command}
% Close an output stream.
%Chapter~\ref{cschap:closeout}.
\item [\cs{closeout\gr{4-bit number}}]
\gr{primitive command}
Close an output stream.
Chapter~\ref{cschap:closeout}.
%\item [\cs{clubpenalty}]
% \gr{integer parameter}
% Additional penalty for breaking a page after the first line of a paragraph.
% Default~\n{150} in plain \TeX.
%Chapter~\ref{cschap:clubpenalty}.
\item [\cs{clubpenalty}]
\gr{integer parameter}
Additional penalty for breaking a page after the first line of a paragraph.
Default~\n{150} in plain \TeX.
Chapter~\ref{cschap:clubpenalty}.
%\item [\cs{copy\gr{8-bit number}}]
% \gr{box}
% Use a box register and retain the contents.
%Chapter~\ref{cschap:copy}.
\item [\cs{copy\gr{8-bit number}}]
\gr{box}
Use a box register and retain the contents.
Chapter~\ref{cschap:copy}.
%\item [\cs{count\gr{8-bit number}}]
% \gr{internal integer}; the control sequence itself
% is a~\gr{register prefix}.
% Access count registers.
%Chapter~\ref{cschap:count}.
\item [\cs{count\gr{8-bit number}}]
\gr{internal integer}; the control sequence itself
is a~\gr{register prefix}.
Access count registers.
Chapter~\ref{cschap:count}.
%\item [\cs{countdef\gr{control sequence}\gr{equals}\gr{8-bit number}}]
% \gr{shorthand definition}; the control sequence
% itself is a~\gr{registerdef}.
% Define a control sequence to be a synonym for
% a~\cs{count} register.
%Chapter~\ref{cschap:countdef}.
\item [\cs{countdef\gr{control sequence}\gr{equals}\gr{8-bit number}}]
\gr{shorthand definition}; the control sequence
itself is a~\gr{registerdef}.
Define a control sequence to be a synonym for
a~\cs{count} register.
Chapter~\ref{cschap:countdef}.
%\item [\cs{cr}]
% \gr{primitive command}
% Terminate an alignment line.
%Chapter~\ref{cschap:cr}.
\item [\cs{cr}]
\gr{primitive command}
Terminate an alignment line.
Chapter~\ref{cschap:cr}.
%\item [\cs{crcr}]
% \gr{primitive command}
% Terminate an alignment line if it has
% not already been terminated by~\cs{cr}.
%Chapter~\ref{cschap:crcr}.
\item [\cs{crcr}]
\gr{primitive command}
Terminate an alignment line if it has
not already been terminated by~\cs{cr}.
Chapter~\ref{cschap:crcr}.
%\item [\cs{csname}]
% \gr{expandable command}
% Start forming the name of a control sequence.
% Has to be balanced with \cs{endcsname}.
%Chapter~\ref{cschap:csname}.
\item [\cs{csname}]
\gr{expandable command}
Start forming the name of a control sequence.
Has to be balanced with \cs{endcsname}.
Chapter~\ref{cschap:csname}.
%\item [\cs{day}]
% \gr{integer parameter}
% The day of the current job.
%Chapter~\ref{cschap:day}.
\item [\cs{day}]
\gr{integer parameter}
The day of the current job.
Chapter~\ref{cschap:day}.
%\item [\cs{deadcycles}]
% \gr{special integer}
% Counter that keeps track of how many times
% the output routine has been called without a \cs{shipout}
% taking place.
% If this number reaches \cs{maxdeadcycles} \TeX\
% gives an error message. Plain \TeX\ default:~\n{25}.
%Chapter~\ref{cschap:deadcycles}.
\item [\cs{deadcycles}]
\gr{special integer}
Counter that keeps track of how many times
the output routine has been called without a \cs{shipout}
taking place.
If this number reaches \cs{maxdeadcycles} \TeX\
gives an error message. Plain \TeX\ default:~\n{25}.
Chapter~\ref{cschap:deadcycles}.
%\item [\cs{def}]
% \gr{def} Start a macro definition.
%Chapter~\ref{cschap:def}.
\item [\cs{def}]
\gr{def} Start a macro definition.
Chapter~\ref{cschap:def}.
%\item [\cs{defaulthyphenchar}]
% \gr{integer parameter}
% Value of \cs{hyphenchar} when a font is loaded.
% Default value in plain \TeX\ is~\verb>`\->.
%Chapter~\ref{cschap:defaulthyphenchar},\ref{cschap:defaulthyphenchar2}.
\item [\cs{defaulthyphenchar}]
\gr{integer parameter}
Value of \cs{hyphenchar} when a font is loaded.
Default value in plain \TeX\ is~\verb>`\->.
Chapter~\ref{cschap:defaulthyphenchar},\ref{cschap:defaulthyphenchar2}.
%\item [\cs{defaultskewchar}]
% \gr{integer parameter}
% Value of \cs{skewchar} when a font is loaded.
% Default value in plain \TeX\ is~\n{-1}.
%Chapter~\ref{cschap:defaultskewchar}.
\item [\cs{defaultskewchar}]
\gr{integer parameter}
Value of \cs{skewchar} when a font is loaded.
Default value in plain \TeX\ is~\n{-1}.
Chapter~\ref{cschap:defaultskewchar}.
%\item [\cs{delcode\gr{8-bit number}}]
% \gr{internal integer}; the control sequence itself
% is a~\gr{codename}.
% Access the
% code specifying how a character should be used as delimiter
% after \cs{left} or \cs{right}.
%Chapter~\ref{cschap:delcode}.
\item [\cs{delcode\gr{8-bit number}}]
\gr{internal integer}; the control sequence itself
is a~\gr{codename}.
Access the
code specifying how a character should be used as delimiter
after \cs{left} or \cs{right}.
Chapter~\ref{cschap:delcode}.
%\item [\cs{delimiter\gr{27-bit number}}]
% \gr{math character}
% Explicit denotation of a delimiter.
%Chapter~\ref{cschap:delimiter}.
\item [\cs{delimiter\gr{27-bit number}}]
\gr{math character}
Explicit denotation of a delimiter.
Chapter~\ref{cschap:delimiter}.
%\item [\cs{delimiterfactor}]
% \gr{integer parameter}
% 1000 times the part of a delimited formula that should be
% covered by a delimiter.
% Plain \TeX\ default:~\n{901}.
%Chapter~\ref{cschap:delimiterfactor}.
\item [\cs{delimiterfactor}]
\gr{integer parameter}
1000 times the part of a delimited formula that should be
covered by a delimiter.
Plain \TeX\ default:~\n{901}.
Chapter~\ref{cschap:delimiterfactor}.
%\item [\cs{delimitershortfall}]
% \gr{integer parameter}
% Size of the part of a delimited formula that is allowed
% to go uncovered by a delimiter.
% Plain \TeX\ default:~\n{5pt}.
%Chapter~\ref{cschap:delimitershortfall}.
\item [\cs{delimitershortfall}]
\gr{integer parameter}
Size of the part of a delimited formula that is allowed
to go uncovered by a delimiter.
Plain \TeX\ default:~\n{5pt}.
Chapter~\ref{cschap:delimitershortfall}.
%\item [\cs{dimen\gr{8-bit number}}]
% \gr{internal dimen}; the control sequence itself
% is a~\gr{register prefix}.
% Access dimen registers.
%Chapter~\ref{cschap:dimen}.
\item [\cs{dimen\gr{8-bit number}}]
\gr{internal dimen}; the control sequence itself
is a~\gr{register prefix}.
Access dimen registers.
Chapter~\ref{cschap:dimen}.
%\item [\cs{dimendef\gr{control sequence}\gr{equals}\gr{8-bit number}}]
% \gr{shorthand definition}; the control sequence
% itself is a~\gr{registerdef}.
% Define a control sequence to be a synonym for
% a~\cs{dimen} register.
%Chapter~\ref{cschap:dimendef}.
\item [\cs{dimendef\gr{control sequence}\gr{equals}\gr{8-bit number}}]
\gr{shorthand definition}; the control sequence
itself is a~\gr{registerdef}.
Define a control sequence to be a synonym for
a~\cs{dimen} register.
Chapter~\ref{cschap:dimendef}.
%\item [\cs{discretionary\SerifFont\italic\lb pre-break\rb\lb post-break\rb\lb no-break\rb{}}]
% \gr{horizontal command}
% Specify the way a character sequence is split up at a line break.
%Chapter~\ref{cschap:discretionary}.
\item [\cs{discretionary\SerifFont\italic\lb pre-break\rb\lb post-break\rb\lb no-break\rb{}}]
\gr{horizontal command}
Specify the way a character sequence is split up at a line break.
Chapter~\ref{cschap:discretionary}.
%\item [\cs{displayindent}]
% \gr{dimen parameter}
% Distance by which the box, in which the display
% is centred, is indented owing to hanging indentation.
% This value is set automatically for each display.
%Chapter~\ref{cschap:displayindent}.
\item [\cs{displayindent}]
\gr{dimen parameter}
Distance by which the box, in which the display
is centred, is indented owing to hanging indentation.
This value is set automatically for each display.
Chapter~\ref{cschap:displayindent}.
%\item [\cs{displaylimits}]
% \gr{primitive command}
% Restore default placement for limits.
%Chapter~\ref{cschap:displaylimits}.
\item [\cs{displaylimits}]
\gr{primitive command}
Restore default placement for limits.
Chapter~\ref{cschap:displaylimits}.
%\item [\cs{displaystyle}]
% \gr{primitive command}
% Select the display style of math typesetting.
%Chapter~\ref{cschap:displaystyle}.
\item [\cs{displaystyle}]
\gr{primitive command}
Select the display style of math typesetting.
Chapter~\ref{cschap:displaystyle}.
%\item [\cs{displaywidowpenalty}]
% \gr{integer parameter}
% Additional penalty for breaking a page before the last line
% above a display formula.
% Default~\n{50} in plain \TeX.
%Chapter~\ref{cschap:displaywidowpenalty}.
\item [\cs{displaywidowpenalty}]
\gr{integer parameter}
Additional penalty for breaking a page before the last line
above a display formula.
Default~\n{50} in plain \TeX.
Chapter~\ref{cschap:displaywidowpenalty}.
%\item [\cs{displaywidth}]
% \gr{dimen parameter}
% Width of the box in which the display is centred.
% This value is set automatically for each display.
%Chapter~\ref{cschap:displaywidth}.
\item [\cs{displaywidth}]
\gr{dimen parameter}
Width of the box in which the display is centred.
This value is set automatically for each display.
Chapter~\ref{cschap:displaywidth}.
%\item [\cs{divide\gr{numeric variable}\gr{optional \n{by}}\gr{number}}]
% \gr{arithmetic assignment}
% Arithmetic command to divide a \gr{numeric variable}
% (see \cs{advance}).
%Chapter~\ref{cschap:divide}.
\item [\cs{divide\gr{numeric variable}\gr{optional \n{by}}\gr{number}}]
\gr{arithmetic assignment}
Arithmetic command to divide a \gr{numeric variable}
(see \cs{advance}).
Chapter~\ref{cschap:divide}.
%\item [\cs{doublehyphendemerits}]
% \gr{integer parameter}
% Penalty for consecutive lines ending with a hyphen.
% Default~\n{10$\,$000} in plain \TeX.
%Chapter~\ref{cschap:doublehyphendemerits}.
\item [\cs{doublehyphendemerits}]
\gr{integer parameter}
Penalty for consecutive lines ending with a hyphen.
Default~\n{10$\,$000} in plain \TeX.
Chapter~\ref{cschap:doublehyphendemerits}.
%\item [\cs{dp\gr{8-bit number}}]
% \gr{internal dimen}; the control sequence itself
% is a~\gr{box dimension}.
% Depth of the box in a box register.
%Chapter~\ref{cschap:dp}.
\item [\cs{dp\gr{8-bit number}}]
\gr{internal dimen}; the control sequence itself
is a~\gr{box dimension}.
Depth of the box in a box register.
Chapter~\ref{cschap:dp}.
%\item [\cs{dump}]
% \gr{vertical command}
% Dump a format file; possible only in \IniTeX,
% not allowed inside a group.
\item [\cs{dump}]
\gr{vertical command}
Dump a format file; possible only in \IniTeX,
not allowed inside a group.
%Chapter~\ref{cschap:dump}.
Chapter~\ref{cschap:dump}.
%\item [\cs{edef}]
% \gr{def}
% Start a macro definition;
% the replacement text is expanded at definition time.
%Chapter~\ref{cschap:edef}.
\item [\cs{edef}]
\gr{def}
Start a macro definition;
the replacement text is expanded at definition time.
Chapter~\ref{cschap:edef}.
%\item [\cs{else}]
% \gr{expandable command}
% Select
% \gr{false text} of a conditional
% or default case of \cs{ifcase}.
%Chapter~\ref{cschap:else}.
\item [\cs{else}]
\gr{expandable command}
Select
\gr{false text} of a conditional
or default case of \cs{ifcase}.
Chapter~\ref{cschap:else}.
%\item [\cs{emergencystretch}]
% \gr{dimen parameter}
% (\TeX3 only)
% Assumed extra stretchability in lines of a paragraph
% in third pass of the line-breaking algorithm.
%Chapter~\ref{cschap:emergencystretch}.
\item [\cs{emergencystretch}]
\gr{dimen parameter}
(\TeX3 only)
Assumed extra stretchability in lines of a paragraph
in third pass of the line-breaking algorithm.
Chapter~\ref{cschap:emergencystretch}.
%\item [\cs{end}]
% \gr{vertical command}
% End this run.
%Chapter~\ref{cschap:end}.
\item [\cs{end}]
\gr{vertical command}
End this run.
Chapter~\ref{cschap:end}.
%\item [\cs{endcsname}]
% \gr{expandable command}
% Delimit the name of a control sequence that was begun
% with \cs{csname}.
%Chapter~\ref{cschap:endcsname}.
\item [\cs{endcsname}]
\gr{expandable command}
Delimit the name of a control sequence that was begun
with \cs{csname}.
Chapter~\ref{cschap:endcsname}.
%\item [\cs{endgroup}]
% \gr{primitive command}
% End a group that was opened with \verb-\begingroup-.
%Chapter~\ref{cschap:endgroup}.
\item [\cs{endgroup}]
\gr{primitive command}
End a group that was opened with \verb-\begingroup-.
Chapter~\ref{cschap:endgroup}.
%\item [\cs{endinput}]
% \gr{expandable command}
% Terminate inputting the current file after the current line.
%Chapter~\ref{cschap:endinput}.
\item [\cs{endinput}]
\gr{expandable command}
Terminate inputting the current file after the current line.
Chapter~\ref{cschap:endinput}.
%\item [\cs{endlinechar}]
% \gr{integer parameter}
% The character code of the end-of-line character
% appended to input lines.
% \IniTeX\ default:~\n{13}.
%Chapter~\ref{cschap:endlinechar}.
\item [\cs{endlinechar}]
\gr{integer parameter}
The character code of the end-of-line character
appended to input lines.
\IniTeX\ default:~\n{13}.
Chapter~\ref{cschap:endlinechar}.
%\item [\cs{eqno\gr{math mode material}\n{\char36\char36}}]
% \gr{eqno}
% Place a right equation number in a display formula.
%Chapter~\ref{cschap:eqno}.
\item [\cs{eqno\gr{math mode material}\n{\char36\char36}}]
\gr{eqno}
Place a right equation number in a display formula.
Chapter~\ref{cschap:eqno}.
%\item [\cs{errhelp}]
% \gr{token parameter}
% Tokens that will be displayed if the user
% asks for help after an \cs{err\-message}.
%Chapter~\ref{cschap:errhelp}.
\item [\cs{errhelp}]
\gr{token parameter}
Tokens that will be displayed if the user
asks for help after an \cs{err\-message}.
Chapter~\ref{cschap:errhelp}.
%\item [\cs{errmessage\gr{general text}}]
% \gr{primitive command}
% Report an error and give the user opportunity to act.
%Chapter~\ref{cschap:errmessage}.
\item [\cs{errmessage\gr{general text}}]
\gr{primitive command}
Report an error and give the user opportunity to act.
Chapter~\ref{cschap:errmessage}.
%\item [\cs{errorcontextlines}]
% \gr{integer parameter}
% (\TeX3 only)
% Number of additional context lines shown in error messages.
%Chapter~\ref{cschap:errorcontextlines}.
\item [\cs{errorcontextlines}]
\gr{integer parameter}
(\TeX3 only)
Number of additional context lines shown in error messages.
Chapter~\ref{cschap:errorcontextlines}.
%\item [\cs{errorstopmode}]
% \gr{interaction mode assignment}
% Ask for user input on the occurrence of an error.
%Chapter~\ref{cschap:errorstopmode}.
\item [\cs{errorstopmode}]
\gr{interaction mode assignment}
Ask for user input on the occurrence of an error.
Chapter~\ref{cschap:errorstopmode}.
%\item [\cs{escapechar}]
% \gr{integer parameter}
% Number of the character that is used
% when control sequences are being converted
% into character tokens.
% \IniTeX\ default:~\n{92}.
%Chapter~\ref{cschap:escapechar}.
\item [\cs{escapechar}]
\gr{integer parameter}
Number of the character that is used
when control sequences are being converted
into character tokens.
\IniTeX\ default:~\n{92}.
Chapter~\ref{cschap:escapechar}.
%\item [\cs{everycr}]
% \gr{token parameter}
% Token list inserted after every \cs{cr} or non-redundant \cs{crcr}.
%Chapter~\ref{cschap:everycr}.
\item [\cs{everycr}]
\gr{token parameter}
Token list inserted after every \cs{cr} or non-redundant \cs{crcr}.
Chapter~\ref{cschap:everycr}.
%\item [\cs{everydisplay}]
% \gr{token parameter}
% Token list inserted at the start of a display.
%Chapter~\ref{cschap:everydisplay}.
\item [\cs{everydisplay}]
\gr{token parameter}
Token list inserted at the start of a display.
Chapter~\ref{cschap:everydisplay}.
%\item [\cs{everyhbox}]
% \gr{token parameter}
% Token list inserted at the start of a horizontal box.
%Chapter~\ref{cschap:everyhbox}.
\item [\cs{everyhbox}]
\gr{token parameter}
Token list inserted at the start of a horizontal box.
Chapter~\ref{cschap:everyhbox}.
%\item [\cs{everyjob}]
% \gr{token parameter}
% Token list inserted at the start of each job.
%Chapter~\ref{cschap:everyjob}.
\item [\cs{everyjob}]
\gr{token parameter}
Token list inserted at the start of each job.
Chapter~\ref{cschap:everyjob}.
%\item [\cs{everymath}]
% \gr{token parameter}
% Token list inserted at the start of non-display math.
%Chapter~\ref{cschap:everymath}.
\item [\cs{everymath}]
\gr{token parameter}
Token list inserted at the start of non-display math.
Chapter~\ref{cschap:everymath}.
%\item [\cs{everypar}]
% \gr{token parameter}
% Token list inserted in front of paragraph text.
%Chapter~\ref{cschap:everypar}.
\item [\cs{everypar}]
\gr{token parameter}
Token list inserted in front of paragraph text.
Chapter~\ref{cschap:everypar}.
%\item [\cs{everyvbox}]
% \gr{token parameter}
% Token list inserted at the start of a vertical box.
%Chapter~\ref{cschap:everyvbox}.
\item [\cs{everyvbox}]
\gr{token parameter}
Token list inserted at the start of a vertical box.
Chapter~\ref{cschap:everyvbox}.
%\item [\cs{exhyphenpenalty}]
% \gr{integer parameter}
% Penalty for breaking a horizontal line at a discretionary
% in the special case where the prebreak text is empty.
% Default~\n{50} in plain \TeX.
%Chapter~\ref{cschap:exhyphenpenalty}.
\item [\cs{exhyphenpenalty}]
\gr{integer parameter}
Penalty for breaking a horizontal line at a discretionary
in the special case where the prebreak text is empty.
Default~\n{50} in plain \TeX.
Chapter~\ref{cschap:exhyphenpenalty}.
%\item [\cs{expandafter}]
% \gr{expandable command}
% Take the next two tokens and place the
% expansion of the second after the first.
%Chapter~\ref{cschap:expandafter}.
\item [\cs{expandafter}]
\gr{expandable command}
Take the next two tokens and place the
expansion of the second after the first.
Chapter~\ref{cschap:expandafter}.
%\item [\cs{fam}]
% \gr{integer parameter}
% The number of the current font family.
%Chapter~\ref{cschap:fam}.
\item [\cs{fam}]
\gr{integer parameter}
The number of the current font family.
Chapter~\ref{cschap:fam}.
%\item [\cs{fi}]
% \gr{expandable command}
% Closing delimiter for all conditionals.
%Chapter~\ref{cschap:fi}.
\item [\cs{fi}]
\gr{expandable command}
Closing delimiter for all conditionals.
Chapter~\ref{cschap:fi}.
%\item [\cs{finalhyphendemerits}]
% \gr{integer parameter}
% Penalty added when the penultimate line of a
% paragraph ends with a hyphen.
% Plain \TeX\ default~\n{5000}.
%Chapter~\ref{cschap:finalhyphendemerits}.
\item [\cs{finalhyphendemerits}]
\gr{integer parameter}
Penalty added when the penultimate line of a
paragraph ends with a hyphen.
Plain \TeX\ default~\n{5000}.
Chapter~\ref{cschap:finalhyphendemerits}.
%\item [\cs{firstmark}]
% \gr{expandable command}
% The first mark on the current page.
%Chapter~\ref{cschap:firstmark}.
\item [\cs{firstmark}]
\gr{expandable command}
The first mark on the current page.
Chapter~\ref{cschap:firstmark}.
%\item [\cs{floatingpenalty}]
% \gr{integer parameter}
% Penalty amount added to \cs{insertpenalties}
% \alt
% when an insertion is split.
%Chapter~\ref{cschap:floatingpenalty}.
\item [\cs{floatingpenalty}]
\gr{integer parameter}
Penalty amount added to \cs{insertpenalties}
\alt
when an insertion is split.
Chapter~\ref{cschap:floatingpenalty}.
%\item [\cs{font\gr{control sequence}\gr{equals}\gr{file name}\gr{at clause}}]
% \gr{simple assignment}
% Associate a control sequence with a \n{tfm} file.
% When used on its own, this control sequence is a \gr{font},
% denoting the current font.
%Chapter~\ref{cschap:font}.
\item [\cs{font\gr{control sequence}\gr{equals}\gr{file name}\gr{at clause}}]
\gr{simple assignment}
Associate a control sequence with a \n{tfm} file.
When used on its own, this control sequence is a \gr{font},
denoting the current font.
Chapter~\ref{cschap:font}.
%\item [\cs{fontdimen\gr{number}\gr{font}}]
% \gr{internal dimen}
% Access various parameters of fonts.