-
Notifications
You must be signed in to change notification settings - Fork 0
/
limit03.log
1307 lines (1216 loc) · 50.3 KB
/
limit03.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.14159265-2.6-0.999991 (TeX Live 2019/W32TeX) (preloaded format=xelatex 2019.5.22) 20 OCT 2019 22:44
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**limit03.tex
(./limit03.tex
LaTeX2e <2018-12-01>
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamer.cls
Document Class: beamer 2018/12/02 v3.55 A class for typesetting presentations
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasemodes.sty
(c:/texlive/2019/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count80
)
\beamer@tempbox=\box27
\beamer@tempcount=\count81
\c@beamerpauses=\count82
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasedecode.sty
\beamer@slideinframe=\count83
\beamer@minimum=\count84
)
\beamer@commentbox=\box28
\beamer@modecount=\count85
)
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch
)
\headdp=\dimen102
\footheight=\dimen103
\sidebarheight=\dimen104
\beamer@tempdim=\dimen105
\beamer@finalheight=\dimen106
\beamer@animht=\dimen107
\beamer@animdp=\dimen108
\beamer@animwd=\dimen109
\beamer@leftmargin=\dimen110
\beamer@rightmargin=\dimen111
\beamer@leftsidebar=\dimen112
\beamer@rightsidebar=\dimen113
\beamer@boxsize=\dimen114
\beamer@vboxoffset=\dimen115
\beamer@descdefault=\dimen116
\beamer@descriptionwidth=\dimen117
\beamer@lastskip=\skip41
\beamer@areabox=\box29
\beamer@animcurrent=\box30
\beamer@animshowbox=\box31
\beamer@sectionbox=\box32
\beamer@logobox=\box33
\beamer@linebox=\box34
\beamer@sectioncount=\count86
\beamer@subsubsectionmax=\count87
\beamer@subsectionmax=\count88
\beamer@sectionmax=\count89
\beamer@totalheads=\count90
\beamer@headcounter=\count91
\beamer@partstartpage=\count92
\beamer@sectionstartpage=\count93
\beamer@subsectionstartpage=\count94
\beamer@animationtempa=\count95
\beamer@animationtempb=\count96
\beamer@xpos=\count97
\beamer@ypos=\count98
\beamer@ypos@offset=\count99
\beamer@showpartnumber=\count100
\beamer@currentsubsection=\count101
\beamer@coveringdepth=\count102
\beamer@sectionadjust=\count103
\beamer@tocsectionnumber=\count104
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseoptions.sty
(c:/texlive/2019/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
))
\beamer@paperwidth=\skip42
\beamer@paperheight=\skip43
(c:/texlive/2019/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2018/04/16 v5.8 Page Geometry
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
(c:/texlive/2019/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count105
\Gm@cntv=\count106
\c@Gm@tempcnt=\count107
\Gm@bindingoffset=\dimen118
\Gm@wd@mp=\dimen119
\Gm@odd@mp=\dimen120
\Gm@even@mp=\dimen121
\Gm@layoutwidth=\dimen122
\Gm@layoutheight=\dimen123
\Gm@layouthoffset=\dimen124
\Gm@layoutvoffset=\dimen125
\Gm@dimlist=\toks15
)
(c:/texlive/2019/texmf-dist/tex/latex/base/size12.clo
File: size12.clo 2018/09/03 v1.4i Standard LaTeX file (size option)
)
(c:/texlive/2019/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
(c:/texlive/2019/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
(c:/texlive/2019/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
(c:/texlive/2019/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(c:/texlive/2019/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 99.
(c:/texlive/2019/texmf-dist/tex/latex/graphics-def/xetex.def
File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex
))
\Gin@req@height=\dimen126
\Gin@req@width=\dimen127
)
(c:/texlive/2019/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
(c:/texlive/2019/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
(c:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks16
\pgfutil@tempdima=\dimen128
\pgfutil@tempdimb=\dimen129
(c:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)
) (c:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box35
(c:/texlive/2019/texmf-dist/tex/latex/ms/everyshi.sty
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
(c:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
(c:/texlive/2019/texmf-dist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2019/02/02 v3.1.1 (3.1.1)
))
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2019/02/02 v3.1.1 (3.1.1)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks17
\pgfkeys@temptoks=\toks18
(c:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex
\pgfkeys@tmptoks=\toks19
))
\pgf@x=\dimen130
\pgf@y=\dimen131
\pgf@xa=\dimen132
\pgf@ya=\dimen133
\pgf@xb=\dimen134
\pgf@yb=\dimen135
\pgf@xc=\dimen136
\pgf@yc=\dimen137
\w@pgf@writea=\write3
\r@pgf@reada=\read1
\c@pgf@counta=\count108
\c@pgf@countb=\count109
\c@pgf@countc=\count110
\c@pgf@countd=\count111
\t@pgf@toka=\toks20
\t@pgf@tokb=\toks21
\t@pgf@tokc=\toks22
\pgf@sys@id@count=\count112
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2019/02/02 v3.1.1 (3.1.1)
)
Driver file for pgf: pgfsys-xetex.def
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def
File: pgfsys-xetex.def 2019/02/02 v3.1.1 (3.1.1)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def
File: pgfsys-dvipdfmx.def 2019/02/02 v3.1.1 (3.1.1)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2019/02/02 v3.1.1 (3.1.1)
)
\pgfsys@objnum=\count113
)))
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgfsyssoftpath@smallbuffer@items=\count114
\pgfsyssoftpath@bigbuffer@items=\count115
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2019/02/02 v3.1.1 (3.1.1)
)) (c:/texlive/2019/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(c:/texlive/2019/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 225.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
Package: pgfcore 2019/02/02 v3.1.1 (3.1.1)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
\pgfmath@dimen=\dimen138
\pgfmath@count=\count116
\pgfmath@box=\box36
\pgfmath@toks=\toks23
\pgfmath@stack@operand=\toks24
\pgfmath@stack@operation=\toks25
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.te
x)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric
.code.tex)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.t
ex)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.co
de.tex)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.te
x)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithm
etics.code.tex)))
(c:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count117
))
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
File: pgfcorepoints.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgf@picminx=\dimen139
\pgf@picmaxx=\dimen140
\pgf@picminy=\dimen141
\pgf@picmaxy=\dimen142
\pgf@pathminx=\dimen143
\pgf@pathmaxx=\dimen144
\pgf@pathminy=\dimen145
\pgf@pathmaxy=\dimen146
\pgf@xx=\dimen147
\pgf@xy=\dimen148
\pgf@yx=\dimen149
\pgf@yy=\dimen150
\pgf@zx=\dimen151
\pgf@zy=\dimen152
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.cod
e.tex
File: pgfcorepathconstruct.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgf@path@lastx=\dimen153
\pgf@path@lasty=\dimen154
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.te
x
File: pgfcorepathusage.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgf@shorten@end@additional=\dimen155
\pgf@shorten@start@additional=\dimen156
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
File: pgfcorescopes.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgfpic=\box37
\pgf@hbox=\box38
\pgf@layerbox@main=\box39
\pgf@picture@serial@count=\count118
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code
.tex
File: pgfcoregraphicstate.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgflinewidth=\dimen157
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.c
ode.tex
File: pgfcoretransformations.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgf@pt@x=\dimen158
\pgf@pt@y=\dimen159
\pgf@pt@temp=\dimen160
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
File: pgfcorequick.code.tex 2019/02/02 v3.1.1 (3.1.1)
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2019/02/02 v3.1.1 (3.1.1)
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.co
de.tex
File: pgfcorepathprocessing.code.tex 2019/02/02 v3.1.1 (3.1.1)
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
File: pgfcorearrows.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgfarrowsep=\dimen161
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
File: pgfcoreshade.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgf@max=\dimen162
\pgf@sys@shading@range@num=\count119
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
File: pgfcoreimage.code.tex 2019/02/02 v3.1.1 (3.1.1)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
File: pgfcoreexternal.code.tex 2019/02/02 v3.1.1 (3.1.1)
\pgfexternal@startupbox=\box40
))
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
File: pgfcorelayers.code.tex 2019/02/02 v3.1.1 (3.1.1)
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code
.tex
File: pgfcoretransparency.code.tex 2019/02/02 v3.1.1 (3.1.1)
)
(c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2019/02/02 v3.1.1 (3.1.1)
) (c:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
File: pgfcorerdf.code.tex 2019/02/02 v3.1.1 (3.1.1)
))) (c:/texlive/2019/texmf-dist/tex/latex/pgf/utilities/xxcolor.sty
Package: xxcolor 2003/10/24 ver 0.1
\XC@nummixins=\count120
\XC@countmixins=\count121
)
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/atbegshi.sty
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
)
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
))
(c:/texlive/2019/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2018/11/30 v6.88e Hypertext links for LaTeX
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
Package hobsub Info: Skipping package `infwarerr' (already loaded).
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
Package hobsub Info: Skipping package `ifvtex' (already loaded).
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: pdfTeX >= 1.30 not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode not found.
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
)
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
Package: xcolor-patch 2016/05/16 xcolor patch
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
Package hobsub Info: Skipping package `atbegshi' (already loaded).
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
)
(c:/texlive/2019/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
(c:/texlive/2019/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
)
\@linkdim=\dimen163
\Hy@linkcounter=\count122
\Hy@pagecounter=\count123
(c:/texlive/2019/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2018/11/30 v6.88e Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count124
(c:/texlive/2019/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `bookmarks' set `true' on input line 4393.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4393.
Package hyperref Info: Option `implicit' set `false' on input line 4393.
Package hyperref Info: Hyper figures OFF on input line 4519.
Package hyperref Info: Link nesting OFF on input line 4524.
Package hyperref Info: Hyper index ON on input line 4527.
Package hyperref Info: Plain pages OFF on input line 4534.
Package hyperref Info: Backreferencing OFF on input line 4539.
Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
Package hyperref Info: Bookmarks ON on input line 4772.
\c@Hy@tempcnt=\count125
(c:/texlive/2019/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip10
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5125.
\XeTeXLinkMargin=\dimen164
\Fld@menulength=\count126
\Field@Width=\dimen165
\Fld@charsize=\dimen166
Package hyperref Info: Hyper figures OFF on input line 6380.
Package hyperref Info: Link nesting OFF on input line 6385.
Package hyperref Info: Hyper index ON on input line 6388.
Package hyperref Info: backreferencing OFF on input line 6395.
Package hyperref Info: Link coloring OFF on input line 6400.
Package hyperref Info: Link coloring with OCG OFF on input line 6405.
Package hyperref Info: PDF/A mode OFF on input line 6410.
LaTeX Info: Redefining \ref on input line 6450.
LaTeX Info: Redefining \pageref on input line 6454.
\Hy@abspage=\count127
Package hyperref Message: Stopped early.
)
Package hyperref Info: Driver (autodetected): hxetex.
(c:/texlive/2019/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2018/11/30 v6.88e Hyperref driver for XeTeX
(c:/texlive/2019/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2018/11/30 v6.88e Hyperref: PDF Unicode definition (HO)
)
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/stringenc.sty
Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box41
\c@Hy@AnnotLevel=\count128
\HyField@AnnotCount=\count129
\Fld@listcount=\count130
\c@bookmark@seq@number=\count131
(c:/texlive/2019/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
))
(c:/texlive/2019/texmf-dist/tex/generic/oberdiek/se-ascii-print.def
File: se-ascii-print.def 2016/05/16 v1.11 stringenc: Printable ASCII characters
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaserequires.sty
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasecompatibility.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasefont.sty
(c:/texlive/2019/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/texlive/2019/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks26
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
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/2019/texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty
Package: sansmathaccent 2013/03/28
(c:/texlive/2019/texmf-dist/tex/latex/filehook/filehook.sty
Package: filehook 2011/10/12 v0.5d Hooks for input files
)))
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetranslator.sty
(c:/texlive/2019/texmf-dist/tex/latex/translator/translator.sty
Package: translator 2018/01/04 v1.12 Easy translation of strings in LaTeX
))
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasemisc.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseoverlay.sty
\beamer@argscount=\count132
\beamer@lastskipcover=\skip44
\beamer@trivlistdepth=\count133
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetitle.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasesection.sty
\c@lecture=\count134
\c@part=\count135
\c@section=\count136
\c@subsection=\count137
\c@subsubsection=\count138
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseframe.sty
\beamer@framebox=\box42
\beamer@frametitlebox=\box43
\beamer@zoombox=\box44
\beamer@zoomcount=\count139
\beamer@zoomframecount=\count140
\beamer@frametextheight=\dimen167
\c@subsectionslide=\count141
\beamer@frametopskip=\skip45
\beamer@framebottomskip=\skip46
\beamer@frametopskipautobreak=\skip47
\beamer@framebottomskipautobreak=\skip48
\beamer@envbody=\toks27
\framewidth=\dimen168
\c@framenumber=\count142
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty
\beamer@verbatimfileout=\write4
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseframesize.sty
\beamer@splitbox=\box45
\beamer@autobreakcount=\count143
\beamer@autobreaklastheight=\dimen169
\beamer@frametitletoks=\toks28
\beamer@framesubtitletoks=\toks29
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseframecomponents.sty
\beamer@footins=\box46
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasecolor.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasenotes.sty
\beamer@frameboxcopy=\box47
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetoc.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetemplates.sty
\beamer@sbttoks=\toks30
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseboxes.sty
\bmb@box=\box48
\bmb@colorbox=\box49
\bmb@boxshadow=\box50
\bmb@boxshadowball=\box51
\bmb@boxshadowballlarge=\box52
\bmb@temp=\dimen170
\bmb@dima=\dimen171
\bmb@dimb=\dimen172
\bmb@prevheight=\dimen173
)
\beamer@blockheadheight=\dimen174
))
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaselocalstructure.sty
(c:/texlive/2019/texmf-dist/tex/latex/tools/enumerate.sty
Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
\@enLab=\toks31
)
\c@figure=\count144
\c@table=\count145
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasenavigation.sty
\beamer@section@min@dim=\dimen175
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetheorems.sty
(c:/texlive/2019/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2018/12/01 v2.17b AMS math features
\@mathmargin=\skip51
For additional information on amsmath, use the `?' option.
(c:/texlive/2019/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(c:/texlive/2019/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks32
\ex@=\dimen176
))
(c:/texlive/2019/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen177
)
(c:/texlive/2019/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count146
LaTeX Info: Redefining \frac on input line 223.
\uproot@=\count147
\leftroot@=\count148
LaTeX Info: Redefining \overline on input line 385.
\classnum@=\count149
\DOTSCASE@=\count150
LaTeX Info: Redefining \ldots on input line 482.
LaTeX Info: Redefining \dots on input line 485.
LaTeX Info: Redefining \cdots on input line 606.
\Mathstrutbox@=\box53
\strutbox@=\box54
\big@size=\dimen178
LaTeX Font Info: Redeclaring font encoding OML on input line 729.
LaTeX Font Info: Redeclaring font encoding OMS on input line 730.
\macc@depth=\count151
\c@MaxMatrixCols=\count152
\dotsspace@=\muskip11
\c@parentequation=\count153
\dspbrk@lvl=\count154
\tag@help=\toks33
\row@=\count155
\column@=\count156
\maxfields@=\count157
\andhelp@=\toks34
\eqnshift@=\dimen179
\alignsep@=\dimen180
\tagshift@=\dimen181
\tagwidth@=\dimen182
\totwidth@=\dimen183
\lineht@=\dimen184
\@envbody=\toks35
\multlinegap=\skip52
\multlinetaggap=\skip53
\mathdisplay@stack=\toks36
LaTeX Info: Redefining \[ on input line 2844.
LaTeX Info: Redefining \] on input line 2845.
)
(c:/texlive/2019/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2017/10/31 v2.20.4
\thm@style=\toks37
\thm@bodyfont=\toks38
\thm@headfont=\toks39
\thm@notefont=\toks40
\thm@headpunct=\toks41
\thm@preskip=\skip54
\thm@postskip=\skip55
\thm@headsep=\skip56
\dth@everypar=\toks42
)
\c@theorem=\count158
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasethemes.sty))
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerthemedefault.sty
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerfontthemedefault.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamercolorthemedefault.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerinnerthemedefault.sty
\beamer@dima=\dimen185
\beamer@dimb=\dimen186
)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerouterthemedefault.sty)))
(./beamerthemeChalkBoard.sty
Package: beamerthemeChalkBoard
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamercolorthemestructure.sty)
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerfontthemestructurebold.sty)
(c:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty
(c:/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(c:/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2019-04-06 L3 programming layer (loader)
(c:/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2019-04-06 L3 programming layer (code)
\c_max_int=\count159
\l_tmpa_int=\count160
\l_tmpb_int=\count161
\g_tmpa_int=\count162
\g_tmpb_int=\count163
\g__kernel_prg_map_int=\count164
\c__ior_term_ior=\count165
\c_log_iow=\count166
\l_iow_line_count_int=\count167
\l__iow_line_target_int=\count168
\l__iow_one_indent_int=\count169
\l__iow_indent_int=\count170
\c_zero_dim=\dimen187
\c_max_dim=\dimen188
\l_tmpa_dim=\dimen189
\l_tmpb_dim=\dimen190
\g_tmpa_dim=\dimen191
\g_tmpb_dim=\dimen192
\c_zero_skip=\skip57
\c_max_skip=\skip58
\l_tmpa_skip=\skip59
\l_tmpb_skip=\skip60
\g_tmpa_skip=\skip61
\g_tmpb_skip=\skip62
\c_zero_muskip=\muskip12
\c_max_muskip=\muskip13
\l_tmpa_muskip=\muskip14
\l_tmpb_muskip=\muskip15
\g_tmpa_muskip=\muskip16
\g_tmpb_muskip=\muskip17
\l_keys_choice_int=\count171
\l__intarray_loop_int=\count172
\c__intarray_sp_dim=\dimen193
\g__intarray_font_int=\count173
\c__fp_leading_shift_int=\count174
\c__fp_middle_shift_int=\count175
\c__fp_trailing_shift_int=\count176
\c__fp_big_leading_shift_int=\count177
\c__fp_big_middle_shift_int=\count178
\c__fp_big_trailing_shift_int=\count179
\c__fp_Bigg_leading_shift_int=\count180
\c__fp_Bigg_middle_shift_int=\count181
\c__fp_Bigg_trailing_shift_int=\count182
\g__fp_array_int=\count183
\l__fp_array_loop_int=\count184
\l__sort_length_int=\count185
\l__sort_min_int=\count186
\l__sort_top_int=\count187
\l__sort_max_int=\count188
\l__sort_true_max_int=\count189
\l__sort_block_int=\count190
\l__sort_begin_int=\count191
\l__sort_end_int=\count192
\l__sort_A_int=\count193
\l__sort_B_int=\count194
\l__sort_C_int=\count195
\l__tl_analysis_normal_int=\count196
\l__tl_analysis_index_int=\count197
\l__tl_analysis_nesting_int=\count198
\l__tl_analysis_type_int=\count199
\l__regex_internal_a_int=\count266
\l__regex_internal_b_int=\count267
\l__regex_internal_c_int=\count268
\l__regex_balance_int=\count269
\l__regex_group_level_int=\count270
\l__regex_mode_int=\count271
\c__regex_cs_in_class_mode_int=\count272
\c__regex_cs_mode_int=\count273
\l__regex_catcodes_int=\count274
\l__regex_default_catcodes_int=\count275
\c__regex_catcode_L_int=\count276
\c__regex_catcode_O_int=\count277
\c__regex_catcode_A_int=\count278
\c__regex_all_catcodes_int=\count279
\l__regex_show_lines_int=\count280
\l__regex_min_state_int=\count281
\l__regex_max_state_int=\count282
\l__regex_left_state_int=\count283
\l__regex_right_state_int=\count284
\l__regex_capturing_group_int=\count285
\l__regex_min_pos_int=\count286
\l__regex_max_pos_int=\count287
\l__regex_curr_pos_int=\count288
\l__regex_start_pos_int=\count289
\l__regex_success_pos_int=\count290
\l__regex_curr_char_int=\count291
\l__regex_curr_catcode_int=\count292
\l__regex_last_char_int=\count293
\l__regex_case_changed_char_int=\count294
\l__regex_curr_state_int=\count295
\l__regex_step_int=\count296
\l__regex_min_active_int=\count297
\l__regex_max_active_int=\count298
\l__regex_replacement_csnames_int=\count299
\l__regex_match_count_int=\count300
\l__regex_min_submatch_int=\count301
\l__regex_submatch_int=\count302
\l__regex_zeroth_submatch_int=\count303
\g__regex_trace_regex_int=\count304
\c_empty_box=\box55
\l_tmpa_box=\box56
\l_tmpb_box=\box57
\g_tmpa_box=\box58
\g_tmpb_box=\box59
\l__box_top_dim=\dimen194
\l__box_bottom_dim=\dimen195
\l__box_left_dim=\dimen196
\l__box_right_dim=\dimen197
\l__box_top_new_dim=\dimen198
\l__box_bottom_new_dim=\dimen199
\l__box_left_new_dim=\dimen256
\l__box_right_new_dim=\dimen257
\l__box_internal_box=\box60
\l__coffin_internal_box=\box61
\l__coffin_internal_dim=\dimen258
\l__coffin_offset_x_dim=\dimen259
\l__coffin_offset_y_dim=\dimen260
\l__coffin_x_dim=\dimen261
\l__coffin_y_dim=\dimen262
\l__coffin_x_prime_dim=\dimen263
\l__coffin_y_prime_dim=\dimen264
\c_empty_coffin=\box62
\l__coffin_aligned_coffin=\box63
\l__coffin_aligned_internal_coffin=\box64
\l_tmpa_coffin=\box65
\l_tmpb_coffin=\box66
\g_tmpa_coffin=\box67
\g_tmpb_coffin=\box68
\l__coffin_bounding_shift_dim=\dimen265
\l__coffin_left_corner_dim=\dimen266
\l__coffin_right_corner_dim=\dimen267
\l__coffin_bottom_corner_dim=\dimen268
\l__coffin_top_corner_dim=\dimen269
\l__coffin_scaled_total_height_dim=\dimen270
\l__coffin_scaled_width_dim=\dimen271
\c__coffin_empty_coffin=\box69
\l__coffin_display_coffin=\box70
\l__coffin_display_coord_coffin=\box71
\l__coffin_display_pole_coffin=\box72
\l__coffin_display_offset_dim=\dimen272
\l__coffin_display_x_dim=\dimen273
\l__coffin_display_y_dim=\dimen274
\g__file_internal_ior=\read2
\l__seq_internal_a_int=\count305
\l__seq_internal_b_int=\count306
\c__deprecation_minus_one=\count307
)
(c:/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def
File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx
\g__driver_image_int=\count308
\g__driver_pdf_object_int=\count309
))
Package: xparse 2019-03-05 L3 Experimental document command parser
\l__xparse_current_arg_int=\count310
\g__xparse_grabber_int=\count311
\l__xparse_m_args_int=\count312
\l__xparse_v_nesting_int=\count313
)
Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX
(c:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count314
\l__fontspec_language_int=\count315
\l__fontspec_strnum_int=\count316
\l__fontspec_tmp_int=\count317
\l__fontspec_tmpa_int=\count318
\l__fontspec_tmpb_int=\count319
\l__fontspec_tmpc_int=\count320
\l__fontspec_em_int=\count321
\l__fontspec_emdef_int=\count322
\l__fontspec_strong_int=\count323
\l__fontspec_strongdef_int=\count324
\l__fontspec_tmpa_dim=\dimen275
\l__fontspec_tmpb_dim=\dimen276
\l__fontspec_tmpc_dim=\dimen277
(c:/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2018/08/11 v2.0j Standard LaTeX package
(c:/texlive/2019/texmf-dist/tex/latex/base/tuenc.def
File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TU on input line 82.
))
(c:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg)
LaTeX Info: Redefining \itshape on input line 4051.
LaTeX Info: Redefining \slshape on input line 4056.
LaTeX Info: Redefining \scshape on input line 4061.
LaTeX Info: Redefining \upshape on input line 4066.
LaTeX Info: Redefining \em on input line 4096.
LaTeX Info: Redefining \emph on input line 4121.
LaTeX Font Info: Font shape `TU/lmss/m/it' in size <12> not available
(Font) Font shape `TU/lmss/m/sl' tried instead on input line 4171.
))
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' (bx/n) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=DFLT;embolden=1.5;mappi
ng=tex-text;"
(fontspec) - 'bold small caps' (bx/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/itsc) with NFSS spec.:
(fontspec) - 'bold italic' (bx/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' (bx/itsc) with NFSS spec.:
LaTeX Info: Redefining \rmfamily on input line 70.
LaTeX Info: Redefining \sffamily on input line 78.
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' (bx/n) with NFSS spec.: <->"Khmer OS
(fontspec) Freehand/OT:script=khmr;language=DFLT;embolden=1.5;mappi
ng=tex-text;"
(fontspec) - 'bold small caps' (bx/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/itsc) 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' (bx/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' (bx/itsc) 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:
LaTeX Info: Redefining \ttfamily on input line 87.
(c:/texlive/2019/texmf-dist/tex/latex/beamer/beamerfontthemeprofessionalfonts.s
ty) (c:/texlive/2019/texmf-dist/tex/latex/newpx/newpxmath.sty
Package: newpxmath 2018/11/22 v1.33
`newpxmath' v1.33, 2018/11/22 Math macros based on pxfonts (msharpe)
(c:/texlive/2019/texmf-dist/tex/generic/kastrup/binhex.tex)
(c:/texlive/2019/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2014/12/03 v2.7a package option processing (HA)
(c:/texlive/2019/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(c:/texlive/2019/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks43
\XKV@tempa@toks=\toks44
)
\XKV@depth=\count325
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
\px@Isdigit=\count326
LaTeX Font Info: Redeclaring symbol font `operators' on input line 70.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/KhmerOSFreehand(0)/m/n on input lin
e 70.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/KhmerOSFreehand(0)/m/n on input li
ne 70.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/KhmerOSFreehand(0)/m/n --> OT1/KhmerOSFreehand(0)/b
/n on input line 71.
LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 74.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/KhmerOSFreehand(0)/m/n on input lin
e 74.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/KhmerOSFreehand(0)/m/n on input li
ne 74.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 75.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/KhmerOSFreehand(0)/m/it on input l
ine 75.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/KhmerOSFreehand(0)/m/it on input
line 75.
LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 76.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/KhmerOSFreehand(1)/m/n on input lin
e 76.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/KhmerOSFreehand(1)/m/n on input lin
e 76.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 78.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/KhmerOSFreehand(0)/b/n on input li
ne 78.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/KhmerOSFreehand(0)/b/n on input li
ne 78.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/KhmerOSFreehand(0)/m/it --> OT1/KhmerOSFreehand(0)/
b/it on input line 79.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) TU/KhmerOSFreehand(0)/m/n --> TU/KhmerOSFreehand(0)/b/n
on input line 81.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) TU/KhmerOSFreehand(1)/m/n --> TU/KhmerOSFreehand(1)/b/n