-
Notifications
You must be signed in to change notification settings - Fork 1
/
file40546fcd3a13.log
1053 lines (978 loc) · 46.6 KB
/
file40546fcd3a13.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 (MiKTeX 2.9.7250 64-bit) (preloaded format=xelatex 2020.3.20) 10 JUN 2020 17:31
entering extended mode
**C:/Users/andro/AppData/Local/Temp/Rtmp4KDuPy/file40546fcd3a13.tex
(C:/Users/andro/AppData/Local/Temp/Rtmp4KDuPy/file40546fcd3a13.tex
LaTeX2e <2019-10-01> patch level 3
("C:\Program Files\MiKTeX 2.9\tex/latex/base\article.cls"
Document Class: article 2019/10/25 v1.4k Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex/latex/base\size10.clo"
File: size10.clo 2019/10/25 v1.4k Standard LaTeX file (size option)
)
\c@part=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
) ("C:\Program Files\MiKTeX 2.9\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.
) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsfonts\amssymb.sty"
Package: amssymb 2013/01/14 v3.01 AMS font symbols
("C:\Program Files\MiKTeX 2.9\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.
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsmath.sty"
Package: amsmath 2019/11/16 v2.17d AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01 AMS text
("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks15
\ex@=\dimen103
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen104
) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsopn.sty"
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count88
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count89
\leftroot@=\count90
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count91
\DOTSCASE@=\count92
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@=\box27
\strutbox@=\box28
\big@size=\dimen105
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count93
\c@MaxMatrixCols=\count94
\dotsspace@=\muskip10
\c@parentequation=\count95
\dspbrk@lvl=\count96
\tag@help=\toks16
\row@=\count97
\column@=\count98
\maxfields@=\count99
\andhelp@=\toks17
\eqnshift@=\dimen106
\alignsep@=\dimen107
\tagshift@=\dimen108
\tagwidth@=\dimen109
\totwidth@=\dimen110
\lineht@=\dimen111
\@envbody=\toks18
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks19
LaTeX Info: Redefining \[ on input line 2858.
LaTeX Info: Redefining \] on input line 2859.
) ("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifxetex.sty"
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\iftex.sty"
Package: iftex 2019/11/07 v1.0c TeX engine tests
)) ("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifluatex.sty"
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
) ("C:\Program Files\MiKTeX 2.9\tex/latex/unicode-math\unicode-math.sty" ("C:\P
rogram Files\MiKTeX 2.9\tex/latex/l3kernel\expl3.sty"
Package: expl3 2019-11-07 L3 programming layer (loader)
("C:\Program Files\MiKTeX 2.9\tex/latex/l3kernel\expl3-code.tex"
Package: expl3 2019-11-07 L3 programming layer (code)
\c_max_int=\count100
\l_tmpa_int=\count101
\l_tmpb_int=\count102
\g_tmpa_int=\count103
\g_tmpb_int=\count104
\l__seq_internal_a_int=\count105
\l__seq_internal_b_int=\count106
\g__kernel_prg_map_int=\count107
\c__ior_term_noprompt_ior=\count108
\c_log_iow=\count109
\l_iow_line_count_int=\count110
\l__iow_line_target_int=\count111
\l__iow_one_indent_int=\count112
\l__iow_indent_int=\count113
\c_zero_dim=\dimen112
\c_max_dim=\dimen113
\l_tmpa_dim=\dimen114
\l_tmpb_dim=\dimen115
\g_tmpa_dim=\dimen116
\g_tmpb_dim=\dimen117
\c_zero_skip=\skip46
\c_max_skip=\skip47
\l_tmpa_skip=\skip48
\l_tmpb_skip=\skip49
\g_tmpa_skip=\skip50
\g_tmpb_skip=\skip51
\c_zero_muskip=\muskip11
\c_max_muskip=\muskip12
\l_tmpa_muskip=\muskip13
\l_tmpb_muskip=\muskip14
\g_tmpa_muskip=\muskip15
\g_tmpb_muskip=\muskip16
\l_keys_choice_int=\count114
\l__intarray_loop_int=\count115
\c__intarray_sp_dim=\dimen118
\g__intarray_font_int=\count116
\c__fp_leading_shift_int=\count117
\c__fp_middle_shift_int=\count118
\c__fp_trailing_shift_int=\count119
\c__fp_big_leading_shift_int=\count120
\c__fp_big_middle_shift_int=\count121
\c__fp_big_trailing_shift_int=\count122
\c__fp_Bigg_leading_shift_int=\count123
\c__fp_Bigg_middle_shift_int=\count124
\c__fp_Bigg_trailing_shift_int=\count125
\g__fp_array_int=\count126
\l__fp_array_loop_int=\count127
\l__sort_length_int=\count128
\l__sort_min_int=\count129
\l__sort_top_int=\count130
\l__sort_max_int=\count131
\l__sort_true_max_int=\count132
\l__sort_block_int=\count133
\l__sort_begin_int=\count134
\l__sort_end_int=\count135
\l__sort_A_int=\count136
\l__sort_B_int=\count137
\l__sort_C_int=\count138
\l__str_internal_int=\count139
\l__tl_analysis_normal_int=\count140
\l__tl_analysis_index_int=\count141
\l__tl_analysis_nesting_int=\count142
\l__tl_analysis_type_int=\count143
\l__regex_internal_a_int=\count144
\l__regex_internal_b_int=\count145
\l__regex_internal_c_int=\count146
\l__regex_balance_int=\count147
\l__regex_group_level_int=\count148
\l__regex_mode_int=\count149
\c__regex_cs_in_class_mode_int=\count150
\c__regex_cs_mode_int=\count151
\l__regex_catcodes_int=\count152
\l__regex_default_catcodes_int=\count153
\c__regex_catcode_L_int=\count154
\c__regex_catcode_O_int=\count155
\c__regex_catcode_A_int=\count156
\c__regex_all_catcodes_int=\count157
\l__regex_show_lines_int=\count158
\l__regex_min_state_int=\count159
\l__regex_max_state_int=\count160
\l__regex_left_state_int=\count161
\l__regex_right_state_int=\count162
\l__regex_capturing_group_int=\count163
\l__regex_min_pos_int=\count164
\l__regex_max_pos_int=\count165
\l__regex_curr_pos_int=\count166
\l__regex_start_pos_int=\count167
\l__regex_success_pos_int=\count168
\l__regex_curr_char_int=\count169
\l__regex_curr_catcode_int=\count170
\l__regex_last_char_int=\count171
\l__regex_case_changed_char_int=\count172
\l__regex_curr_state_int=\count173
\l__regex_step_int=\count174
\l__regex_min_active_int=\count175
\l__regex_max_active_int=\count176
\l__regex_replacement_csnames_int=\count177
\l__regex_match_count_int=\count178
\l__regex_min_submatch_int=\count179
\l__regex_submatch_int=\count180
\l__regex_zeroth_submatch_int=\count181
\g__regex_trace_regex_int=\count182
\c_empty_box=\box29
\l_tmpa_box=\box30
\l_tmpb_box=\box31
\g_tmpa_box=\box32
\g_tmpb_box=\box33
\l__box_top_dim=\dimen119
\l__box_bottom_dim=\dimen120
\l__box_left_dim=\dimen121
\l__box_right_dim=\dimen122
\l__box_top_new_dim=\dimen123
\l__box_bottom_new_dim=\dimen124
\l__box_left_new_dim=\dimen125
\l__box_right_new_dim=\dimen126
\l__box_internal_box=\box34
\l__coffin_internal_box=\box35
\l__coffin_internal_dim=\dimen127
\l__coffin_offset_x_dim=\dimen128
\l__coffin_offset_y_dim=\dimen129
\l__coffin_x_dim=\dimen130
\l__coffin_y_dim=\dimen131
\l__coffin_x_prime_dim=\dimen132
\l__coffin_y_prime_dim=\dimen133
\c_empty_coffin=\box36
\l__coffin_aligned_coffin=\box37
\l__coffin_aligned_internal_coffin=\box38
\l_tmpa_coffin=\box39
\l_tmpb_coffin=\box40
\g_tmpa_coffin=\box41
\g_tmpb_coffin=\box42
\l__coffin_bounding_shift_dim=\dimen134
\l__coffin_left_corner_dim=\dimen135
\l__coffin_right_corner_dim=\dimen136
\l__coffin_bottom_corner_dim=\dimen137
\l__coffin_top_corner_dim=\dimen138
\l__coffin_scaled_total_height_dim=\dimen139
\l__coffin_scaled_width_dim=\dimen140
\c__coffin_empty_coffin=\box43
\l__coffin_display_coffin=\box44
\l__coffin_display_coord_coffin=\box45
\l__coffin_display_pole_coffin=\box46
\l__coffin_display_offset_dim=\dimen141
\l__coffin_display_x_dim=\dimen142
\l__coffin_display_y_dim=\dimen143
\g__char_data_ior=\read1
("C:\Program Files\MiKTeX 2.9\tex/latex/l3kernel\l3deprecation.def"
File: l3deprecation.def 2019-04-06 v L3 Deprecated functions
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/l3backend\l3backend-xdvipdfmx.def"
File: l3backend-xdvipdfmx.def 2019-04-06 L3 backend support: xdvipdfmx
\g__graphics_track_int=\count183
\l__pdf_internal_box=\box47
\g__pdf_backend_object_int=\count184
\g__pdf_backend_annotation_int=\count185
))
Package: unicode-math 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLaTeX
("C:\Program Files\MiKTeX 2.9\tex/latex/unicode-math\unicode-math-xetex.sty"
Package: unicode-math-xetex 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLa
TeX
("C:\Program Files\MiKTeX 2.9\tex/latex/l3packages/xparse\xparse.sty"
Package: xparse 2019-10-11 L3 Experimental document command parser
\l__xparse_current_arg_int=\count186
\g__xparse_grabber_int=\count187
\l__xparse_m_args_int=\count188
\l__xparse_v_nesting_int=\count189
) ("C:\Program Files\MiKTeX 2.9\tex/latex/l3packages/l3keys2e\l3keys2e.sty"
Package: l3keys2e 2019-10-11 LaTeX2e option processing using LaTeX3 keys
) ("C:\Program Files\MiKTeX 2.9\tex/latex/fontspec\fontspec.sty"
Package: fontspec 2019/10/19 v2.7d Font selection for XeLaTeX and LuaLaTeX
("C:\Program Files\MiKTeX 2.9\tex/latex/fontspec\fontspec-xetex.sty"
Package: fontspec-xetex 2019/10/19 v2.7d Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count190
\l__fontspec_language_int=\count191
\l__fontspec_strnum_int=\count192
\l__fontspec_tmp_int=\count193
\l__fontspec_tmpa_int=\count194
\l__fontspec_tmpb_int=\count195
\l__fontspec_tmpc_int=\count196
\l__fontspec_em_int=\count197
\l__fontspec_emdef_int=\count198
\l__fontspec_strong_int=\count199
\l__fontspec_strongdef_int=\count266
\l__fontspec_tmpa_dim=\dimen144
\l__fontspec_tmpb_dim=\dimen145
\l__fontspec_tmpc_dim=\dimen146
("C:\Program Files\MiKTeX 2.9\tex/latex/base\fontenc.sty"
Package: fontenc 2018/08/11 v2.0j Standard LaTeX package
("C:\Program Files\MiKTeX 2.9\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:\Program Files\MiKTeX 2.9\tex/latex/fontspec\fontspec.cfg")
LaTeX Info: Redefining \itshape on input line 4047.
LaTeX Info: Redefining \slshape on input line 4052.
LaTeX Info: Redefining \scshape on input line 4057.
LaTeX Info: Redefining \upshape on input line 4062.
LaTeX Info: Redefining \em on input line 4092.
LaTeX Info: Redefining \emph on input line 4117.
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/base\fix-cm.sty"
Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX
("C:\Program Files\MiKTeX 2.9\tex/latex/base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
))
\g__um_fam_int=\count267
\g__um_fonts_used_int=\count268
\l__um_primecount_int=\count269
\g__um_primekern_muskip=\muskip17
("C:\Program Files\MiKTeX 2.9\tex/latex/unicode-math\unicode-math-table.tex")))
("C:\Program Files\MiKTeX 2.9\tex/latex/upquote\upquote.sty"
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
("C:\Program Files\MiKTeX 2.9\tex/latex/base\textcomp.sty"
Package: textcomp 2018/08/11 v2.0j Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 79.
("C:\Program Files\MiKTeX 2.9\tex/latex/base\ts1enc.def"
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TS1 on input line 47.
)
LaTeX Info: Redefining \oldstylenums on input line 334.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363.
Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364.
Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365.
Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366.
Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367.
Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368.
Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369.
Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370.
Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371.
Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372.
Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373.
Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374.
Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375.
Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376.
Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377.
Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378.
Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379.
Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380.
Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381.
Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382.
Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383.
Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384.
Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385.
Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386.
Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387.
Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388.
Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389.
Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390.
Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391.
Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392.
Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393.
Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394.
Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395.
Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396.
Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397.
Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398.
Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399.
Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400.
Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401.
Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402.
Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403.
Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404.
Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405.
Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406.
Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407.
Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408.
Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409.
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\microtype.sty"
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks20
)
\MT@toks=\toks21
\MT@count=\count270
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen147
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count271
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\microtype-xetex.def"
File: microtype-xetex.def 2019/11/18 v2.7d Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 258.
)
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\microtype.cfg"
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/parskip\parskip.sty"
Package: parskip 2020-01-22 v2.0d non-zero parskip adjustments
("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\kvoptions.sty"
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\ltxcmds.sty"
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\kvsetkeys.sty"
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\infwarerr.sty"
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\etexcmds.sty"
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
))) ("C:\Program Files\MiKTeX 2.9\tex/latex/etoolbox\etoolbox.sty"
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count272
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/xcolor\xcolor.sty"
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
("C:\Program Files\MiKTeX 2.9\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.
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-def\xetex.def"
File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex
)
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:\Program Files\MiKTeX 2.9\tex/latex/xurl\xurl.sty"
Package: xurl 2020/01/24 v 0.09 modify URL breaks
("C:\Program Files\MiKTeX 2.9\tex/latex/url\url.sty"
\Urlmuskip=\muskip18
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\bookmark.sty"
Package: bookmark 2019/06/04 v1.27 PDF bookmarks (HO)
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\pdfescape.sty"
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
("C:\Program Files\MiKTeX 2.9\tex/latex/pdftexcmds\pdftexcmds.sty"
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode not found.
)) ("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifpdf.sty"
Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
) ("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifvtex.sty"
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
) ("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hyperref.sty"
Package: hyperref 2019/11/10 v7.00c Hypertext links for LaTeX
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\kvdefinekeys.sty"
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\hycolor.sty"
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\xcolor-patch.sty"
Package: xcolor-patch 2016/05/16 xcolor patch
("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\hopatch.sty"
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
))) ("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\letltxmacro.sty"
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\auxhook.sty"
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen148
\Hy@linkcounter=\count273
\Hy@pagecounter=\count274
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\pd1enc.def"
File: pd1enc.def 2019/11/10 v7.00c Hyperref: PDFDocEncoding definition (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\intcalc.sty"
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count275
("C:\Program Files\MiKTeX 2.9\tex/latex/00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `unicode' set `true' on input line 4409.
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\puenc.def"
File: puenc.def 2019/11/10 v7.00c Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Hyper figures OFF on input line 4535.
Package hyperref Info: Link nesting OFF on input line 4540.
Package hyperref Info: Hyper index ON on input line 4543.
Package hyperref Info: Plain pages OFF on input line 4550.
Package hyperref Info: Backreferencing OFF on input line 4555.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4788.
\c@Hy@tempcnt=\count276
LaTeX Info: Redefining \url on input line 5147.
\XeTeXLinkMargin=\dimen149
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\bitset.sty"
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\bigintcalc.sty"
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count277
\Field@Width=\dimen150
\Fld@charsize=\dimen151
Package hyperref Info: Hyper figures OFF on input line 6418.
Package hyperref Info: Link nesting OFF on input line 6423.
Package hyperref Info: Hyper index ON on input line 6426.
Package hyperref Info: backreferencing OFF on input line 6433.
Package hyperref Info: Link coloring OFF on input line 6438.
Package hyperref Info: Link coloring with OCG OFF on input line 6443.
Package hyperref Info: PDF/A mode OFF on input line 6448.
LaTeX Info: Redefining \ref on input line 6488.
LaTeX Info: Redefining \pageref on input line 6492.
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\atbegshi.sty"
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
)
\Hy@abspage=\count278
\c@Item=\count279
\c@Hfootnote=\count280
)
Package hyperref Info: Driver (autodetected): hxetex.
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hxetex.def"
File: hxetex.def 2019/11/10 v7.00c Hyperref driver for XeTeX
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\stringenc.sty"
Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box48
\c@Hy@AnnotLevel=\count281
\HyField@AnnotCount=\count282
\Fld@listcount=\count283
\c@bookmark@seq@number=\count284
("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\rerunfilecheck.sty"
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\atveryend.sty"
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\uniquecounter.sty"
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
85.
)
\Hy@SectionHShift=\skip52
) ("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\bkm-dvipdfm.def"
File: bkm-dvipdfm.def 2019/06/04 v1.27 bookmark driver for dvipdfm (HO)
\BKM@id=\count285
)) ("C:\Program Files\MiKTeX 2.9\tex/latex/geometry\geometry.sty"
Package: geometry 2020/01/02 v5.9 Page Geometry
\Gm@cnth=\count286
\Gm@cntv=\count287
\c@Gm@tempcnt=\count288
\Gm@bindingoffset=\dimen152
\Gm@wd@mp=\dimen153
\Gm@odd@mp=\dimen154
\Gm@even@mp=\dimen155
\Gm@layoutwidth=\dimen156
\Gm@layoutheight=\dimen157
\Gm@layouthoffset=\dimen158
\Gm@layoutvoffset=\dimen159
\Gm@dimlist=\toks22
("C:\Program Files\MiKTeX 2.9\tex/xelatex/xetexconfig\geometry.cfg")) ("C:\Prog
ram Files\MiKTeX 2.9\tex/latex/tools\longtable.sty"
Package: longtable 2019/02/06 v4.12 Multi-page Table package (DPC)
\LTleft=\skip53
\LTright=\skip54
\LTpre=\skip55
\LTpost=\skip56
\LTchunksize=\count289
\LTcapwidth=\dimen160
\LT@head=\box49
\LT@firsthead=\box50
\LT@foot=\box51
\LT@lastfoot=\box52
\LT@cols=\count290
\LT@rows=\count291
\c@LT@tables=\count292
\c@LT@chunks=\count293
\LT@p@ftn=\toks23
) ("C:\Program Files\MiKTeX 2.9\tex/latex/booktabs\booktabs.sty"
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen161
\lightrulewidth=\dimen162
\cmidrulewidth=\dimen163
\belowrulesep=\dimen164
\belowbottomsep=\dimen165
\aboverulesep=\dimen166
\abovetopsep=\dimen167
\cmidrulesep=\dimen168
\cmidrulekern=\dimen169
\defaultaddspace=\dimen170
\@cmidla=\count294
\@cmidlb=\count295
\@aboverulesep=\dimen171
\@belowrulesep=\dimen172
\@thisruleclass=\count296
\@lastruleclass=\count297
\@thisrulewidth=\dimen173
) ("C:\Program Files\MiKTeX 2.9\tex/latex/footnotehyper\footnotehyper.sty"
Package: footnotehyper 2019/11/07 v1.1a hyperref aware footnote.sty (JFB)
\FNH@notes=\box53
\FNH@width=\dimen174
) ("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphicx.sty"
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphics.sty"
Package: graphics 2019/11/01 v1.3d Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\trig.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
) ("C:\Program Files\MiKTeX 2.9\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 105.
)
\Gin@req@height=\dimen175
\Gin@req@width=\dimen176
) ("C:\Program Files\MiKTeX 2.9\tex/latex/fancyhdr\fancyhdr.sty"
Package: fancyhdr 2019/01/31 v3.10 Extensive control of page headers and footer
s
\f@nch@headwidth=\skip57
\f@nch@O@elh=\skip58
\f@nch@O@erh=\skip59
\f@nch@O@olh=\skip60
\f@nch@O@orh=\skip61
\f@nch@O@elf=\skip62
\f@nch@O@erf=\skip63
\f@nch@O@olf=\skip64
\f@nch@O@orf=\skip65
) ("C:\Program Files\MiKTeX 2.9\tex/latex/placeins\placeins.sty"
Package: placeins 2005/04/18 v 2.2
) ("C:\Program Files\MiKTeX 2.9\tex/latex/amscls\amsthm.sty"
Package: amsthm 2017/10/31 v2.20.4
\thm@style=\toks24
\thm@bodyfont=\toks25
\thm@headfont=\toks26
\thm@notefont=\toks27
\thm@headpunct=\toks28
\thm@preskip=\skip66
\thm@postskip=\skip67
\thm@headsep=\skip68
\dth@everypar=\toks29
) (file40546fcd3a13.aux)
\openout1 = `file40546fcd3a13.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 83.
LaTeX Font Info: ... okay on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) OT1/lmr/m/n --> TU/lmr/m/n on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/lmr/m/it --> TU/lmr/m/it on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/lmr/bx/n --> TU/lmr/bx/n on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/lmss/m/n --> TU/lmss/m/n on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/lmss/bx/n --> TU/lmss/bx/n on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/lmtt/m/n --> TU/lmtt/m/n on input line 83.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/lmtt/m/n --> TU/lmtt/bx/n on input line 83.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: Font family 'latinmodern-math.otf(0)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,BoldFont={latinmodern-math.otf}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->s*[1]"[latinmodern-math.otf]/OT:script=math;language=
DFLT;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (bx/n) with NFSS spec.:
(fontspec) <->s*[1]"[latinmodern-math.otf]/OT:script=math;language=
DFLT;"
(fontspec) - 'bold small caps' (bx/sc) with NFSS spec.:
LaTeX Font Info: Font shape `TU/latinmodern-math.otf(0)/m/n' will be
(Font) scaled to size 10.0pt on input line 83.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: Font family 'latinmodern-math.otf(1)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=latinmode
rn-math.otf,Style=MathScript},{Size=-6,Font=latinmodern-math.otf,Style=MathScri
ptScript}},BoldFont={latinmodern-math.otf}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <8.5->s*[1]"[latinmodern-math.otf]/OT:script=math;langua
ge=DFLT;"<6-8.5>s*[1]"[latinmodern-math.otf]/OT:script=math;language=DFLT;+ssty
=0;"<-6>s*[1]"[latinmodern-math.otf]/OT:script=math;language=DFLT;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (bx/n) with NFSS spec.:
(fontspec) <->s*[1]"[latinmodern-math.otf]/OT:script=math;language=
DFLT;"
(fontspec) - 'bold small caps' (bx/sc) with NFSS spec.:
LaTeX Font Info: Font shape `TU/latinmodern-math.otf(1)/m/n' will be
(Font) scaled to size 10.0pt on input line 83.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 83.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/lmr/m/n --> TU/latinmodern-math.otf(1)/m/n on input
line 83.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 83.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/lmr/bx/n --> TU/latinmodern-math.otf(1)/bx/n on inp
ut line 83.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.0001.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.0001.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.0001.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.0001.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 1.0001.
Package fontspec Info: Font family 'latinmodern-math.otf(2)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=latinmode
rn-math.otf,Style=MathScript},{Size=-6,Font=latinmodern-math.otf,Style=MathScri
ptScript}},BoldFont={latinmodern-math.otf},ScaleAgain=1.0001,FontAdjustment={\f
ontdimen
(fontspec) 8\font =6.77pt\relax \fontdimen 9\font =3.94pt\relax
(fontspec) \fontdimen 10\font =4.44pt\relax \fontdimen 11\font
(fontspec) =6.86pt\relax \fontdimen 12\font =3.45pt\relax
(fontspec) \fontdimen 13\font =3.63pt\relax \fontdimen 14\font
(fontspec) =3.63pt\relax \fontdimen 15\font =2.89pt\relax
(fontspec) \fontdimen 16\font =2.47pt\relax \fontdimen 17\font
(fontspec) =2.47pt\relax \fontdimen 18\font =2.5pt\relax
(fontspec) \fontdimen 19\font =2.0pt\relax \fontdimen 22\font
(fontspec) =2.5pt\relax \fontdimen 20\font =0pt\relax \fontdimen
(fontspec) 21\font =0pt\relax }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <8.5->s*[1.0001]"[latinmodern-math.otf]/OT:script=math;l
anguage=DFLT;"<6-8.5>s*[1.0001]"[latinmodern-math.otf]/OT:script=math;language=
DFLT;+ssty=0;"<-6>s*[1.0001]"[latinmodern-math.otf]/OT:script=math;language=DFL
T;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 8\font =6.77pt\relax \fontdimen 9\font
(fontspec) =3.94pt\relax \fontdimen 10\font =4.44pt\relax
(fontspec) \fontdimen 11\font =6.86pt\relax \fontdimen 12\font
(fontspec) =3.45pt\relax \fontdimen 13\font =3.63pt\relax
(fontspec) \fontdimen 14\font =3.63pt\relax \fontdimen 15\font
(fontspec) =2.89pt\relax \fontdimen 16\font =2.47pt\relax
(fontspec) \fontdimen 17\font =2.47pt\relax \fontdimen 18\font
(fontspec) =2.5pt\relax \fontdimen 19\font =2.0pt\relax \fontdimen
(fontspec) 22\font =2.5pt\relax \fontdimen 20\font =0pt\relax
(fontspec) \fontdimen 21\font =0pt\relax
(fontspec) - 'bold' (bx/n) with NFSS spec.:
(fontspec) <->s*[1.0001]"[latinmodern-math.otf]/OT:script=math;lang
uage=DFLT;"
(fontspec) - 'bold small caps' (bx/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 8\font =6.77pt\relax \fontdimen 9\font
(fontspec) =3.94pt\relax \fontdimen 10\font =4.44pt\relax
(fontspec) \fontdimen 11\font =6.86pt\relax \fontdimen 12\font
(fontspec) =3.45pt\relax \fontdimen 13\font =3.63pt\relax
(fontspec) \fontdimen 14\font =3.63pt\relax \fontdimen 15\font
(fontspec) =2.89pt\relax \fontdimen 16\font =2.47pt\relax
(fontspec) \fontdimen 17\font =2.47pt\relax \fontdimen 18\font
(fontspec) =2.5pt\relax \fontdimen 19\font =2.0pt\relax \fontdimen
(fontspec) 22\font =2.5pt\relax \fontdimen 20\font =0pt\relax
(fontspec) \fontdimen 21\font =0pt\relax
LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font
(Font) `symbols' in the math version `normal' on input line 83.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/lmsy/m/n --> TU/latinmodern-math.otf(2)/m/n on inpu
t line 83.
LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font
(Font) `symbols' in the math version `bold' on input line 83.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/lmsy/b/n --> TU/latinmodern-math.otf(2)/bx/n on inp
ut line 83.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 0.9999.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 0.9999.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 0.9999.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 0.9999.
Package fontspec Info: latinmodern-math scale = 1.
Package fontspec Info: latinmodern-math scale = 0.9999.
Package fontspec Info: Font family 'latinmodern-math.otf(3)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=latinmode
rn-math.otf,Style=MathScript},{Size=-6,Font=latinmodern-math.otf,Style=MathScri
ptScript}},BoldFont={latinmodern-math.otf},ScaleAgain=0.9999,FontAdjustment={\f
ontdimen
(fontspec) 8\font =0.4pt\relax \fontdimen 9\font =2.0pt\relax
(fontspec) \fontdimen 10\font =1.67pt\relax \fontdimen 11\font
(fontspec) =1.11pt\relax \fontdimen 12\font =6.0pt\relax
(fontspec) \fontdimen 13\font =0pt\relax }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <8.5->s*[0.9999]"[latinmodern-math.otf]/OT:script=math;l
anguage=DFLT;"<6-8.5>s*[0.9999]"[latinmodern-math.otf]/OT:script=math;language=
DFLT;+ssty=0;"<-6>s*[0.9999]"[latinmodern-math.otf]/OT:script=math;language=DFL
T;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 8\font =0.4pt\relax \fontdimen 9\font
(fontspec) =2.0pt\relax \fontdimen 10\font =1.67pt\relax
(fontspec) \fontdimen 11\font =1.11pt\relax \fontdimen 12\font
(fontspec) =6.0pt\relax \fontdimen 13\font =0pt\relax
(fontspec) - 'bold' (bx/n) with NFSS spec.:
(fontspec) <->s*[0.9999]"[latinmodern-math.otf]/OT:script=math;lang
uage=DFLT;"
(fontspec) - 'bold small caps' (bx/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 8\font =0.4pt\relax \fontdimen 9\font
(fontspec) =2.0pt\relax \fontdimen 10\font =1.67pt\relax
(fontspec) \fontdimen 11\font =1.11pt\relax \fontdimen 12\font
(fontspec) =6.0pt\relax \fontdimen 13\font =0pt\relax
LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 8
3.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/lmex/m/n --> TU/latinmodern-math.otf(3)/m/n on inpu
t line 83.
LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 83.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/lmex/m/n --> TU/latinmodern-math.otf(3)/bx/n on inp
ut line 83.
LaTeX Info: Redefining \microtypecontext on input line 83.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using protrusion set `basicmath'.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of spacing.
Package microtype Info: No adjustment of kerning.
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\mt-LatinModernRoman.cfg"
File: mt-LatinModernRoman.cfg 2013/03/13 v1.0 microtype config. file: Latin Mod
ern Roman (RS)
)
\AtBeginShipoutBox=\box54
Package hyperref Info: Link coloring OFF on input line 83.
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\nameref.sty"
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\refcount.sty"
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
) ("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\gettitlestring.sty"
Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO)
)
\c@section@level=\count298
)
LaTeX Info: Redefining \ref on input line 83.
LaTeX Info: Redefining \pageref on input line 83.
LaTeX Info: Redefining \nameref on input line 83.
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: <default>
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(72.26999pt, 469.75502pt, 72.26999pt)
* v-part:(T,H,B)=(72.26999pt, 650.43001pt, 72.26999pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=469.75502pt