-
Notifications
You must be signed in to change notification settings - Fork 0
/
limit01.log
1180 lines (1091 loc) · 45.5 KB
/
limit01.log
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 XeTeX, Version 3.141592653-2.6-0.999996 (TeX Live 2024) (preloaded format=xelatex 2024.7.26) 27 AUG 2024 21:58
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**limit01.tex
(./limit01.tex
LaTeX2e <2023-11-01> patch level 1
L3 programming layer <2024-02-20>
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamer.cls
Document Class: beamer 2024/01/06 v3.71 A class for typesetting presentations
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasemodes.sty
(c:/texlive/2024/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count184
)
\beamer@tempbox=\box51
\beamer@tempcount=\count185
\c@beamerpauses=\count186
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasedecode.sty
\beamer@slideinframe=\count187
\beamer@minimum=\count188
\beamer@decode@box=\box52
)
\beamer@commentbox=\box53
\beamer@modecount=\count189
)
(c:/texlive/2024/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
)
\headdp=\dimen140
\footheight=\dimen141
\sidebarheight=\dimen142
\beamer@tempdim=\dimen143
\beamer@finalheight=\dimen144
\beamer@animht=\dimen145
\beamer@animdp=\dimen146
\beamer@animwd=\dimen147
\beamer@leftmargin=\dimen148
\beamer@rightmargin=\dimen149
\beamer@leftsidebar=\dimen150
\beamer@rightsidebar=\dimen151
\beamer@boxsize=\dimen152
\beamer@vboxoffset=\dimen153
\beamer@descdefault=\dimen154
\beamer@descriptionwidth=\dimen155
\beamer@lastskip=\skip48
\beamer@areabox=\box54
\beamer@animcurrent=\box55
\beamer@animshowbox=\box56
\beamer@sectionbox=\box57
\beamer@logobox=\box58
\beamer@linebox=\box59
\beamer@sectioncount=\count190
\beamer@subsubsectionmax=\count191
\beamer@subsectionmax=\count192
\beamer@sectionmax=\count193
\beamer@totalheads=\count194
\beamer@headcounter=\count195
\beamer@partstartpage=\count196
\beamer@sectionstartpage=\count197
\beamer@subsectionstartpage=\count198
\beamer@animationtempa=\count199
\beamer@animationtempb=\count266
\beamer@xpos=\count267
\beamer@ypos=\count268
\beamer@ypos@offset=\count269
\beamer@showpartnumber=\count270
\beamer@currentsubsection=\count271
\beamer@coveringdepth=\count272
\beamer@sectionadjust=\count273
\beamer@toclastsection=\count274
\beamer@tocsectionnumber=\count275
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseoptions.sty
(c:/texlive/2024/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
))
\beamer@paperwidth=\skip49
\beamer@paperheight=\skip50
(c:/texlive/2024/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(c:/texlive/2024/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count276
\Gm@cntv=\count277
\c@Gm@tempcnt=\count278
\Gm@bindingoffset=\dimen156
\Gm@wd@mp=\dimen157
\Gm@odd@mp=\dimen158
\Gm@even@mp=\dimen159
\Gm@layoutwidth=\dimen160
\Gm@layoutheight=\dimen161
\Gm@layouthoffset=\dimen162
\Gm@layoutvoffset=\dimen163
\Gm@dimlist=\toks18
)
(c:/texlive/2024/texmf-dist/tex/latex/pgf/math/pgfmath.sty
(c:/texlive/2024/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
(c:/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks19
\pgfutil@tempdima=\dimen164
\pgfutil@tempdimb=\dimen165
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box60
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
(c:/texlive/2024/texmf-dist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2023-01-15 v3.1.10 (3.1.10)
))
(c:/texlive/2024/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
(c:/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks20
\pgfkeys@temptoks=\toks21
(c:/texlive/2024/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.co
de.tex
\pgfkeys@tmptoks=\toks22
))) (c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
\pgf@x=\dimen166
\pgf@xa=\dimen167
\pgf@xb=\dimen168
\pgf@xc=\dimen169
\pgf@y=\dimen170
\pgf@ya=\dimen171
\pgf@yb=\dimen172
\pgf@yc=\dimen173
\c@pgf@counta=\count279
\c@pgf@countb=\count280
\c@pgf@countc=\count281
\c@pgf@countd=\count282
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen174
\pgfmath@count=\count283
\pgfmath@box=\box61
\pgfmath@toks=\toks23
\pgfmath@stack@operand=\toks24
\pgfmath@stack@operation=\toks25
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.te
x)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric
.code.tex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.t
ex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.co
de.tex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.te
x)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithm
etics.code.tex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count284
)))
(c:/texlive/2024/texmf-dist/tex/latex/base/size12.clo
File: size12.clo 2023/05/17 v1.4n Standard LaTeX file (size option)
)
(c:/texlive/2024/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
(c:/texlive/2024/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(c:/texlive/2024/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(c:/texlive/2024/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(c:/texlive/2024/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 107.
(c:/texlive/2024/texmf-dist/tex/latex/graphics-def/xetex.def
File: xetex.def 2022/09/22 v5.0n Graphics/color driver for xetex
))
\Gin@req@height=\dimen175
\Gin@req@width=\dimen176
)
(c:/texlive/2024/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2023-01-15 v3.1.10 (3.1.10)
\pgf@x=\dimen177
\pgf@y=\dimen178
\pgf@xa=\dimen179
\pgf@ya=\dimen180
\pgf@xb=\dimen181
\pgf@yb=\dimen182
\pgf@xc=\dimen183
\pgf@yc=\dimen184
\pgf@xd=\dimen185
\pgf@yd=\dimen186
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count285
\c@pgf@countb=\count286
\c@pgf@countc=\count287
\c@pgf@countd=\count288
\t@pgf@toka=\toks26
\t@pgf@tokb=\toks27
\t@pgf@tokc=\toks28
\pgf@sys@id@count=\count289
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2023-01-15 v3.1.10 (3.1.10)
)
Driver file for pgf: pgfsys-xetex.def
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def
File: pgfsys-xetex.def 2023-01-15 v3.1.10 (3.1.10)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def
File: pgfsys-dvipdfmx.def 2023-01-15 v3.1.10 (3.1.10)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2023-01-15 v3.1.10 (3.1.10)
)
\pgfsys@objnum=\count290
)))
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfsyssoftpath@smallbuffer@items=\count291
\pgfsyssoftpath@bigbuffer@items=\count292
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2023-01-15 v3.1.10 (3.1.10)
)) (c:/texlive/2024/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2023/11/15 v3.01 LaTeX color extensions (UK)
(c:/texlive/2024/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: xetex.def on input line 274.
(c:/texlive/2024/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1350.
Package xcolor Info: Model `RGB' extended on input line 1366.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1368.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1371.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1372.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1373.
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2023-01-15 v3.1.10 (3.1.10)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@picminx=\dimen187
\pgf@picmaxx=\dimen188
\pgf@picminy=\dimen189
\pgf@picmaxy=\dimen190
\pgf@pathminx=\dimen191
\pgf@pathmaxx=\dimen192
\pgf@pathminy=\dimen193
\pgf@pathmaxy=\dimen194
\pgf@xx=\dimen195
\pgf@xy=\dimen196
\pgf@yx=\dimen197
\pgf@yy=\dimen198
\pgf@zx=\dimen199
\pgf@zy=\dimen256
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.cod
e.tex
File: pgfcorepathconstruct.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@path@lastx=\dimen257
\pgf@path@lasty=\dimen258
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.te
x
File: pgfcorepathusage.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@shorten@end@additional=\dimen259
\pgf@shorten@start@additional=\dimen260
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfpic=\box62
\pgf@hbox=\box63
\pgf@layerbox@main=\box64
\pgf@picture@serial@count=\count293
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code
.tex
File: pgfcoregraphicstate.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgflinewidth=\dimen261
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.c
ode.tex
File: pgfcoretransformations.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@pt@x=\dimen262
\pgf@pt@y=\dimen263
\pgf@pt@temp=\dimen264
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
File: pgfcorequick.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.co
de.tex
File: pgfcorepathprocessing.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfarrowsep=\dimen265
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgf@max=\dimen266
\pgf@sys@shading@range@num=\count294
\pgf@shadingcount=\count295
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
File: pgfcoreexternal.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfexternal@startupbox=\box65
) (c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code
.tex
File: pgfcoretransparency.code.tex 2023-01-15 v3.1.10 (3.1.10)
)
(c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2023-01-15 v3.1.10 (3.1.10)
) (c:/texlive/2024/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
File: pgfcorerdf.code.tex 2023-01-15 v3.1.10 (3.1.10)
))) (c:/texlive/2024/texmf-dist/tex/latex/pgf/utilities/xxcolor.sty
Package: xxcolor 2003/10/24 ver 0.1
\XC@nummixins=\count296
\XC@countmixins=\count297
)
(c:/texlive/2024/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
(c:/texlive/2024/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2024-01-20 v7.01h Hypertext links for LaTeX
(c:/texlive/2024/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
(c:/texlive/2024/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(c:/texlive/2024/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
(c:/texlive/2024/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
)
(c:/texlive/2024/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/texlive/2024/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 not found.
))
(c:/texlive/2024/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(c:/texlive/2024/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(c:/texlive/2024/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2023-11-26 v2.56 Cross-referencing by name of section
(c:/texlive/2024/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(c:/texlive/2024/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(c:/texlive/2024/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count298
)
\@linkdim=\dimen267
\Hy@linkcounter=\count299
\Hy@pagecounter=\count300
(c:/texlive/2024/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2024-01-20 v7.01h Hyperref: PDFDocEncoding definition (HO)
)
(c:/texlive/2024/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count301
(c:/texlive/2024/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2024-01-20 v7.01h Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Option `bookmarks' set `true' on input line 4062.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4062.
Package hyperref Info: Option `implicit' set `false' on input line 4062.
Package hyperref Info: Hyper figures OFF on input line 4179.
Package hyperref Info: Link nesting OFF on input line 4184.
Package hyperref Info: Hyper index ON on input line 4187.
Package hyperref Info: Plain pages OFF on input line 4194.
Package hyperref Info: Backreferencing OFF on input line 4199.
Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
Package hyperref Info: Bookmarks ON on input line 4446.
\c@Hy@tempcnt=\count302
(c:/texlive/2024/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4784.
\XeTeXLinkMargin=\dimen268
(c:/texlive/2024/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/texlive/2024/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count303
\Field@Width=\dimen269
\Fld@charsize=\dimen270
Package hyperref Info: Hyper figures OFF on input line 6063.
Package hyperref Info: Link nesting OFF on input line 6068.
Package hyperref Info: Hyper index ON on input line 6071.
Package hyperref Info: backreferencing OFF on input line 6078.
Package hyperref Info: Link coloring OFF on input line 6083.
Package hyperref Info: Link coloring with OCG OFF on input line 6088.
Package hyperref Info: PDF/A mode OFF on input line 6093.
\Hy@abspage=\count304
Package hyperref Message: Stopped early.
)
Package hyperref Info: Driver (autodetected): hxetex.
(c:/texlive/2024/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2024-01-20 v7.01h Hyperref driver for XeTeX
(c:/texlive/2024/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box66
\c@Hy@AnnotLevel=\count305
\HyField@AnnotCount=\count306
\Fld@listcount=\count307
\c@bookmark@seq@number=\count308
(c:/texlive/2024/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(c:/texlive/2024/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
(c:/texlive/2024/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
85.
))
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaserequires.sty
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasecompatibility.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasefont.sty
(c:/texlive/2024/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/texlive/2024/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks29
\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.
))
(c:/texlive/2024/texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty
Package: sansmathaccent 2020/01/31
(c:/texlive/2024/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2023/07/07 v3.41 KOMA-Script package (file load hooks)
(c:/texlive/2024/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
Package: scrlfile-hook 2023/07/07 v3.41 KOMA-Script package (using LaTeX hooks)
(c:/texlive/2024/texmf-dist/tex/latex/koma-script/scrlogo.sty
Package: scrlogo 2023/07/07 v3.41 KOMA-Script package (logo)
)))))
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasetranslator.sty
(c:/texlive/2024/texmf-dist/tex/latex/translator/translator.sty
Package: translator 2021-05-31 v1.12d Easy translation of strings in LaTeX
))
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasemisc.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseoverlay.sty
\beamer@argscount=\count309
\beamer@lastskipcover=\skip51
\beamer@trivlistdepth=\count310
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasetitle.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasesection.sty
\c@lecture=\count311
\c@part=\count312
\c@section=\count313
\c@subsection=\count314
\c@subsubsection=\count315
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseframe.sty
\beamer@framebox=\box67
\beamer@frametitlebox=\box68
\beamer@zoombox=\box69
\beamer@zoomcount=\count316
\beamer@zoomframecount=\count317
\beamer@frametextheight=\dimen271
\c@subsectionslide=\count318
\beamer@frametopskip=\skip52
\beamer@framebottomskip=\skip53
\beamer@frametopskipautobreak=\skip54
\beamer@framebottomskipautobreak=\skip55
\beamer@envbody=\toks30
\framewidth=\dimen272
\c@framenumber=\count319
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty
\beamer@verbatimfileout=\write4
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseframesize.sty
\beamer@splitbox=\box70
\beamer@autobreakcount=\count320
\beamer@autobreaklastheight=\dimen273
\beamer@frametitletoks=\toks31
\beamer@framesubtitletoks=\toks32
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseframecomponents.sty
\beamer@footins=\box71
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasecolor.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasenotes.sty
\beamer@frameboxcopy=\box72
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasetoc.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasetemplates.sty
\beamer@sbttoks=\toks33
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaseboxes.sty
\bmb@box=\box73
\bmb@colorbox=\box74
\bmb@boxwidth=\dimen274
\bmb@boxheight=\dimen275
\bmb@prevheight=\dimen276
\bmb@temp=\dimen277
\bmb@dima=\dimen278
\bmb@dimb=\dimen279
\bmb@prevheight=\dimen280
)
\beamer@blockheadheight=\dimen281
))
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbaselocalstructure.sty
(c:/texlive/2024/texmf-dist/tex/latex/tools/enumerate.sty
Package: enumerate 2023/07/04 v3.00 enumerate extensions (DPC)
\@enLab=\toks34
)
\beamer@bibiconwidth=\skip56
\c@figure=\count321
\c@table=\count322
\abovecaptionskip=\skip57
\belowcaptionskip=\skip58
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasenavigation.sty
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasenavigationsymbols.tex)
\beamer@section@min@dim=\dimen282
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasetheorems.sty
(c:/texlive/2024/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2023/05/13 v2.17o AMS math features
\@mathmargin=\skip59
For additional information on amsmath, use the `?' option.
(c:/texlive/2024/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(c:/texlive/2024/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks35
\ex@=\dimen283
))
(c:/texlive/2024/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen284
)
(c:/texlive/2024/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count323
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count324
\leftroot@=\count325
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count326
\DOTSCASE@=\count327
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box75
\strutbox@=\box76
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen285
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count328
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count329
\dotsspace@=\muskip17
\c@parentequation=\count330
\dspbrk@lvl=\count331
\tag@help=\toks36
\row@=\count332
\column@=\count333
\maxfields@=\count334
\andhelp@=\toks37
\eqnshift@=\dimen286
\alignsep@=\dimen287
\tagshift@=\dimen288
\tagwidth@=\dimen289
\totwidth@=\dimen290
\lineht@=\dimen291
\@envbody=\toks38
\multlinegap=\skip60
\multlinetaggap=\skip61
\mathdisplay@stack=\toks39
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
)
(c:/texlive/2024/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks40
\thm@bodyfont=\toks41
\thm@headfont=\toks42
\thm@notefont=\toks43
\thm@headpunct=\toks44
\thm@preskip=\skip62
\thm@postskip=\skip63
\thm@headsep=\skip64
\dth@everypar=\toks45
)
\c@theorem=\count335
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerbasethemes.sty))
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerthemedefault.sty
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerfontthemedefault.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamercolorthemedefault.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerinnerthemedefault.sty
\beamer@dima=\dimen292
\beamer@dimb=\dimen293
)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerouterthemedefault.sty)))
(./beamerthemeChalkBoard.sty
Package: beamerthemeChalkBoard
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamercolorthemestructure.sty)
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerfontthemestructurebold.sty)
(c:/texlive/2024/texmf-dist/tex/latex/fontspec/fontspec.sty
(c:/texlive/2024/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(c:/texlive/2024/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2024-02-20 L3 programming layer (loader)
(c:/texlive/2024/texmf-dist/tex/latex/l3backend/l3backend-xetex.def
File: l3backend-xetex.def 2024-02-20 L3 backend support: XeTeX
\g__graphics_track_int=\count336
\l__pdf_internal_box=\box77
\g__pdf_backend_object_int=\count337
\g__pdf_backend_annotation_int=\count338
\g__pdf_backend_link_int=\count339
))
Package: xparse 2024-02-18 L3 Experimental document command parser
)
Package: fontspec 2024/02/13 v2.9a Font selection for XeLaTeX and LuaLaTeX
(c:/texlive/2024/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2024/02/13 v2.9a Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count340
\l__fontspec_language_int=\count341
\l__fontspec_strnum_int=\count342
\l__fontspec_tmp_int=\count343
\l__fontspec_tmpa_int=\count344
\l__fontspec_tmpb_int=\count345
\l__fontspec_tmpc_int=\count346
\l__fontspec_em_int=\count347
\l__fontspec_emdef_int=\count348
\l__fontspec_strong_int=\count349
\l__fontspec_strongdef_int=\count350
\l__fontspec_tmpa_dim=\dimen294
\l__fontspec_tmpb_dim=\dimen295
\l__fontspec_tmpc_dim=\dimen296
(c:/texlive/2024/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(c:/texlive/2024/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
Package fontspec Info: Font family 'KhmerOSFreehand(0)' created for font
(fontspec) 'Khmer OS Freehand' with options
(fontspec) [Ligatures=TeX,Script=Khmer,Ligatures=TeX,BoldFont=*,Ita
licFont=*,BoldItalicFont=*,AutoFakeBold=1.5,AutoFakeSlant=0.25].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;embolden=1.5;mappi
ng=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;slant=0.25;mapping
=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;embolden=1.5;slant
=0.25;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
Package fontspec Info: Font family 'KhmerOSFreehand(1)' created for font
(fontspec) 'Khmer OS Freehand' with options
(fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=Word
Space,Script=Khmer,Ligatures=TeX,BoldFont=*,ItalicFont=*,BoldItalicFont=*,AutoF
akeBold=1.5,AutoFakeSlant=0.25].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;embolden=1.5;mappi
ng=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;slant=0.25;mapping
=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=dflt;embolden=1.5;slant
=0.25;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(c:/texlive/2024/texmf-dist/tex/latex/beamer/beamerfontthemeprofessionalfonts.s
ty) (c:/texlive/2024/texmf-dist/tex/latex/newpx/newpxmath.sty
Package: newpxmath 2023/11/08 v1.533
`newpxmath' v1.533, 2023/11/08 Math macros based on pxfonts (msharpe)
(c:/texlive/2024/texmf-dist/tex/generic/kastrup/binhex.tex)
(c:/texlive/2024/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(c:/texlive/2024/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(c:/texlive/2024/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks46
\XKV@tempa@toks=\toks47
)
\XKV@depth=\count351
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(c:/texlive/2024/texmf-dist/tex/latex/oberdiek/centernot.sty
Package: centernot 2016/05/16 v1.4 Centers the not symbol horizontally (HO)
)
\px@tA=\toks48
\px@tB=\toks49
\px@su=\read3
\px@Isdigit=\count352
amsthm NOT loaded
LaTeX Font Info: Redeclaring symbol font `operators' on input line 222.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/KhmerOSFreehand(0)/m/n on input lin
e 222.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/KhmerOSFreehand(0)/m/n on input li
ne 222.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/KhmerOSFreehand(0)/m/n --> OT1/KhmerOSFreehand(0)/b
/n on input line 223.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 226.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/KhmerOSFreehand(0)/m/n on input lin
e 226.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/KhmerOSFreehand(0)/m/n on input li
ne 226.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 227.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/KhmerOSFreehand(0)/m/it on input l
ine 227.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/KhmerOSFreehand(0)/m/it on input
line 227.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 228.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/KhmerOSFreehand(1)/m/n on input lin
e 228.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/KhmerOSFreehand(1)/m/n on input lin
e 228.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 230.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/KhmerOSFreehand(0)/b/n on input li
ne 230.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/KhmerOSFreehand(0)/b/n on input li
ne 230.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/KhmerOSFreehand(0)/m/it --> OT1/KhmerOSFreehand(0)/
b/it on input line 231.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) TU/KhmerOSFreehand(0)/m/n --> TU/KhmerOSFreehand(0)/b/n
on input line 233.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) TU/KhmerOSFreehand(1)/m/n --> TU/KhmerOSFreehand(1)/b/n
on input line 234.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 245.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/npxmi/m/it on input line 245.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/npxmi/m/it on input line 245.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/npxmi/m/it --> OML/npxmi/b/it on input line 246.
\symlettersA=\mathgroup6
LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold'
(Font) U/npxmia/m/it --> U/npxmia/b/it on input line 264.
LaTeX Font Info: Redeclaring math alphabet \mathfrak on input line 266.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 274.
LaTeX Font Info: Encoding `OMS' has changed to `LMS' for symbol font
(Font) `symbols' in the math version `normal' on input line 274.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> LMS/npxsy/m/n on input line 274.
LaTeX Font Info: Encoding `OMS' has changed to `LMS' for symbol font
(Font) `symbols' in the math version `bold' on input line 274.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> LMS/npxsy/m/n on input line 274.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) LMS/npxsy/m/n --> LMS/npxsy/b/n on input line 275.
\symAMSm=\mathgroup7
LaTeX Font Info: Overwriting symbol font `AMSm' in version `bold'
(Font) U/npxsym/m/n --> U/npxsym/b/n on input line 295.
\symsymbolsC=\mathgroup8
LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold'
(Font) U/npxsyc/m/n --> U/npxsyc/b/n on input line 317.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 337.
LaTeX Font Info: Encoding `OMX' has changed to `LMX' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 3
37.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> LMX/npxexx/m/n on input line 337.
LaTeX Font Info: Encoding `OMX' has changed to `LMX' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 337
.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> LMX/npxexx/m/n on input line 337.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) LMX/npxexx/m/n --> LMX/npxexx/b/n on input line 338.
\symlargesymbolsPXA=\mathgroup9
LaTeX Font Info: Overwriting symbol font `largesymbolsPXA' in version `bold'
(Font) U/npxexa/m/n --> U/npxexa/b/n on input line 345.
\px@cntz=\count353
\px@IsAlNum=\count354
\px@sbptoks=\toks50
LaTeX Font Info: Redeclaring math delimiter \lfloor on input line 500.
LaTeX Font Info: Redeclaring math delimiter \rfloor on input line 501.
LaTeX Font Info: Redeclaring math delimiter \lceil on input line 502.
LaTeX Font Info: Redeclaring math delimiter \rceil on input line 503.
LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 508.
LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 509.
LaTeX Font Info: Redeclaring math delimiter \langle on input line 511.
LaTeX Font Info: Redeclaring math delimiter \rangle on input line 513.
LaTeX Font Info: Redeclaring math delimiter \arrowvert on input line 517.
LaTeX Font Info: Redeclaring math delimiter \vert on input line 518.
LaTeX Font Info: Redeclaring math symbol \parallel on input line 519.
LaTeX Font Info: Redeclaring math delimiter \Arrowvert on input line 520.
LaTeX Font Info: Redeclaring math accent \grave on input line 560.
LaTeX Font Info: Redeclaring math accent \acute on input line 561.
LaTeX Font Info: Redeclaring math accent \hat on input line 562.
LaTeX Font Info: Redeclaring math accent \tilde on input line 563.
LaTeX Font Info: Redeclaring math accent \bar on input line 564.
LaTeX Font Info: Redeclaring math accent \breve on input line 565.
LaTeX Font Info: Redeclaring math accent \mathring on input line 566.
LaTeX Font Info: Redeclaring math accent \check on input line 567.
LaTeX Font Info: Redeclaring math accent \dot on input line 571.
LaTeX Font Info: Redeclaring math accent \ddot on input line 572.
LaTeX Font Info: Redeclaring math accent \vec on input line 1617.
LaTeX Info: Redefining \Bbbk on input line 2194.
LaTeX Info: Redefining \not on input line 2476.
LaTeX Info: Redefining \textsquare on input line 2491.
LaTeX Info: Redefining \openbox on input line 2493.
) (c:/texlive/2024/texmf-dist/tex/latex/cancel/cancel.sty
Package: cancel 2013/04/12 v2.2 Cancel math terms
)) (./limit01.aux)
\openout1 = `limit01.aux'.
LaTeX Font Info: Checking defaults for OML/npxmi/m/it on input line 3.
LaTeX Font Info: Trying to load font information for OML+npxmi on input line
3.
(c:/texlive/2024/texmf-dist/tex/latex/newpx/omlnpxmi.fd
File: omlnpxmi.fd 2013/03/21 Fontinst v1.933 font definitions for OML/npxmi.
)
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 3.
LaTeX Font Info: Trying to load font information for TS1+cmr on input line 3
.
(c:/texlive/2024/texmf-dist/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 2023/04/13 v2.5m Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for U/npxexa/m/n on input line 3.
LaTeX Font Info: Trying to load font information for U+npxexa on input line
3.
(c:/texlive/2024/texmf-dist/tex/latex/newpx/unpxexa.fd
File: unpxexa.fd 2013/03/24 Fontinst v1.933 font definitions for U/npxexa.
)
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for LMS/npxsy/m/n on input line 3.