-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.log
4626 lines (4003 loc) · 168 KB
/
main.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 LuaTeX, Version 1.10.0 (TeX Live 2019/Debian) (format=lualatex 2023.5.31) 31 MAY 2023 15:26
system commands enabled.
**main.tex
(./main.tex
LaTeX2e <2020-02-02> patch level 2
Lua module: luaotfload-main 2020-02-02 3.12 luaotfload entry point
Lua module: luaotfload-init 2020-02-02 3.12 luaotfload submodule / initializatio
n
Lua module: lualibs 2020-02-02 2.70 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2020-02-02 2.70 ConTeXt Lua libraries -- extended c
ollection.
Lua module: luaotfload-log 2020-02-02 3.12 luaotfload submodule / logging
Lua module: luaotfload-parsers 2020-02-02 3.12 luaotfload submodule / filelist
Lua module: luaotfload-configuration 2020-02-02 3.12 luaotfload submodule / conf
ig file reader
luaotfload | conf : Root cache directory is /home/pcyra2/.texlive2019/texmf-var/
luatex-cache/generic-dev/names.
luaotfload | init : Loading fontloader “fontloader-2020-01-26.lua” from kpse
-resolved path “/usr/share/texlive/texmf-dist/tex/luatex/luaotfload/fontloader
-2020-01-26.lua”.
Lua-only attribute luaotfload@state = 2
Lua-only attribute luaotfload@noligature = 3
Lua-only attribute luaotfload@syllabe = 4
luaotfload | init : Context OpenType loader version “3.11”
Inserting `luaotfload.node_processor' at position 1 in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' at position 1 in `hpack_filter'.
Lua module: luaotfload-loaders 2020-02-02 3.12 luaotfload submodule / callback h
andling
Inserting `luaotfload.define_font' at position 1 in `define_font'.
Lua module: luaotfload-database 2020-02-02 3.12 luaotfload submodule / database
Lua module: luaotfload-unicode 2020-02-02 3.12 luaotfload submodule / Unicode he
lpers
Lua module: luaotfload-colors 2020-02-02 3.12 luaotfload submodule / color
Lua-only attribute luaotfload_color_attribute = 5
Lua module: luaotfload-resolvers 2020-02-02 3.12 luaotfload submodule / resolver
s
luaotfload | conf : Root cache directory is /home/pcyra2/.texlive2019/texmf-var/
luatex-cache/generic-dev/names.
Lua module: luaotfload-features 2020-02-02 3.12 luaotfload submodule / features
Lua module: luaotfload-letterspace 2020-02-02 3.12 luaotfload submodule / color
Lua module: luaotfload-embolden 2020-02-02 3.12 luaotfload submodule / color
Lua module: luaotfload-notdef 2020-02-02 3.12 luaotfload submodule / color
Lua module: luaotfload-auxiliary 2020-02-02 3.12 luaotfload submodule / auxiliar
y functions
Inserting `luaotfload.aux.set_sscale_dimens' at position 1 in `luaotfload.patch_
font'.
Inserting `luaotfload.aux.set_font_index' at position 2 in `luaotfload.patch_fon
t'.
Inserting `luaotfload.aux.patch_cambria_domh' at position 3 in `luaotfload.patch
_font'.
Inserting `luaotfload.aux.fixup_fontdata' at position 1 in `luaotfload.patch_fon
t_unsafe'.
Inserting `luaotfload.aux.set_capheight' at position 4 in `luaotfload.patch_font
'.
Inserting `luaotfload.aux.set_xheight' at position 5 in `luaotfload.patch_font'.
Lua module: luaotfload-fallback 2020-02-02 3.12 luaotfload submodule / fallback
Lua module: luaotfload-multiscript 2020-02-02 3.12 luaotfload submodule / multis
cript
Lua module: luaotfload-script 2020-02-02 3.12 luaotfload submodule / Script help
ers
Lua module: luaotfload-tounicode 2020-02-02 3.12 luaotfload submodule / tounicod
e
Inserting `luaotfload.rewrite_fontname' at position 6 in `luaotfload.patch_font'
. L3 programming layer <2020-02-14> (./preamble.tex
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrartcl.cls
Document Class: scrartcl 2020/01/24 v3.29 KOMA-Script document class (article)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2020/01/24 v3.29 KOMA-Script package (KOMA-Script-dependent ba
sics and keyval usage)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbase.sty
Package: scrbase 2020/01/24 v3.29 KOMA-Script package (KOMA-Script-independent b
asics and keyval usage)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2020/01/24 v3.29 KOMA-Script package (loading files)
)))
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/tocbasic.sty
Package: tocbasic 2020/01/24 v3.29 KOMA-Script package (handling toc-files)
\scr@dte@tocline@numberwidth=\skip47
\scr@dte@tocline@numbox=\box45
)
Package tocbasic Info: omitting babel extension for `toc'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `toc' on input line 137.
Package scrartcl Info: You've used standard option `11pt'.
(scrartcl) This is correct!
(scrartcl) Internally I'm using `fontsize=11pt'.
(scrartcl) If you'd like to set the option with \KOMAoptions,
(scrartcl) you'd have to use `fontsize=11pt' there
(scrartcl) instead of `11pt', too.
Class scrartcl Info: You've used standard option `oneside'.
(scrartcl) This is correct!
(scrartcl) Internally I'm using `twoside=false'.
(scrartcl) If you'd like to set the option with \KOMAoptions,
(scrartcl) you'd have to use `twoside=false' there
(scrartcl) instead of `oneside', too.
Class scrartcl Info: File `scrsize11pt.clo' used to setup font sizes on input li
ne 2212.
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrsize11pt.clo
File: scrsize11pt.clo 2020/01/24 v3.29 KOMA-Script font size class option (11pt)
luaotfload | db : Font names database loaded from /home/pcyra2/.texlive2019/texm
f-var/luatex-cache/generic-dev/names/luaotfload-names.luc)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/typearea.sty
Package: typearea 2020/01/24 v3.29 KOMA-Script package (type area)
\ta@bcor=\skip48
\ta@div=\count163
Package typearea Info: You've used standard option `oneside'.
(typearea) This is correct!
(typearea) Internally I'm using `twoside=false'.
(typearea) If you'd like to set the option with \KOMAoptions,
(typearea) you'd have to use `twoside=false' there
(typearea) instead of `oneside', too.
\ta@hblk=\skip49
\ta@vblk=\skip50
\ta@temp=\skip51
\footheight=\skip52
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 10
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 418.25555pt
(typearea) DIV departure = -6%
(typearea) \evensidemargin = 17.3562pt
(typearea) \oddsidemargin = 17.3562pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 555.00024pt
(typearea) \topmargin = 12.2347pt
(typearea) \headheight = 17.0pt
(typearea) \headsep = 20.40001pt
(typearea) \topskip = 11.0pt
(typearea) \footskip = 47.6pt
(typearea) \baselineskip = 13.6pt
(typearea) on input line 1719.
)
\c@part=\count164
\c@section=\count165
\c@subsection=\count166
\c@subsubsection=\count167
\c@paragraph=\count168
\c@subparagraph=\count169
\scr@dte@section@maxnumwidth=\skip53
Class scrartcl Info: using compatibility default `runin=bysign'
(scrartcl) for `\section on input line 4723.
Class scrartcl Info: using compatibility default `afterindent=bysign'
(scrartcl) for `\section on input line 4723.
\scr@dte@part@maxnumwidth=\skip54
Class scrartcl Info: using compatibility default `afterindent=false'
(scrartcl) for `\part on input line 4731.
\scr@dte@subsection@maxnumwidth=\skip55
Class scrartcl Info: using compatibility default `runin=bysign'
(scrartcl) for `\subsection on input line 4741.
Class scrartcl Info: using compatibility default `afterindent=bysign'
(scrartcl) for `\subsection on input line 4741.
\scr@dte@subsubsection@maxnumwidth=\skip56
Class scrartcl Info: using compatibility default `runin=bysign'
(scrartcl) for `\subsubsection on input line 4751.
Class scrartcl Info: using compatibility default `afterindent=bysign'
(scrartcl) for `\subsubsection on input line 4751.
\scr@dte@paragraph@maxnumwidth=\skip57
Class scrartcl Info: using compatibility default `runin=bysign'
(scrartcl) for `\paragraph on input line 4761.
Class scrartcl Info: using compatibility default `afterindent=bysign'
(scrartcl) for `\paragraph on input line 4761.
\scr@dte@subparagraph@maxnumwidth=\skip58
Class scrartcl Info: using compatibility default `runin=bysign'
(scrartcl) for `\subparagraph on input line 4771.
Class scrartcl Info: using compatibility default `afterindent=bysign'
(scrartcl) for `\subparagraph on input line 4771.
\abovecaptionskip=\skip59
\belowcaptionskip=\skip60
\c@pti@nb@sid@b@x=\box46
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lof' on input line 6002.
\scr@dte@figure@maxnumwidth=\skip61
\c@figure=\count170
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lot' on input line 6014.
\scr@dte@table@maxnumwidth=\skip62
\c@table=\count171
Class scrartcl Info: Redefining `\numberline' on input line 6178.
\bibindent=\dimen134
)
(/usr/share/texlive/texmf-dist/tex/latex/setspace/setspace.sty
Package: setspace 2011/12/19 v6.7a set line spacing
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/afterpage.sty
Package: afterpage 2014/10/28 v1.08 After-Page Package (DPC)
\AP@output=\toks15
\AP@partial=\box47
\AP@footins=\box48
)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer-scrpage.sty
Package: scrlayer-scrpage 2020/01/24 v3.29 KOMA-Script package (end user interfa
ce for scrlayer)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer.sty
Package: scrlayer 2020/01/24 v3.29 KOMA-Script package (defining layers and page
styles)
Package scrlayer Info: Using already defined \footheight
(scrlayer) hoping, that this is a length and
(scrlayer) not only a macro on input line 109.
Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 2106
.
)
Package scrlayer-scrpage Info: Makeing stand-alone element `pagehead' from
(scrlayer-scrpage) alias to `pageheadfoot' on input line 1244.
Package scrlayer-scrpage Info: deactivating warning for font element
(scrlayer-scrpage) `pagefoot' on input line 1271.
)
Package scrlayer-scrpage Info: auto-selection of `pagestyleset=KOMA-Script'.
1: subsection
1: section
1: section
1: subsection
1: subsection
1: section
1: section
1: subsection
(/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
\c@tracingmulticols=\count172
\mult@box=\box49
\multicol@leftmargin=\dimen135
\c@unbalance=\count173
\c@collectmore=\count174
\doublecol@number=\count175
\multicoltolerance=\count176
\multicolpretolerance=\count177
\full@width=\dimen136
\page@free=\dimen137
\premulticols=\dimen138
\postmulticols=\dimen139
\multicolsep=\skip63
\multicolbaselineskip=\skip64
\partial@page=\box50
\last@line=\box51
\maxbalancingoverflow=\dimen140
\mult@rightbox=\box52
\mult@grightbox=\box53
\mult@gfirstbox=\box54
\mult@firstbox=\box55
\@tempa=\box56
\@tempa=\box57
\@tempa=\box58
\@tempa=\box59
\@tempa=\box60
\@tempa=\box61
\@tempa=\box62
\@tempa=\box63
\@tempa=\box64
\@tempa=\box65
\@tempa=\box66
\@tempa=\box67
\@tempa=\box68
\@tempa=\box69
\@tempa=\box70
\@tempa=\box71
\@tempa=\box72
\@tempa=\box73
\@tempa=\box74
\@tempa=\box75
\@tempa=\box76
\@tempa=\box77
\@tempa=\box78
\@tempa=\box79
\@tempa=\box80
\@tempa=\box81
\@tempa=\box82
\@tempa=\box83
\@tempa=\box84
\@tempa=\box85
\@tempa=\box86
\@tempa=\box87
\@tempa=\box88
\@tempa=\box89
\@tempa=\box90
\@tempa=\box91
\@tempa=\box92
\c@minrows=\count178
\c@columnbadness=\count179
\c@finalcolumnbadness=\count180
\last@try=\dimen141
\multicolovershoot=\dimen142
\multicolundershoot=\dimen143
\mult@nat@firstbox=\box93
\colbreak@box=\box94
\mc@col@check@num=\count181
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/lscape.sty
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: luatex.def on input line 105.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/luatex.def
File: luatex.def 2018/01/08 v1.0l Graphics/color driver for luatex
)))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip65
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks16
\ex@=\dimen144
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen145
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count182
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count183
\leftroot@=\count184
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count185
\DOTSCASE@=\count186
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@=\box95
\strutbox@=\box96
\big@size=\dimen146
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count187
\c@MaxMatrixCols=\count188
\dotsspace@=\muskip16
\c@parentequation=\count189
\dspbrk@lvl=\count190
\tag@help=\toks17
\row@=\count191
\column@=\count192
\maxfields@=\count193
\andhelp@=\toks18
\eqnshift@=\dimen147
\alignsep@=\dimen148
\tagshift@=\dimen149
\tagwidth@=\dimen150
\totwidth@=\dimen151
\lineht@=\dimen152
\@envbody=\toks19
\multlinegap=\skip66
\multlinetaggap=\skip67
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
)
(/usr/share/texlive/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2017/10/31 v2.20.4
\thm@style=\toks21
\thm@bodyfont=\toks22
\thm@headfont=\toks23
\thm@notefont=\toks24
\thm@headpunct=\toks25
\thm@preskip=\skip68
\thm@postskip=\skip69
\thm@headsep=\skip70
\dth@everypar=\toks26
)
(/usr/share/texlive/texmf-dist/tex/latex/xpatch/xpatch.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2020-02-14 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
File: l3backend-pdfmode.def 2020-02-03 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count194
\l__pdf_internal_box=\box97
))
Package: xpatch 2012/10/02 v0.3 Extending etoolbox patching commands
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2020-02-14 L3 Experimental document command parser
\l__xparse_current_arg_int=\count195
\g__xparse_grabber_int=\count196
\l__xparse_m_args_int=\count197
\l__xparse_v_nesting_int=\count198
)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count199
))
Class scrartcl Info: amsthm's \deferred@thm@head patched.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(/usr/share/texlive/texmf-dist/tex/latex/jknapltx/mathrsfs.sty
Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
\symrsfs=\mathgroup6
)
(/usr/share/texlive/texmf-dist/tex/latex/mathtools/mathtools.sty
Package: mathtools 2020/01/17 v1.23 mathematical typesetting tools
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count266
\calc@Bcount=\count267
\calc@Adimen=\dimen153
\calc@Bdimen=\dimen154
\calc@Askip=\skip71
\calc@Bskip=\skip72
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count268
\calc@Cskip=\skip73
)
(/usr/share/texlive/texmf-dist/tex/latex/mathtools/mhsetup.sty
Package: mhsetup 2017/03/31 v1.3 programming setup (MH)
)
LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 129.
\g_MT_multlinerow_int=\count269
\l_MT_multwidth_dim=\dimen155
\origjot=\skip74
\l_MT_shortvdotswithinadjustabove_dim=\dimen156
\l_MT_shortvdotswithinadjustbelow_dim=\dimen157
\l_MT_above_intertext_sep=\dimen158
\l_MT_below_intertext_sep=\dimen159
\l_MT_above_shortintertext_sep=\dimen160
\l_MT_below_shortintertext_sep=\dimen161
)
(/usr/share/texlive/texmf-dist/tex/latex/was/gensymb.sty
Package: gensymb 2003/07/02 v1.0 (WaS)
)
(/usr/share/texlive/texmf-dist/tex/latex/braket/braket.sty)
(/usr/share/texlive/texmf-dist/tex/generic/mleftright/mleftright.sty
Package: mleftright 2019/12/03 v1.2 Math left/right delim. as open/close (HO)
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
))
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
\Gin@req@height=\dimen162
\Gin@req@width=\dimen163
)
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2020-02-14 LaTeX2e option processing using LaTeX3 keys
)
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty
Package: xtemplate 2020-02-14 L3 Experimental prototype document functions
\l__xtemplate_tmp_dim=\dimen164
\l__xtemplate_tmp_int=\count270
\l__xtemplate_tmp_muskip=\muskip17
\l__xtemplate_tmp_skip=\skip75
)
Package: xfrac 2020-02-14 L3 Experimental split-level fractions
\l__xfrac_slash_box=\box98
\l__xfrac_tmp_box=\box99
\l__xfrac_denominator_bot_sep_dim=\dimen165
\l__xfrac_numerator_bot_sep_dim=\dimen166
\l__xfrac_numerator_top_sep_dim=\dimen167
\l__xfrac_slash_left_sep_dim=\dimen168
\l__xfrac_slash_right_sep_dim=\dimen169
\l__xfrac_slash_left_muskip=\muskip18
\l__xfrac_slash_right_muskip=\muskip19
Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on
(xtemplate) line 80.
)
(/usr/share/texlive/texmf-dist/tex/latex/interval/interval.sty
Package: interval 2019/03/06 v0.4
(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks27
\pgfkeys@temptoks=\toks28
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t
ex
\pgfkeys@tmptoks=\toks29
)))) (/usr/share/texlive/texmf-dist/tex/latex/graphics/rotating.sty
Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@r@tfl@t=\count271
\rotFPtop=\skip76
\rotFPbot=\skip77
\rot@float@box=\box100
\rot@mess@toks=\toks30
)
(/usr/share/texlive/texmf-dist/tex/latex/tabstackengine/tabstackengine.sty
Package: tabstackengine 2018/03/05 (V2.10) tabbed stacking
(/usr/share/texlive/texmf-dist/tex/latex/stackengine/stackengine.sty
Package: stackengine 2017/02/13 v4.01\ Stacking text and objects in convenient w
ays
(/usr/share/texlive/texmf-dist/tex/generic/listofitems/listofitems.sty
(/usr/share/texlive/texmf-dist/tex/generic/listofitems/listofitems.tex
\loi_cnt_foreach_nest=\count272
\loi_nestcnt=\count273
)
Package: listofitems 2019/08/21 v1.63 Grab items in lists using user-specified s
ep char (CT)
)
\c@@stackindex=\count274
\@boxshift=\skip78
\stack@tmplength=\skip79
\temp@stkl=\skip80
\@stackedboxwidth=\skip81
\@addedbox=\box101
\@anchorbox=\box102
\stackedbox=\box103
\@centerbox=\box104
\c@ROWcellindex@=\count275
)
\c@TABrowindex@=\count276
\c@TABcolindex@=\count277
\c@TABalignmentindex@=\count278
\TABcelltoks=\toks31
\TABcoltoks=\toks32
\LstrutTABtoks=\toks33
\RstrutTABtoks=\toks34
\TAB@toks=\toks35
\TABruleshift=\skip82
)
(/usr/share/texlive/texmf-dist/tex/latex/mhchem/mhchem.sty
Package: mhchem 2018/06/22 v4.08 for typesetting chemical formulae
(/usr/share/texlive/texmf-dist/tex/latex/chemgreek/chemgreek.sty
Package: chemgreek 2020/01/16 v1.1a interface for upright Greek letters for use
in chemistry (CN)
\l__chemgreek_tmpa_int=\count279
\g__chemgreek_tmpa_int=\count280
)
\l__mhchem_ce_distanceFromLastComma_int=\count281
\__mhchem_arrow_extPgfLength_skip=\skip83
\mhchem@minispace@tmp=\skip84
\mhchem@minibackspace@tmp=\skip85
\mhchem@bondwidth=\skip86
\mhchem@bondheight=\skip87
\mhchem@smallbondwidth@tmpA=\skip88
\mhchem@smallbondwidth@tmpB=\skip89
\mhchem@smallbondwidth=\skip90
\mhchem@bondtmp@minussidebearingleft=\skip91
\mhchem@bondtmp@minussidebearingright=\skip92
\l__mhchem_option_version_int=\count282
\mhchem@option@minusmathsidebearingleft=\dimen170
\mhchem@option@minusmathsidebearingright=\dimen171
\mhchem@option@minustextsidebearingleft=\dimen172
\mhchem@option@minustextsidebearingright=\dimen173
)
(/usr/share/texlive/texmf-dist/tex/latex/siunitx/siunitx.sty
Package: siunitx 2020/01/15 v2.7u A comprehensive (SI) units package
(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
Package: array 2019/08/31 v2.4l Tabular extension package (FMi)
\col@sep=\dimen174
\ar@mcellbox=\box105
\extrarowheight=\dimen175
\NC@list=\toks36
\extratabsurround=\skip93
\backup@length=\skip94
\ar@cellbox=\box106
)
\l__siunitx_tmp_box=\box107
\l__siunitx_tmp_dim=\dimen176
\l__siunitx_tmp_int=\count283
\l__siunitx_number_mantissa_length_int=\count284
\l__siunitx_number_uncert_length_int=\count285
\l__siunitx_round_int=\count286
\l__siunitx_process_decimal_int=\count287
\l__siunitx_process_uncertainty_int=\count288
\l__siunitx_process_fixed_int=\count289
\l__siunitx_process_integer_min_int=\count290
\l__siunitx_process_precision_int=\count291
\l__siunitx_group_min_int=\count292
\l__siunitx_angle_marker_box=\box108
\l__siunitx_angle_unit_box=\box109
\l__siunitx_angle_marker_dim=\dimen177
\l__siunitx_angle_unit_dim=\dimen178
\l__siunitx_unit_int=\count293
\l__siunitx_unit_denominator_int=\count294
\l__siunitx_unit_numerator_int=\count295
\l__siunitx_unit_prefix_int=\count296
\l__siunitx_unit_prefix_base_int=\count297
\l__siunitx_unit_prefix_gram_int=\count298
\l__siunitx_number_product_int=\count299
\c__siunitx_one_fill_skip=\skip95
\l__siunitx_table_unit_align_skip=\skip96
\l__siunitx_table_exponent_dim=\dimen179
\l__siunitx_table_integer_dim=\dimen180
\l__siunitx_table_mantissa_dim=\dimen181
\l__siunitx_table_marker_dim=\dimen182
\l__siunitx_table_result_dim=\dimen183
\l__siunitx_table_uncert_dim=\dimen184
\l__siunitx_table_fill_pre_dim=\dimen185
\l__siunitx_table_fill_post_dim=\dimen186
\l__siunitx_table_fill_mid_dim=\dimen187
\l__siunitx_table_pre_box=\box110
\l__siunitx_table_post_box=\box111
\l__siunitx_table_mantissa_box=\box112
\l__siunitx_table_result_box=\box113
\l__siunitx_table_number_align_skip=\skip97
\l__siunitx_table_text_align_skip=\skip98
(/usr/share/texlive/texmf-dist/tex/latex/translator/translator.sty
Package: translator 2019-05-31 v1.12a Easy translation of strings in LaTeX
))
(/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip99
\enit@outerparindent=\dimen188
\enit@toks=\toks37
\enit@inbox=\box114
\enit@count@id=\count300
\enitdp@description=\count301
)
(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.sty
Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW)
\csq@reset=\count302
\csq@gtype=\count303
\csq@glevel=\count304
\csq@qlevel=\count305
\csq@maxlvl=\count306
\csq@tshold=\count307
\csq@ltx@everypar=\toks38
(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.def
File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(/usr/share/texlive/texmf-dist/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg
)
Package csquotes Info: Redefining alias 'english' -> 'english/british'.
)
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
\MT@toks=\toks39
\MT@count=\count308
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen189
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count309
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def
File: microtype-luatex.def 2019/11/18 v2.7d Definitions specific to luatex (RS)
Module microtype Info: overwriting function `keepligature' on input line 59
LaTeX Info: Redefining \lsstyle on input line 695.
LaTeX Info: Redefining \lslig on input line 695.
\MT@outer@space=\skip100
)
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
))
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2020/02/03 v2.7h Font selection for XeLaTeX and LuaLaTeX
Lua module: fontspec 2020/02/03 2.7h Font selection for XeLaTeX and LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2020/02/03 v2.7h Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count310
\l__fontspec_language_int=\count311
\l__fontspec_strnum_int=\count312
\l__fontspec_tmp_int=\count313
\l__fontspec_tmpa_int=\count314
\l__fontspec_tmpb_int=\count315
\l__fontspec_tmpc_int=\count316
\l__fontspec_em_int=\count317
\l__fontspec_emdef_int=\count318
\l__fontspec_strong_int=\count319
\l__fontspec_strongdef_int=\count320
\l__fontspec_tmpa_dim=\dimen190
\l__fontspec_tmpb_dim=\dimen191
\l__fontspec_tmpc_dim=\dimen192
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
luaotfload | cache : Lookup cache loaded from /home/pcyra2/.texlive2019/texmf-va
r/luatex-cache/generic-dev/names/luaotfload-lookup-cache.luc.
Package fontspec Info: Font family 'Alegreya(0)' created for font 'Alegreya'
(fontspec) with options
(fontspec) [Ligatures=TeX,Renderer=OpenType,Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"Alegreya:mode=harf;shaper=ot;script=latn;language=dfl
t;+tlig;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) <->"Alegreya:mode=harf;shaper=ot;script=latn;language=dfl
t;+tlig;+smcp;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->"Alegreya/B:mode=harf;shaper=ot;script=latn;language=d
flt;+tlig;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) <->"Alegreya/B:mode=harf;shaper=ot;script=latn;language=d
flt;+tlig;+smcp;"
(fontspec) - 'italic' (m/it) with NFSS spec.:
(fontspec) <->"Alegreya/I:mode=harf;shaper=ot;script=latn;language=d
flt;+tlig;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) <->"Alegreya/I:mode=harf;shaper=ot;script=latn;language=d
flt;+tlig;+smcp;"
(fontspec) - 'bold italic' (b/it) with NFSS spec.:
(fontspec) <->"Alegreya/BI:mode=harf;shaper=ot;script=latn;language=
dflt;+tlig;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) <->"Alegreya/BI:mode=harf;shaper=ot;script=latn;language=
dflt;+tlig;+smcp;"
luaotfload | aux : font no 44 (nil) does not define feature smcp for script latn
with language dflt
luaotfload | aux : font no 45 (nil) does not define feature smcp for script latn
with language dflt
luaotfload | aux : font no 46 (nil) does not define feature smcp for script latn
with language dflt
luaotfload | aux : font no 47 (nil) does not define feature smcp for script latn
with language dflt
Package fontspec Info: Font family 'UbuntuMono(0)' created for font 'Ubuntu
(fontspec) Mono' with options
(fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=WordS
pace,Renderer=OpenType].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"UbuntuMono:mode=harf;shaper=ot;script=latn;language=d
flt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->"UbuntuMono/B:mode=harf;shaper=ot;script=latn;language
=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'italic' (m/it) with NFSS spec.:
(fontspec) <->"UbuntuMono/I:mode=harf;shaper=ot;script=latn;language
=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'bold italic' (b/it) with NFSS spec.:
(fontspec) <->"UbuntuMono/BI:mode=harf;shaper=ot;script=latn;languag
e=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(/usr/share/texlive/texmf-dist/tex/latex/unicode-math/unicode-math.sty
Package: unicode-math 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/latex/unicode-math/unicode-math-luatex.sty
Package: unicode-math-luatex 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLa
TeX
(/usr/share/texlive/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX
(/usr/share/texlive/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.
))
(/usr/share/texlive/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.sty
Package: lualatex-math 2019/01/21 v1.8 Patches for mathematics typesetting with
LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/latex/filehook/filehook.sty
Package: filehook 2020/02/03 v0.7 Hooks for input files
(/usr/share/texlive/texmf-dist/tex/latex/filehook/filehook-scrlfile.sty
Package: filehook-scrlfile 2020/02/02 v0.2 filehook patch for scrlfile package
Package filehook Info: Package 'scrlfile' detected and compensated for on input
line 107.
))
Lua module: lualatex-math 2013/08/03 1.3 Patches for mathematics typesetting wit
h LuaLaTeX
Package lualatex-math Info: I'm going to patch macro \subarray.
Package lualatex-math Info: I'm going to patch macro \frac .
Package lualatex-math Info: I'm going to patch macro \genfrac .
Package lualatex-math Info: I'm going to patch macro \MT_cramped_internal:Nn.
)
\g__um_fam_int=\count321
\g__um_fonts_used_int=\count322
\l__um_primecount_int=\count323
\g__um_primekern_muskip=\muskip20
(/usr/share/texlive/texmf-dist/tex/latex/unicode-math/unicode-math-table.tex)))
Package fontspec Info: Could not resolve font "STIXTwoMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Font family 'STIXTwoMath(0)' created for font 'STIX Two
(fontspec) Math' with options
(fontspec) [Renderer=Basic,BoldItalicFont={},ItalicFont={},SmallCaps
Font={},Script=Math,FontAdjustment={\__um_luatex_copy_fontdimens:
(fontspec) }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"STIXTwoMath:mode=base;script=math;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \__um_luatex_copy_fontdimens:
Package fontspec Info: Could not resolve font "STIXTwoMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Font family 'STIXTwoMath(1)' created for font 'STIX Two
(fontspec) Math' with options
(fontspec) [Renderer=Basic,BoldItalicFont={},ItalicFont={},SmallCaps
Font={},Script=Math,SizeFeatures={{Size=9.3075-},{Size=6.84375-9.3075,Font=STIX
(fontspec) Two Math,Style=MathScript},{Size=-6.84375,Font=STIX Two
(fontspec) Math,Style=MathScriptScript}},FontAdjustment={\__um_luate
x_copy_fontdimens:
(fontspec) }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <9.3075->"STIXTwoMath:mode=base;script=math;language=dflt
;"<6.84375-9.3075>"STIXTwoMath:mode=base;script=math;language=dflt;+ssty=0;"<-6.
84375>"STIXTwoMath:mode=base;script=math;language=dflt;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \__um_luatex_copy_fontdimens:
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 156.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/STIXTwoMath(1)/m/n on input line 156.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 156.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/STIXTwoMath(1)/b/n on input line 156
.
Package fontspec Info: STIXTwoMath scale = 1.0001.
Package fontspec Info: Could not resolve font "STIXTwoMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: STIXTwoMath scale = 1.0001.
Package fontspec Info: STIXTwoMath scale = 1.0001.
Package fontspec Info: STIXTwoMath scale = 1.0001.
Package fontspec Info: Font family 'STIXTwoMath(2)' created for font 'STIX Two
(fontspec) Math' with options
(fontspec) [Renderer=Basic,BoldItalicFont={},ItalicFont={},SmallCaps
Font={},Script=Math,SizeFeatures={{Size=9.3075-},{Size=6.84375-9.3075,Font=STIX
(fontspec) Two Math,Style=MathScript},{Size=-6.84375,Font=STIX Two
(fontspec) Math,Style=MathScriptScript}},FontAdjustment={\__um_luate
x_copy_fontdimens:
(fontspec) },ScaleAgain=1.0001,FontAdjustment={\fontdimen 8\font
(fontspec) =7.008pt\relax \fontdimen 9\font =6.40575pt\relax
(fontspec) \fontdimen 10\font =5.14648pt\relax \fontdimen 11\font
(fontspec) =7.008pt\relax \fontdimen 12\font =6.40575pt\relax
(fontspec) \fontdimen 13\font =3.94199pt\relax \fontdimen 14\font
(fontspec) =3.94199pt\relax \fontdimen 15\font =2.75938pt\relax
(fontspec) \fontdimen 16\font =2.29948pt\relax \fontdimen 17\font
(fontspec) =2.29948pt\relax \fontdimen 18\font =2.5185pt\relax
(fontspec) \fontdimen 19\font =1.752pt\relax \fontdimen 22\font
(fontspec) =2.82509pt\relax \fontdimen 20\font =0pt\relax
(fontspec) \fontdimen 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) <9.3075->s*[1.0001]"STIXTwoMath:mode=base;script=math;lan
guage=dflt;"<6.84375-9.3075>s*[1.0001]"STIXTwoMath:mode=base;script=math;languag
e=dflt;+ssty=0;"<-6.84375>s*[1.0001]"STIXTwoMath:mode=base;script=math;language=
dflt;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \__um_luatex_copy_fontdimens: \fontdimen 8\font
(fontspec) =7.008pt\relax \fontdimen 9\font =6.40575pt\relax
(fontspec) \fontdimen 10\font =5.14648pt\relax \fontdimen 11\font
(fontspec) =7.008pt\relax \fontdimen 12\font =6.40575pt\relax
(fontspec) \fontdimen 13\font =3.94199pt\relax \fontdimen 14\font
(fontspec) =3.94199pt\relax \fontdimen 15\font =2.75938pt\relax
(fontspec) \fontdimen 16\font =2.29948pt\relax \fontdimen 17\font
(fontspec) =2.29948pt\relax \fontdimen 18\font =2.5185pt\relax
(fontspec) \fontdimen 19\font =1.752pt\relax \fontdimen 22\font
(fontspec) =2.82509pt\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 156.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> TU/STIXTwoMath(2)/m/n on input line 156
.
LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font
(Font) `symbols' in the math version `bold' on input line 156.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> TU/STIXTwoMath(2)/b/n on input line 156
.
Package fontspec Info: STIXTwoMath scale = 0.9999.
Package fontspec Info: Could not resolve font "STIXTwoMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: STIXTwoMath scale = 0.9999.
Package fontspec Info: STIXTwoMath scale = 0.9999.
Package fontspec Info: STIXTwoMath scale = 0.9999.
Package fontspec Info: Font family 'STIXTwoMath(3)' created for font 'STIX Two