-
Notifications
You must be signed in to change notification settings - Fork 1
/
GG606.log
1138 lines (1115 loc) · 52.8 KB
/
GG606.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.99996 (TeX Live 2016) (preloaded format=xelatex 2016.5.22) 16 NOV 2021 11:28
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**GG606.tex
(./GG606.tex
LaTeX2e <2016/03/31>
Babel <3.9r> and hyphenation patterns for 83 language(s) loaded.
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/book.cls
Document Class: book 2014/09/29 v1.4h Standard LaTeX document class
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/bk10.clo
File: bk10.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\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
) (/usr/local/texlive/2016/texmf-dist/tex/latex/lm/lmodern.sty
Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
) (/usr/local/texlive/2016/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/local/texlive/2016/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks14
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2016/03/10 v2.15b AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2016/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/local/texlive/2016/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks15
\ex@=\dimen103
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen104
) (/usr/local/texlive/2016/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count88
LaTeX Info: Redefining \frac on input line 199.
\uproot@=\count89
\leftroot@=\count90
LaTeX Info: Redefining \overline on input line 297.
\classnum@=\count91
\DOTSCASE@=\count92
LaTeX Info: Redefining \ldots on input line 394.
LaTeX Info: Redefining \dots on input line 397.
LaTeX Info: Redefining \cdots on input line 518.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen105
LaTeX Font Info: Redeclaring font encoding OML on input line 634.
LaTeX Font Info: Redeclaring font encoding OMS on input line 635.
\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 2739.
LaTeX Info: Redefining \] on input line 2740.
) (/usr/local/texlive/2016/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
) (/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
) (/usr/local/texlive/2016/texmf-dist/tex/latex/unicode-math/unicode-math.sty
Package: unicode-math 2015/09/24 v0.8c Unicode maths in XeLaTeX and LuaLaTeX
(/usr/local/texlive/2016/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2016/05/18 v6512 L3 programming layer (loader)
(/usr/local/texlive/2016/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2016/05/18 v6512 L3 programming layer (code)
L3 Module: l3bootstrap 2016/02/12 v6412 L3 Bootstrap code
L3 Module: l3names 2016/03/11 v6433 L3 Namespace for primitives
L3 Module: l3basics 2015/11/22 v6315 L3 Basic definitions
L3 Module: l3expan 2015/09/10 v5983 L3 Argument expansion
L3 Module: l3tl 2016/03/26 v6465 L3 Token lists
L3 Module: l3str 2016/03/24 v6441 L3 Strings
L3 Module: l3seq 2015/08/05 v5777 L3 Sequences and stacks
L3 Module: l3int 2016/03/24 v6441 L3 Integers
\c_max_int=\count100
\l_tmpa_int=\count101
\l_tmpb_int=\count102
\g_tmpa_int=\count103
\g_tmpb_int=\count104
L3 Module: l3quark 2015/08/17 v5855 L3 Quarks
L3 Module: l3prg 2015/11/01 v6216 L3 Control structures
\g__prg_map_int=\count105
L3 Module: l3clist 2015/09/02 v5901 L3 Comma separated lists
L3 Module: l3token 2016/04/03 v6470 L3 Experimental token manipulation
L3 Module: l3prop 2016/01/05 v6366 L3 Property lists
L3 Module: l3msg 2016/03/26 v6464 L3 Messages
L3 Module: l3file 2016/03/25 v6458 L3 File and I/O operations
\l_iow_line_count_int=\count106
\l__iow_target_count_int=\count107
\l__iow_current_line_int=\count108
\l__iow_current_word_int=\count109
\l__iow_current_indentation_int=\count110
L3 Module: l3skip 2016/01/05 v6366 L3 Dimensions and skips
\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
L3 Module: l3keys 2015/11/17 v6284 L3 Key-value interfaces
\g__keyval_level_int=\count111
\l_keys_choice_int=\count112
L3 Module: l3fp 2016/03/26 v6465 L3 Floating points
\c__fp_leading_shift_int=\count113
\c__fp_middle_shift_int=\count114
\c__fp_trailing_shift_int=\count115
\c__fp_big_leading_shift_int=\count116
\c__fp_big_middle_shift_int=\count117
\c__fp_big_trailing_shift_int=\count118
\c__fp_Bigg_leading_shift_int=\count119
\c__fp_Bigg_middle_shift_int=\count120
\c__fp_Bigg_trailing_shift_int=\count121
L3 Module: l3box 2015/08/09 v5822 L3 Experimental boxes
\c_empty_box=\box28
\l_tmpa_box=\box29
\l_tmpb_box=\box30
\g_tmpa_box=\box31
\g_tmpb_box=\box32
L3 Module: l3coffins 2016/05/17 v6508 L3 Coffin code layer
\l__coffin_internal_box=\box33
\l__coffin_internal_dim=\dimen118
\l__coffin_offset_x_dim=\dimen119
\l__coffin_offset_y_dim=\dimen120
\l__coffin_x_dim=\dimen121
\l__coffin_y_dim=\dimen122
\l__coffin_x_prime_dim=\dimen123
\l__coffin_y_prime_dim=\dimen124
\c_empty_coffin=\box34
\l__coffin_aligned_coffin=\box35
\l__coffin_aligned_internal_coffin=\box36
\l_tmpa_coffin=\box37
\l_tmpb_coffin=\box38
\l__coffin_display_coffin=\box39
\l__coffin_display_coord_coffin=\box40
\l__coffin_display_pole_coffin=\box41
\l__coffin_display_offset_dim=\dimen125
\l__coffin_display_x_dim=\dimen126
\l__coffin_display_y_dim=\dimen127
L3 Module: l3color 2014/08/23 v5354 L3 Experimental color support
L3 Module: l3sys 2015/09/25 v6087 L3 Experimental system/runtime functions
L3 Module: l3candidates 2016/05/13 v6484 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen128
\l__box_bottom_dim=\dimen129
\l__box_left_dim=\dimen130
\l__box_right_dim=\dimen131
\l__box_top_new_dim=\dimen132
\l__box_bottom_new_dim=\dimen133
\l__box_left_new_dim=\dimen134
\l__box_right_new_dim=\dimen135
\l__box_internal_box=\box42
\l__coffin_bounding_shift_dim=\dimen136
\l__coffin_left_corner_dim=\dimen137
\l__coffin_right_corner_dim=\dimen138
\l__coffin_bottom_corner_dim=\dimen139
\l__coffin_top_corner_dim=\dimen140
\l__coffin_scaled_total_height_dim=\dimen141
\l__coffin_scaled_width_dim=\dimen142
L3 Module: l3luatex 2016/03/26 v6465 L3 Experimental LuaTeX-specific functions
) (/usr/local/texlive/2016/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def
File: l3xdvidpfmx.def 2016/03/26 v6465 L3 Experimental driver: xdvipdfmx
\l__driver_tmp_box=\box43
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/ucharcat/ucharcat.sty
Package: ucharcat 2015/11/19 v0.03 ucharcat for luaLaTeX (DPC)
) (/usr/local/texlive/2016/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2016/05/18 v6512 L3 Experimental document command parser
\l__xparse_current_arg_int=\count122
\l__xparse_m_args_int=\count123
\l__xparse_mandatory_args_int=\count124
\l__xparse_processor_int=\count125
\l__xparse_v_nesting_int=\count126
) (/usr/local/texlive/2016/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.st
y
Package: l3keys2e 2016/05/18 v6512 LaTeX2e option processing using LaTeX3 keys
) (/usr/local/texlive/2016/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2016/02/01 v2.5a Font selection for XeLaTeX and LuaLaTeX
(/usr/local/texlive/2016/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2016/02/01 v2.5a Font selection for XeLaTeX and LuaLaTe
X
\l_fontspec_script_int=\count127
\l_fontspec_language_int=\count128
\l_fontspec_strnum_int=\count129
\l__fontspec_tmpa_dim=\dimen143
\l__fontspec_tmpb_dim=\dimen144
\l__fontspec_tmpc_dim=\dimen145
\g__file_internal_ior=\read1
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(/usr/local/texlive/2016/texmf-dist/tex/latex/euenc/eu1enc.def
File: eu1enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
)
LaTeX Font Info: Try loading font information for EU1+lmr on input line 105.
(/usr/local/texlive/2016/texmf-dist/tex/latex/euenc/eu1lmr.fd
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)) (/usr/local/texlive/2016/texmf-dist/tex/xelatex/xunicode/xunicode.sty
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many
other characters in Unicode lower plane
(/usr/local/texlive/2016/texmf-dist/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
LaTeX Font Info: Try loading font information for EU1+lmss on input line 357
.
(/usr/local/texlive/2016/texmf-dist/tex/latex/euenc/eu1lmss.fd
File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
\tipaTiiicode=\count130
\tipasavetokens=\toks20
\tipachecktokens=\toks21
(/usr/local/texlive/2016/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2016/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks22
) (/usr/local/texlive/2016/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2016/05/09 v1.0r Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2016/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
) (/usr/local/texlive/2016/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/01/02 v1.10 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 96.
(/usr/local/texlive/2016/texmf-dist/tex/xelatex/xetex-def/xetex.def
File: xetex.def 2016/04/06 v4.08 LaTeX color/graphics driver for XeTeX (TeX Liv
e/RRM/JK)
(/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
) (/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
)))
\Gin@req@height=\dimen146
\Gin@req@width=\dimen147
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__fontspec_post_arg:w with sig. 'mmO{}' on line 353.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \fontspec with sig. 'om' on line 355.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmainfont with sig. 'om' on line 365.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setsansfont with sig. 'om' on line 375.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmonofont with sig. 'om' on line 385.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathrm with sig. 'om' on line 399.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setboldmathrm with sig. 'om' on line 407.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathsf with sig. 'om' on line 415.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathtt with sig. 'om' on line 423.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfamily with sig. 'mom' on line 437.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontface with sig. 'mom' on line 453.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \defaultfontfeatures with sig. 't+om' on line 467.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addfontfeatures with sig. 'm' on line 529.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfeature with sig. 'mm' on line 540.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newAATfeature with sig. 'mmmm' on line 548.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newopentypefeature with sig. 'mmm' on line 556.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeature with sig. 'mm' on line 577.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeatureoption with sig. 'mmm' on line 586.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontscript with sig. 'mm' on line 590.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontlanguage with sig. 'mm' on line 594.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareFontsExtensions with sig. 'm' on line 599.
.................................................
\l__fontspec_tmp_int=\count131
(/usr/local/texlive/2016/texmf-dist/tex/latex/fontspec/fontspec.cfg)
LaTeX Info: Redefining \itshape on input line 2705.
LaTeX Info: Redefining \slshape on input line 2710.
LaTeX Info: Redefining \scshape on input line 2715.
LaTeX Info: Redefining \upshape on input line 2720.
\l__fontspec_em_int=\count132
\l__fontspec_emdef_int=\count133
LaTeX Info: Redefining \em on input line 2736.
LaTeX Info: Redefining \emph on input line 2742.
LaTeX Info: Redefining \- on input line 2746.
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \oldstylenums with sig. 'm' on line 2841.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \liningnums with sig. 'm' on line 2845.
.................................................
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/filehook/filehook.sty
Package: filehook 2011/10/12 v0.5d Hooks for input files
)
\g__um_fam_int=\count134
\g__um_primekern_muskip=\muskip17
\l__um_primecount_int=\count135
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \unimathsetup with sig. 'm' on line 168.
.................................................
(/usr/local/texlive/2016/texmf-dist/tex/latex/unicode-math/unicode-math-xetex.s
ty
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathfontface with sig. 'mO{}mO{}' on line 165.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setoperatorfont with sig. 'm' on line 169.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathfont with sig. 'O{}mO{}' on line 278.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addnolimits with sig. 'm' on line 520.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \removenolimits with sig. 'm' on line 524.
.................................................
(/usr/local/texlive/2016/texmf-dist/tex/latex/unicode-math/unicode-math-table.t
ex)
.................................................
. unicode-math info: "patch-macro"
.
. I'm going to patch macro \subarray.
.................................................
.................................................
. unicode-math info: "patch-macro"
.
. I'm going to patch macro \r@@t.
.................................................
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/upquote/upquote.sty
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
(/usr/local/texlive/2016/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2005/09/27 v1.99g 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.
(/usr/local/texlive/2016/texmf-dist/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.
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2016/05/14 v2.6a Micro-typographical refinements (RS)
\MT@toks=\toks23
\MT@count=\count136
LaTeX Info: Redefining \textls on input line 774.
\MT@outer@kern=\dimen148
LaTeX Info: Redefining \textmicrotypecontext on input line 1310.
\MT@listname@count=\count137
(/usr/local/texlive/2016/texmf-dist/tex/latex/microtype/microtype-xetex.def
File: microtype-xetex.def 2016/05/14 v2.6a Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 255.
)
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/local/texlive/2016/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2016/05/14 v2.6a microtype main configuration file (RS)
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/parskip/parskip.sty
Package: parskip 2001/04/09 non-zero parskip adjustments
) (/usr/local/texlive/2016/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(/usr/local/texlive/2016/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.
) (/usr/local/texlive/2016/texmf-dist/tex/latex/oberdiek/bookmark.sty
Package: bookmark 2016/05/16 v1.25 PDF bookmarks (HO)
(/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/pdfescape.sty
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
(/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2016/05/10 v0.21 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2016/05/14 v3.1 Provides the ifpdf switch
)
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.
)) (/usr/local/texlive/2016/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.
) (/usr/local/texlive/2016/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2016/05/05 v6.83n Hypertext links for LaTeX
(/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
(/usr/local/texlive/2016/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 hobsub Info: Skipping package `ifluatex' (already loaded).
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 etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
Package hobsub Info: Skipping package `pdftexcmds' (already loaded).
Package hobsub Info: Skipping package `pdfescape' (already loaded).
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 atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2016/05/16 v1.17 At begin shipout hook (HO)
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)
) (/usr/local/texlive/2016/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
) (/usr/local/texlive/2016/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
)
\@linkdim=\dimen149
\Hy@linkcounter=\count138
\Hy@pagecounter=\count139
(/usr/local/texlive/2016/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2016/05/05 v6.83n Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count140
(/usr/local/texlive/2016/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `unicode' set `true' on input line 4322.
(/usr/local/texlive/2016/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2016/05/05 v6.83n Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Hyper figures OFF on input line 4446.
Package hyperref Info: Link nesting OFF on input line 4451.
Package hyperref Info: Hyper index ON on input line 4454.
Package hyperref Info: Plain pages OFF on input line 4461.
Package hyperref Info: Backreferencing OFF on input line 4466.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4691.
\c@Hy@tempcnt=\count141
(/usr/local/texlive/2016/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip18
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5044.
\XeTeXLinkMargin=\dimen150
\Fld@menulength=\count142
\Field@Width=\dimen151
\Fld@charsize=\dimen152
Package hyperref Info: Hyper figures OFF on input line 6298.
Package hyperref Info: Link nesting OFF on input line 6303.
Package hyperref Info: Hyper index ON on input line 6306.
Package hyperref Info: backreferencing OFF on input line 6313.
Package hyperref Info: Link coloring OFF on input line 6318.
Package hyperref Info: Link coloring with OCG OFF on input line 6323.
Package hyperref Info: PDF/A mode OFF on input line 6328.
LaTeX Info: Redefining \ref on input line 6368.
LaTeX Info: Redefining \pageref on input line 6372.
\Hy@abspage=\count143
\c@Item=\count144
\c@Hfootnote=\count145
)
Package hyperref Message: Driver (autodetected): hxetex.
(/usr/local/texlive/2016/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2016/05/05 v6.83n Hyperref driver for XeTeX
(/usr/local/texlive/2016/texmf-dist/tex/generic/oberdiek/stringenc.sty
Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box44
\c@Hy@AnnotLevel=\count146
\HyField@AnnotCount=\count147
\Fld@listcount=\count148
\c@bookmark@seq@number=\count149
(/usr/local/texlive/2016/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
Package rerunfilecheck Info: Feature \pdfmdfivesum is not available
(rerunfilecheck) (e.g. pdfTeX or LuaTeX with package `pdftexcmds').
(rerunfilecheck) Therefore file contents cannot be checked efficien
tly
(rerunfilecheck) and the loading of the package is aborted.
)
\Hy@SectionHShift=\skip52
) (/usr/local/texlive/2016/texmf-dist/tex/latex/oberdiek/bkm-dvipdfm.def
File: bkm-dvipdfm.def 2016/05/16 v1.25 bookmark driver for dvipdfm (HO)
\BKM@id=\count150
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC)
\LTleft=\skip53
\LTright=\skip54
\LTpre=\skip55
\LTpost=\skip56
\LTchunksize=\count151
\LTcapwidth=\dimen153
\LT@head=\box45
\LT@firsthead=\box46
\LT@foot=\box47
\LT@lastfoot=\box48
\LT@cols=\count152
\LT@rows=\count153
\c@LT@tables=\count154
\c@LT@chunks=\count155
\LT@p@ftn=\toks24
) (/usr/local/texlive/2016/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2016/04/27 v1.618033 publication quality tables
\heavyrulewidth=\dimen154
\lightrulewidth=\dimen155
\cmidrulewidth=\dimen156
\belowrulesep=\dimen157
\belowbottomsep=\dimen158
\aboverulesep=\dimen159
\abovetopsep=\dimen160
\cmidrulesep=\dimen161
\cmidrulekern=\dimen162
\defaultaddspace=\dimen163
\@cmidla=\count156
\@cmidlb=\count157
\@aboverulesep=\dimen164
\@belowrulesep=\dimen165
\@thisruleclass=\count158
\@lastruleclass=\count159
\@thisrulewidth=\dimen166
) (/usr/local/texlive/2016/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2015/08/02 v2.2a e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count160
) (/usr/local/texlive/2016/texmf-dist/tex/latex/footnotehyper/footnotehyper.sty
Package: footnotehyper 2016/04/30 v0.9e hyperref aware footnote.sty (JFB)
(/usr/local/texlive/2016/texmf-dist/tex/latex/mdwtools/footnote.sty
Package: footnote 1997/01/28 1.13 Save footnotes around boxes
\fn@notes=\box49
\fn@width=\dimen167
)) (/usr/local/texlive/2016/texmf-dist/tex/latex/natbib/natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip57
\bibsep=\skip58
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count161
)
No file GG606.aux.
\openout1 = `GG606.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for T3/cmr/m/n on input line 81.
LaTeX Font Info: Try loading font information for T3+cmr on input line 81.
(/usr/local/texlive/2016/texmf-dist/tex/latex/tipa/t3cmr.fd
File: t3cmr.fd 2001/12/31 TIPA font definitions
)
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 81.
LaTeX Font Info: ... okay on input line 81.
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math.otf scale = 1.
.................................................
\g__fontspec_family_latinmodern-math.otf_int=\count162
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'latinmodern-math.otf(0)' created for font
. 'latinmodern-math.otf' with options
. [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Script=Math,SizeFeature
s={{Size=10-},{Size=7-10,Font=latinmodern-math.otf,Style=MathScript},{Size=-7,F
ont=latinmodern-math.otf,Style=MathScriptScript}},BoldFont={latinmodern-math.ot
f}].
.
. This font family consists of the following NFSS series/shapes:
. - 'normal' (m/n) with NFSS spec.:
. <10->s*[1]"[latinmodern-math]/OT:script=math;language=DFLT;"<7-10>s*[1]"[lati
nmodern-math]/OT:script=math;language=DFLT;+ssty=0;"<-7>s*[1]"[latinmodern-math
]/OT:script=math;language=DFLT;+ssty=1;"
. - 'small caps' (m/sc) with NFSS spec.: - 'bold' (bx/n) with NFSS spec.:
. <->s*[1]"[latinmodern-math]/OT:script=math;language=DFLT;"
. - 'bold small caps' (bx/sc) with NFSS spec.:
.................................................
LaTeX Font Info: Font shape `EU1/latinmodern-math.otf(0)/m/n' will be
(Font) scaled to size 10.0pt on input line 81.
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math.otf scale = 1.
.................................................
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
(Font) `operators' in the math version `normal' on input line 81.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/lmr/m/n --> EU1/latinmodern-math.otf(0)/m/n on inpu
t line 81.
LaTeX Font Info: Encoding `OT1' has changed to `EU1' for symbol font
(Font) `operators' in the math version `bold' on input line 81.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/lmr/bx/n --> EU1/latinmodern-math.otf(0)/bx/n on in
put line 81.
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math.otf scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'latinmodern-math.otf(1)' created for font
. 'latinmodern-math.otf' with options
. [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Script=Math,SizeFeature
s={{Size=10-},{Size=7-10,Font=latinmodern-math.otf,Style=MathScript},{Size=-7,F
ont=latinmodern-math.otf,Style=MathScriptScript}},BoldFont={latinmodern-math.ot
f},Scale=1.00001,FontAdjustment={\fontdimen
. 8\font =6.77pt\relax \relax \fontdimen 9\font =3.94pt\relax \relax
. \fontdimen 10\font =4.44pt\relax \relax \fontdimen 11\font =6.86pt\relax
. \relax \fontdimen 12\font =3.45pt\relax \relax \fontdimen 13\font
. =3.63pt\relax \relax \fontdimen 14\font =3.63pt\relax \relax \fontdimen
. 15\font =2.89pt\relax \relax \fontdimen 16\font =2.47pt\relax \relax
. \fontdimen 17\font =2.47pt\relax \relax \fontdimen 18\font =2.5pt\relax
. \relax \fontdimen 19\font =2.0pt\relax \relax \fontdimen 20\font =0pt\relax
. \fontdimen 21\font =0pt\relax \fontdimen 22\font =2.5pt\relax \relax }].
.
. This font family consists of the following NFSS series/shapes:
. - 'normal' (m/n) with NFSS spec.:
. <10->s*[1.00001]"[latinmodern-math]/OT:script=math;language=DFLT;"<7-10>s*[1.
00001]"[latinmodern-math]/OT:script=math;language=DFLT;+ssty=0;"<-7>s*[1.00001]
"[latinmodern-math]/OT:script=math;language=DFLT;+ssty=1;"
. - 'small caps' (m/sc) with NFSS spec.:
. and font adjustment code:
. \fontdimen 8\font =6.77pt\relax \relax \fontdimen 9\font =3.94pt\relax
. \relax \fontdimen 10\font =4.44pt\relax \relax \fontdimen 11\font
. =6.86pt\relax \relax \fontdimen 12\font =3.45pt\relax \relax \fontdimen
. 13\font =3.63pt\relax \relax \fontdimen 14\font =3.63pt\relax \relax
. \fontdimen 15\font =2.89pt\relax \relax \fontdimen 16\font =2.47pt\relax
. \relax \fontdimen 17\font =2.47pt\relax \relax \fontdimen 18\font
. =2.5pt\relax \relax \fontdimen 19\font =2.0pt\relax \relax \fontdimen
. 20\font =0pt\relax \fontdimen 21\font =0pt\relax \fontdimen 22\font
. =2.5pt\relax \relax - 'bold' (bx/n) with NFSS spec.:
. <->s*[1.00001]"[latinmodern-math]/OT:script=math;language=DFLT;"
. - 'bold small caps' (bx/sc) with NFSS spec.:
. and font adjustment code:
. \fontdimen 8\font =6.77pt\relax \relax \fontdimen 9\font =3.94pt\relax
. \relax \fontdimen 10\font =4.44pt\relax \relax \fontdimen 11\font
. =6.86pt\relax \relax \fontdimen 12\font =3.45pt\relax \relax \fontdimen
. 13\font =3.63pt\relax \relax \fontdimen 14\font =3.63pt\relax \relax
. \fontdimen 15\font =2.89pt\relax \relax \fontdimen 16\font =2.47pt\relax
. \relax \fontdimen 17\font =2.47pt\relax \relax \fontdimen 18\font
. =2.5pt\relax \relax \fontdimen 19\font =2.0pt\relax \relax \fontdimen
. 20\font =0pt\relax \fontdimen 21\font =0pt\relax \fontdimen 22\font
. =2.5pt\relax \relax
.................................................
LaTeX Font Info: Encoding `OMS' has changed to `EU1' for symbol font
(Font) `symbols' in the math version `normal' on input line 81.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/lmsy/m/n --> EU1/latinmodern-math.otf(1)/m/n on inp
ut line 81.
LaTeX Font Info: Encoding `OMS' has changed to `EU1' for symbol font
(Font) `symbols' in the math version `bold' on input line 81.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/lmsy/b/n --> EU1/latinmodern-math.otf(1)/bx/n on in
put line 81.
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math.otf scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "set-scale"
.
. latinmodern-math scale = 1.
.................................................
.................................................
. fontspec info: "defining-font"
.
. Font family 'latinmodern-math.otf(2)' created for font
. 'latinmodern-math.otf' with options
. [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Script=Math,SizeFeature
s={{Size=10-},{Size=7-10,Font=latinmodern-math.otf,Style=MathScript},{Size=-7,F
ont=latinmodern-math.otf,Style=MathScriptScript}},BoldFont={latinmodern-math.ot
f},Scale=0.99999,FontAdjustment={\fontdimen
. 8\font =0.4pt\relax \relax \fontdimen 9\font =2.0pt\relax \relax \fontdimen
. 10\font =1.67pt\relax \relax \fontdimen 11\font =1.11pt\relax \relax
. \fontdimen 12\font =6.0pt\relax \relax \fontdimen 13\font =0pt\relax }].
.