-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.log
More file actions
3328 lines (2602 loc) · 107 KB
/
main.log
File metadata and controls
3328 lines (2602 loc) · 107 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 pdfTeX, Version 3.14159265-2.6-1.40.19 (MiKTeX 2.9.6800 64-bit) (preloaded format=pdflatex 2018.9.14) 3 JUL 2019 22:16
entering extended mode
**./main.tex
(main.tex
LaTeX2e <2018-04-01> patch level 5
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrbook.cls"
Document Class: scrbook 2018/03/30 v3.25 KOMA-Script document class (book)
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrkbase.sty"
Package: scrkbase 2018/03/30 v3.25 KOMA-Script package (KOMA-Script-dependent b
asics and keyval usage)
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrbase.sty"
Package: scrbase 2018/03/30 v3.25 KOMA-Script package (KOMA-Script-independent
basics and keyval usage)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrlfile.sty"
Package: scrlfile 2018/03/30 v3.25 KOMA-Script package (loading files)
)))
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\tocbasic.sty"
Package: tocbasic 2018/03/30 v3.25 KOMA-Script package (handling toc-files)
\scr@dte@tocline@numberwidth=\skip41
\scr@dte@tocline@numbox=\box26
)
Package tocbasic Info: omitting babel extension for `toc'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `toc' on input line 136.
Package tocbasic Info: defining new hook before heading of `' on input line 166
3.
Class scrbook Info: You've used standard option `oneside'.
(scrbook) This is correct!
(scrbook) Internally I'm using `twoside=false'.
(scrbook) If you'd like to set the option with \KOMAoptions,
(scrbook) you'd have to use `twoside=false' there
(scrbook) instead of `oneside', too.
Package scrbook Info: You've used standard option `12pt'.
(scrbook) This is correct!
(scrbook) Internally I'm using `fontsize=12pt'.
(scrbook) If you'd like to set the option with \KOMAoptions,
(scrbook) you'd have to use `fontsize=12pt' there
(scrbook) instead of `12pt', too.
Class scrbook Info: File `scrsize12pt.clo' used to setup font sizes on input li
ne 2331.
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrsize12pt.clo"
File: scrsize12pt.clo 2018/03/30 v3.25 KOMA-Script font size class option (12pt
)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\typearea.sty"
Package: typearea 2018/03/30 v3.25 KOMA-Script package (type area)
\ta@bcor=\skip42
\ta@div=\count80
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.
Package typearea Info: You've used standard option `letterpaper'.
(typearea) This is correct!
(typearea) Internally I'm using `paper=letter'.
(typearea) If you'd like to set the option with \KOMAoptions,
(typearea) you'd have to use `paper=letter' there
(typearea) instead of `letterpaper', too.
\ta@hblk=\skip43
\ta@vblk=\skip44
\ta@temp=\skip45
\footheight=\skip46
Package typearea Info: With paper sizes other than (almost) `A4' predefined
(typearea) DIV values do not exist. Using DIV calculation for good
(typearea) line width (unless using `version=3.24` or prior).
DIV calculation for typearea with good linewidth.
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 8
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 614.295pt
(typearea) \textwidth = 383.9344pt
(typearea) DIV departure = 1%
(typearea) \evensidemargin = 81.30374pt
(typearea) \oddsidemargin = 4.51688pt
(typearea) \paperheight = 794.96999pt
(typearea) \textheight = 418.0pt
(typearea) \topmargin = 27.10126pt
(typearea) \headheight = 18.125pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(typearea) on input line 1706.
)
\c@part=\count81
\c@chapter=\count82
\c@section=\count83
\c@subsection=\count84
\c@subsubsection=\count85
\c@paragraph=\count86
\c@subparagraph=\count87
\scr@dte@part@maxnumwidth=\skip47
\scr@dte@chapter@maxnumwidth=\skip48
\scr@dte@section@maxnumwidth=\skip49
\scr@dte@subsection@maxnumwidth=\skip50
\scr@dte@subsubsection@maxnumwidth=\skip51
\scr@dte@paragraph@maxnumwidth=\skip52
\scr@dte@subparagraph@maxnumwidth=\skip53
\abovecaptionskip=\skip54
\belowcaptionskip=\skip55
\c@pti@nb@sid@b@x=\box27
\scr@dte@figure@maxnumwidth=\skip56
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lof' on input line 6251.
\c@figure=\count88
\scr@dte@table@maxnumwidth=\skip57
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lot' on input line 6272.
\c@table=\count89
Class scrbook Info: Redefining `\numberline' on input line 6445.
\bibindent=\dimen102
) ("C:\Program Files\MiKTeX 2.9\tex\latex\classicthesis\classicthesis.sty"
Package: classicthesis 2018/06/03 v4.6 Typographic style for a classic-looking
thesis
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty"
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\kvsetkeys.sty"
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\etexcmds.sty"
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifluatex.sty"
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty"
Package: ifpdf 2017/03/15 v3.2 Provides the ifpdf switch
)
("C:\Program Files\MiKTeX 2.9\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
("C:\Program Files\MiKTeX 2.9\tex\latex\xcolor\xcolor.sty"
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics-cfg\color.cfg"
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics-def\pdftex.def"
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1364.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvipsnam.def"
File: dvipsnam.def 2016/06/17 v3.0m Driver-dependent file (DPC,SPQR)
))
("C:\Program Files\MiKTeX 2.9\tex\latex\psnfss\mathpazo.sty"
Package: mathpazo 2005/04/12 PSNFSS-v9.2a Palatino w/ Pazo Math (D.Puga, WaS)
\symupright=\mathgroup4
)
("C:\Program Files\MiKTeX 2.9\tex\latex\bera\beramono.sty"
Package: beramono 2004/01/31 (WaS)
)
LaTeX Font Info: Try loading font information for T1+pplj on input line 202.
("C:\Program Files\MiKTeX 2.9\tex\latex\psnfss\t1pplj.fd"
File: t1pplj.fd 2004/09/06 font definitions for T1/pplj.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\microtype\microtype.sty"
Package: microtype 2018/01/14 v2.7a Micro-typographical refinements (RS)
\MT@toks=\toks15
\MT@count=\count90
LaTeX Info: Redefining \textls on input line 793.
\MT@outer@kern=\dimen103
LaTeX Info: Redefining \textmicrotypecontext on input line 1339.
\MT@listname@count=\count91
("C:\Program Files\MiKTeX 2.9\tex\latex\microtype\microtype-pdftex.def"
File: microtype-pdftex.def 2018/01/14 v2.7a Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 913.
LaTeX Info: Redefining \lslig on input line 913.
\MT@outer@space=\skip58
)
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Program Files\MiKTeX 2.9\tex\latex\microtype\microtype.cfg"
File: microtype.cfg 2018/01/14 v2.7a microtype main configuration file (RS)
))
Package classicthesis Info: letter paper, Palatino or other on input line 228.
Package typearea Info: These are the values describing the layout:
(typearea) DIV = areaset
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 614.295pt
(typearea) \textwidth = 356.0pt
(typearea) \evensidemargin = 99.92667pt
(typearea) \oddsidemargin = 13.82834pt
(typearea) \paperheight = 794.96999pt
(typearea) \textheight = 610.5pt
(typearea) \topmargin = -40.61333pt
(typearea) \headheight = 17.0pt
(typearea) \headsep = 21.75pt
(typearea) \topskip = 12.0pt
(typearea) \footskip = 50.75pt
(typearea) \baselineskip = 14.5pt
(typearea) on input line 228.
("C:\Program Files\MiKTeX 2.9\tex\latex\mparhack\mparhack.sty"
Package: mparhack 2005/04/17 v1.4 (T. Sgouros and S. Ulrich)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\booktabs\booktabs.sty"
Package: booktabs 2005/04/14 v1.61803 publication quality tables
\heavyrulewidth=\dimen104
\lightrulewidth=\dimen105
\cmidrulewidth=\dimen106
\belowrulesep=\dimen107
\belowbottomsep=\dimen108
\aboverulesep=\dimen109
\abovetopsep=\dimen110
\cmidrulesep=\dimen111
\cmidrulekern=\dimen112
\defaultaddspace=\dimen113
\@cmidla=\count92
\@cmidlb=\count93
\@aboverulesep=\dimen114
\@belowrulesep=\dimen115
\@thisruleclass=\count94
\@lastruleclass=\count95
\@thisrulewidth=\dimen116
)
("C:\Program Files\MiKTeX 2.9\tex\latex\textcase\textcase.sty"
Package: textcase 2004/10/07 v0.07 Text only upper/lower case changing (DPC)
)
Package classicthesis Info: Using microtype for character spacing.Make sure you
r pdflatex is version 1.40 or higher. on input line 321.
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrlayer-scrpage.sty"
Package: scrlayer-scrpage 2018/03/30 v3.25 KOMA-Script package (end user interf
ace for scrlayer)
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrlayer.sty"
Package: scrlayer 2018/03/30 v3.25 KOMA-Script package (defining layers and pag
e styles)
Package scrlayer Info: Using already defined \footheight
(scrlayer) hoping, that this is a length and
(scrlayer) not only a macro on input line 109.
Package scrlayer Info: patching LaTeX kernel macro \pagestyle on input line 199
7.
)
Package scrlayer-scrpage Info: Makeing stand-alone element `pagehead' from
(scrlayer-scrpage) alias to `pageheadfoot' on input line 1241.
Package scrlayer-scrpage Info: deactivating warning for font element
(scrlayer-scrpage) `pagefoot' on input line 1268.
)
Package scrlayer-scrpage Info: auto-selection of `pagestyleset=KOMA-Script'.
1: section
1: chapter
1: chapter
1: section
Class scrbook Warning: Usage of package `titlesec' together
(scrbook) with a KOMA-Script class is not recommended.
(scrbook) I'd suggest to use the package only
(scrbook) if you really need it, because it breaks several
(scrbook) KOMA-Script features, i.e., option `headings' and
(scrbook) the extended optional argument of the section
(scrbook) commands.
(scrbook) Nevertheless, using requested
(scrbook) package `titlesec' on input line 362.
("C:\Program Files\MiKTeX 2.9\tex\latex\titlesec\titlesec.sty"
Package: titlesec 2016/03/21 v2.10.2 Sectioning titles
\ttl@box=\box28
\beforetitleunit=\skip59
\aftertitleunit=\skip60
\ttl@plus=\dimen117
\ttl@minus=\dimen118
\ttl@toksa=\toks16
\titlewidth=\dimen119
\titlewidthlast=\dimen120
\titlewidthfirst=\dimen121
Package titlesec Warning: Non standard sectioning command detected
(titlesec) Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command detected
(titlesec) Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command detected
(titlesec) Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command detected
(titlesec) Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command detected
(titlesec) Using default spacing and no format.
)
Class scrbook Warning: Activating an ugly workaround for a missing
(scrbook) feature of package `titlesec` on input line 362.
("C:\Program Files\MiKTeX 2.9\tex\latex\tocloft\tocloft.sty"
Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 51.
\cftparskip=\skip61
\cftbeforetoctitleskip=\skip62
\cftaftertoctitleskip=\skip63
\cftbeforepartskip=\skip64
\cftpartnumwidth=\skip65
\cftpartindent=\skip66
\cftbeforechapskip=\skip67
\cftchapindent=\skip68
\cftchapnumwidth=\skip69
\cftbeforesecskip=\skip70
\cftsecindent=\skip71
\cftsecnumwidth=\skip72
\cftbeforesubsecskip=\skip73
\cftsubsecindent=\skip74
\cftsubsecnumwidth=\skip75
\cftbeforesubsubsecskip=\skip76
\cftsubsubsecindent=\skip77
\cftsubsubsecnumwidth=\skip78
\cftbeforeparaskip=\skip79
\cftparaindent=\skip80
\cftparanumwidth=\skip81
\cftbeforesubparaskip=\skip82
\cftsubparaindent=\skip83
\cftsubparanumwidth=\skip84
\cftbeforeloftitleskip=\skip85
\cftafterloftitleskip=\skip86
\cftbeforefigskip=\skip87
\cftfigindent=\skip88
\cftfignumwidth=\skip89
\c@lofdepth=\count96
\c@lotdepth=\count97
\cftbeforelottitleskip=\skip90
\cftafterlottitleskip=\skip91
\cftbeforetabskip=\skip92
\cfttabindent=\skip93
\cfttabnumwidth=\skip94
)
\newnumberwidth=\skip95
\beforebibskip=\skip96
\newchnumberwidth=\skip97
\figurelabelwidth=\skip98
\tablelabelwidth=\skip99
Using KOMA-command "deffootnote" for footnote setup
("C:\Program Files\MiKTeX 2.9\tex\latex\koma-script\scrtime.sty"
Package: scrtime 2018/03/30 v3.25 KOMA-Script package (time of LaTeX run)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\caption\caption.sty"
Package: caption 2018/10/06 v3.3-154 Customizing captions (AR)
("C:\Program Files\MiKTeX 2.9\tex\latex\caption\caption3.sty"
Package: caption3 2018/09/12 v1.8c caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 64.
\captionmargin=\dimen122
\captionmargin@=\dimen123
\captionwidth=\dimen124
\caption@tempdima=\dimen125
\caption@indent=\dimen126
\caption@parindent=\dimen127
\caption@hangindent=\dimen128
)
Package caption Info: KOMA-Script document class.
\c@caption@flags=\count98
\c@ContinuedFloat=\count99
)
("C:\Program Files\MiKTeX 2.9\tex\latex\carlisle\remreset.sty"
Package remreset Warning: The remreset package is obsolete:
(remreset) \@removefomresset is defined.
) ("C:\Program Files\MiKTeX 2.9\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2018/02/06 v6.86b Hypertext links for LaTeX
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\hobsub-hyperref.sty"
Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\hobsub-generic.sty"
Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO)
Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO)
Package hobsub Info: Skipping package `infwarerr' (already loaded).
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
Package hobsub Info: Skipping package `ifluatex' (already loaded).
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package hobsub Info: Skipping package `etexcmds' (already loaded).
Package hobsub Info: Skipping package `kvsetkeys' (already loaded).
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
Package: pdftexcmds 2018/01/30 v0.27 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO
)
Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO)
Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO)
Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO)
Package: xcolor-patch 2016/05/16 xcolor patch
Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO)
Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\auxhook.sty"
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen129
\Hy@linkcounter=\count100
\Hy@pagecounter=\count101
("C:\Program Files\MiKTeX 2.9\tex\latex\hyperref\pd1enc.def"
File: pd1enc.def 2018/02/06 v6.86b Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
\Hy@SavedSpaceFactor=\count102
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Option `hyperfootnotes' set `false' on input line 4383.
Package hyperref Info: Hyper figures OFF on input line 4509.
Package hyperref Info: Link nesting OFF on input line 4514.
Package hyperref Info: Hyper index ON on input line 4517.
Package hyperref Info: Plain pages OFF on input line 4524.
Package hyperref Info: Backreferencing OFF on input line 4529.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4762.
\c@Hy@tempcnt=\count103
("C:\Program Files\MiKTeX 2.9\tex\latex\url\url.sty"
\Urlmuskip=\muskip10
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5115.
\XeTeXLinkMargin=\dimen130
\Fld@menulength=\count104
\Field@Width=\dimen131
\Fld@charsize=\dimen132
Package hyperref Info: Hyper figures OFF on input line 6369.
Package hyperref Info: Link nesting OFF on input line 6374.
Package hyperref Info: Hyper index ON on input line 6377.
Package hyperref Info: backreferencing OFF on input line 6384.
Package hyperref Info: Link coloring OFF on input line 6389.
Package hyperref Info: Link coloring with OCG OFF on input line 6394.
Package hyperref Info: PDF/A mode OFF on input line 6399.
LaTeX Info: Redefining \ref on input line 6439.
LaTeX Info: Redefining \pageref on input line 6443.
\Hy@abspage=\count105
\c@Item=\count106
)
Package hyperref Info: Driver (autodetected): hpdftex.
("C:\Program Files\MiKTeX 2.9\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2018/02/06 v6.86b Hyperref driver for pdfTeX
\Fld@listcount=\count107
\c@bookmark@seq@number=\count108
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\rerunfilecheck.sty"
Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip100
)
Package hyperref Info: Option `colorlinks' set `true' on input line 679.
Package hyperref Info: Option `linktocpage' set `true' on input line 679.
Package hyperref Info: Option `breaklinks' set `true' on input line 679.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\base\inputenc.sty"
Package: inputenc 2018/04/06 v1.3b Input encoding file
\inpenc@prehook=\toks17
\inpenc@posthook=\toks18
)
("C:\Program Files\MiKTeX 2.9\tex\latex\titlesec\titletoc.sty"
Package: titletoc 2011/12/15 v1.6 TOC entries
\ttl@leftsep=\dimen133
)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Program Files\MiKTeX 2.9\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 99.
)
\Gin@req@height=\dimen134
\Gin@req@width=\dimen135
)
("C:\Program Files\MiKTeX 2.9\tex\latex\subfig\subfig.sty"
Package: subfig 2005/06/28 ver: 1.3 subfig package
\c@KVtest=\count109
\sf@farskip=\skip101
\sf@captopadj=\dimen136
\sf@capskip=\skip102
\sf@nearskip=\skip103
\c@subfigure=\count110
\c@subfigure@save=\count111
\c@subtable=\count112
\c@subtable@save=\count113
\sf@top=\skip104
\sf@bottom=\skip105
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\tabularx.sty"
Package: tabularx 2016/02/03 v2.11b `tabularx' package (DPC)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\array.sty"
Package: array 2018/04/30 v2.4h Tabular extension package (FMi)
\col@sep=\dimen137
\ar@mcellbox=\box29
\extrarowheight=\dimen138
\NC@list=\toks19
\extratabsurround=\skip106
\backup@length=\skip107
\ar@cellbox=\box30
)
\TX@col@width=\dimen139
\TX@old@table=\dimen140
\TX@old@col=\dimen141
\TX@target=\dimen142
\TX@delta=\dimen143
\TX@cols=\count114
\TX@ftn=\toks20
)
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\listings.sty"
\lst@mode=\count115
\lst@gtempboxa=\box31
\lst@token=\toks21
\lst@length=\count116
\lst@currlwidth=\dimen144
\lst@column=\count117
\lst@pos=\count118
\lst@lostspace=\dimen145
\lst@width=\dimen146
\lst@newlines=\count119
\lst@lineno=\count120
\lst@maxwidth=\dimen147
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\lstmisc.sty"
File: lstmisc.sty 2018/09/02 1.7 (Carsten Heinz)
\c@lstnumber=\count121
\lst@skipnumbers=\count122
\lst@framebox=\box32
)
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\listings.cfg"
File: listings.cfg 2018/09/02 1.7 listings configuration
))
Package: listings 2018/09/02 1.7 (Carsten Heinz)
("C:\Program Files\MiKTeX 2.9\tex\latex\float\float.sty"
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count123
\float@exts=\toks22
\float@box=\box33
\@float@everytoks=\toks23
\@floatcapt=\box34
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\longtable.sty"
Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC)
\LTleft=\skip108
\LTright=\skip109
\LTpre=\skip110
\LTpost=\skip111
\LTchunksize=\count124
\LTcapwidth=\dimen148
\LT@head=\box35
\LT@firsthead=\box36
\LT@foot=\box37
\LT@lastfoot=\box38
\LT@cols=\count125
\LT@rows=\count126
\c@LT@tables=\count127
\c@LT@chunks=\count128
\LT@p@ftn=\toks24
)
Class scrbook Info: longtable captions redefined on input line 24.
("C:\Program Files\MiKTeX 2.9\tex\latex\appendix\appendix.sty"
Package: appendix 2009/09/02 v1.2b extra appendix facilities
\c@@pps=\count129
\c@@ppsavesec=\count130
\c@@ppsaveapp=\count131
)
("C:\Program Files\MiKTeX 2.9\tex\latex\datatool\datagidx.sty"
Package: datagidx 2018/04/16 v2.30 (NLCT)
("C:\Program Files\MiKTeX 2.9\tex\latex\datatool\datatool.sty"
Package: datatool 2018/04/16 v2.30 (NLCT)
("C:\Program Files\MiKTeX 2.9\tex\latex\xkeyval\xkeyval.sty"
Package: xkeyval 2014/12/03 v2.7a package option processing (HA)
("C:\Program Files\MiKTeX 2.9\tex\generic\xkeyval\xkeyval.tex"
("C:\Program Files\MiKTeX 2.9\tex\generic\xkeyval\xkvutils.tex"
\XKV@toks=\toks25
\XKV@tempa@toks=\toks26
)
\XKV@depth=\count132
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
("C:\Program Files\MiKTeX 2.9\tex\latex\xfor\xfor.sty"
Package: xfor 2009/02/05 v1.05 (NLCT)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\substr\substr.sty"
Package: substr 2009/10/20 v1.2 Handle substrings
\c@su@anzahl=\count133
)
("C:\Program Files\MiKTeX 2.9\tex\latex\etoolbox\etoolbox.sty"
Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count134
)
("C:\Program Files\MiKTeX 2.9\tex\latex\datatool\datatool-base.sty"
Package: datatool-base 2018/04/16 v2.30 (NLCT)
("C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsmath.sty"
Package: amsmath 2017/09/02 v2.17a AMS math features
\@mathmargin=\skip112
For additional information on amsmath, use the `?' option.
("C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01 AMS text
("C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks27
\ex@=\dimen149
))
("C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen150
)
("C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsopn.sty"
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count135
LaTeX Info: Redefining \frac on input line 213.
\uproot@=\count136
\leftroot@=\count137
LaTeX Info: Redefining \overline on input line 375.
\classnum@=\count138
\DOTSCASE@=\count139
LaTeX Info: Redefining \ldots on input line 472.
LaTeX Info: Redefining \dots on input line 475.
LaTeX Info: Redefining \cdots on input line 596.
\Mathstrutbox@=\box39
\strutbox@=\box40
\big@size=\dimen151
LaTeX Font Info: Redeclaring font encoding OML on input line 712.
LaTeX Font Info: Redeclaring font encoding OMS on input line 713.
\macc@depth=\count140
\c@MaxMatrixCols=\count141
\dotsspace@=\muskip11
\c@parentequation=\count142
\dspbrk@lvl=\count143
\tag@help=\toks28
\row@=\count144
\column@=\count145
\maxfields@=\count146
\andhelp@=\toks29
\eqnshift@=\dimen152
\alignsep@=\dimen153
\tagshift@=\dimen154
\tagwidth@=\dimen155
\totwidth@=\dimen156
\lineht@=\dimen157
\@envbody=\toks30
\multlinegap=\skip113
\multlinetaggap=\skip114
\mathdisplay@stack=\toks31
LaTeX Info: Redefining \[ on input line 2817.
LaTeX Info: Redefining \] on input line 2818.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\datatool\datatool-fp.sty"
Package: datatool-fp 2018/04/16 v2.30 (NLCT)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp.sty"
Package: fp 1995/04/02
`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\defpattern.sty"
Package: defpattern 1994/10/12
\actioncount=\count147
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-basic.sty"
Package: fp-basic 1996/05/13
\FP@xs=\count148
\FP@xia=\count149
\FP@xib=\count150
\FP@xfa=\count151
\FP@xfb=\count152
\FP@rega=\count153
\FP@regb=\count154
\FP@regs=\count155
\FP@times=\count156
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-addons.sty"
Package: fp-addons 1995/03/15
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-snap.sty"
Package: fp-snap 1995/04/05
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-exp.sty"
Package: fp-exp 1995/04/03
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-trigo.sty"
Package: fp-trigo 1995/04/14
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-pas.sty"
Package: fp-pas 1994/08/29
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-random.sty"
Package: fp-random 1995/02/23
\FPseed=\count157
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-eqn.sty"
Package: fp-eqn 1995/04/03
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-upn.sty"
Package: fp-upn 1996/10/21
)
("C:\Program Files\MiKTeX 2.9\tex\latex\fp\fp-eval.sty"
Package: fp-eval 1995/04/03
)))
\@dtl@toks=\toks32
\@dtl@tmpcount=\count158
\dtl@tmplength=\skip115
\dtl@sortresult=\count159
\@dtl@numgrpsepcount=\count160
\@dtl@datatype=\count161
\dtl@codeA=\count162
\dtl@codeB=\count163
\@dtl@foreach@level=\count164
)
\dtlcolumnnum=\count165
\dtlrownum=\count166
\@dtl@before=\toks33
\@dtl@after=\toks34
\@dtl@colhead=\toks35
\dtlcurrentrow=\toks36
\dtlbeforerow=\toks37
\dtlafterrow=\toks38
\dtlforeachlevel=\count167
\c@DTLrowi=\count168
\c@DTLrowii=\count169
\c@DTLrowiii=\count170
\c@DTLrow=\count171
\dtl@rowi=\count172
\dtl@rowii=\count173
\dtl@rowiii=\count174
\@dtl@curi=\toks39
\@dtl@previ=\toks40
\@dtl@nexti=\toks41
\@dtl@curii=\toks42
\@dtl@previi=\toks43
\@dtl@nextii=\toks44
\@dtl@curiii=\toks45
\@dtl@previii=\toks46
\@dtl@nextiii=\toks47
\@dtl@elements=\count175
\@dtl@list=\toks48
\@dtl@rowa=\toks49
\@dtl@rowb=\toks50
\@dtl@toksA=\toks51
\@dtl@toksB=\toks52
\@dtl@write=\write3
\@dtl@read=\read1
\dtl@entrycr=\count176
\dtl@omitlines=\count177
)
("C:\Program Files\MiKTeX 2.9\tex\latex\mfirstuc\mfirstuc.sty"
Package: mfirstuc 2017/11/14 v2.06 (NLCT)
\@glsmfirst=\toks53
\@glsmrest=\toks54
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\multicol.sty"
Package: multicol 2018/04/20 v1.8s multicolumn formatting (FMi)
\c@tracingmulticols=\count178
\mult@box=\box41
\multicol@leftmargin=\dimen158
\c@unbalance=\count179
\c@collectmore=\count180
\doublecol@number=\count181
\multicoltolerance=\count182
\multicolpretolerance=\count183
\full@width=\dimen159
\page@free=\dimen160
\premulticols=\dimen161
\postmulticols=\dimen162
\multicolsep=\skip116
\multicolbaselineskip=\skip117
\partial@page=\box42
\last@line=\box43
\maxbalancingoverflow=\dimen163
\mult@rightbox=\box44
\mult@grightbox=\box45
\mult@gfirstbox=\box46
\mult@firstbox=\box47
\@tempa=\box48
\@tempa=\box49
\@tempa=\box50
\@tempa=\box51
\@tempa=\box52
\@tempa=\box53
\@tempa=\box54
\@tempa=\box55
\@tempa=\box56
\@tempa=\box57
\@tempa=\box58
\@tempa=\box59
\@tempa=\box60
\@tempa=\box61
\@tempa=\box62
\@tempa=\box63
\@tempa=\box64
\c@columnbadness=\count184
\c@finalcolumnbadness=\count185
\last@try=\dimen164
\multicolovershoot=\dimen165
\multicolundershoot=\dimen166
\mult@nat@firstbox=\box65
\colbreak@box=\box66
\mc@col@check@num=\count186
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\afterpage.sty"
Package: afterpage 2014/10/28 v1.08 After-Page Package (DPC)
\AP@output=\toks55
\AP@partial=\box67
\AP@footins=\box68
)
\c@DTLgidxChildCount=\count187
\datagidxsymbolwidth=\skip118
\datagidxlocationwidth=\skip119
\dtldb@datagidx=\toks56
\dtlkeys@datagidx=\toks57
\dtlrows@datagidx=\count188
\dtlcols@datagidx=\count189
\datagidxindent=\skip120
\datagidxnamewidth=\skip121
\datagidxdescwidth=\skip122
\datagidx@anchorcount=\count190
\datagidx@count=\count191
\datagidx@level=\count192
)
("C:\Program Files\MiKTeX 2.9\tex\latex\amsfonts\amssymb.sty"
Package: amssymb 2013/01/14 v3.01 AMS font symbols
("C:\Program Files\MiKTeX 2.9\tex\latex\amsfonts\amsfonts.sty"
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup5
\symAMSb=\mathgroup6
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
("C:\Program Files\MiKTeX 2.9\tex\latex\algorithm2e\algorithm2e.sty"
Package: algorithm2e 2017/07/18 v5.2 algorithms environments
\c@AlgoLine=\count193
\algocf@hangindent=\skip123
("C:\Program Files\MiKTeX 2.9\tex\latex\ifoddpage\ifoddpage.sty"
Package: ifoddpage 2016/04/23 v1.1 Conditionals for odd/even page detection
\c@checkoddpage=\count194
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\xspace.sty"
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\relsize\relsize.sty"
Package: relsize 2013/03/29 ver 4.1
)
\skiptotal=\skip124
\skiplinenumber=\skip125
\skiprule=\skip126
\skiphlne=\skip127
\skiptext=\skip128
\skiplength=\skip129
\algomargin=\skip130
\skipalgocfslide=\skip131
\algowidth=\dimen167
\inoutsize=\dimen168
\inoutindent=\dimen169
\interspacetitleruled=\dimen170
\interspacealgoruled=\dimen171
\interspacetitleboxruled=\dimen172
\algocf@ruledwidth=\skip132
\algocf@inoutbox=\box69
\algocf@inputbox=\box70
\AlCapSkip=\skip133
\AlCapHSkip=\skip134
\algoskipindent=\skip135
\algocf@nlbox=\box71
\algocf@hangingbox=\box72
\algocf@untilbox=\box73
\algocf@skipuntil=\skip136
\algocf@capbox=\box74
\algocf@lcaptionbox=\skip137
\algoheightruledefault=\skip138
\algoheightrule=\skip139
\algotitleheightruledefault=\skip140
\algotitleheightrule=\skip141
\c@algocfline=\count195
\c@algocfproc=\count196
\c@algocf=\count197
\algocf@algoframe=\box75
\algocf@algobox=\box76
)
Class scrbook Warning: Usage of package `tocbibind' together
(scrbook) with a KOMA-Script class is not recommended.
(scrbook) I'd suggest to use options like `listof=totoc'
(scrbook) or `bibliography=totoc', or commands like
(scrbook) `\setuptoc{toc}{totoc}' instead of this package,
(scrbook) because it breaks several KOMA-Script features of
(scrbook) the list of figures, list of tables, bibliography,
(scrbook) index and the running head.
(scrbook) Nevertheless, using requested
(scrbook) package `tocbibind' on input line 42.
("C:\Program Files\MiKTeX 2.9\tex\latex\tocbibind\tocbibind.sty"
Package: tocbibind 2010/10/13 v1.5k extra ToC listings
Package tocbibind Info: The document has chapter divisions on input line 50.
Package tocbibind Note: Using chapter style headings, unless overridden.
) ("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\epstopdf.sty"
Package: epstopdf 2016/05/15 v2.6 Conversion with epstopdf on the fly (HO)
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\epstopdf-base.sty"
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\grfext.sty"
Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO)
)
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
38.
Package grfext Info: Graphics extension search list:
(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 456.
))
("C:\Program Files\MiKTeX 2.9\tex\latex\was\gensymb.sty"
Package: gensymb 2003/07/02 v1.0 (WaS)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\stmaryrd\stmaryrd.sty"
Package: stmaryrd 1994/03/03 St Mary's Road symbol package
\symstmry=\mathgroup7