-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainV21.log
1861 lines (1750 loc) · 78.7 KB
/
mainV21.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is LuaTeX, Version beta-0.79.1 (TeX Live 2014/W32TeX) (rev 4971) (format=lualatex 2015.2.28) 22 APR 2016 16:36
restricted \write18 enabled.
**mainV21.tex
(./mainV21.tex
LaTeX2e <2014/05/01>
Babel <3.9l> and hyphenation patterns for 79 languages loaded.
(./header.tex
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/scrartcl.cls
Document Class: scrartcl 2015/02/07 v3.16 KOMA-Script document class (article)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2015/02/07 v3.16 KOMA-Script package (KOMA-Script-dependent ba
sics and keyval usage)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/scrbase.sty
Package: scrbase 2015/02/07 v3.16 KOMA-Script package (KOMA-Script-independent b
asics and keyval usage)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2015/02/07 v3.16 KOMA-Script package (loading files)
Package scrlfile, 2015/02/07 v3.16 KOMA-Script package (loading files)
Copyright (C) Markus Kohm
))) (c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/tocbasic.sty
Package: tocbasic 2015/02/07 v3.16 KOMA-Script package (handling toc-files)
)
Package tocbasic Info: omitting babel extension for `toc'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `toc' on input line 116.
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lof' on input line 117.
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic) because of feature `nobabel' available
(tocbasic) for `lot' on input line 118.
Class scrartcl Info: File `scrsize11pt.clo' used instead of
(scrartcl) file `scrsize11.clo' to setup font sizes on input line 1564
.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/scrsize11pt.clo
File: scrsize11pt.clo 2015/02/07 v3.16 KOMA-Script font size class option (11pt)
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/koma-script/typearea.sty
Package: typearea 2015/02/07 v3.16 KOMA-Script package (type area)
Package typearea, 2015/02/07 v3.16 KOMA-Script package (type area)
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-
\ta@bcor=\skip41
\ta@div=\count79
\ta@hblk=\skip42
\ta@vblk=\skip43
\ta@temp=\skip44
\footheight=\skip45
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 10
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 418.25555pt
(typearea) DIV departure = -6%
(typearea) \evensidemargin = 17.3562pt
(typearea) \oddsidemargin = 17.3562pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 595.80026pt
(typearea) \topmargin = -25.16531pt
(typearea) \headheight = 17.0pt
(typearea) \headsep = 20.40001pt
(typearea) \topskip = 11.0pt
(typearea) \footskip = 47.6pt
(typearea) \baselineskip = 13.6pt
(typearea) on input line 1342.
)
\c@part=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\abovecaptionskip=\skip46
\belowcaptionskip=\skip47
\c@pti@nb@sid@b@x=\box26
\c@figure=\count86
\c@table=\count87
\bibindent=\dimen102
) (c:/Toolbox/texlive/2014/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2014/09/29 v1.1s fixes to LaTeX
LaTeX Info: Redefining \em on input line 430.
LaTeX Info: Redefining \textsubscript on input line 434.
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX detected.
))))
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/luatex-loader.sty
Package: luatex-loader 2010/03/09 v0.4 Lua module loader (HO)
(c:/Toolbox/texlive/2014/texmf-dist/scripts/oberdiek/oberdiek.luatex.lua))
\pdftexcmds@toks=\toks15
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/oberdiek/atveryend.sty
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/uniquecounter.sty
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/bigintcalc.sty
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO)
))
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 28
2.
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/polyglossia/polyglossia.sty
Package: polyglossia 2014/05/21 v1.33.5 Babel replacement for XeLaTeX and LuaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2011/01/03 v2.1 e-TeX tools for LaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count88
)
\etb@tempcnta=\count89
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/makecmds/makecmds.sty
Package: makecmds 2009/09/03 v1.0a extra command making commands
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2014/12/03 v2.7a package option processing (HA)
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks16
\XKV@tempa@toks=\toks17
)
\XKV@depth=\count90
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2014/06/21 v2.4a Font selection for XeLaTeX and LuaLaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2015/02/13 v5524 L3 programming layer (loader)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2015/02/13 v5524 L3 programming layer (code)
L3 Module: l3bootstrap 2015/01/27 v5500 L3 Bootstrap code
L3 Module: l3names 2014/08/22 v5343 L3 Namespace for primitives
L3 Module: l3basics 2015/01/27 v5500 L3 Basic definitions
L3 Module: l3expan 2014/11/27 v5472 L3 Argument expansion
L3 Module: l3tl 2015/01/27 v5500 L3 Token lists
L3 Module: l3str 2014/08/24 v5368 L3 Strings
L3 Module: l3seq 2014/08/23 v5354 L3 Sequences and stacks
L3 Module: l3int 2014/09/14 v5421 L3 Integers
\c_max_int=\count91
\l_tmpa_int=\count92
\l_tmpb_int=\count93
\g_tmpa_int=\count94
\g_tmpb_int=\count95
L3 Module: l3quark 2014/08/23 v5354 L3 Quarks
L3 Module: l3prg 2014/08/23 v5354 L3 Control structures
\g__prg_map_int=\count96
L3 Module: l3clist 2014/08/23 v5354 L3 Comma separated lists
L3 Module: l3token 2014/09/15 v5422 L3 Experimental token manipulation
L3 Module: l3prop 2014/08/23 v5354 L3 Property lists
L3 Module: l3msg 2014/08/24 v5358 L3 Messages
L3 Module: l3file 2014/08/24 v5369 L3 File and I/O operations
\l_iow_line_count_int=\count97
\l__iow_target_count_int=\count98
\l__iow_current_line_int=\count99
\l__iow_current_word_int=\count100
\l__iow_current_indentation_int=\count101
L3 Module: l3skip 2014/08/23 v5354 L3 Dimensions and skips
\c_zero_dim=\dimen103
\c_max_dim=\dimen104
\l_tmpa_dim=\dimen105
\l_tmpb_dim=\dimen106
\g_tmpa_dim=\dimen107
\g_tmpb_dim=\dimen108
\c_zero_skip=\skip48
\c_max_skip=\skip49
\l_tmpa_skip=\skip50
\l_tmpb_skip=\skip51
\g_tmpa_skip=\skip52
\g_tmpb_skip=\skip53
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
L3 Module: l3keys 2015/01/27 v5500 L3 Key-value interfaces
\g__keyval_level_int=\count102
\l_keys_choice_int=\count103
L3 Module: l3fp 2014/08/22 v5336 L3 Floating points
\c__fp_leading_shift_int=\count104
\c__fp_middle_shift_int=\count105
\c__fp_trailing_shift_int=\count106
\c__fp_big_leading_shift_int=\count107
\c__fp_big_middle_shift_int=\count108
\c__fp_big_trailing_shift_int=\count109
\c__fp_Bigg_leading_shift_int=\count110
\c__fp_Bigg_middle_shift_int=\count111
\c__fp_Bigg_trailing_shift_int=\count112
L3 Module: l3box 2014/08/23 v5354 L3 Experimental boxes
\c_empty_box=\box27
\l_tmpa_box=\box28
\l_tmpb_box=\box29
\g_tmpa_box=\box30
\g_tmpb_box=\box31
L3 Module: l3coffins 2014/08/23 v5354 L3 Coffin code layer
\l__coffin_internal_box=\box32
\l__coffin_internal_dim=\dimen109
\l__coffin_offset_x_dim=\dimen110
\l__coffin_offset_y_dim=\dimen111
\l__coffin_x_dim=\dimen112
\l__coffin_y_dim=\dimen113
\l__coffin_x_prime_dim=\dimen114
\l__coffin_y_prime_dim=\dimen115
\c_empty_coffin=\box33
\l__coffin_aligned_coffin=\box34
\l__coffin_aligned_internal_coffin=\box35
\l_tmpa_coffin=\box36
\l_tmpb_coffin=\box37
\l__coffin_display_coffin=\box38
\l__coffin_display_coord_coffin=\box39
\l__coffin_display_pole_coffin=\box40
\l__coffin_display_offset_dim=\dimen116
\l__coffin_display_x_dim=\dimen117
\l__coffin_display_y_dim=\dimen118
L3 Module: l3color 2014/08/23 v5354 L3 Experimental color support
L3 Module: l3candidates 2015/02/12 v5523 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen119
\l__box_bottom_dim=\dimen120
\l__box_left_dim=\dimen121
\l__box_right_dim=\dimen122
\l__box_top_new_dim=\dimen123
\l__box_bottom_new_dim=\dimen124
\l__box_left_new_dim=\dimen125
\l__box_right_new_dim=\dimen126
\l__box_internal_box=\box41
\l__coffin_bounding_shift_dim=\dimen127
\l__coffin_left_corner_dim=\dimen128
\l__coffin_right_corner_dim=\dimen129
\l__coffin_bottom_corner_dim=\dimen130
\l__coffin_top_corner_dim=\dimen131
\l__coffin_scaled_total_height_dim=\dimen132
\l__coffin_scaled_width_dim=\dimen133
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3kernel/l3unicode-data.def
File: l3unicode-data.def 2015/02/12 v5523 L3 Unicode data
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3kernel/l3pdfmode.def
File: l3pdfmode.def 2015/02/12 v5523 L3 Experimental driver: PDF mode
\l__driver_color_stack_int=\count113
))
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2014/11/25 v5471 L3 Experimental document command parser
\l__xparse_current_arg_int=\count114
\l__xparse_m_args_int=\count115
\l__xparse_mandatory_args_int=\count116
\l__xparse_processor_int=\count117
\l__xparse_v_nesting_int=\count118
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload.sty
Package: luaotfload 2014/08/10 v2.5-4 OpenType layout system
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase.sty
Package: luatexbase 2013/05/11 v0.6 Resource management for the LuaTeX macro pro
grammer
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/oberdiek/luatex.sty
Package: luatex 2010/03/09 v0.4 LuaTeX basic definition package (HO)
\LuT@AllocAttribute=\count277
\LuT@AllocCatcodeTable=\count278
\CatcodeTableStack=\count279
\CatcodeTableIniTeX=\catcodetable1
\CatcodeTableString=\catcodetable3
\CatcodeTableOther=\catcodetable5
\CatcodeTableLaTeX=\catcodetable7
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-compat.sty
Package: luatexbase-compat 2011/05/24 v0.4 Compatibility tools for LuaTeX
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-modutils.s
ty
Package: luatexbase-modutils 2013/05/11 v0.6 Module utilities for LuaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-loader.sty
Package: luatexbase-loader 2013/05/11 v0.6 Lua module loader for LuaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase.loader.lua)
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/modutils.lua)
Lua module: luatexbase-modutils 2013/05/11 0.6 Module utilities for LuaTeX
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-regs.sty
Package: luatexbase-regs 2011/05/24 v0.4 Registers allocation for LuaTeX
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-attr.sty
Package: luatexbase-attr 2013/05/11 v0.6 Attributes allocation for LuaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/attr.lua)
Lua module: luatexbase-attr 2013/05/11 0.6 Attributes allocation for LuaTeX
\lltxb@attr@unsetvalue=\count280
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-cctb.sty
Package: luatexbase-cctb 2013/05/11 v0.6 Catcodetable allocation for LuaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/cctb.lua)
Lua module: luatexbase-cctb 2013/05/11 0.6 Catcodetable allocation for LuaTeX
\lltxb@catcodetable@alloc=\count281
\CatcodeTableStack=\count282
\CatcodeTableIniTeX=\luatexcatcodetable1
\CatcodeTableString=\luatexcatcodetable3
\CatcodeTableOther=\luatexcatcodetable5
\CatcodeTableLaTeX=\luatexcatcodetable7
\CatcodeTableLaTeXAtLetter=\luatexcatcodetable9
\CatcodeTableExpl=\luatexcatcodetable11
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/luatexbase-mcb.sty
Package: luatexbase-mcb 2013/05/11 v0.6 Callback management for LuaTeX
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luatexbase/mcb.lua)
Lua module: luatexbase-mcb 2013/05/11 0.6 register several functions in a callba
ck
))
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-main.lua)
Lua module: luaotfload-main 2014/08/10 2.50003 OpenType layout system.
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-log.lua)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.
lua)(using write cache: c:/Toolbox/texlive/2014/texmf-var/luatex-cache/generic)(
using read cache: c:/Toolbox/texlive/2014/texmf-var/luatex-cache/generic C:/User
s/Kevin/.texlive2014/texmf-var/luatex-cache/generic)
luatexbase-attr: luatexbase.attributes["luaotfload@kernpair"] = 1
luatexbase-attr: luatexbase.attributes["luaotfload@ligacomp"] = 2
luatexbase-attr: luatexbase.attributes["luaotfload@markbase"] = 3
luatexbase-attr: luatexbase.attributes["luaotfload@markmark"] = 4
luatexbase-attr: luatexbase.attributes["luaotfload@markdone"] = 5
luatexbase-attr: luatexbase.attributes["luaotfload@cursbase"] = 6
luatexbase-attr: luatexbase.attributes["luaotfload@curscurs"] = 7
luatexbase-attr: luatexbase.attributes["luaotfload@cursdone"] = 8
luatexbase-attr: luatexbase.attributes["luaotfload@state"] = 9
luaotfload | main : fontloader loaded in 0.031 seconds
luatexbase-mcb: inserting 'luaotfload.node_processor'
at position 1 in 'pre_linebreak_filter'
luatexbase-mcb: inserting 'luaotfload.node_processor'
at position 1 in 'hpack_filter'
luatexbase-mcb: inserting 'luaotfload.find_vf_file'
at position 1 in 'find_vf_file'
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-override.lu
a)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-parsers.lua
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-configurati
on.lua)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua)
luaotfload | conf : Root cache directory is c:/Toolbox/texlive/2014/texmf-var/lu
atex-cache/generic/names.
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lu
a)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua)
luaotfload | conf : Root cache directory is c:/Toolbox/texlive/2014/texmf-var/lu
atex-cache/generic/names.
luatexbase-mcb: creating 'luaotfload.resolve_font' type 4
luatexbase-mcb: creating 'luaotfload.patch_font' type 4
luatexbase-mcb: resetting callback 'define_font'
luatexbase-mcb: inserting 'luaotfload.define_font'
at position 1 in 'define_font'
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-features.lu
a)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace
.lua)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.l
ua)
luatexbase-mcb: inserting 'luaotfload.aux.set_sscale_dimens'
at position 1 in 'luaotfload.patch_font'
luatexbase-mcb: inserting 'luaotfload.aux.patch_cambria_domh'
at position 2 in 'luaotfload.patch_font'
luatexbase-mcb: inserting 'luaotfload.aux.set_capheight'
at position 3 in 'luaotfload.patch_font'
luatexbase-mcb: inserting 'luaotfload.rewrite_fontname'
at position 4 in 'luaotfload.patch_font')
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec.lua)
Lua module: fontspec 2013/05/20 2.3c Advanced font selection for LuaLaTeX.
\l_fontspec_script_int=\count283
\l_fontspec_language_int=\count284
\l_fontspec_strnum_int=\count285
\l__fontspec_tmpa_dim=\dimen256
\l__fontspec_tmpb_dim=\dimen257
\l__fontspec_tmpc_dim=\dimen258
Variant \tl_gset:cV already defined; not changing it on line 71
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec-patches.sty
Package: fontspec-patches 2014/06/21 v2.4a Font selection for XeLaTeX and LuaLaT
eX
LaTeX Info: Redefining \em on input line 38.
LaTeX Info: Redefining \emph on input line 46.
LaTeX Info: Redefining \- on input line 49.
.................................................
. LaTeX info: "xparse/redefine-command"
.
. Redefining command \oldstylenums with sig. 'm' on line 144.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \liningnums with sig. 'm' on line 148.
.................................................
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2014/06/21 v2.4a Font selection for XeLaTeX and LuaLaTe
X
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/euenc/eu2enc.def
File: eu2enc.def 2010/05/27 v0.1h Experimental Unicode font encodings
)
LaTeX Font Info: Try loading font information for EU2+lmr on input line 100.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/euenc/eu2lmr.fd
File: eu2lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
luaotfload | db : Font names database loaded from c:/Toolbox/texlive/2014/texmf-
var/luatex-cache/generic/names/luaotfload-names.luc(load luc: c:/Toolbox/texlive
/2014/texmf-var/luatex-cache/generic/fonts/otf/lmroman10-regular.luc)) (c:/Tool
box/texlive/2014/texmf-dist/tex/xelatex/xunicode/xunicode.sty
File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many o
ther characters in Unicode lower plane
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
(load luc: c:/Toolbox/texlive/2014/texmf-var/luatex-cache/generic/fonts/otf/lmro
manslant10-regular.luc)(load luc: c:/Toolbox/texlive/2014/texmf-var/luatex-cache
/generic/fonts/otf/lmroman10-italic.luc)(load luc: c:/Toolbox/texlive/2014/texmf
-var/luatex-cache/generic/fonts/otf/lmroman10-bold.luc)
LaTeX Font Info: Try loading font information for EU2+lmss on input line 357.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/euenc/eu2lmss.fd
File: eu2lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
)(load luc: c:/Toolbox/texlive/2014/texmf-var/luatex-cache/generic/fonts/otf/lms
ans10-regular.luc))
\tipaTiiicode=\count286
\tipasavetokens=\toks18
\tipachecktokens=\toks19
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
\Gread@gobject=\count287
))
\Gin@req@height=\dimen259
\Gin@req@width=\dimen260
))
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \fontspec with sig. 'O{}mO{}' on line 44.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmainfont with sig. 'O{}mO{}' on line 50.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setsansfont with sig. 'O{}mO{}' on line 56.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmonofont with sig. 'O{}mO{}' on line 62.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathrm with sig. 'O{}mO{}' on line 71.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setboldmathrm with sig. 'O{}mO{}' on line 75.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathsf with sig. 'O{}mO{}' on line 79.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \setmathtt with sig. 'O{}mO{}' on line 83.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfamily with sig. 'mO{}mO{}' on line 102.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontface with sig. 'mO{}mO{}' on line 106.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \defaultfontfeatures with sig. 't+om' on line 115.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \addfontfeatures with sig. 'm' on line 173.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontfeature with sig. 'mm' on line 184.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newAATfeature with sig. 'mmmm' on line 192.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newopentypefeature with sig. 'mmm' on line 200.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeature with sig. 'mm' on line 229.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \aliasfontfeatureoption with sig. 'mmm' on line 231.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontscript with sig. 'mm' on line 236.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \newfontlanguage with sig. 'mm' on line 262.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareFontsExtensions with sig. 'm' on line 282.
.................................................
Variant \prop_gput:cnV already defined; not changing it on line 666
Variant \prop_gput:cnx already defined; not changing it on line 667
\l__fontspec_tmp_int=\count288
LaTeX Info: Redefining \itshape on input line 2117.
LaTeX Info: Redefining \slshape on input line 2122.
LaTeX Info: Redefining \scshape on input line 2127.
LaTeX Info: Redefining \upshape on input line 2132.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
(c:/Toolbox/texlive/2014/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/polyglossia/polyglossia.lua)
(c:/Toolbox/texlive/2014/texmf-dist/tex/luatex/hyph-utf8/luatex-hyphen.lua)
luatex-hyphen: using data file: c:/Toolbox/texlive/2014/texmf-var/tex/generic/co
nfig/language.dat.lua
Lua module: polyglossia 2013/05/11 1.3 Polyglossia
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/polyglossia/gloss-german.ldf
File: gloss-german.ldf polyglossia: module for german
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/polyglossia/babelsh.def
File: babelsh.def 2013/04/30 Babel common definitions for shorthands
Taken verbatim from babel.def (2013/04/15 v3.9e)
)
Package polyglossia Info: Making " an active character on input line 68.
)
Package polyglossia Info: Default language is german.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2013/01/14 v2.14 AMS math features
\@mathmargin=\skip256
For additional information on amsmath, use the `?' option.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks20
\ex@=\dimen261
))
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen262
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count289
LaTeX Info: Redefining \frac on input line 210.
\uproot@=\count290
\leftroot@=\count291
LaTeX Info: Redefining \overline on input line 306.
\classnum@=\count292
\DOTSCASE@=\count293
LaTeX Info: Redefining \ldots on input line 378.
LaTeX Info: Redefining \dots on input line 381.
LaTeX Info: Redefining \cdots on input line 466.
\Mathstrutbox@=\box256
\strutbox@=\box257
\big@size=\dimen263
LaTeX Font Info: Redeclaring font encoding OML on input line 566.
LaTeX Font Info: Redeclaring font encoding OMS on input line 567.
\macc@depth=\count294
\c@MaxMatrixCols=\count295
\dotsspace@=\muskip16
\c@parentequation=\count296
\dspbrk@lvl=\count297
\tag@help=\toks21
\row@=\count298
\column@=\count299
\maxfields@=\count300
\andhelp@=\toks22
\eqnshift@=\dimen264
\alignsep@=\dimen265
\tagshift@=\dimen266
\tagwidth@=\dimen267
\totwidth@=\dimen268
\lineht@=\dimen269
\@envbody=\toks23
\multlinegap=\skip257
\multlinetaggap=\skip258
\mathdisplay@stack=\toks24
LaTeX Info: Redefining \[ on input line 2665.
LaTeX Info: Redefining \] on input line 2666.
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/mathtools/mathtools.sty
Package: mathtools 2014/07/16 v1.15 mathematical typesetting tools
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2014/10/28 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count301
\calc@Bcount=\count302
\calc@Adimen=\dimen270
\calc@Bdimen=\dimen271
\calc@Askip=\skip259
\calc@Bskip=\skip260
LaTeX Info: Redefining \setlength on input line 75.
LaTeX Info: Redefining \addtolength on input line 76.
\calc@Ccount=\count303
\calc@Cskip=\skip261
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/mathtools/mhsetup.sty
Package: mhsetup 2010/01/21 v1.2a programming setup (MH)
)
LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 129.
\g_MT_multlinerow_int=\count304
\l_MT_multwidth_dim=\dimen272
\origjot=\skip262
\l_MT_shortvdotswithinadjustabove_dim=\dimen273
\l_MT_shortvdotswithinadjustbelow_dim=\dimen274
\l_MT_above_intertext_sep=\dimen275
\l_MT_below_intertext_sep=\dimen276
\l_MT_above_shortintertext_sep=\dimen277
\l_MT_below_shortintertext_sep=\dimen278
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/csquotes/csquotes.sty
Package: csquotes 2011/10/22 v5.1d context-sensitive quotations
\csq@reset=\count305
\csq@gtype=\count306
\csq@glevel=\count307
\csq@qlevel=\count308
\csq@maxlvl=\count309
\csq@tshold=\count310
\csq@ltx@everypar=\toks25
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/csquotes/csquotes.def
File: csquotes.def 2011/10/22 v5.1d csquotes generic definitions
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg
)
Package csquotes Info: Enabling multilingual quotes.
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/siunitx/siunitx.sty
Package: siunitx 2015/01/21 v2.6e A comprehensive (SI) units package
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/tools/array.sty
Package: array 2014/10/28 v2.4c Tabular extension package (FMi)
\col@sep=\dimen279
\extrarowheight=\dimen280
\NC@list=\toks26
\extratabsurround=\skip263
\backup@length=\skip264
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2014/11/25 v5471 LaTeX2e option processing using LaTeX3 keys
)
Variant \tl_if_blank:VTF already defined; not changing it on line 50
\l__siunitx_tmp_box=\box258
\l__siunitx_tmp_dim=\dimen281
\l__siunitx_tmp_int=\count311
Variant \prop_get:NVNT already defined; not changing it on line 380
Variant \prop_get:NVNF already defined; not changing it on line 381
Variant \prop_get:NVNTF already defined; not changing it on line 382
\l__siunitx_number_mantissa_length_int=\count312
\l__siunitx_number_uncert_length_int=\count313
\l__siunitx_round_int=\count314
\l__siunitx_process_decimal_int=\count315
\l__siunitx_process_uncertainty_int=\count316
\l__siunitx_process_fixed_int=\count317
\l__siunitx_process_integer_min_int=\count318
\l__siunitx_process_precision_int=\count319
\l__siunitx_group_min_int=\count320
\l__siunitx_angle_marker_box=\box259
\l__siunitx_angle_unit_box=\box260
\l__siunitx_angle_marker_dim=\dimen282
\l__siunitx_angle_unit_dim=\dimen283
\l__siunitx_unit_int=\count321
\l__siunitx_unit_denominator_int=\count322
\l__siunitx_unit_numerator_int=\count323
\l__siunitx_unit_prefix_int=\count324
\l__siunitx_unit_prefix_base_int=\count325
\l__siunitx_unit_prefix_gram_int=\count326
\l__siunitx_number_product_int=\count327
\c__siunitx_one_fill_skip=\skip265
\l__siunitx_table_unit_align_skip=\skip266
\l__siunitx_table_exponent_dim=\dimen284
\l__siunitx_table_integer_dim=\dimen285
\l__siunitx_table_mantissa_dim=\dimen286
\l__siunitx_table_marker_dim=\dimen287
\l__siunitx_table_result_dim=\dimen288
\l__siunitx_table_uncert_dim=\dimen289
\l__siunitx_table_fill_pre_dim=\dimen290
\l__siunitx_table_fill_post_dim=\dimen291
\l__siunitx_table_fill_mid_dim=\dimen292
\l__siunitx_table_pre_box=\box261
\l__siunitx_table_post_box=\box262
\l__siunitx_table_mantissa_box=\box263
\l__siunitx_table_result_box=\box264
\l__siunitx_table_number_align_skip=\skip267
\l__siunitx_table_text_align_skip=\skip268
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareBinaryPrefix with sig. 'mmm' on line 7176.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareSIPostPower with sig. 'mm' on line 7179.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareSIPrefix with sig. 'mmm' on line 7182.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareSIPrePower with sig. 'mm' on line 7185.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareSIQualifier with sig. 'mm' on line 7188.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareSIUnit with sig. 'O{}mm' on line 7191.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \DeclareSIUnitWithOptions with sig. 'mmm' on line 7194.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \ang with sig. 'o>{\SplitArgument {2}{;}}m' on line 7209.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \num with sig. 'om' on line 7217.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \numlist with sig. 'o>{\SplitList {;}}m' on line 7225.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \numrange with sig. 'omm' on line 7233.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \SIlist with sig. 'o>{\SplitList {;}}mm' on line 7244.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \SIrange with sig. 'ommm' on line 7255.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \SI with sig. 'omom' on line 7266.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \sisetup with sig. 'm' on line 7269.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \tablenum with sig. 'om' on line 7281.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \si with sig. 'om' on line 7292.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__siunitx_bookmark_num:w with sig. 'om' on line 7339.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__siunitx_bookmark_numrange:w with sig. 'omm' on line
. 7341.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__siunitx_bookmark_SI:w with sig. 'omom' on line 7343.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__siunitx_bookmark_SIlist:w with sig. 'omm' on line 7345.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__siunitx_bookmark_SIrange:w with sig. 'ommm' on line
. 7347.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
.
. Defining command \__siunitx_bookmark_si:w with sig. 'om' on line 7348.
.................................................
\g__file_internal_ior=\read1
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/beamer/translator/translator.sty
Package: translator 2010/06/12 ver 1.10
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/beamer/translator/translator-lang
uage-mappings.tex)))
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/mhchem/mhchem.sty
Package: mhchem 2015/02/09 v3.19 for typesetting chemical formulae
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\__mhchem_option_version_int=\count328
Variant \str_if_eq:VnTF already defined; not changing it on line 94
\mhchem@arrow@params=\toks27
\mhchem@arrowlength@pgf=\skip269
\mhchem@bondwidth=\skip270
\mhchem@bondheight=\skip271
\mhchem@smallbondwidth@tmpA=\skip272
\mhchem@smallbondwidth@tmpB=\skip273
\mhchem@smallbondwidth=\skip274
\mhchem@prepostscript@tmp@i=\skip275
\mhchem@prepostscript@tmp@ii=\skip276
\mhchem@mathbox@tmp@i=\skip277
\mhchem@mathbox@tmp@ii=\skip278
\mhchem@minispace@tmp=\skip279
\mhchem@option@minussidebearingleft=\skip280
\mhchem@option@minussidebearingright=\skip281
)
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2005/09/27 v1.99g Standard LaTeX package
Package textcomp Info: Sub-encoding information:
(textcomp) 5 = only ISO-Adobe without \textcurrency
(textcomp) 4 = 5 + \texteuro
(textcomp) 3 = 4 + \textohm
(textcomp) 2 = 3 + \textestimated + \textcurrency
(textcomp) 1 = TS1 - \textcircled - \t
(textcomp) 0 = TS1 (full)
(textcomp) Font families with sub-encoding setting implement
(textcomp) only a restricted character set as indicated.
(textcomp) Family '?' is the default used for unknown fonts.
(textcomp) See the documentation for details.
Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71.
(c:/Toolbox/texlive/2014/texmf-dist/tex/latex/base/ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
)
LaTeX Info: Redefining \oldstylenums on input line 266.
Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281.
Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282.
Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283.
Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284.
Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285.
Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286.
Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287.
Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288.
Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289.
Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290.
Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291.
Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292.
Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293.
Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294.
Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295.