-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethod.log
More file actions
1204 lines (1050 loc) · 42.6 KB
/
method.log
File metadata and controls
1204 lines (1050 loc) · 42.6 KB
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 is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=latex 2022.2.18) 18 FEB 2022 14:43
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**method.tex
(./method.tex
LaTeX2e <2020-02-02> patch level 2
L3 programming layer <2020-02-14> (./book_unv.cls
Document Class: book_unv 2004/03/01 v1.0 Modified LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/bk10.clo
File: bk10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\c@part=\count167
\c@chapter=\count168
\c@section=\count169
\c@subsection=\count170
\c@subsubsection=\count171
\c@paragraph=\count172
\c@subparagraph=\count173
\c@figure=\count174
\c@table=\count175
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
(/usr/share/texmf/tex/latex/lm/lmodern.sty
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks14
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip49
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks15
\ex@=\dimen135
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen136
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count176
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count177
\leftroot@=\count178
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count179
\DOTSCASE@=\count180
LaTeX Info: Redefining \ldots on input line 486.
LaTeX Info: Redefining \dots on input line 489.
LaTeX Info: Redefining \cdots on input line 610.
\Mathstrutbox@=\box45
\strutbox@=\box46
\big@size=\dimen137
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count181
\c@MaxMatrixCols=\count182
\dotsspace@=\muskip16
\c@parentequation=\count183
\dspbrk@lvl=\count184
\tag@help=\toks16
\row@=\count185
\column@=\count186
\maxfields@=\count187
\andhelp@=\toks17
\eqnshift@=\dimen138
\alignsep@=\dimen139
\tagshift@=\dimen140
\tagwidth@=\dimen141
\totwidth@=\dimen142
\lineht@=\dimen143
\@envbody=\toks18
\multlinegap=\skip50
\multlinetaggap=\skip51
\mathdisplay@stack=\toks19
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2019/11/07 v1.0c TeX engine tests
))
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifluatex.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks20
\inpenc@posthook=\toks21
)
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2020/02/14 3.40 The Babel package
(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def
File: switch.def 2020/02/14 3.40 Babel switching mechanism
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2020/02/14 3.40 Babel common definitions
\babel@savecnt=\count188
\U@D=\dimen144
(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def)
\bbl@readstream=\read2
\bbl@dirlevel=\count189
)
Package babel Info: \l@british = using hyphenrules for english
(babel) (\language0) on input line 82.
Package babel Info: \l@UKenglish = using hyphenrules for english
(babel) (\language0) on input line 83.
Package babel Info: \l@canadian = using hyphenrules for english
(babel) (\language0) on input line 102.
Package babel Info: \l@australian = using hyphenrules for english
(babel) (\language0) on input line 105.
Package babel Info: \l@newzealand = using hyphenrules for english
(babel) (\language0) on input line 108.
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-russian/russianb.ldf
Language: russian 2017/08/12 1.3j Russian support for the Babel system
Package babel Warning: No Cyrillic font encoding has been loaded so far.
(babel) A font encoding should be declared before babel.
(babel) Default `T2A' encoding will be loaded on input line 74.
(/usr/share/texlive/texmf-dist/tex/latex/cyrillic/t2aenc.def
File: t2aenc.def 2005/09/27 v1.0i Cyrillic encoding definition file
Now handling font encoding T2A ...
... processing UTF-8 mapping file for font encoding T2A
(/usr/share/texlive/texmf-dist/tex/latex/base/t2aenc.dfu
File: t2aenc.dfu 2019/11/14 v1.2k UTF-8 support for inputenc
defining Unicode char U+00A4 (decimal 164)
defining Unicode char U+00A7 (decimal 167)
defining Unicode char U+00AB (decimal 171)
defining Unicode char U+00BB (decimal 187)
defining Unicode char U+0131 (decimal 305)
defining Unicode char U+0237 (decimal 567)
defining Unicode char U+0400 (decimal 1024)
defining Unicode char U+0401 (decimal 1025)
defining Unicode char U+0402 (decimal 1026)
defining Unicode char U+0403 (decimal 1027)
defining Unicode char U+0404 (decimal 1028)
defining Unicode char U+0405 (decimal 1029)
defining Unicode char U+0406 (decimal 1030)
defining Unicode char U+0407 (decimal 1031)
defining Unicode char U+0408 (decimal 1032)
defining Unicode char U+0409 (decimal 1033)
defining Unicode char U+040A (decimal 1034)
defining Unicode char U+040B (decimal 1035)
defining Unicode char U+040C (decimal 1036)
defining Unicode char U+040D (decimal 1037)
defining Unicode char U+040E (decimal 1038)
defining Unicode char U+040F (decimal 1039)
defining Unicode char U+0410 (decimal 1040)
defining Unicode char U+0411 (decimal 1041)
defining Unicode char U+0412 (decimal 1042)
defining Unicode char U+0413 (decimal 1043)
defining Unicode char U+0414 (decimal 1044)
defining Unicode char U+0415 (decimal 1045)
defining Unicode char U+0416 (decimal 1046)
defining Unicode char U+0417 (decimal 1047)
defining Unicode char U+0418 (decimal 1048)
defining Unicode char U+0419 (decimal 1049)
defining Unicode char U+041A (decimal 1050)
defining Unicode char U+041B (decimal 1051)
defining Unicode char U+041C (decimal 1052)
defining Unicode char U+041D (decimal 1053)
defining Unicode char U+041E (decimal 1054)
defining Unicode char U+041F (decimal 1055)
defining Unicode char U+0420 (decimal 1056)
defining Unicode char U+0421 (decimal 1057)
defining Unicode char U+0422 (decimal 1058)
defining Unicode char U+0423 (decimal 1059)
defining Unicode char U+0424 (decimal 1060)
defining Unicode char U+0425 (decimal 1061)
defining Unicode char U+0426 (decimal 1062)
defining Unicode char U+0427 (decimal 1063)
defining Unicode char U+0428 (decimal 1064)
defining Unicode char U+0429 (decimal 1065)
defining Unicode char U+042A (decimal 1066)
defining Unicode char U+042B (decimal 1067)
defining Unicode char U+042C (decimal 1068)
defining Unicode char U+042D (decimal 1069)
defining Unicode char U+042E (decimal 1070)
defining Unicode char U+042F (decimal 1071)
defining Unicode char U+0430 (decimal 1072)
defining Unicode char U+0431 (decimal 1073)
defining Unicode char U+0432 (decimal 1074)
defining Unicode char U+0433 (decimal 1075)
defining Unicode char U+0434 (decimal 1076)
defining Unicode char U+0435 (decimal 1077)
defining Unicode char U+0436 (decimal 1078)
defining Unicode char U+0437 (decimal 1079)
defining Unicode char U+0438 (decimal 1080)
defining Unicode char U+0439 (decimal 1081)
defining Unicode char U+043A (decimal 1082)
defining Unicode char U+043B (decimal 1083)
defining Unicode char U+043C (decimal 1084)
defining Unicode char U+043D (decimal 1085)
defining Unicode char U+043E (decimal 1086)
defining Unicode char U+043F (decimal 1087)
defining Unicode char U+0440 (decimal 1088)
defining Unicode char U+0441 (decimal 1089)
defining Unicode char U+0442 (decimal 1090)
defining Unicode char U+0443 (decimal 1091)
defining Unicode char U+0444 (decimal 1092)
defining Unicode char U+0445 (decimal 1093)
defining Unicode char U+0446 (decimal 1094)
defining Unicode char U+0447 (decimal 1095)
defining Unicode char U+0448 (decimal 1096)
defining Unicode char U+0449 (decimal 1097)
defining Unicode char U+044A (decimal 1098)
defining Unicode char U+044B (decimal 1099)
defining Unicode char U+044C (decimal 1100)
defining Unicode char U+044D (decimal 1101)
defining Unicode char U+044E (decimal 1102)
defining Unicode char U+044F (decimal 1103)
defining Unicode char U+0450 (decimal 1104)
defining Unicode char U+0451 (decimal 1105)
defining Unicode char U+0452 (decimal 1106)
defining Unicode char U+0453 (decimal 1107)
defining Unicode char U+0454 (decimal 1108)
defining Unicode char U+0455 (decimal 1109)
defining Unicode char U+0456 (decimal 1110)
defining Unicode char U+0457 (decimal 1111)
defining Unicode char U+0458 (decimal 1112)
defining Unicode char U+0459 (decimal 1113)
defining Unicode char U+045A (decimal 1114)
defining Unicode char U+045B (decimal 1115)
defining Unicode char U+045C (decimal 1116)
defining Unicode char U+045D (decimal 1117)
defining Unicode char U+045E (decimal 1118)
defining Unicode char U+045F (decimal 1119)
defining Unicode char U+0490 (decimal 1168)
defining Unicode char U+0491 (decimal 1169)
defining Unicode char U+0492 (decimal 1170)
defining Unicode char U+0493 (decimal 1171)
defining Unicode char U+0496 (decimal 1174)
defining Unicode char U+0497 (decimal 1175)
defining Unicode char U+0498 (decimal 1176)
defining Unicode char U+0499 (decimal 1177)
defining Unicode char U+049A (decimal 1178)
defining Unicode char U+049B (decimal 1179)
defining Unicode char U+049C (decimal 1180)
defining Unicode char U+049D (decimal 1181)
defining Unicode char U+04A0 (decimal 1184)
defining Unicode char U+04A1 (decimal 1185)
defining Unicode char U+04A2 (decimal 1186)
defining Unicode char U+04A3 (decimal 1187)
defining Unicode char U+04A4 (decimal 1188)
defining Unicode char U+04A5 (decimal 1189)
defining Unicode char U+04AA (decimal 1194)
defining Unicode char U+04AB (decimal 1195)
defining Unicode char U+04AE (decimal 1198)
defining Unicode char U+04AF (decimal 1199)
defining Unicode char U+04B0 (decimal 1200)
defining Unicode char U+04B1 (decimal 1201)
defining Unicode char U+04B2 (decimal 1202)
defining Unicode char U+04B3 (decimal 1203)
defining Unicode char U+04B6 (decimal 1206)
defining Unicode char U+04B7 (decimal 1207)
defining Unicode char U+04B8 (decimal 1208)
defining Unicode char U+04B9 (decimal 1209)
defining Unicode char U+04BA (decimal 1210)
defining Unicode char U+04BB (decimal 1211)
defining Unicode char U+04C0 (decimal 1216)
defining Unicode char U+04C1 (decimal 1217)
defining Unicode char U+04C2 (decimal 1218)
defining Unicode char U+04D0 (decimal 1232)
defining Unicode char U+04D1 (decimal 1233)
defining Unicode char U+04D2 (decimal 1234)
defining Unicode char U+04D3 (decimal 1235)
defining Unicode char U+04D4 (decimal 1236)
defining Unicode char U+04D5 (decimal 1237)
defining Unicode char U+04D6 (decimal 1238)
defining Unicode char U+04D7 (decimal 1239)
defining Unicode char U+04D8 (decimal 1240)
defining Unicode char U+04D9 (decimal 1241)
defining Unicode char U+04DA (decimal 1242)
defining Unicode char U+04DB (decimal 1243)
defining Unicode char U+04DC (decimal 1244)
defining Unicode char U+04DD (decimal 1245)
defining Unicode char U+04DE (decimal 1246)
defining Unicode char U+04DF (decimal 1247)
defining Unicode char U+04E2 (decimal 1250)
defining Unicode char U+04E3 (decimal 1251)
defining Unicode char U+04E4 (decimal 1252)
defining Unicode char U+04E5 (decimal 1253)
defining Unicode char U+04E6 (decimal 1254)
defining Unicode char U+04E7 (decimal 1255)
defining Unicode char U+04E8 (decimal 1256)
defining Unicode char U+04E9 (decimal 1257)
defining Unicode char U+04EC (decimal 1260)
defining Unicode char U+04ED (decimal 1261)
defining Unicode char U+04EE (decimal 1262)
defining Unicode char U+04EF (decimal 1263)
defining Unicode char U+04F0 (decimal 1264)
defining Unicode char U+04F1 (decimal 1265)
defining Unicode char U+04F2 (decimal 1266)
defining Unicode char U+04F3 (decimal 1267)
defining Unicode char U+04F4 (decimal 1268)
defining Unicode char U+04F5 (decimal 1269)
defining Unicode char U+04F8 (decimal 1272)
defining Unicode char U+04F9 (decimal 1273)
defining Unicode char U+200C (decimal 8204)
defining Unicode char U+2013 (decimal 8211)
defining Unicode char U+2014 (decimal 8212)
defining Unicode char U+2018 (decimal 8216)
defining Unicode char U+2019 (decimal 8217)
defining Unicode char U+201C (decimal 8220)
defining Unicode char U+201D (decimal 8221)
defining Unicode char U+201E (decimal 8222)
defining Unicode char U+2030 (decimal 8240)
defining Unicode char U+2031 (decimal 8241)
defining Unicode char U+2116 (decimal 8470)
defining Unicode char U+2329 (decimal 9001)
defining Unicode char U+232A (decimal 9002)
defining Unicode char U+2423 (decimal 9251)
defining Unicode char U+27E8 (decimal 10216)
defining Unicode char U+27E9 (decimal 10217)
defining Unicode char U+FB00 (decimal 64256)
defining Unicode char U+FB01 (decimal 64257)
defining Unicode char U+FB02 (decimal 64258)
defining Unicode char U+FB03 (decimal 64259)
defining Unicode char U+FB04 (decimal 64260)
defining Unicode char U+FB05 (decimal 64261)
defining Unicode char U+FB06 (decimal 64262)
))
Package babel Info: Making " an active character on input line 120.
Package babel Info: Default for \cyrdash is provided on input line 157.
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-ukrainian/ukraineb.ldf
Language: ukraineb 2018/04/11 1.4c Ukrainian support for the Babel system
LaTeX Info: Redefining \cyrillictext on input line 84.
LaTeX Info: Redefining \textcyrillic on input line 96.
Package babel Info: Default for \cyrdash is provided on input line 161.
))
(./univbook.sty
Package: univbook 2004/02/16
) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
\c@tracingmulticols=\count190
\mult@box=\box47
\multicol@leftmargin=\dimen145
\c@unbalance=\count191
\c@collectmore=\count192
\doublecol@number=\count193
\multicoltolerance=\count194
\multicolpretolerance=\count195
\full@width=\dimen146
\page@free=\dimen147
\premulticols=\dimen148
\postmulticols=\dimen149
\multicolsep=\skip52
\multicolbaselineskip=\skip53
\partial@page=\box48
\last@line=\box49
\maxbalancingoverflow=\dimen150
\mult@rightbox=\box50
\mult@grightbox=\box51
\mult@gfirstbox=\box52
\mult@firstbox=\box53
\@tempa=\box54
\@tempa=\box55
\@tempa=\box56
\@tempa=\box57
\@tempa=\box58
\@tempa=\box59
\@tempa=\box60
\@tempa=\box61
\@tempa=\box62
\@tempa=\box63
\@tempa=\box64
\@tempa=\box65
\@tempa=\box66
\@tempa=\box67
\@tempa=\box68
\@tempa=\box69
\@tempa=\box70
\@tempa=\box71
\@tempa=\box72
\@tempa=\box73
\@tempa=\box74
\@tempa=\box75
\@tempa=\box76
\@tempa=\box77
\@tempa=\box78
\@tempa=\box79
\@tempa=\box80
\@tempa=\box81
\@tempa=\box82
\@tempa=\box83
\@tempa=\box84
\@tempa=\box85
\@tempa=\box86
\@tempa=\box87
\@tempa=\box88
\@tempa=\box89
\@tempa=\box90
\c@minrows=\count196
\c@columnbadness=\count197
\c@finalcolumnbadness=\count198
\last@try=\dimen151
\multicolovershoot=\dimen152
\multicolundershoot=\dimen153
\mult@nat@firstbox=\box91
\colbreak@box=\box92
\mc@col@check@num=\count199
)
(/usr/share/texlive/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2016/12/29 v2.1a fixes to LaTeX (obsolete)
Applying: [2015/01/01] Old fixltx2e package on input line 46.
Package fixltx2e Warning: fixltx2e is not required with releases after 2015
(fixltx2e) All fixes are now in the LaTeX kernel.
(fixltx2e) See the latexrelease package for details.
Already applied: [0000/00/00] Old fixltx2e package on input line 53.
) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+cmss on input line 1
12.
(/usr/share/texlive/texmf-dist/tex/latex/base/t1cmss.fd
File: t1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
))
(/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
))
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks22
)
\MT@toks=\toks23
\MT@count=\count266
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen154
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count267
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-pdftex.def
File: microtype-pdftex.def 2019/11/18 v2.7d Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 914.
LaTeX Info: Redefining \lslig on input line 914.
\MT@outer@space=\skip54
)
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
))
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode is ignored in DVI mode.
)
(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
)
\@linkdim=\dimen155
\Hy@linkcounter=\count268
\Hy@pagecounter=\count269
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count270
\pdfmajorversion=\count271
Package hyperref Info: Option `unicode' set `true' on input line 3502.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2020/01/14 v7.00d Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Option `unicode' set `true' on input line 4421.
Package hyperref Info: Hyper figures OFF on input line 4547.
Package hyperref Info: Link nesting OFF on input line 4552.
Package hyperref Info: Hyper index ON on input line 4555.
Package hyperref Info: Plain pages OFF on input line 4562.
Package hyperref Info: Backreferencing OFF on input line 4567.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4800.
\c@Hy@tempcnt=\count272
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5159.
\XeTeXLinkMargin=\dimen156
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count273
\Field@Width=\dimen157
\Fld@charsize=\dimen158
Package hyperref Info: Hyper figures OFF on input line 6430.
Package hyperref Info: Link nesting OFF on input line 6435.
Package hyperref Info: Hyper index ON on input line 6438.
Package hyperref Info: backreferencing OFF on input line 6445.
Package hyperref Info: Link coloring OFF on input line 6450.
Package hyperref Info: Link coloring with OCG OFF on input line 6455.
Package hyperref Info: PDF/A mode OFF on input line 6460.
LaTeX Info: Redefining \ref on input line 6500.
LaTeX Info: Redefining \pageref on input line 6504.
(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count274
\c@Item=\count275
\c@Hfootnote=\count276
)
Package hyperref Info: Driver (default): hdvips.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hdvips.def
File: hdvips.def 2020/01/14 v7.00d Hyperref driver for dvips
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pdfmark.def
File: pdfmark.def 2020/01/14 v7.00d Hyperref definitions for pdfmark specials
\pdf@docset=\toks24
\pdf@box=\box93
\pdf@toks=\toks25
\pdf@defaulttoks=\toks26
\HyField@AnnotCount=\count277
\Fld@listcount=\count278
\c@bookmark@seq@number=\count279
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
)
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip55
))
Package hyperref Info: Option `breaklinks' set `true' on input line 41.
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: dvips.def on input line 105.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/dvips.def
File: dvips.def 2017/06/20 v3.1d Graphics/color driver for dvips
))
\Gin@req@height=\dimen159
\Gin@req@width=\dimen160
)
(/usr/share/texlive/texmf-dist/tex/latex/grffile/grffile.sty
Package: grffile 2019/11/11 v2.1 Extended file name support for graphics (legac
y)
Package grffile Info: This package is an empty stub for compatibility on input
line 40.
)
(/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty
Package: parskip 2020-01-22 v2.0d non-zero parskip adjustments
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count280
))
(/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip56
\enit@outerparindent=\dimen161
\enit@toks=\toks27
\enit@inbox=\box94
\enit@count@id=\count281
\enitdp@description=\count282
)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-dvips.def
File: l3backend-dvips.def 2020-02-03 L3 backend support: dvips
\l__pdf_internal_box=\box95
\g__pdf_backend_object_int=\count283
\l__pdf_backend_content_box=\box96
\l__pdf_backend_model_box=\box97
\g__pdf_backend_annotation_int=\count284
\g__pdf_backend_link_int=\count285
\g__pdf_backend_link_sf_int=\count286
)
(./method.aux
LaTeX Font Info: Trying to load font information for T2A+cmss on input line
21.
(/usr/share/texlive/texmf-dist/tex/latex/cyrillic/t2acmss.fd
File: t2acmss.fd 2001/08/11 v1.0a Computer Modern Cyrillic font definitions
))
\openout1 = `method.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for T2A/cmr/m/n on input line 91.
LaTeX Font Info: Trying to load font information for T2A+cmr on input line 9
1.
(/usr/share/texlive/texmf-dist/tex/latex/cyrillic/t2acmr.fd
File: t2acmr.fd 2001/08/11 v1.0a Computer Modern Cyrillic font definitions
)
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 91.
LaTeX Font Info: ... okay on input line 91.
LaTeX Info: Redefining \microtypecontext on input line 91.
Package microtype Info: Generating DVI output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using protrusion set `basicmath'.
Package microtype Info: No font expansion.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `cmss' (encoding: T2A).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
\AtBeginShipoutBox=\box98
Package hyperref Info: Link coloring OFF on input line 91.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count287
)
LaTeX Info: Redefining \ref on input line 91.
LaTeX Info: Redefining \pageref on input line 91.
LaTeX Info: Redefining \nameref on input line 91.
(./method.out) (./method.out)
\@outlinefile=\write3
\openout3 = `method.out'.
[1
] [2] (./method.toc
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `cmss' (encoding: T1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 3
.
(/usr/share/texmf/tex/latex/lm/ot1lmr.fd
File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-cmr.cfg
File: mt-cmr.cfg 2013/05/19 v2.2 microtype config. file: Computer Modern Roman
(RS)
)
LaTeX Font Info: Trying to load font information for OML+lmm on input line 3
.
(/usr/share/texmf/tex/latex/lm/omllmm.fd
File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line
3.
(/usr/share/texmf/tex/latex/lm/omslmsy.fd
File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMX+lmex on input line
3.
(/usr/share/texmf/tex/latex/lm/omxlmex.fd
File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 3.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 3.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 3.
LaTeX Font Info: Trying to load font information for U+msa on input line 3.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-msa.cfg
File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS)
)
LaTeX Font Info: Trying to load font information for U+msb on input line 3.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-msb.cfg
File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
) [3
] [4]
Underfull \hbox (badness 5189) in paragraph at lines 86--86
[] [][]\T2A/cmss/bx/n/10 Ñòàíäàðòíà ái-áëiî-òå-êà Ñ++. Ïî-ñëi-äîâ-íi êîí-òåé-í
å-ðè òà
[]
)
\tf@toc=\write4
\openout4 = `method.toc'.
[5] [6
]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 1.
LaTeX Font Info: Trying to load font information for TS1+cmss on input line
166.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmss.fd
File: ts1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
) [7
]
LaTeX Font Info: Trying to load font information for T2A+lmtt on input line
271.
No file T2Almtt.fd.
LaTeX Font Warning: Font shape `T2A/lmtt/m/n' undefined
(Font) using `T2A/cmr/m/n' instead on input line 271.
[8]
Underfull \hbox (badness 10000) in paragraph at lines 320--326
[]
[9] [10]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 2.
[11
]
Overfull \hbox (23.81917pt too wide) has occurred while \output is active
\T2A/cmss/m/it/10 Ðîçäië 2. Âèêîðèñòàííÿ ìàòåìàòè÷íî¨ áiáëiîòåêè Ñ. Ñòâîðåííÿ
âëàñíèõ ôóíêöié
[]
[12]
Underfull \hbox (badness 2662) in paragraph at lines 490--494
[]\T2A/cmss/m/n/10 Íàïèøiòü âëà-ñíi ôóí-êöi¨, ùî îá-÷è-ñëþ-þòü íà-ñòó-ïíi âè-ðà
-çè òà
[]
Underfull \hbox (badness 4556) in paragraph at lines 490--494
\T2A/cmss/m/n/10 âiä-ïî-âiä-íi âëà-ñíi ôóí-êöi¨, ùî áó-äóòü ðà-õó-âà-òè ïî-õi-ä
íi äà-íèõ
[]
[13]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 3.
[14
] [15] [16] [17]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 4.
[18
] [19] [20]
Underfull \hbox (badness 10000) in paragraph at lines 988--990
[]$[] \OT1/lmr/m/n/10 = [] \OMS/lmsy/m/n/10 ^^A [] ^^A
[]
Overfull \hbox (25.35083pt too wide) in paragraph at lines 990--992
[]$\OML/lmm/m/it/10 ^^Y \OT1/lmr/m/n/10 = [] [] []$\T2A/cmss/m/n/10 ;
[]
[21]
Overfull \hbox (63.5041pt too wide) in paragraph at lines 996--998
[]$\OT1/lmr/m/n/10 2\OML/lmm/m/it/10 ^^Y \OT1/lmr/m/n/10 = [] [] []$\T2A/cmss/m
/n/10 ;
[]
[22]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 5.
[23
] [24] [25]
Underfull \hbox (badness 10000) in paragraph at lines 1265--1272
[]\T2A/cmss/m/n/10 äå $[] $ $[] $
[]
[26] [27] [28]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 6.
[29
] [30] [31]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 7.
[32
]
Overfull \hbox (18.79636pt too wide) in paragraph at lines 1626--1628
[]$[] [] \OT1/lmr/m/n/10 + [] []$\T2A/cmss/m/n/10 ;
[]
Overfull \hbox (14.56958pt too wide) in paragraph at lines 1629--1631
[]$[] []$\T2A/cmss/m/n/10 ;
[]
Underfull \hbox (badness 10000) in paragraph at lines 1631--1632
[]$[][] \OMS/lmsy/m/n/10 ^^@
[]
[33]
Overfull \hbox (5.23552pt too wide) in paragraph at lines 1643--1644
[]$\OML/lmm/m/it/10 max\OT1/lmr/m/n/10 (\OML/lmm/m/it/10 a[]; a[]a[]; [] ; a[]a
[] [] a[]\OT1/lmr/m/n/10 )$\T2A/cmss/m/n/10 ;
[]
Underfull \hbox (badness 10000) in paragraph at lines 1644--1645
[]\T2A/cmss/m/n/10 êiëüêîñòi ïàð-íèõ ñå-ðåä
[]
Overfull \hbox (37.83084pt too wide) in paragraph at lines 1645--1646
\T2A/cmss/m/n/10 ñå-ðåä $\OML/lmm/m/it/10 a[]a[]; a[]a[]; [] ; a[]a[]; k \OT
1/lmr/m/n/10 =
[]
Underfull \hbox (badness 1742) in paragraph at lines 1655--1659
\T2A/cmss/m/n/10 òà ôóí-êöiþ, ùî âè-âî-äèòü êî-å-ôi-öi-¹í-òè ïî-ëi-íî-ìó ×å-áè-
øî-âà
[]
[34] [35]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 8.
[36
]
File: pics/spiral5.eps Graphic file (type eps)
<pics/spiral5.eps> [37] [38] [39]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 9.
[40
] [41] [42] [43]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 10.
[44
] [45] [46] [47]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 11.
[48
] [49] [50] [51] [52] [53]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 12.
[54
] [55] [56] [57] [58]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 13.
[59
] [60] [61]
{\cyrillictext \CYRR \cyro \cyrz \cyrd \cyrii \cyrl } 14.
[62