-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.log
1692 lines (1529 loc) · 66.2 KB
/
thesis.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 LuaHBTeX, Version 1.13.2 (TeX Live 2021/W32TeX) (format=lualatex 2021.8.17) 17 AUG 2021 15:17
restricted system commands enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2021-06-01> patch level 1
Lua module: luaotfload 2021-05-21 3.18 Lua based OpenType font support
Lua module: lualibs 2021-05-20 2.74 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2021-05-20 2.74 ConTeXt Lua libraries -- extended c
ollection.
luaotfload | conf : Root cache directory is "C:/texlive/2021/texmf-var/luatex-ca
che/generic/names".
luaotfload | init : Loading fontloader "fontloader-2021-05-20.lua" from kpse-res
olved path "c:/texlive/2021/texmf-dist/tex/luatex/luaotfload/fontloader-2021-05-
20.lua".
Lua-only attribute luaotfload@noligature = 1
Lua-only attribute luaotfload@syllabe = 2
luaotfload | init : Context OpenType loader version 3.116
Inserting `luaotfload.node_processor' at position 1 in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' at position 1 in `hpack_filter'.
Inserting `luaotfload.glyph_stream' at position 1 in `glyph_stream_provider'.
Inserting `luaotfload.define_font' at position 1 in `define_font'.
Lua-only attribute luaotfload_color_attribute = 3
luaotfload | conf : Root cache directory is "C:/texlive/2021/texmf-var/luatex-ca
che/generic/names".
Inserting `luaotfload.harf.strip_prefix' at position 1 in `find_opentype_file'.
Inserting `luaotfload.harf.strip_prefix' at position 1 in `find_truetype_file'.
Inserting `luaotfload.harf.finalize_vlist' at position 1 in `post_linebreak_filt
er'.
Inserting `luaotfload.harf.finalize_hlist' at position 2 in `hpack_filter'.
Inserting `luaotfload.cleanup_files' at position 1 in `wrapup_run'.
Inserting `luaotfload.harf.finalize_unicode' at position 1 in `finish_pdffile'.
Inserting `luaotfload.glyphinfo' at position 1 in `glyph_info'.
Lua-only attribute luaotfload.letterspace_done = 4
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'.
Inserting `luaotfload.rewrite_fontname' at position 6 in `luaotfload.patch_font'
. L3 programming layer <2021-07-12>
Inserting `tracingstacklevels' at position 1 in `input_level_string'. (./tudoth
esis.cls
Document Class: tudothesis 2015/08/31 v0.9 wrapper to scrbook for thesis at TUD
o
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrbook.cls
Document Class: scrbook 2021/06/25 v3.34 KOMA-Script document class (book)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2021/06/25 v3.34 KOMA-Script package (KOMA-Script-dependent b
asics and keyval usage)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrbase.sty
Package: scrbase 2021/06/25 v3.34 KOMA-Script package (KOMA-Script-independent
basics and keyval usage)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2021/06/25 v3.34 KOMA-Script package (file load hooks)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
Package: scrlfile-hook 2021/06/25 v3.34 KOMA-Script package (using LaTeX hooks)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrlogo.sty
Package: scrlogo 2021/06/25 v3.34 KOMA-Script package (logo)
)))
(c:/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
Already applied: [0000/00/00] Usage of raw or classic option list on input line
368.
))
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/tocbasic.sty
Package: tocbasic 2021/06/25 v3.34 KOMA-Script package (handling toc-files)
\scr@dte@tocline@numberwidth=\skip47
\scr@dte@tocline@numbox=\box50
)
Package tocbasic Info: babel extension for `toc' omitted
(tocbasic) because of missing \bbl@set@language on input line 137.
Class scrbook Info: File `scrsize11pt.clo' used instead of
(scrbook) file `scrsize11.clo' to setup font sizes on input line 2489
.
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrsize11pt.clo
File: scrsize11pt.clo 2021/06/25 v3.34 KOMA-Script font size class option (11pt
)
luaotfload | db : Font names database loaded from C:/texlive/2021/texmf-var/luat
ex-cache/generic/names/luaotfload-names.luc)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/typearea.sty
Package: typearea 2021/06/25 v3.34 KOMA-Script package (type area)
\ta@bcor=\skip48
\ta@div=\count179
\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 = 34.1433pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 394.35527pt
(typearea) DIV departure = 0%
(typearea) \evensidemargin = 40.40292pt
(typearea) \oddsidemargin = 18.20976pt
(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 1742.
)
\c@part=\count180
\c@chapter=\count181
\c@section=\count182
\c@subsection=\count183
\c@subsubsection=\count184
\c@paragraph=\count185
\c@subparagraph=\count186
\scr@dte@chapter@maxnumwidth=\skip53
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\chapter on input line 5714.
\scr@dte@section@maxnumwidth=\skip54
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\section on input line 5725.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\section on input line 5725.
\scr@dte@part@maxnumwidth=\skip55
Class scrbook Info: using compatibility default `afterindent=true'
(scrbook) for `\part on input line 5734.
\scr@dte@subsection@maxnumwidth=\skip56
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subsection on input line 5744.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subsection on input line 5744.
\scr@dte@subsubsection@maxnumwidth=\skip57
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subsubsection on input line 5754.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subsubsection on input line 5754.
\scr@dte@paragraph@maxnumwidth=\skip58
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\paragraph on input line 5765.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\paragraph on input line 5765.
\scr@dte@subparagraph@maxnumwidth=\skip59
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subparagraph on input line 5775.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subparagraph on input line 5775.
\abovecaptionskip=\skip60
\belowcaptionskip=\skip61
\c@pti@nb@sid@b@x=\box51
Package tocbasic Info: babel extension for `lof' omitted
(tocbasic) because of missing \bbl@set@language on input line 6961.
\scr@dte@figure@maxnumwidth=\skip62
\c@figure=\count187
Package tocbasic Info: babel extension for `lot' omitted
(tocbasic) because of missing \bbl@set@language on input line 6982.
\scr@dte@table@maxnumwidth=\skip63
\c@table=\count188
Class scrbook Info: Redefining `\numberline' on input line 7155.
\bibindent=\dimen138
)
(c:/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(c:/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: luatex.def on input line 225.
(c:/texlive/2021/texmf-dist/tex/latex/graphics-def/luatex.def
File: luatex.def 2021/06/01 v1.2c Graphics/color driver for luatex
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
)
(c:/texlive/2021/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2020/10/26 v3.5g Customizing captions (AR)
(c:/texlive/2021/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2020/10/21 v2.2e caption3 kernel (AR)
\captionmargin=\dimen139
\captionmargin@=\dimen140
\captionwidth=\dimen141
\caption@tempdima=\dimen142
\caption@indent=\dimen143
\caption@parindent=\dimen144
\caption@hangindent=\dimen145
Package caption Info: KOMA-Script document class detected.
(c:/texlive/2021/texmf-dist/tex/latex/caption/caption-koma.sto
File: caption-koma.sto 2020/09/21 v2.0b Adaption of the caption package to the
KOMA-Script document classes (AR)
))
\c@caption@flags=\count189
\c@continuedfloat=\count190
)
(c:/texlive/2021/texmf-dist/tex/latex/caption/subcaption.sty
Package: subcaption 2020/10/07 v1.3j Sub-captions (AR)
\c@subfigure=\count191
\c@subtable=\count192
)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrlayer-scrpage.sty
Package: scrlayer-scrpage 2021/06/25 v3.34 KOMA-Script package (end user interf
ace for scrlayer)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrlayer.sty
Package: scrlayer 2021/06/25 v3.34 KOMA-Script package (defining layers and pag
e styles)
Package scrlayer Info: Using already defined \footheight
(scrlayer) hoping, that this is a length and
(scrlayer) not only a macro on input line 136.
Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 216
2.
)
Package scrlayer-scrpage Info: Makeing stand-alone element `pagehead' from
(scrlayer-scrpage) alias to `pageheadfoot' on input line 1085.
Package scrlayer-scrpage Info: deactivating warning for font element
(scrlayer-scrpage) `pagefoot' on input line 1109.
)
Package scrlayer-scrpage Info: auto-selection of `pagestyleset=KOMA-Script'.
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2021/04/20 v2.17j AMS math features
\@mathmargin=\skip64
For additional information on amsmath, use the `?' option.
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks17
\ex@=\dimen146
))
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen147
)
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count193
LaTeX Info: Redefining \frac on input line 236.
\uproot@=\count194
\leftroot@=\count195
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count196
\DOTSCASE@=\count197
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box52
\strutbox@=\box53
\big@size=\dimen148
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count198
\c@MaxMatrixCols=\count199
\dotsspace@=\muskip16
\c@parentequation=\count266
\dspbrk@lvl=\count267
\tag@help=\toks18
\row@=\count268
\column@=\count269
\maxfields@=\count270
\andhelp@=\toks19
\eqnshift@=\dimen149
\alignsep@=\dimen150
\tagshift@=\dimen151
\tagwidth@=\dimen152
\totwidth@=\dimen153
\lineht@=\dimen154
\@envbody=\toks20
\multlinegap=\skip65
\multlinetaggap=\skip66
\mathdisplay@stack=\toks21
LaTeX Info: Redefining \[ on input line 2923.
LaTeX Info: Redefining \] on input line 2924.
))
(c:/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(c:/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
(c:/texlive/2021/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(c:/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
))
(c:/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
(c:/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
\pdftexcmds@toks=\toks22
)
(c:/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
e
with kernel methods
)
(c:/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
(c:/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
(c:/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec.sty
(c:/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(c:/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2021-07-12 L3 programming layer (loader)
(c:/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
File: l3backend-luatex.def 2021-08-04 L3 backend support: PDF output (LuaTeX)
\l__color_backend_stack_int=\count271
\l__pdf_internal_box=\box54
))
Package: xparse 2021-08-04 L3 Experimental document command parser
)
Package: fontspec 2020/02/21 v2.7i Font selection for XeLaTeX and LuaLaTeX
Lua module: fontspec 2020/02/21 2.7i Font selection for XeLaTeX and LuaLaTeX
(c:/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2020/02/21 v2.7i Font selection for XeLaTeX and LuaLaT
eX
\l__fontspec_script_int=\count272
\l__fontspec_language_int=\count273
\l__fontspec_strnum_int=\count274
\l__fontspec_tmp_int=\count275
\l__fontspec_tmpa_int=\count276
\l__fontspec_tmpb_int=\count277
\l__fontspec_tmpc_int=\count278
\l__fontspec_em_int=\count279
\l__fontspec_emdef_int=\count280
\l__fontspec_strong_int=\count281
\l__fontspec_strongdef_int=\count282
\l__fontspec_tmpa_dim=\dimen155
\l__fontspec_tmpb_dim=\dimen156
\l__fontspec_tmpc_dim=\dimen157
(c:/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(c:/texlive/2021/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
(c:/texlive/2021/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2021/07/22 3.63 The Babel package
(c:/texlive/2021/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2021/07/22 3.63 Babel common definitions
(c:/texlive/2021/texmf-dist/tex/generic/babel/luababel.def
\bbl@readstream=\read2
\l@dumylang=\language2
Package babel Info: Non-standard hyphenation setup on input line 118.
\l@nohyphenation=\language3
\l@german-x-2021-02-26=\language4
\l@ngerman-x-2021-02-26=\language5
\l@afrikaans=\language6
\l@ancientgreek=\language7
\l@ibycus=\language8
\l@arabic=\language9
\l@armenian=\language10
\l@basque=\language11
\l@belarusian=\language12
\l@bulgarian=\language13
\l@catalan=\language14
\l@pinyin=\language15
\l@churchslavonic=\language16
\l@coptic=\language17
\l@croatian=\language18
\l@czech=\language19
\l@danish=\language20
\l@dutch=\language21
\l@ukenglish=\language22
\l@usenglishmax=\language23
\l@esperanto=\language24
\l@estonian=\language25
\l@ethiopic=\language26
\l@farsi=\language27
\l@finnish=\language28
\l@schoolfinnish=\language29
\l@french=\language30
\l@friulan=\language31
\l@galician=\language32
\l@georgian=\language33
\l@german=\language34
\l@ngerman=\language35
\l@swissgerman=\language36
\l@greek=\language37
\l@monogreek=\language38
\l@hungarian=\language39
\l@icelandic=\language40
\l@assamese=\language41
\l@bengali=\language42
\l@gujarati=\language43
\l@hindi=\language44
\l@kannada=\language45
\l@malayalam=\language46
\l@marathi=\language47
\l@oriya=\language48
\l@pali=\language49
\l@panjabi=\language50
\l@tamil=\language51
\l@telugu=\language52
\l@indonesian=\language53
\l@interlingua=\language54
\l@irish=\language55
\l@italian=\language56
\l@kurmanji=\language57
\l@classiclatin=\language58
\l@latin=\language59
\l@liturgicallatin=\language60
\l@latvian=\language61
\l@lithuanian=\language62
\l@macedonian=\language63
\l@mongolian=\language64
\l@mongolianlmc=\language65
\l@bokmal=\language66
\l@nynorsk=\language67
\l@occitan=\language68
\l@piedmontese=\language69
\l@polish=\language70
\l@portuguese=\language71
\l@romanian=\language72
\l@romansh=\language73
\l@russian=\language74
\l@sanskrit=\language75
\l@serbian=\language76
\l@serbianc=\language77
\l@slovak=\language78
\l@slovenian=\language79
\l@spanish=\language80
\l@swedish=\language81
\l@thai=\language82
\l@turkish=\language83
\l@turkmen=\language84
\l@ukrainian=\language85
\l@uppersorbian=\language86
\l@welsh=\language87
\babelcatcodetablenum=\catcodetable12
\bbl@pattcodes=\catcodetable13
)
\babel@savecnt=\count283
\U@D=\dimen158
\l@unhyphenated=\language88
(c:/texlive/2021/texmf-dist/tex/generic/babel/luababel.def
\bbl@attr@locale=\attribute5
))
(c:/texlive/2021/texmf-dist/tex/generic/babel-english/american.ldf
Language: american 2017/06/06 v3.3r English support from the babel system
(c:/texlive/2021/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
Package babel Info: Hyphen rules for 'canadian' set to \l@english
(babel) (\language0). Reported on input line 102.
Package babel Info: Hyphen rules for 'australian' set to \l@ukenglish
(babel) (\language22). Reported on input line 105.
Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
(babel) (\language22). Reported on input line 108.
))
(c:/texlive/2021/texmf-dist/tex/generic/babel-german/ngerman.ldf
Language: ngerman 2021/02/27 v2.13 German support for babel (post-1996 orthogra
phy)
(c:/texlive/2021/texmf-dist/tex/generic/babel-german/ngermanb.ldf
Language: ngermanb 2021/02/27 v2.13 German support for babel (post-1996 orthogr
aphy)
Package babel Info: Making " an active character on input line 122.
(c:/texlive/2021/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1996.tex
UTF-8 German hyphenation patterns (reformed orthography)
(c:/texlive/2021/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex
German Hyphenation Patterns (Reformed Orthography, 2006) `dehyphn-x' 2021-02-26
(WL)))))) (c:/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.sty
Package: csquotes 2021-02-22 v5.2l context-sensitive quotations (JAW)
(c:/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count284
)
\csq@reset=\count285
\csq@gtype=\count286
\csq@glevel=\count287
\csq@qlevel=\count288
\csq@maxlvl=\count289
\csq@tshold=\count290
\csq@ltx@everypar=\toks23
(c:/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.def
File: csquotes.def 2021-02-22 v5.2l csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(c:/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg
)
Package csquotes Info: Enabling multilingual quotes.
)
(c:/texlive/2021/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2021/03/14 v2.8c Micro-typographical refinements (RS)
\MT@toks=\toks24
\MT@count=\count291
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen159
LaTeX Info: Redefining \textmicrotypecontext on input line 1374.
\MT@listname@count=\count292
(c:/texlive/2021/texmf-dist/tex/latex/microtype/microtype-luatex.def
File: microtype-luatex.def 2021/03/14 v2.8c Definitions specific to luatex (RS)
Module microtype Info: overwriting function `keepligature' on input line 62
LaTeX Info: Redefining \lsstyle on input line 710.
LaTeX Info: Redefining \lslig on input line 710.
\MT@outer@space=\skip67
)
Package microtype Info: Loading configuration file microtype.cfg.
(c:/texlive/2021/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2021/03/14 v2.8c microtype main configuration file (RS)
))
(c:/texlive/2021/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/texlive/2021/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.
))
(c:/texlive/2021/texmf-dist/tex/latex/mathtools/mathtools.sty
Package: mathtools 2021/04/12 v1.27 mathematical typesetting tools
(c:/texlive/2021/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count293
\calc@Bcount=\count294
\calc@Adimen=\dimen160
\calc@Bdimen=\dimen161
\calc@Askip=\skip68
\calc@Bskip=\skip69
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count295
\calc@Cskip=\skip70
)
(c:/texlive/2021/texmf-dist/tex/latex/mathtools/mhsetup.sty
Package: mhsetup 2021/03/18 v1.4 programming setup (MH)
)
LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 130.
LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 130.
LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 130.
LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 130.
\g_MT_multlinerow_int=\count296
\l_MT_multwidth_dim=\dimen162
\origjot=\skip71
\l_MT_shortvdotswithinadjustabove_dim=\dimen163
\l_MT_shortvdotswithinadjustbelow_dim=\dimen164
\l_MT_above_intertext_sep=\dimen165
\l_MT_below_intertext_sep=\dimen166
\l_MT_above_shortintertext_sep=\dimen167
\l_MT_below_shortintertext_sep=\dimen168
\xmathstrut@box=\box55
\xmathstrut@dim=\dimen169
)
(c:/texlive/2021/texmf-dist/tex/latex/unicode-math/unicode-math.sty
Package: unicode-math 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLaTeX
(c:/texlive/2021/texmf-dist/tex/latex/unicode-math/unicode-math-luatex.sty
Package: unicode-math-luatex 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaL
aTeX
(c:/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2021-08-04 LaTeX2e option processing using LaTeX3 keys
)
(c:/texlive/2021/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX
(c:/texlive/2021/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.
))
(c:/texlive/2021/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.sty
Package: lualatex-math 2021/07/05 v1.11 Patches for mathematics typesetting wit
h LuaLaTeX
Lua module: lualatex-math 2013/08/03 1.3 Patches for mathematics typesetting wit
h LuaLaTeX)
\g__um_fam_int=\count297
\g__um_fonts_used_int=\count298
\l__um_primecount_int=\count299
\g__um_primekern_muskip=\muskip17
(c:/texlive/2021/texmf-dist/tex/latex/unicode-math/unicode-math-table.tex)))
luaotfload | cache : Lookup cache loaded from C:/texlive/2021/texmf-var/luatex-c
ache/generic/names/luaotfload-lookup-cache.luc.
Package fontspec Info: Could not resolve font "LatinModernMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Font family 'LatinModernMath(0)' created for font
(fontspec) 'Latin Modern Math' with options
(fontspec) [Ligatures=TeX,Renderer=Basic,BoldItalicFont={},ItalicFo
nt={},SmallCapsFont={},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) <->"LatinModernMath:mode=base;script=math;language=dflt;
+tlig;"
(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 "LatinModernMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Font family 'LatinModernMath(1)' created for font
(fontspec) 'Latin Modern Math' with options
(fontspec) [Ligatures=TeX,Renderer=Basic,BoldItalicFont={},ItalicFo
nt={},SmallCapsFont={},Script=Math,SizeFeatures={{Size=9.3075-},{Size=6.57-9.30
75,Font=Latin
(fontspec) Modern Math,Style=MathScript},{Size=-6.57,Font=Latin
(fontspec) Modern
(fontspec) Math,Style=MathScriptScript}},FontAdjustment={\__um_luat
ex_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->"LatinModernMath:mode=base;script=math;language
=dflt;+tlig;"<6.57-9.3075>"LatinModernMath:mode=base;script=math;language=dflt;
+tlig;+ssty=0;"<-6.57>"LatinModernMath:mode=base;script=math;language=dflt;+tli
g;+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 61.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/LatinModernMath(1)/m/n on input line
61.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 61.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/LatinModernMath(1)/b/n on input lin
e 61.
Package fontspec Info: LatinModernMath scale = 1.0001.
Package fontspec Info: Could not resolve font "LatinModernMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: LatinModernMath scale = 1.0001.
Package fontspec Info: LatinModernMath scale = 1.0001.
Package fontspec Info: LatinModernMath scale = 1.0001.
Package fontspec Info: Font family 'LatinModernMath(2)' created for font
(fontspec) 'Latin Modern Math' with options
(fontspec) [Ligatures=TeX,Renderer=Basic,BoldItalicFont={},ItalicFo
nt={},SmallCapsFont={},Script=Math,SizeFeatures={{Size=9.3075-},{Size=6.57-9.30
75,Font=Latin
(fontspec) Modern Math,Style=MathScript},{Size=-6.57,Font=Latin
(fontspec) Modern
(fontspec) Math,Style=MathScriptScript}},FontAdjustment={\__um_luat
ex_copy_fontdimens:
(fontspec) },ScaleAgain=1.0001,FontAdjustment={\fontdimen 8\font
(fontspec) =7.41315pt\relax \fontdimen 9\font =4.31429pt\relax
(fontspec) \fontdimen 10\font =4.86179pt\relax \fontdimen 11\font
(fontspec) =7.51169pt\relax \fontdimen 12\font =3.77774pt\relax
(fontspec) \fontdimen 13\font =3.97484pt\relax \fontdimen 14\font
(fontspec) =3.97484pt\relax \fontdimen 15\font =3.16454pt\relax
(fontspec) \fontdimen 16\font =2.70464pt\relax \fontdimen 17\font
(fontspec) =2.70464pt\relax \fontdimen 18\font =2.73749pt\relax
(fontspec) \fontdimen 19\font =2.18999pt\relax \fontdimen 22\font
(fontspec) =2.73749pt\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]"LatinModernMath:mode=base;script=mat
h;language=dflt;+tlig;"<6.57-9.3075>s*[1.0001]"LatinModernMath:mode=base;script
=math;language=dflt;+tlig;+ssty=0;"<-6.57>s*[1.0001]"LatinModernMath:mode=base;
script=math;language=dflt;+tlig;+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.41315pt\relax \fontdimen 9\font =4.31429pt\relax
(fontspec) \fontdimen 10\font =4.86179pt\relax \fontdimen 11\font
(fontspec) =7.51169pt\relax \fontdimen 12\font =3.77774pt\relax
(fontspec) \fontdimen 13\font =3.97484pt\relax \fontdimen 14\font
(fontspec) =3.97484pt\relax \fontdimen 15\font =3.16454pt\relax
(fontspec) \fontdimen 16\font =2.70464pt\relax \fontdimen 17\font
(fontspec) =2.70464pt\relax \fontdimen 18\font =2.73749pt\relax
(fontspec) \fontdimen 19\font =2.18999pt\relax \fontdimen 22\font
(fontspec) =2.73749pt\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 61.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> TU/LatinModernMath(2)/m/n on input lin
e 61.
LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font
(Font) `symbols' in the math version `bold' on input line 61.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> TU/LatinModernMath(2)/b/n on input lin
e 61.
Package fontspec Info: LatinModernMath scale = 0.9999.
Package fontspec Info: Could not resolve font "LatinModernMath/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: LatinModernMath scale = 0.9999.
Package fontspec Info: LatinModernMath scale = 0.9999.
Package fontspec Info: LatinModernMath scale = 0.9999.
Package fontspec Info: Font family 'LatinModernMath(3)' created for font
(fontspec) 'Latin Modern Math' with options
(fontspec) [Ligatures=TeX,Renderer=Basic,BoldItalicFont={},ItalicFo
nt={},SmallCapsFont={},Script=Math,SizeFeatures={{Size=9.3075-},{Size=6.57-9.30
75,Font=Latin
(fontspec) Modern Math,Style=MathScript},{Size=-6.57,Font=Latin
(fontspec) Modern
(fontspec) Math,Style=MathScriptScript}},FontAdjustment={\__um_luat
ex_copy_fontdimens:
(fontspec) },ScaleAgain=0.9999,FontAdjustment={\fontdimen 8\font
(fontspec) =0.43799pt\relax \fontdimen 9\font =2.18999pt\relax
(fontspec) \fontdimen 10\font =1.82864pt\relax \fontdimen 11\font
(fontspec) =1.21544pt\relax \fontdimen 12\font =6.56999pt\relax
(fontspec) \fontdimen 13\font =0pt\relax }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <9.3075->s*[0.9999]"LatinModernMath:mode=base;script=mat
h;language=dflt;+tlig;"<6.57-9.3075>s*[0.9999]"LatinModernMath:mode=base;script
=math;language=dflt;+tlig;+ssty=0;"<-6.57>s*[0.9999]"LatinModernMath:mode=base;
script=math;language=dflt;+tlig;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \__um_luatex_copy_fontdimens: \fontdimen 8\font
(fontspec) =0.43799pt\relax \fontdimen 9\font =2.18999pt\relax
(fontspec) \fontdimen 10\font =1.82864pt\relax \fontdimen 11\font
(fontspec) =1.21544pt\relax \fontdimen 12\font =6.56999pt\relax
(fontspec) \fontdimen 13\font =0pt\relax
LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 6
1.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> TU/LatinModernMath(3)/m/n on input lin
e 61.
LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 61.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> TU/LatinModernMath(3)/b/n on input lin
e 61.
LaTeX Font Info: Font shape `TU/LatinModernMath(2)/m/n' will be
(Font) scaled to size 10.95116pt on input line 61.
LaTeX Font Info: Font shape `TU/LatinModernMath(2)/m/n' will be
(Font) scaled to size 7.6658pt on input line 61.
LaTeX Font Info: Font shape `TU/LatinModernMath(2)/m/n' will be
(Font) scaled to size 5.47559pt on input line 61.
LaTeX Font Info: Font shape `TU/LatinModernMath(3)/m/n' will be
(Font) scaled to size 10.94882pt on input line 61.
LaTeX Font Info: Font shape `TU/LatinModernMath(3)/m/n' will be
(Font) scaled to size 7.66417pt on input line 61.
LaTeX Font Info: Font shape `TU/LatinModernMath(3)/m/n' will be
(Font) scaled to size 5.47441pt on input line 61.
LaTeX Font Info: Trying to load font information for U+msa on input line 61.
(c:/texlive/2021/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Trying to load font information for U+msb on input line 61.
(c:/texlive/2021/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
(c:/texlive/2021/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty
(c:/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2020/12/05 v1.2c Enhanced LaTeX Graphics (DPC,SPQR)
(c:/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
(c:/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(c:/texlive/2021/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 107.
)
\Gin@req@height=\dimen170
\Gin@req@width=\dimen171
)
(c:/texlive/2021/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(c:/texlive/2021/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty
Package: xtemplate 2021-08-04 L3 Experimental prototype document functions
\l__xtemplate_tmp_dim=\dimen172
\l__xtemplate_tmp_int=\count300
\l__xtemplate_tmp_muskip=\muskip18
\l__xtemplate_tmp_skip=\skip72
)
Package: xfrac 2021-08-04 L3 Experimental split-level fractions
\l__xfrac_slash_box=\box56
\l__xfrac_tmp_box=\box57
\l__xfrac_denominator_bot_sep_dim=\dimen173
\l__xfrac_numerator_bot_sep_dim=\dimen174
\l__xfrac_numerator_top_sep_dim=\dimen175
\l__xfrac_slash_left_sep_dim=\dimen176
\l__xfrac_slash_right_sep_dim=\dimen177
\l__xfrac_slash_left_muskip=\muskip19
\l__xfrac_slash_right_muskip=\muskip20
Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on
(xtemplate) line 80.
)
(c:/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx.sty
Package: siunitx 2021-08-04 v3.0.24 A comprehensive (SI) units package
\l__siunitx_angle_tmp_dim=\dimen178
\l__siunitx_angle_marker_box=\box58
\l__siunitx_angle_unit_box=\box59
\l__siunitx_compound_count_int=\count301
(c:/texlive/2021/texmf-dist/tex/latex/translations/translations.sty
Package: translations 2021/01/17 v1.10a internationalization of LaTeX2e package
s (CN)
)
\l__siunitx_number_exponent_fixed_int=\count302
\l__siunitx_number_min_decimal_int=\count303
\l__siunitx_number_min_integer_int=\count304
\l__siunitx_number_round_precision_int=\count305
\l__siunitx_number_group_minimum_int=\count306
\l__siunitx_table_tmp_box=\box60
\l__siunitx_table_tmp_dim=\dimen179
\l__siunitx_table_column_width_dim=\dimen180
\l__siunitx_table_integer_box=\box61
\l__siunitx_table_decimal_box=\box62
\l__siunitx_table_before_box=\box63
\l__siunitx_table_after_box=\box64
\l__siunitx_table_before_dim=\dimen181
\l__siunitx_table_carry_dim=\dimen182
\l__siunitx_unit_tmp_int=\count307
\l__siunitx_unit_position_int=\count308
\l__siunitx_unit_total_int=\count309
Package siunitx Info: Option "separate-uncertainty" has been deprecated in
(siunitx) this release.
(siunitx)
(siunitx) Use "uncertainty-mode = separate" as a replacement.
(c:/texlive/2021/texmf-dist/tex/latex/tools/array.sty
Package: array 2021/04/20 v2.5e Tabular extension package (FMi)
\col@sep=\dimen183
\ar@mcellbox=\box65
\extrarowheight=\dimen184
\NC@list=\toks25
\extratabsurround=\skip73
\backup@length=\skip74
\ar@cellbox=\box66
))
Package siunitx Warning: Option "math-micro" has been removed in this release.
Package siunitx Warning: Option "text-micro" has been removed in this release.
(c:/texlive/2021/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen185
\lightrulewidth=\dimen186
\cmidrulewidth=\dimen187
\belowrulesep=\dimen188
\belowbottomsep=\dimen189
\aboverulesep=\dimen190
\abovetopsep=\dimen191
\cmidrulesep=\dimen192
\cmidrulekern=\dimen193
\defaultaddspace=\dimen194
\@cmidla=\count310
\@cmidlb=\count311
\@aboverulesep=\dimen195
\@belowrulesep=\dimen196
\@thisruleclass=\count312
\@lastruleclass=\count313
\@thisrulewidth=\dimen197
)
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/scrhack.sty
Package: scrhack 2021/06/25 v3.34 KOMA-Script package (hacking other packages)
(c:/texlive/2021/texmf-dist/tex/latex/xpatch/xpatch.sty
Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands
))
(c:/texlive/2021/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count314
\float@exts=\toks26
\float@box=\box67
\@float@everytoks=\toks27
\@floatcapt=\box68
)
Package scrhack Info: loading float hack on input line 94.
(c:/texlive/2021/texmf-dist/tex/latex/koma-script/float.hak
File: float.hak 2021/06/25 v3.34 KOMA-Script scrhack part (hacking package floa
t)
Package scrhack Info: redefining \newfloat on input line 163.
Package scrhack Info: redefining \listof on input line 163.
Package scrhack Info: undefining \float@addtolists on input line 163.
)
(c:/texlive/2021/texmf-dist/tex/latex/placeins/placeins.sty
Package: placeins 2005/04/18 v 2.2
)
(c:/texlive/2021/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip75
\enit@outerparindent=\dimen198
\enit@toks=\toks28
\enit@inbox=\box69
\enit@count@id=\count315
\enitdp@description=\count316
)
(c:/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.sty
Package: biblatex 2020/12/31 v3.16 programmable bibliographies (PK/MW)
(c:/texlive/2021/texmf-dist/tex/latex/logreq/logreq.sty
Package: logreq 2010/08/04 v1.0 xml request logger