-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.log
More file actions
2479 lines (2091 loc) · 108 KB
/
main.log
File metadata and controls
2479 lines (2091 loc) · 108 KB
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.17.0 (TeX Live 2023/Debian) (format=lualatex 2025.8.6) 20 DEC 2025 16:48
restricted system commands enabled.
file:line:error style messages enabled.
**/home/louise/Work/doctoraat/main.tex
(/home/louise/Work/doctoraat/main.tex
LaTeX2e <2023-11-01> patch level 1
L3 programming layer <2024-01-22>
Lua module: luaotfload 2023-08-31 3.26 Lua based OpenType font support
Lua module: lualibs 2023-07-13 2.76 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2023-07-13 2.76 ConTeXt Lua libraries -- extended collection.
luaotfload | conf : Root cache directory is "/home/louise/.texlive2023/texmf-var/luatex-cache/generic/names".
luaotfload | init : Loading fontloader "fontloader-2023-08-19.lua" from kpse-resolved path "/usr/share/texlive/texmf-dist/tex/luatex/luaotfload/fontloader-2023-08-19.lua".
Lua-only attribute luaotfload@noligature = 1
luaotfload | init : Context OpenType loader version 3.133
Inserting `luaotfload.node_processor' in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' in `hpack_filter'.
Inserting `luaotfload.glyph_stream' in `glyph_stream_provider'.
Inserting `luaotfload.define_font' in `define_font'.
Lua-only attribute luaotfload_color_attribute = 2
luaotfload | conf : Root cache directory is "/home/louise/.texlive2023/texmf-var/luatex-cache/generic/names".
Inserting `luaotfload.harf.strip_prefix' in `find_opentype_file'.
Inserting `luaotfload.harf.strip_prefix' in `find_truetype_file'.
Removing `luaotfload.glyph_stream' from `glyph_stream_provider'.
Inserting `luaotfload.harf.glyphstream' in `glyph_stream_provider'.
Inserting `luaotfload.harf.finalize_vlist' in `post_linebreak_filter'.
Inserting `luaotfload.harf.finalize_hlist' in `hpack_filter'.
Inserting `luaotfload.cleanup_files' in `wrapup_run'.
Inserting `luaotfload.harf.finalize_unicode' in `finish_pdffile'.
Inserting `luaotfload.glyphinfo' in `glyph_info'.
Lua-only attribute luaotfload.letterspace_done = 3
Inserting `luaotfload.aux.set_sscale_dimens' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.set_font_index' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.patch_cambria_domh' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.fixup_fontdata' in `luaotfload.patch_font_unsafe'.
Inserting `luaotfload.aux.set_capheight' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.set_xheight' in `luaotfload.patch_font'.
Inserting `luaotfload.rewrite_fontname' in `luaotfload.patch_font'.
Inserting `tracingstacklevels' in `input_level_string'. (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbook.cls
Document Class: scrbook 2023/07/07 v3.41 KOMA-Script document class (book)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2023/07/07 v3.41 KOMA-Script package (KOMA-Script-dependent basics and keyval usage)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbase.sty
Package: scrbase 2023/07/07 v3.41 KOMA-Script package (KOMA-Script-independent basics and keyval usage)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2023/07/07 v3.41 KOMA-Script package (file load hooks)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
Package: scrlfile-hook 2023/07/07 v3.41 KOMA-Script package (using LaTeX hooks)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlogo.sty
Package: scrlogo 2023/07/07 v3.41 KOMA-Script package (logo)
))) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
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.
)) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/tocbasic.sty
Package: tocbasic 2023/07/07 v3.41 KOMA-Script package (handling toc-files)
\scr@dte@tocline@numberwidth=\skip48
\scr@dte@tocline@numbox=\box51
)
Package tocbasic Info: omitting babel extension for `toc'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `toc' on input line 135.
Class scrbook Info: File `scrsize10pt.clo' used to setup font sizes on input line 2691.
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrsize10pt.clo
File: scrsize10pt.clo 2023/07/07 v3.41 KOMA-Script font size class option (10pt)
luaotfload | db : Font names database loaded from /home/louise/.texlive2023/texmf-var/luatex-cache/generic/names/luaotfload-names.luc.gz) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/typearea.sty
Package: typearea 2023/07/07 v3.41 KOMA-Script package (type area)
\ta@bcor=\skip49
\ta@div=\count185
\ta@hblk=\skip50
\ta@vblk=\skip51
\ta@temp=\skip52
\footheight=\skip53
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 13
(typearea) BCOR = 42.67912pt
(typearea) \paperwidth = 483.69684pt
(typearea) \textwidth = 305.31996pt
(typearea) DIV departure = 7%
(typearea) \evensidemargin = 29.50333pt
(typearea) \oddsidemargin = 4.33357pt
(typearea) \paperheight = 682.86613pt
(typearea) \textheight = 526.0pt
(typearea) \topmargin = -52.74184pt
(typearea) \headheight = 15.0pt
(typearea) \headsep = 18.0pt
(typearea) \topskip = 10.0pt
(typearea) \footskip = 42.0pt
(typearea) \baselineskip = 12.0pt
(typearea) on input line 1799.
)
\c@part=\count186
\c@chapter=\count187
\c@section=\count188
\c@subsection=\count189
\c@subsubsection=\count190
\c@paragraph=\count191
\c@subparagraph=\count192
\scr@dte@chapter@maxnumwidth=\skip54
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\chapter on input line 5990.
\scr@dte@section@maxnumwidth=\skip55
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\section on input line 6001.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\section on input line 6001.
\scr@dte@part@maxnumwidth=\skip56
Class scrbook Info: using compatibility default `afterindent=true'
(scrbook) for `\part on input line 6010.
\scr@dte@subsection@maxnumwidth=\skip57
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subsection on input line 6020.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subsection on input line 6020.
\scr@dte@subsubsection@maxnumwidth=\skip58
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subsubsection on input line 6030.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subsubsection on input line 6030.
\scr@dte@paragraph@maxnumwidth=\skip59
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\paragraph on input line 6041.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\paragraph on input line 6041.
\scr@dte@subparagraph@maxnumwidth=\skip60
Class scrbook Info: using compatibility default `runin=bysign'
(scrbook) for `\subparagraph on input line 6051.
Class scrbook Info: using compatibility default `afterindent=bysign'
(scrbook) for `\subparagraph on input line 6051.
\abovecaptionskip=\skip61
\belowcaptionskip=\skip62
\c@pti@nb@sid@b@x=\box52
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lof' on input line 7242.
\scr@dte@figure@maxnumwidth=\skip63
\c@figure=\count193
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lot' on input line 7259.
\scr@dte@table@maxnumwidth=\skip64
\c@table=\count194
Class scrbook Info: Redefining `\numberline' on input line 7430.
\bibindent=\dimen139
) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2024-01-22 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
File: l3backend-luatex.def 2024-01-04 L3 backend support: PDF output (LuaTeX)
\l__color_backend_stack_int=\count195
Inserting `l3color' in `luaotfload.parse_color'.
\l__pdf_internal_box=\box53
))
Package: xparse 2023-10-10 L3 Experimental document command parser
)
Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
Lua module: fontspec 2022/01/15 2.8a Font selection for XeLaTeX and LuaLaTeX (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
\l__fontspec_script_int=\count196
\l__fontspec_language_int=\count197
\l__fontspec_strnum_int=\count198
\l__fontspec_tmp_int=\count199
\l__fontspec_tmpa_int=\count266
\l__fontspec_tmpb_int=\count267
\l__fontspec_tmpc_int=\count268
\l__fontspec_em_int=\count269
\l__fontspec_emdef_int=\count270
\l__fontspec_strong_int=\count271
\l__fontspec_strongdef_int=\count272
\l__fontspec_tmpa_dim=\dimen140
\l__fontspec_tmpb_dim=\dimen141
\l__fontspec_tmpc_dim=\dimen142
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
luaotfload | cache : Lookup cache loaded from /home/louise/.texlive2023/texmf-var/luatex-cache/generic/names/luaotfload-lookup-cache.luc.
luaotfload | aux : font no 25 (nil) does not define feature smcp for script latn with language dflt
luaotfload | aux : font no 26 (nil) does not define feature smcp for script latn with language dflt
Package fontspec Info: Font family 'sourceserifpro(0)' created for font
(fontspec) 'sourceserifpro' with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"sourceserifpro:mode=node;script=latn;language=dflt;+tlig;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) <->"sourceserifpro:mode=node;script=latn;language=dflt;+tlig;+smcp;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->"sourceserifpro/B:mode=node;script=latn;language=dflt;+tlig;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) <->"sourceserifpro/B:mode=node;script=latn;language=dflt;+tlig;+smcp;"
(fontspec) - 'italic' (m/it) with NFSS spec.:
(fontspec) <->"sourceserifpro/I:mode=node;script=latn;language=dflt;+tlig;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.:
(fontspec) <->"sourceserifpro/BI:mode=node;script=latn;language=dflt;+tlig;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
luaotfload | aux : font no 29 (nil) defines no feature for script latn
luaotfload | aux : font no 29 (nil) defines no feature for script dflt
Package fontspec Info: DroidSansMono scale = 0.8859719775387707.
Package fontspec Info: Could not resolve font "DroidSansMono/BI" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Could not resolve font "DroidSansMono/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Could not resolve font "DroidSansMono/I" (it probably
(fontspec) doesn't exist).
Package fontspec Info: DroidSansMono scale = 0.8859719775387707.
Package fontspec Info: Font family 'DroidSansMono(0)' created for font 'Droid
(fontspec) Sans Mono' with options
(fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=WordSpace,Scale=MatchLowercase].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->s*[0.8859719775387707]"DroidSansMono:mode=node;language=dflt;"
(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:
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2024/01/07 v24.1 The Babel package
(/usr/share/texlive/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@vietnamese=\language4
\l@hebrew=\language5
\l@ancientgreek=\language6
\l@bokmal=\language7
\l@kannada=\language8
\l@swissgerman=\language9
\l@dutch=\language10
\l@pinyin=\language11
\l@occitan=\language12
\l@slovenian=\language13
\l@nynorsk=\language14
\l@liturgicallatin=\language15
\l@panjabi=\language16
\l@tamil=\language17
\l@icelandic=\language18
\l@classiclatin=\language19
\l@monogreek=\language20
\l@friulan=\language21
\l@portuguese=\language22
\l@coptic=\language23
\l@georgian=\language24
\l@arabic=\language25
\l@romansh=\language26
\l@italian=\language27
\l@lithuanian=\language28
\l@galician=\language29
\l@spanish=\language30
\l@macedonian=\language31
\l@welsh=\language32
\l@gujarati=\language33
\l@piedmontese=\language34
\l@finnish=\language35
\l@oriya=\language36
\l@pali=\language37
\l@churchslavonic=\language38
\l@interlingua=\language39
\l@uppersorbian=\language40
\l@hungarian=\language41
\l@turkish=\language42
\l@mongolianlmc=\language43
\l@sanskrit=\language44
\l@mongolian=\language45
\l@latin=\language46
\l@russian=\language47
\l@estonian=\language48
\l@marathi=\language49
\l@serbian=\language50
\l@german=\language51
\l@armenian=\language52
\l@polish=\language53
\l@ngerman-x-2023-03-06=\language54
\l@bengali=\language55
\l@serbianc=\language56
\l@czech=\language57
\l@thai=\language58
\l@assamese=\language59
\l@hindi=\language60
\l@kurmanji=\language61
\l@ethiopic=\language62
\l@basque=\language63
\l@latvian=\language64
\l@croatian=\language65
\l@turkmen=\language66
\l@belarusian=\language67
\l@schoolfinnish=\language68
\l@telugu=\language69
\l@ibycus=\language70
\l@malayalam=\language71
\l@french=\language72
\l@slovak=\language73
\l@ukenglish=\language74
\l@farsi=\language75
\l@ukrainian=\language76
\l@esperanto=\language77
\l@ngerman=\language78
\l@afrikaans=\language79
\l@german-x-2023-03-06=\language80
\l@usenglishmax=\language81
\l@catalan=\language82
\l@danish=\language83
\l@bulgarian=\language84
\l@romanian=\language85
\l@swedish=\language86
\l@indonesian=\language87
\l@irish=\language88
\l@greek=\language89
\babelcatcodetablenum=\catcodetable14
\bbl@pattcodes=\catcodetable15
)
\babel@savecnt=\count273
\U@D=\dimen143
\l@unhyphenated=\language90
(/usr/share/texlive/texmf-dist/tex/generic/babel/luababel.def
\bbl@attr@locale=\attribute4
) (/usr/share/texlive/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) (\language74). Reported on input line 105.
Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
(babel) (\language74). Reported on input line 108.
)) (/usr/share/texlive/texmf-dist/tex/generic/babel/locale/en/babel-english.tex
Package babel Info: Importing font and identification data for english
(babel) from babel-en.ini. Reported on input line 11.
) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
\Gm@cnth=\count274
\Gm@cntv=\count275
\c@Gm@tempcnt=\count276
\Gm@bindingoffset=\dimen144
\Gm@wd@mp=\dimen145
\Gm@odd@mp=\dimen146
\Gm@even@mp=\dimen147
\Gm@layoutwidth=\dimen148
\Gm@layoutheight=\dimen149
\Gm@layouthoffset=\dimen150
\Gm@layoutvoffset=\dimen151
\Gm@dimlist=\toks18
) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 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 107.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/luatex.def
File: luatex.def 2022/09/22 v1.2d Graphics/color driver for luatex
))
\Gin@req@height=\dimen152
\Gin@req@width=\dimen153
) (/usr/share/texlive/texmf-dist/tex/latex/natbib/natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip65
\bibsep=\skip66
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count277
) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2024-01-20 v7.01h Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
\pdftexcmds@toks=\toks19
)) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2023-11-26 v2.56 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count278
) (/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count279
)
\@linkdim=\dimen154
\Hy@linkcounter=\count280
\Hy@pagecounter=\count281
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2024-01-20 v7.01h Hyperref: PDFDocEncoding definition (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count282
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2024-01-20 v7.01h Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Hyper figures OFF on input line 4179.
Package hyperref Info: Link nesting OFF on input line 4184.
Package hyperref Info: Hyper index ON on input line 4187.
Package hyperref Info: Plain pages OFF on input line 4194.
Package hyperref Info: Backreferencing OFF on input line 4199.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4446.
\c@Hy@tempcnt=\count283
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4784.
\XeTeXLinkMargin=\dimen155
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count284
\Field@Width=\dimen156
\Fld@charsize=\dimen157
Package hyperref Info: Hyper figures OFF on input line 6063.
Package hyperref Info: Link nesting OFF on input line 6068.
Package hyperref Info: Hyper index ON on input line 6071.
Package hyperref Info: backreferencing OFF on input line 6078.
Package hyperref Info: Link coloring OFF on input line 6083.
Package hyperref Info: Link coloring with OCG OFF on input line 6088.
Package hyperref Info: PDF/A mode OFF on input line 6093.
(/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count285
\c@Item=\count286
\c@Hfootnote=\count287
)
Package hyperref Info: Driver (autodetected): hluatex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hluatex.def
File: hluatex.def 2024-01-20 v7.01h Hyperref driver for luaTeX
(/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO)
) (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package
with kernel methods
)
\Fld@listcount=\count288
\c@bookmark@seq@number=\count289
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 285.
)
\Hy@SectionHShift=\skip67
) (/usr/share/texlive/texmf-dist/tex/latex/cite/chapterbib.sty
\c@inputfile=\count290
Package: chapterbib 2010/09/18 v 1.17
) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count291
\float@exts=\toks20
\float@box=\box54
\@float@everytoks=\toks21
\@floatcapt=\box55
) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks22
\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/wasysym/wasysym.sty
Package: wasysym 2020/01/19 v2.4 Wasy-2 symbol support package
\symwasy=\mathgroup6
LaTeX Font Info: Overwriting symbol font `wasy' in version `bold'
(Font) U/wasy/m/n --> U/wasy/b/n on input line 93.
) (/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2023/03/13 v3.1a Micro-typographical refinements (RS)
\MT@toks=\toks23
\MT@tempbox=\box56
\MT@count=\count292
LaTeX Info: Redefining \noprotrusionifhmode on input line 1059.
LaTeX Info: Redefining \leftprotrusion on input line 1060.
\MT@prot@toks=\toks24
LaTeX Info: Redefining \rightprotrusion on input line 1078.
LaTeX Info: Redefining \textls on input line 1368.
\MT@outer@kern=\dimen158
LaTeX Info: Redefining \textmicrotypecontext on input line 1988.
\MT@listname@count=\count293
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def
File: microtype-luatex.def 2023/03/13 v3.1a Definitions specific to luatex (RS)
Lua module: microtype 2023/03/13 3.1a microtype module.
Module microtype Info: overwriting function `keepligature' on input line 63
LaTeX Info: Redefining \lsstyle on input line 688.
LaTeX Info: Redefining \lslig on input line 688.
\MT@outer@space=\skip68
)
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2023/03/13 v3.1a microtype main configuration file (RS)
)) (/usr/share/texlive/texmf-dist/tex/latex/tools/xr.sty
Package: xr 2023-07-04 v5.06 eXternal References (DPC)
) (/usr/share/texlive/texmf-dist/tex/latex/transparent/transparent.sty
Package: transparent 2022-10-27 v1.5 Transparency with color stacks
(/usr/share/texlive/texmf-dist/tex/latex/transparent/transparent-nometadata.sty
Package: transparent-nometadata 2022-10-27 v1.5 Transparency via pdfTeX's color stack (HO)
)) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks25
\inpenc@posthook=\toks26
Package inputenc Warning: inputenc package ignored with utf8 based engines.
) (/usr/share/texlive/texmf-dist/tex/latex/epigraph/epigraph.sty
Package: epigraph 2020/01/02 v1.5e typesetting epigraphs
(/usr/share/texlive/texmf-dist/tex/latex/nextpage/nextpage.sty
Package: nextpage 2009/09/03 v1.1a additional page commands
)
\beforeepigraphskip=\skip69
\afterepigraphskip=\skip70
\epigraphwidth=\skip71
\epigraphrule=\skip72
) (/usr/share/texlive/texmf-dist/tex/latex/svg/svg.sty
Package: svg 2020/11/26 v2.02k (include SVG pictures)
(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
) (/usr/share/texlive/texmf-dist/tex/latex/tools/shellesc.sty
Package: shellesc 2023/07/08 v1.0d unified shell escape interface for LaTeX
Package shellesc Info: Restricted shell escape enabled on input line 77.
)
\c@svg@param@lastpage=\count294
\svg@box=\box57
\c@svg@param@currpage=\count295
) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2023/11/15 v3.01 LaTeX color extensions (UK)
(/usr/share/texlive/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 274.
(/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1350.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1354.
Package xcolor Info: Model `RGB' extended on input line 1366.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1368.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1371.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1372.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1373.
) (/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
\pgfutil@everybye=\toks27
\pgfutil@tempdima=\dimen159
\pgfutil@tempdimb=\dimen160
) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
\pgfutil@abb=\box58
) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex)
Package: pgfrcs 2023-01-15 v3.1.10 (3.1.10)
)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
Package: pgfsys 2023-01-15 v3.1.10 (3.1.10)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
\pgfkeys@pathtoks=\toks28
\pgfkeys@temptoks=\toks29
(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex
\pgfkeys@tmptoks=\toks30
))
\pgf@x=\dimen161
\pgf@y=\dimen162
\pgf@xa=\dimen163
\pgf@ya=\dimen164
\pgf@xb=\dimen165
\pgf@yb=\dimen166
\pgf@xc=\dimen167
\pgf@yc=\dimen168
\pgf@xd=\dimen169
\pgf@yd=\dimen170
\w@pgf@writea=\write3
\r@pgf@reada=\read3
\c@pgf@counta=\count296
\c@pgf@countb=\count297
\c@pgf@countc=\count298
\c@pgf@countd=\count299
\t@pgf@toka=\toks31
\t@pgf@tokb=\toks32
\t@pgf@tokc=\toks33
\pgf@sys@id@count=\count300
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
File: pgf.cfg 2023-01-15 v3.1.10 (3.1.10)
)
Driver file for pgf: pgfsys-luatex.def
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
File: pgfsys-luatex.def 2023-01-15 v3.1.10 (3.1.10)
(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
File: pgfsys-common-pdf.def 2023-01-15 v3.1.10 (3.1.10)
))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2023-01-15 v3.1.10 (3.1.10)
\pgfsyssoftpath@smallbuffer@items=\count301
\pgfsyssoftpath@bigbuffer@items=\count302
) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2023-01-15 v3.1.10 (3.1.10)
)) (/usr/share/texlive/texmf-dist/tex/latex/xurl/xurl.sty
Package: xurl 2022/01/09 v 0.10 modify URL breaks
) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
\lst@mode=\count303
\lst@gtempboxa=\box59
\lst@token=\toks34
\lst@length=\count304
\lst@currlwidth=\dimen171
\lst@column=\count305
\lst@pos=\count306
\lst@lostspace=\dimen172
\lst@width=\dimen173
\lst@newlines=\count307
\lst@lineno=\count308
\lst@maxwidth=\dimen174
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2023/02/27 1.9 (Carsten Heinz)
\c@lstnumber=\count309
\lst@skipnumbers=\count310
\lst@framebox=\box60
) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg
File: listings.cfg 2023/02/27 1.9 listings configuration
))
Package: listings 2023/02/27 1.9 (Carsten Heinz)
(/usr/share/texlive/texmf-dist/tex/latex/tools/afterpage.sty
Package: afterpage 2023/07/04 v1.08 After-Page Package (DPC)
\AP@output=\toks35
\AP@partial=\box61
\AP@footins=\box62
) (/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2023/08/05 v3.6o Customizing captions (AR)
(/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2023/07/31 v2.4d caption3 kernel (AR)
\caption@tempdima=\dimen175
\captionmargin=\dimen176
\caption@leftmargin=\dimen177
\caption@rightmargin=\dimen178
\caption@width=\dimen179
\caption@indent=\dimen180
\caption@parindent=\dimen181
\caption@hangindent=\dimen182
Package caption Info: KOMA-Script document class detected.
(/usr/share/texlive/texmf-dist/tex/latex/caption/caption-koma.sto
File: caption-koma.sto 2023/09/08 v2.0e Adaption of the caption package to the KOMA-Script document classes (AR)
))
\c@caption@flags=\count311
\c@continuedfloat=\count312
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: listings package is loaded.
Package caption Info: KOMA-Script scrextend package detected.
\caption@addmargin@hsize=\dimen183
\caption@addmargin@linewidth=\dimen184
) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer-scrpage.sty
Package: scrlayer-scrpage 2023/07/07 v3.41 KOMA-Script package (end user interface for scrlayer)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer.sty
Package: scrlayer 2023/07/07 v3.41 KOMA-Script package (defining layers and page styles)
Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 2183.
)
Package scrlayer-scrpage Info: Makeing stand-alone element `pagehead' from
(scrlayer-scrpage) alias to `pageheadfoot' on input line 1106.
) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlayer-notecolumn.sty
+----------------------------------------------------------------------
| WARNING (`scrlayer-notecolumn.sty'):
+----------------------------------------------------------------------
| YOU SHOULD NOTE, THAT THIS IS NOT AN OFFICIAL RELEASE!
| THIS VERSION IS INTENDED TO BE USED FOR TESTING ONLY!
| USAGE FOR PURPOSES OTHER THAN INTENDED IS DANGEROUS!
| DON'T EXPECT ANY SUPPORT FOR THIS VERSION!
+----------------------------------------------------------------------
Package: scrlayer-notecolumn 2023/04/17 v0.3.4032 KOMA-Script package (end user interface for scrlayer)
\tf@slnc=\write4
\c@slncpage=\count313
\slnc@file=\read4
\c@slnc@clearnote@label=\count314
\c@slnc@syncpoint=\count315
\slnc@marginpar@box=\box63
) (/usr/share/texlive/texmf-dist/tex/latex/pdfpages/pdfpages.sty
Package: pdfpages 2024/01/21 v0.5y Insert pages of external PDF documents (AM)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
) (/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2023/07/08 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count316
\calc@Bcount=\count317
\calc@Adimen=\dimen185
\calc@Bdimen=\dimen186
\calc@Askip=\skip73
\calc@Bskip=\skip74
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count318
\calc@Cskip=\skip75
) (/usr/share/texlive/texmf-dist/tex/latex/eso-pic/eso-pic.sty
Package: eso-pic 2023/05/03 v3.0c eso-pic (RN)
\ESO@tempdima=\dimen187
\ESO@tempdimb=\dimen188
)
\AM@pagewidth=\dimen189
\AM@pageheight=\dimen190
\AM@fboxrule=\dimen191
(/usr/share/texlive/texmf-dist/tex/latex/pdfpages/ppluatex.def
File: ppluatex.def 2024/01/21 v0.5y Pdfpages driver for LuaTeX (AM)
)
\pdfpages@includegraphics@status=\count319
\AM@pagebox=\box64
\AM@global@opts=\toks36
\AM@pagecnt=\count320
\AM@toc@title=\toks37
\AM@lof@heading=\toks38
\c@AM@survey=\count321
\AM@templatesizebox=\box65
) (/usr/share/texlive/texmf-dist/tex/latex/lineno/lineno.sty
Package: lineno 2023/05/20 line numbers on paragraphs v5.3
\linenopenalty=\count322
\output=\toks39
\linenoprevgraf=\count323
\linenumbersep=\dimen192
\linenumberwidth=\dimen193
\c@linenumber=\count324
\c@pagewiselinenumber=\count325
\c@LN@truepage=\count326
\c@internallinenumber=\count327
\c@internallinenumbers=\count328
\quotelinenumbersep=\dimen194
\bframerule=\dimen195
\bframesep=\dimen196
\bframebox=\box66
LaTeX Info: Redefining \\ on input line 3180.
) (./main.aux (./genai.aux) (./acknowledgements.aux) (./0_summary.aux) (./0_samenvatting.aux) (./0_conferences.aux) (./1-introduction/1-introduction.aux) (./2-trajectoriesoverview/2-trajectoriesoverview.aux) (./3-dynchro/3-dynchro.aux) (./4-interoperability/4-interoperability.aux) (./5-anndataR/5-anndataR.aux) (./6-funkyheatmap/6-funkyheatmap.aux) (./7a-future/7a-future.aux) (./7-discussion/7-discussion.aux) (./4-interoperability/4-4-appendix.aux
LaTeX Warning: Label `lst-viash-script' multiply defined.
LaTeX Warning: Label `lst-viash-config' multiply defined.
LaTeX Warning: Label `lst-viash-subset' multiply defined.
LaTeX Warning: Label `lst-viash-subset-test' multiply defined.
LaTeX Warning: Label `lst-viash-subset' multiply defined.
))
\openout1 = main.aux
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 178.
LaTeX Font Info: Trying to load font information for TS1+cmr on input line 178.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 2023/04/13 v2.5m Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 178.
LaTeX Font Info: ... okay on input line 178.
Package scrbase Info: activating english \partname on input line 178.
Package scrbase Info: activating english \chaptername on input line 178.
Package scrbase Info: activating english \appendixname on input line 178.
Package scrbase Info: activating english \figurename on input line 178.
Package scrbase Info: activating english \tablename on input line 178.
Package scrbase Info: activating english \contentsname on input line 178.
Package scrbase Info: activating english \listfigurename on input line 178.
Package scrbase Info: activating english \listtablename on input line 178.
Package scrbase Info: activating english \bibname on input line 178.
Package scrbase Info: activating english \indexname on input line 178.
Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup7
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 178.
LaTeX Font Info: Redeclaring math accent \acute on input line 178.
LaTeX Font Info: Redeclaring math accent \grave on input line 178.
LaTeX Font Info: Redeclaring math accent \ddot on input line 178.
LaTeX Font Info: Redeclaring math accent \tilde on input line 178.
LaTeX Font Info: Redeclaring math accent \bar on input line 178.
LaTeX Font Info: Redeclaring math accent \breve on input line 178.
LaTeX Font Info: Redeclaring math accent \check on input line 178.
LaTeX Font Info: Redeclaring math accent \hat on input line 178.
LaTeX Font Info: Redeclaring math accent \dot on input line 178.
LaTeX Font Info: Redeclaring math accent \mathring on input line 178.
LaTeX Font Info: Redeclaring math symbol \colon on input line 178.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 178.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 178.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 178.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 178.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 178.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 178.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 178.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 178.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 178.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 178.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 178.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 178.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 178.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 178.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/sourceserifpro(0)/m/n on input line 178.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 178.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/sourceserifpro(0)/m/n on input line 178.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/sourceserifpro(0)/m/n --> TU/sourceserifpro(0)/m/n on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/sourceserifpro(0)/m/it on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/sourceserifpro(0)/b/n on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/DroidSansMono(0)/m/n on input line 178.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/sourceserifpro(0)/m/n --> TU/sourceserifpro(0)/b/n on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/sourceserifpro(0)/b/it on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 178.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/DroidSansMono(0)/b/n on input line 178.
*geometry* driver: auto-detecting
*geometry* detected driver: luatex
*geometry* verbose mode - [ preamble ] result:
* driver: luatex
* paper: custom
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside heightrounded
* h-part:(L,W,R)=(58.04419pt, 317.5321pt, 108.12054pt)
* v-part:(T,H,B)=(73.97733pt, 458.08913pt, 150.79968pt)
* \paperwidth=483.69684pt
* \paperheight=682.86613pt
* \textwidth=317.5321pt
* \textheight=454.0pt
* \oddsidemargin=-14.2258pt
* \evensidemargin=35.85056pt
* \topmargin=-31.29266pt
* \headheight=15.0pt
* \headsep=18.0pt
* \topskip=10.0pt
* \footskip=42.0pt
* \marginparwidth=63.76346pt
* \marginparsep=12.8401pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count329
\scratchdimen=\dimen197
\scratchbox=\box67
\nofMPsegments=\count330
\nofMParguments=\count331
\everyMPshowfont=\toks40
\MPscratchCnt=\count332
\MPscratchDim=\dimen198
\MPnumerator=\count333
\makeMPintoPDFobject=\count334
\everyMPtoPDFconversion=\toks41
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 485.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
))
Package hyperref Info: Link coloring OFF on input line 178.
(./main.out) (./main.out)
\@outlinefile=\write5
\openout5 = main.out
Class scrbook Info: loading recommended package `bookmark'.
(scrbook) Using `bookmark' together with `hyperref' is recommended,
(scrbook) because of handling of possible bookmark level gaps.
(scrbook) You can avoid loading `bookmark' with KOMA-Script option
(scrbook) `bookmarkpackage=false' before \begin{document} and
(scrbook) you can avoid this message adding:
(scrbook) \usepackage{bookmark}
(scrbook) before \begin{document} on input line 178.
(/usr/share/texlive/texmf-dist/tex/latex/bookmark/bookmark.sty
Package: bookmark 2023-12-10 v1.31 PDF bookmarks (HO)
(/usr/share/texlive/texmf-dist/tex/latex/bookmark/bkm-pdftex.def
File: bkm-pdftex.def 2023-12-10 v1.31 bookmark driver for pdfTeX and luaTeX (HO)
\BKM@id=\count335
))
Package chapterbib Warning: The sectionbib option changes "\bibliography@heading " to "\section *" in \thebibliography on input line 178.
LaTeX Info: Redefining \microtypecontext on input line 178.
Package microtype Info: Applying patch `item' on input line 178.
Package microtype Info: Applying patch `toc' on input line 178.
Package microtype Info: Applying patch `eqnum' on input line 178.
Package microtype Info: Applying patch `footnote' on input line 178.
Package microtype Info: Applying patch `verbatim' on input line 178.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: Automatic font expansion enabled (level 2),
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
Package microtype Info: Using default expansion set `alltext-nott'.
LaTeX Info: Redefining \showhyphens on input line 178.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of spacing.
Package microtype Info: No adjustment of kerning.
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `sourceserifpro' (encoding: TU).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
\c@lstlisting=\count336
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: End \AtBeginDocument code.
(/usr/share/texlive/texmf-dist/tex/latex/pdflscape/pdflscape.sty
Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF
(/usr/share/texlive/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty
Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PDF (HO)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/lscape.sty
Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC)
)
Package pdflscape Info: Auto-detected driver: pdftex on input line 81.
))
<titlepage2.pdf, id=7, 483.69708pt x 682.86618pt>
File: titlepage2.pdf Graphic file (type pdf)
<use titlepage2.pdf>
Package luatex.def Info: titlepage2.pdf used on input line 183.
(luatex.def) Requested size: 483.69589pt x 682.8645pt.
File: titlepage2.pdf Graphic file (type pdf)
<use titlepage2.pdf>
Package luatex.def Info: titlepage2.pdf used on input line 183.
(luatex.def) Requested size: 483.69589pt x 682.8645pt.
<titlepage2.pdf, id=10, page=1, 483.69708pt x 682.86618pt>