-
Notifications
You must be signed in to change notification settings - Fork 0
/
dokumentation.log
1513 lines (1398 loc) · 69.7 KB
/
dokumentation.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 pdfTeX, Version 3.141592653-2.6-1.40.25 (MiKTeX 23.5) (preloaded format=pdflatex 2023.5.12) 9 JUN 2023 16:58
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**d:/Development/Studienarbeit/dokumentation.tex
(d:/Development/Studienarbeit/dokumentation.tex
LaTeX2e <2022-11-01> patch level 1
L3 programming layer <2023-05-05> (D:\Software\MiKTeX\tex/latex/koma-script\scrreprt.cls
Document Class: scrreprt 2023/04/24 v3.40 KOMA-Script document class (report)
(D:\Software\MiKTeX\tex/latex/koma-script\scrkbase.sty
Package: scrkbase 2023/04/24 v3.40 KOMA-Script package (KOMA-Script-dependent basics and keyval usage)
(D:\Software\MiKTeX\tex/latex/koma-script\scrbase.sty
Package: scrbase 2023/04/24 v3.40 KOMA-Script package (KOMA-Script-independent basics and keyval usage)
(D:\Software\MiKTeX\tex/latex/koma-script\scrlfile.sty
Package: scrlfile 2023/04/24 v3.40 KOMA-Script package (file load hooks)
(D:\Software\MiKTeX\tex/latex/koma-script\scrlfile-hook.sty
Package: scrlfile-hook 2023/04/24 v3.40 KOMA-Script package (using LaTeX hooks)
(D:\Software\MiKTeX\tex/latex/koma-script\scrlogo.sty
Package: scrlogo 2023/04/24 v3.40 KOMA-Script package (logo)
))) (D:\Software\MiKTeX\tex/latex/graphics\keyval.sty
Package: keyval 2022/05/29 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.
)) (D:\Software\MiKTeX\tex/latex/koma-script\tocbasic.sty
Package: tocbasic 2023/04/24 v3.40 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 scrreprt Warning: deprecated option `enabledeprecatedfontcommands'.
(scrreprt) Note, that this option was already depreacted when
(scrreprt) it has been defined. Support for old font commands
(scrreprt) has been removed from KOMA-Script more than one
(scrreprt) decade ago. It is not recommended to use them any
(scrreprt) longer. Therefore usage of this class option also
(scrreprt) is not recommended.
Class scrreprt Info: You've used standard option `oneside'.
(scrreprt) This is correct!
(scrreprt) Internally I'm using `twoside=false'.
(scrreprt) If you'd like to set the option with \KOMAoptions,
(scrreprt) you'd have to use `twoside=false' there
(scrreprt) instead of `oneside', too.
Package scrreprt Info: You've used standard option `12pt'.
(scrreprt) This is correct!
(scrreprt) Internally I'm using `fontsize=12pt'.
(scrreprt) If you'd like to set the option with \KOMAoptions,
(scrreprt) you'd have to use `fontsize=12pt' there
(scrreprt) instead of `12pt', too.
Class scrreprt Warning: You've used deprecated option `abstracton'.
(scrreprt) Usage of this option indicates an old document
(scrreprt) and changes compatibility level using
(scrreprt) `abstract=true,version=first,
(scrreprt) enabledeprecatedfontcommands' that may result
(scrreprt) in further warnings.
(scrreprt) If you don't want this, you should simply
(scrreprt) replace option `abstracton' by `abstract=true'.
Class scrreprt Info: Switching compatibility level to `first'.
Class scrreprt Warning: Switching back to an old KOMA-Script release does
(scrreprt) not mean, that KOMA-Script is fully compatible with
(scrreprt) the old release. If you need full compatibility
(scrreprt) to an old KOMA-Script release, you should use that
(scrreprt) old KOMA-Script release. However, in that case you
(scrreprt) could also need old releases of other packages and
(scrreprt) even of the LaTeX kernel.
(scrreprt) You should also note, that the KOMA-Script developers
(scrreprt) refuse support for documents using `version=first'.
(scrreprt) We recommend to eliminate all deprecated options
(scrreprt) and commands. We also recommend to not use option
(scrreprt) `version', i.e., with other values than `last'.
Class scrreprt Warning: deprecated option `enabledeprecatedfontcommands'.
(scrreprt) Note, that this option was already depreacted when
(scrreprt) it has been defined. Support for old font commands
(scrreprt) has been removed from KOMA-Script more than one
(scrreprt) decade ago. It is not recommended to use them any
(scrreprt) longer. Therefore usage of this class option also
(scrreprt) is not recommended.
Class scrreprt Info: File `scrsize12pt.clo' used to setup font sizes on input line 2668.
(D:\Software\MiKTeX\tex/latex/koma-script\scrsize12pt.clo
File: scrsize12pt.clo 2023/04/24 v3.40 KOMA-Script font size class option (12pt)
) (D:\Software\MiKTeX\tex/latex/koma-script\typearea.sty
Package: typearea 2023/04/24 v3.40 KOMA-Script package (type area)
\ta@bcor=\skip49
\ta@div=\count185
Package typearea Info: You've used standard option `pdftex'.
(typearea) This is correct!
(typearea) Internally I'm using `pagesize=pdftex'.
(typearea) If you'd like to set the option with \KOMAoptions,
(typearea) you'd have to use `pagesize=pdftex' there
(typearea) instead of `pdftex', too.
Package typearea Info: You've used standard option `oneside'.
(typearea) This is correct!
(typearea) Internally I'm using `twoside=false'.
(typearea) If you'd like to set the option with \KOMAoptions,
(typearea) you'd have to use `twoside=false' there
(typearea) instead of `oneside', too.
\ta@hblk=\skip50
\ta@vblk=\skip51
\ta@temp=\skip52
\footheight=\skip53
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 12
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 448.13095pt
(typearea) DIV departure = -6%
(typearea) \evensidemargin = 2.4185pt
(typearea) \oddsidemargin = 2.4185pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 548.5pt
(typearea) \topmargin = -1.84941pt
(typearea) \headheight = 18.125pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(typearea) on input line 1798.
)
\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 scrreprt Info: using compatibility default `afterindent=bysign'
(scrreprt) for `\chapter on input line 5961.
\scr@dte@section@maxnumwidth=\skip55
Class scrreprt Info: using compatibility default `runin=bysign'
(scrreprt) for `\section on input line 5972.
Class scrreprt Info: using compatibility default `afterindent=bysign'
(scrreprt) for `\section on input line 5972.
\scr@dte@part@maxnumwidth=\skip56
Class scrreprt Info: using compatibility default `afterindent=true'
(scrreprt) for `\part on input line 5981.
\scr@dte@subsection@maxnumwidth=\skip57
Class scrreprt Info: using compatibility default `runin=bysign'
(scrreprt) for `\subsection on input line 5991.
Class scrreprt Info: using compatibility default `afterindent=bysign'
(scrreprt) for `\subsection on input line 5991.
\scr@dte@subsubsection@maxnumwidth=\skip58
Class scrreprt Info: using compatibility default `runin=bysign'
(scrreprt) for `\subsubsection on input line 6001.
Class scrreprt Info: using compatibility default `afterindent=bysign'
(scrreprt) for `\subsubsection on input line 6001.
\scr@dte@paragraph@maxnumwidth=\skip59
Class scrreprt Info: using compatibility default `runin=bysign'
(scrreprt) for `\paragraph on input line 6012.
Class scrreprt Info: using compatibility default `afterindent=bysign'
(scrreprt) for `\paragraph on input line 6012.
\scr@dte@subparagraph@maxnumwidth=\skip60
Class scrreprt Info: using compatibility default `runin=bysign'
(scrreprt) for `\subparagraph on input line 6022.
Class scrreprt Info: using compatibility default `afterindent=bysign'
(scrreprt) for `\subparagraph on input line 6022.
\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 7199.
\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 7216.
\scr@dte@table@maxnumwidth=\skip64
\c@table=\count194
Class scrreprt Info: Using old \@makefntext due to compatibility level
(scrreprt) less than 3.22 on input line 7374.
Class scrreprt Info: Redefining `\numberline' on input line 7387.
\bibindent=\dimen140
) (ads/header.tex (D:\Software\MiKTeX\tex/latex/preprint\fullpage.sty
Package: fullpage 1999/02/23 1.1 (PWD)
\FP@margin=\skip65
) (D:\Software\MiKTeX\tex/latex/microtype\microtype.sty
Package: microtype 2023/03/13 v3.1a Micro-typographical refinements (RS)
(D:\Software\MiKTeX\tex/latex/etoolbox\etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count195
)
\MT@toks=\toks17
\MT@tempbox=\box53
\MT@count=\count196
LaTeX Info: Redefining \noprotrusionifhmode on input line 1059.
LaTeX Info: Redefining \leftprotrusion on input line 1060.
\MT@prot@toks=\toks18
LaTeX Info: Redefining \rightprotrusion on input line 1078.
LaTeX Info: Redefining \textls on input line 1368.
\MT@outer@kern=\dimen141
LaTeX Info: Redefining \textmicrotypecontext on input line 1988.
\MT@listname@count=\count197
(D:\Software\MiKTeX\tex/latex/microtype\microtype-pdftex.def
File: microtype-pdftex.def 2023/03/13 v3.1a Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 902.
LaTeX Info: Redefining \lslig on input line 902.
\MT@outer@space=\skip66
)
Package microtype Info: Loading configuration file microtype.cfg.
(D:\Software\MiKTeX\tex/latex/microtype\microtype.cfg
File: microtype.cfg 2023/03/13 v3.1a microtype main configuration file (RS)
)) (D:\Software\MiKTeX\tex/latex/base\inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks19
\inpenc@posthook=\toks20
) (D:\Software\MiKTeX\tex/latex/base\fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
) (D:\Software\MiKTeX\tex/latex/setspace\setspace.sty
Package: setspace 2022/12/04 v6.7b set line spacing
) (D:\Software\MiKTeX\tex/latex/base\makeidx.sty
Package: makeidx 2021/10/04 v1.0m Standard LaTeX package
) (D:\Software\MiKTeX\tex/generic/babel\babel.sty
Package: babel 2023/04/18 3.88 The Babel package
\babel@savecnt=\count198
\U@D=\dimen142
\l@unhyphenated=\language79
(D:\Software\MiKTeX\tex/generic/babel\txtbabel.def)
\bbl@readstream=\read2
\bbl@dirlevel=\count199
*************************************
* Local config file bblopts.cfg used
*
(D:\Software\MiKTeX\tex/latex/arabi\bblopts.cfg
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of babel
) (D:\Software\MiKTeX\tex/latex/babel-german\ngerman.ldf
Language: ngerman 2021/02/27 v2.13 German support for babel (post-1996 orthography)
(D:\Software\MiKTeX\tex/latex/babel-german\ngermanb.ldf
Language: ngermanb 2021/02/27 v2.13 German support for babel (post-1996 orthography)
Package babel Info: Making " an active character on input line 122.
))) (D:\Software\MiKTeX\tex/generic/babel/locale/de\babel-ngerman.tex
Package babel Info: Importing font and identification data for ngerman
(babel) from babel-de.ini. Reported on input line 11.
) (D:\Software\MiKTeX\tex/latex/csquotes\csquotes.sty
Package: csquotes 2022-09-14 v5.2n context-sensitive quotations (JAW)
\csq@reset=\count266
\csq@gtype=\count267
\csq@glevel=\count268
\csq@qlevel=\count269
\csq@maxlvl=\count270
\csq@tshold=\count271
\csq@ltx@everypar=\toks21
(D:\Software\MiKTeX\tex/latex/csquotes\csquotes.def
File: csquotes.def 2022-09-14 v5.2n csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(D:\Software\MiKTeX\tex/latex/csquotes\csquotes.cfg
File: csquotes.cfg
)
Package csquotes Info: Option 'babel' depreciated.
(csquotes) Using 'autostyle'.
Package csquotes Info: Enabling multilingual quotes.
Package csquotes Info: Redefining alias 'german' -> 'german/quotes'.
) (D:\Software\MiKTeX\tex/latex/tools\longtable.sty
Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC)
\LTleft=\skip67
\LTright=\skip68
\LTpre=\skip69
\LTpost=\skip70
\LTchunksize=\count272
\LTcapwidth=\dimen143
\LT@head=\box54
\LT@firsthead=\box55
\LT@foot=\box56
\LT@lastfoot=\box57
\LT@gbox=\box58
\LT@cols=\count273
\LT@rows=\count274
\c@LT@tables=\count275
\c@LT@chunks=\count276
\LT@p@ftn=\toks22
)
Class scrreprt Info: longtable captions redefined on input line 35.
(D:\Software\MiKTeX\tex/latex/graphics\graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(D:\Software\MiKTeX\tex/latex/graphics\graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(D:\Software\MiKTeX\tex/latex/graphics\trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
) (D:\Software\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
(D:\Software\MiKTeX\tex/latex/graphics-def\pdftex.def
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
))
\Gin@req@height=\dimen144
\Gin@req@width=\dimen145
) (D:\Software\MiKTeX\tex/latex/graphics\color.sty
Package: color 2022/01/06 v1.3d Standard LaTeX Color (DPC)
(D:\Software\MiKTeX\tex/latex/graphics-cfg\color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 149.
(D:\Software\MiKTeX\tex/latex/graphics\mathcolor.ltx)) (D:\Software\MiKTeX\tex/latex/hyperref\hyperref.sty
Package: hyperref 2023-04-22 v7.00x Hypertext links for LaTeX
(D:\Software\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
) (D:\Software\MiKTeX\tex/generic/iftex\iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
) (D:\Software\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(D:\Software\MiKTeX\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.
) (D:\Software\MiKTeX\tex/latex/kvsetkeys\kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
) (D:\Software\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (D:\Software\MiKTeX\tex/generic/pdfescape\pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
) (D:\Software\MiKTeX\tex/latex/hycolor\hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (D:\Software\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
) (D:\Software\MiKTeX\tex/latex/auxhook\auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
) (D:\Software\MiKTeX\tex/latex/hyperref\nameref.sty
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
(D:\Software\MiKTeX\tex/latex/refcount\refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
) (D:\Software\MiKTeX\tex/generic/gettitlestring\gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(D:\Software\MiKTeX\tex/latex/kvoptions\kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count277
)
\@linkdim=\dimen146
\Hy@linkcounter=\count278
\Hy@pagecounter=\count279
(D:\Software\MiKTeX\tex/latex/hyperref\pd1enc.def
File: pd1enc.def 2023-04-22 v7.00x Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
) (D:\Software\MiKTeX\tex/generic/intcalc\intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count280
(D:\Software\MiKTeX\tex/latex/hyperref\puenc.def
File: puenc.def 2023-04-22 v7.00x Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Option `pdfdisplaydoctitle' set `true' on input line 4065.
Package hyperref Info: Hyper figures OFF on input line 4182.
Package hyperref Info: Link nesting OFF on input line 4187.
Package hyperref Info: Hyper index ON on input line 4190.
Package hyperref Info: Plain pages OFF on input line 4197.
Package hyperref Info: Backreferencing OFF on input line 4202.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4449.
\c@Hy@tempcnt=\count281
(D:\Software\MiKTeX\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 4787.
\XeTeXLinkMargin=\dimen147
(D:\Software\MiKTeX\tex/generic/bitset\bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(D:\Software\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count282
\Field@Width=\dimen148
\Fld@charsize=\dimen149
Package hyperref Info: Hyper figures OFF on input line 6066.
Package hyperref Info: Link nesting OFF on input line 6071.
Package hyperref Info: Hyper index ON on input line 6074.
Package hyperref Info: backreferencing OFF on input line 6081.
Package hyperref Info: Link coloring OFF on input line 6086.
Package hyperref Info: Link coloring with OCG OFF on input line 6091.
Package hyperref Info: PDF/A mode OFF on input line 6096.
(D:\Software\MiKTeX\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=\count283
\c@Item=\count284
\c@Hfootnote=\count285
)
Package hyperref Info: Driver: hpdftex.
(D:\Software\MiKTeX\tex/latex/hyperref\hpdftex.def
File: hpdftex.def 2023-04-22 v7.00x Hyperref driver for pdfTeX
(D:\Software\MiKTeX\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=\count286
\c@bookmark@seq@number=\count287
(D:\Software\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(D:\Software\MiKTeX\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=\skip71
)
Package hyperref Info: Option `colorlinks' set `true' on input line 83.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 83.
(D:\Software\MiKTeX\tex/latex/lm\lmodern.sty
Package: lmodern 2015/05/01 v1.6.1 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
) (D:\Software\MiKTeX\tex/latex/listings\listings.sty
\lst@mode=\count288
\lst@gtempboxa=\box59
\lst@token=\toks23
\lst@length=\count289
\lst@currlwidth=\dimen150
\lst@column=\count290
\lst@pos=\count291
\lst@lostspace=\dimen151
\lst@width=\dimen152
\lst@newlines=\count292
\lst@lineno=\count293
\lst@maxwidth=\dimen153
(D:\Software\MiKTeX\tex/latex/listings\lstmisc.sty
File: lstmisc.sty 2023/02/27 1.9 (Carsten Heinz)
\c@lstnumber=\count294
\lst@skipnumbers=\count295
\lst@framebox=\box60
) (D:\Software\MiKTeX\tex/latex/listings\listings.cfg
File: listings.cfg 2023/02/27 1.9 listings configuration
))
Package: listings 2023/02/27 1.9 (Carsten Heinz)
(D:\Software\MiKTeX\tex/latex/listings\lstlang1.sty
File: lstlang1.sty 2023/02/27 1.9 listings language file
) (D:\Software\MiKTeX\tex/latex/listings\lstlang1.sty
File: lstlang1.sty 2023/02/27 1.9 listings language file
) (D:\Software\MiKTeX\tex/latex/listings\lstlang2.sty
File: lstlang2.sty 2023/02/27 1.9 listings language file
) (D:\Software\MiKTeX\tex/latex/glossaries/base\glossaries.sty
Package: glossaries 2022/11/03 v4.52 (NLCT)
(D:\Software\MiKTeX\tex/latex/base\ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
) (D:\Software\MiKTeX\tex/latex/xkeyval\xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(D:\Software\MiKTeX\tex/generic/xkeyval\xkeyval.tex (D:\Software\MiKTeX\tex/generic/xkeyval\xkvutils.tex
\XKV@toks=\toks24
\XKV@tempa@toks=\toks25
)
\XKV@depth=\count296
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
)) (D:\Software\MiKTeX\tex/latex/mfirstuc\mfirstuc.sty
Package: mfirstuc 2022/10/14 v2.08 (NLCT)
\@glsmfirst=\toks26
\@glsmrest=\toks27
) (D:\Software\MiKTeX\tex/latex/xfor\xfor.sty
Package: xfor 2009/02/05 v1.05 (NLCT)
) (D:\Software\MiKTeX\tex/latex/datatool\datatool-base.sty
Package: datatool-base 2019/09/27 v2.32 (NLCT)
(D:\Software\MiKTeX\tex/latex/amsmath\amsmath.sty
Package: amsmath 2022/04/08 v2.17n AMS math features
\@mathmargin=\skip72
For additional information on amsmath, use the `?' option.
(D:\Software\MiKTeX\tex/latex/amsmath\amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(D:\Software\MiKTeX\tex/latex/amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks28
\ex@=\dimen154
)) (D:\Software\MiKTeX\tex/latex/amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen155
) (D:\Software\MiKTeX\tex/latex/amsmath\amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count297
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count298
\leftroot@=\count299
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count300
\DOTSCASE@=\count301
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@=\box61
\strutbox@=\box62
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen156
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count302
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count303
\dotsspace@=\muskip17
\c@parentequation=\count304
\dspbrk@lvl=\count305
\tag@help=\toks29
\row@=\count306
\column@=\count307
\maxfields@=\count308
\andhelp@=\toks30
\eqnshift@=\dimen157
\alignsep@=\dimen158
\tagshift@=\dimen159
\tagwidth@=\dimen160
\totwidth@=\dimen161
\lineht@=\dimen162
\@envbody=\toks31
\multlinegap=\skip73
\multlinetaggap=\skip74
\mathdisplay@stack=\toks32
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
) (D:\Software\MiKTeX\tex/latex/substr\substr.sty
Package: substr 2009/10/20 v1.2 Handle substrings
\c@su@anzahl=\count309
) (D:\Software\MiKTeX\tex/latex/datatool\datatool-fp.sty
Package: datatool-fp 2019/09/27 v2.32 (NLCT)
(D:\Software\MiKTeX\tex/latex/fp\fp.sty
Package: fp 1995/04/02
`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich (D:\Software\MiKTeX\tex/latex/fp\defpattern.sty
Package: defpattern 1994/10/12
\actioncount=\count310
) (D:\Software\MiKTeX\tex/latex/fp\fp-basic.sty
Package: fp-basic 1996/05/13
\FP@xs=\count311
\FP@xia=\count312
\FP@xib=\count313
\FP@xfa=\count314
\FP@xfb=\count315
\FP@rega=\count316
\FP@regb=\count317
\FP@regs=\count318
\FP@times=\count319
) (D:\Software\MiKTeX\tex/latex/fp\fp-addons.sty
Package: fp-addons 1995/03/15
) (D:\Software\MiKTeX\tex/latex/fp\fp-snap.sty
Package: fp-snap 1995/04/05
) (D:\Software\MiKTeX\tex/latex/fp\fp-exp.sty
Package: fp-exp 1995/04/03
) (D:\Software\MiKTeX\tex/latex/fp\fp-trigo.sty
Package: fp-trigo 1995/04/14
) (D:\Software\MiKTeX\tex/latex/fp\fp-pas.sty
Package: fp-pas 1994/08/29
) (D:\Software\MiKTeX\tex/latex/fp\fp-random.sty
Package: fp-random 1995/02/23
\FPseed=\count320
) (D:\Software\MiKTeX\tex/latex/fp\fp-eqn.sty
Package: fp-eqn 1995/04/03
) (D:\Software\MiKTeX\tex/latex/fp\fp-upn.sty
Package: fp-upn 1996/10/21
) (D:\Software\MiKTeX\tex/latex/fp\fp-eval.sty
Package: fp-eval 1995/04/03
)))
\@dtl@toks=\toks33
\@dtl@tmpcount=\count321
\dtl@tmplength=\skip75
\dtl@sortresult=\count322
\@dtl@numgrpsepcount=\count323
\@dtl@datatype=\count324
\dtl@codeA=\count325
\dtl@codeB=\count326
\@dtl@foreach@level=\count327
) (D:\Software\MiKTeX\tex/latex/tracklang\tracklang.sty
Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages
(D:\Software\MiKTeX\tex/generic/tracklang\tracklang.tex)) (D:\Software\MiKTeX\tex/latex/translator\translator.sty
Package: translator 2021-05-31 v1.12d Easy translation of strings in LaTeX
) (D:\Software\MiKTeX\tex/latex/glossaries-german\glossaries-german.ldf
File: glossaries-german.ldf 2014/11/23 v1.0
)
\gls@level=\count328
\@gls@tmpb=\toks34
\gls@tmplen=\skip76
\glskeylisttok=\toks35
\glslabeltok=\toks36
\glsshorttok=\toks37
\glslongtok=\toks38
(D:\Software\MiKTeX\tex/latex/glossaries/styles\glossary-hypernav.sty
Package: glossary-hypernav 2022/11/03 v4.52 (NLCT)
) (D:\Software\MiKTeX\tex/latex/glossaries/styles\glossary-list.sty
Package: glossary-list 2022/11/03 v4.52 (NLCT)
\glslistdottedwidth=\skip77
) (D:\Software\MiKTeX\tex/latex/glossaries/styles\glossary-long.sty
Package: glossary-long 2022/11/03 v4.52 (NLCT)
\glsdescwidth=\skip78
\glspagelistwidth=\skip79
) (D:\Software\MiKTeX\tex/latex/glossaries/styles\glossary-super.sty
Package: glossary-super 2022/11/03 v4.52 (NLCT)
(D:\Software\MiKTeX\tex/latex/supertabular\supertabular.sty
Package: supertabular 2020/02/02 v4.1g the supertabular environment
\c@tracingst=\count329
\ST@wd=\dimen163
\ST@rightskip=\skip80
\ST@leftskip=\skip81
\ST@parfillskip=\skip82
\ST@pageleft=\dimen164
\ST@headht=\dimen165
\ST@tailht=\dimen166
\ST@pagesofar=\dimen167
\ST@pboxht=\dimen168
\ST@lineht=\dimen169
\ST@prevht=\dimen170
\ST@toadd=\dimen171
\ST@dimen=\dimen172
\ST@pbox=\box63
)) (D:\Software\MiKTeX\tex/latex/glossaries/styles\glossary-tree.sty
Package: glossary-tree 2022/11/03 v4.52 (NLCT)
\glstreeindent=\skip83
)) (D:\Software\MiKTeX\tex/latex/acronym\acronym.sty
Package: acronym 2020/04/17 v1.47 Support for acronyms (Tobias Oetiker)
(D:\Software\MiKTeX\tex/latex/bigfoot\suffix.sty
Package: suffix 2006/07/15 1.5a Variant command support
) (D:\Software\MiKTeX\tex/latex/xstring\xstring.sty (D:\Software\MiKTeX\tex/generic/xstring\xstring.tex
\integerpart=\count330
\decimalpart=\count331
)
Package: xstring 2023/01/14 v1.85 String manipulations (CT)
)
\AC@clearlist=\toks39
) (D:\Software\MiKTeX\tex/latex/footmisc\footmisc.sty
Package: footmisc 2022/03/08 v6.0d a miscellany of footnote facilities
\FN@temptoken=\toks40
\footnotemargin=\dimen173
\@outputbox@depth=\dimen174
(D:\Software\MiKTeX\tex/latex/bigfoot\perpage.sty
Package: perpage 2014/10/25 2.0 Reset/sort counters per page
\c@abspage=\count332
)
\c@pp@a@footnote=\count333
Package footmisc Info: Declaring symbol style bringhurst on input line 695.
Package footmisc Info: Declaring symbol style chicago on input line 703.
Package footmisc Info: Declaring symbol style wiley on input line 712.
Package footmisc Info: Declaring symbol style lamport-robust on input line 723.
Package footmisc Info: Declaring symbol style lamport* on input line 743.
Package footmisc Info: Declaring symbol style lamport*-robust on input line 764.
) (D:\Software\MiKTeX\tex/latex/bookmark\bookmark.sty
Package: bookmark 2020-11-06 v1.29 PDF bookmarks (HO)
(D:\Software\MiKTeX\tex/latex/bookmark\bkm-pdftex.def
File: bkm-pdftex.def 2020-11-06 v1.29 bookmark driver for pdfTeX (HO)
\BKM@id=\count334
)) (D:\Software\MiKTeX\tex/latex/float\float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count335
\float@exts=\toks41
\float@box=\box64
\@float@everytoks=\toks42
\@floatcapt=\box65
) (D:\Software\MiKTeX\tex/latex/tools\array.sty
Package: array 2022/09/04 v2.5g Tabular extension package (FMi)
\col@sep=\dimen175
\ar@mcellbox=\box66
\extrarowheight=\dimen176
\NC@list=\toks43
\extratabsurround=\skip84
\backup@length=\skip85
\ar@cellbox=\box67
) (D:\Software\MiKTeX\tex/latex/eurosym\eurosym.sty
Package: eurosym 1998/08/06 v1.1 European currency symbol ``Euro''
\@eurobox=\box68
) (D:\Software\MiKTeX\tex/latex/wrapfig\wrapfig.sty
\wrapoverhang=\dimen177
\WF@size=\dimen178
\c@WF@wrappedlines=\count336
\WF@box=\box69
\WF@everypar=\toks44
Package: wrapfig 2003/01/31 v 3.6
) (D:\Software\MiKTeX\tex/latex/comment\comment.sty
\CommentStream=\write3
Excluding comment 'comment') Special comment 'k')
\glswrite=\write4
\glo@main@file=\write5
\openout5 = `dokumentation.glo'.
Package glossaries Info: Writing glossary file dokumentation.glo on input line 44.
(ads/glossary.tex)
Package csquotes Info: Checking for multilingual support...
Package csquotes Info: ... found 'babel' package.
LaTeX Font Info: Trying to load font information for T1+lmr on input line 47.
(D:\Software\MiKTeX\tex/latex/lm\t1lmr.fd
File: t1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
) (D:\Software\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
File: l3backend-pdftex.def 2023-04-19 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count337
\l__pdf_internal_box=\box70
) (dokumentation.aux)
\openout1 = `dokumentation.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 47.
LaTeX Font Info: ... okay on input line 47.
LaTeX Info: Redefining \microtypecontext on input line 47.
Package microtype Info: Applying patch `item' on input line 47.
Package microtype Info: Applying patch `toc' on input line 47.
Package microtype Info: Applying patch `eqnum' on input line 47.
Package microtype Warning: Unable to apply patch `footnote' on input line 47.
Package microtype Info: Applying patch `verbatim' on input line 47.
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 47.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
(D:\Software\MiKTeX\tex/latex/microtype\mt-cmr.cfg
File: mt-cmr.cfg 2013/05/19 v2.2 microtype config. file: Computer Modern Roman (RS)
) (D:\Software\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count338
\scratchdimen=\dimen179
\scratchbox=\box71
\nofMPsegments=\count339
\nofMParguments=\count340
\everyMPshowfont=\toks45
\MPscratchCnt=\count341
\MPscratchDim=\dimen180
\MPnumerator=\count342
\makeMPintoPDFobject=\count343
\everyMPtoPDFconversion=\toks46
) (D:\Software\MiKTeX\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.
(D:\Software\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
))
Package hyperref Info: Link coloring ON on input line 47.
\c@lstlisting=\count344
(D:\Software\MiKTeX\tex/latex/glossaries-english\glossaries-dictionary-English.dict
Dictionary: glossaries-dictionary, Language: English
) (D:\Software\MiKTeX\tex/latex/glossaries-german\glossaries-dictionary-German.dict
Dictionary: glossaries-dictionary, Language: German
) (ads/deckblatt.tex
<images/dhbw.png, id=3, 710.655pt x 299.1175pt>
File: images/dhbw.png Graphic file (type png)
<use images/dhbw.png>
Package pdftex.def Info: images/dhbw.png used on input line 5.
(pdftex.def) Requested size: 175.75482pt x 73.97733pt.
Class scrreprt Warning: deprecated old font command `\bf' used.
(scrreprt) You should note, that since 1994 LaTeX2e provides a
(scrreprt) new font selection scheme called NFSS2 with several
(scrreprt) new, combinable font commands. New KOMA-Script classes
(scrreprt) defined the old font commands like `\bf' only for
(scrreprt) compatibility with LaTeX 2.09 document styles of
(scrreprt) Script 2.0. These commands are deprecated and
(scrreprt) undocumented at least since 2003. Since 2013,
(scrreprt) KOMA-Script classes warned about soon removement of
(scrreprt) these deprecated commands. Now, after two decades of
(scrreprt) LaTeX2e, NFSS2, and KOMA-Script these commands will
(scrreprt) not work any longer. If loading a package results in
(scrreprt) this message you should contact the author of that
(scrreprt) package and ask him to replace the depracted font
(scrreprt) command `\bf', e.g., by `\normalfont \bfseries '.
(scrreprt) Otherwise you should reconfigure or replace the
(scrreprt) package. If you have used the old font command
(scrreprt) `\bf' yourself you should replace it, e.g., by
(scrreprt) `\normalfont \bfseries ' on input line 9.
Class scrreprt Warning: deprecated old font command `\bf' used.
(scrreprt) You should note, that since 1994 LaTeX2e provides a
(scrreprt) new font selection scheme called NFSS2 with several
(scrreprt) new, combinable font commands. New KOMA-Script classes
(scrreprt) defined the old font commands like `\bf' only for
(scrreprt) compatibility with LaTeX 2.09 document styles of
(scrreprt) Script 2.0. These commands are deprecated and
(scrreprt) undocumented at least since 2003. Since 2013,
(scrreprt) KOMA-Script classes warned about soon removement of
(scrreprt) these deprecated commands. Now, after two decades of
(scrreprt) LaTeX2e, NFSS2, and KOMA-Script these commands will
(scrreprt) not work any longer. If loading a package results in
(scrreprt) this message you should contact the author of that
(scrreprt) package and ask him to replace the depracted font
(scrreprt) command `\bf', e.g., by `\normalfont \bfseries '.
(scrreprt) Otherwise you should reconfigure or replace the
(scrreprt) package. If you have used the old font command
(scrreprt) `\bf' yourself you should replace it, e.g., by
(scrreprt) `\normalfont \bfseries ' on input line 10.
Class scrreprt Warning: deprecated old font command `\bf' used.
(scrreprt) You should note, that since 1994 LaTeX2e provides a
(scrreprt) new font selection scheme called NFSS2 with several
(scrreprt) new, combinable font commands. New KOMA-Script classes
(scrreprt) defined the old font commands like `\bf' only for
(scrreprt) compatibility with LaTeX 2.09 document styles of
(scrreprt) Script 2.0. These commands are deprecated and
(scrreprt) undocumented at least since 2003. Since 2013,
(scrreprt) KOMA-Script classes warned about soon removement of
(scrreprt) these deprecated commands. Now, after two decades of
(scrreprt) LaTeX2e, NFSS2, and KOMA-Script these commands will
(scrreprt) not work any longer. If loading a package results in
(scrreprt) this message you should contact the author of that
(scrreprt) package and ask him to replace the depracted font
(scrreprt) command `\bf', e.g., by `\normalfont \bfseries '.
(scrreprt) Otherwise you should reconfigure or replace the
(scrreprt) package. If you have used the old font command
(scrreprt) `\bf' yourself you should replace it, e.g., by
(scrreprt) `\normalfont \bfseries ' on input line 14.
[1
\openout4 = `dokumentation.ist'.
{C:/Users/nova/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map}{D:/Software/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc} <./images/dhbw.png>]) (ads/erklaerung.tex
LaTeX Font Info: Trying to load font information for T1+lmss on input line 5.
(D:\Software\MiKTeX\tex/latex/lm\t1lmss.fd
File: t1lmss.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `lmss' (encoding: T1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
Underfull \hbox (badness 10000) in paragraph at lines 9--10
[]
) [1] (ads/abstract.tex [2
] [3
])
Package tocbasic Info: character protrusion at toc deactivated on input line 77.
(dokumentation.toc
LaTeX Font Info: Trying to load font information for OT1+lmr on input line 3.
(D:\Software\MiKTeX\tex/latex/lm\ot1lmr.fd
File: ot1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OML+lmm on input line 3.
(D:\Software\MiKTeX\tex/latex/lm\omllmm.fd
File: omllmm.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMS+lmsy on input line 3.
(D:\Software\MiKTeX\tex/latex/lm\omslmsy.fd
File: omslmsy.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: Trying to load font information for OMX+lmex on input line 3.
(D:\Software\MiKTeX\tex/latex/lm\omxlmex.fd
File: omxlmex.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
)
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <12> on input line 3.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <8> on input line 3.
LaTeX Font Info: External font `lmex10' loaded for size
(Font) <6> on input line 3.
[4
])
\tf@toc=\write6
\openout6 = `dokumentation.toc'.
[5] (content/01kapitel.tex
chapter 1.
Class scrreprt Warning: \float@addtolists detected!
(scrreprt) Implementation of \float@addtolist became
(scrreprt) deprecated in KOMA-Script v3.01 2008/11/14 and
(scrreprt) has been replaced by several more flexible
(scrreprt) features of package `tocbasic`.
(scrreprt) Since Version 3.12 support for deprecated
(scrreprt) \float@addtolist interface has been
(scrreprt) restricted to only some of the KOMA-Script
(scrreprt) features and been removed from others.
(scrreprt) Loading of package `scrhack' may help to
(scrreprt) avoid this warning, if you are using a
(scrreprt) a package that still implements the
(scrreprt) deprecated \float@addtolist interface.
<images/chess.com_users.png, id=106, 1927.2pt x 1084.05pt>
File: images/chess.com_users.png Graphic file (type png)
<use images/chess.com_users.png>
Package pdftex.def Info: images/chess.com_users.png used on input line 15.
(pdftex.def) Requested size: 385.43318pt x 216.80615pt.
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.23
[1
{D:/Software/MiKTeX/fonts/enc/dvips/lm/lm-mathit.enc}
pdfTeX warning (ext4): destination with the same identifier (name{figure.1.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.23
<./images/chess.com_users.png>] [2]) (content/02kapitel.tex [3]
chapter 2.
[4
]
<images/HSV.png, id=136, 220.825pt x 220.825pt>
File: images/HSV.png Graphic file (type png)
<use images/HSV.png>
Package pdftex.def Info: images/HSV.png used on input line 49.
(pdftex.def) Requested size: 132.496pt x 132.496pt.
LaTeX Font Info: Trying to load font information for TS1+lmr on input line 53.
(D:\Software\MiKTeX\tex/latex/lm\ts1lmr.fd
File: ts1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
) [5{D:/Software/MiKTeX/fonts/enc/dvips/lm/lm-rm.enc}] [6
pdfTeX warning (ext4): destination with the same identifier (name{figure.2.1}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.71 I
m Kontext der Farbraum Umwandlung kann ein RGB-Bild oft in Graustufen ...{D:/Software/MiKTeX/fonts/enc/dvips/lm/lm-ts1.enc} <./images/HSV.png>]
<images/noise.png, id=161, 471.26062pt x 124.96687pt>
File: images/noise.png Graphic file (type png)
<use images/noise.png>
Package pdftex.def Info: images/noise.png used on input line 88.
(pdftex.def) Requested size: 377.00902pt x 99.97363pt.
[7{D:/Software/MiKTeX/fonts/enc/dvips/lm/lm-mathsy.enc}
pdfTeX warning (ext4): destination with the same identifier (name{figure.2.2}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.101
<./images/noise.png>] [8] [9{D:/Software/MiKTeX/fonts/enc/dvips/lm/lm-mathex.enc}
pdfTeX warning (ext4): destination with the same identifier (name{figure.2.3}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box
\__shipout_drop_firstpage_...
l.157 \subsubsection
{Canny-Operator}] [10]
<images/threshholding.png, id=208, 780.9175pt x 314.17375pt>
File: images/threshholding.png Graphic file (type png)
<use images/threshholding.png>