Hong-Phuc Bui
2020-10-02 dae312537b57f3ec8823602b91550e06c327fb86
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
This is LuaTeX, Version beta-0.76.0-2013052800 (rev 4627)  (format=lualatex 2013.6.26)  6 FEB 2014 18:25
 \write18 enabled.
**biblatex-author-year.tex
(./biblatex-author-year.tex
LaTeX2e <2011/06/27>
Babel <3.9f> and hyphenation patterns for 78 languages loaded.
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/scrartcl.cls
Document Class: scrartcl 2012/07/29 v3.11b KOMA-Script document class (article)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2012/07/29 v3.11b KOMA-Script package (KOMA-Script-dependent b
asics and keyval usage)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/scrbase.sty
Package: scrbase 2012/07/29 v3.11b KOMA-Script package (KOMA-Script-independent 
basics and keyval usage)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2012/06/15 v3.12 KOMA-Script package (loading files)
 
Package scrlfile, 2012/06/15 v3.12 KOMA-Script package (loading files)
                  Copyright (C) Markus Kohm
 
))) (/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/tocbasic.sty
Package: tocbasic 2012/04/04 v3.10b 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 115.
Package tocbasic Info: omitting babel extension for `lof'
(tocbasic)             because of feature `nobabel' available
(tocbasic)             for `lof' on input line 116.
Package tocbasic Info: omitting babel extension for `lot'
(tocbasic)             because of feature `nobabel' available
(tocbasic)             for `lot' on input line 117.
Class scrartcl Info: File `scrsize10pt.clo' used to setup font sizes on input li
ne 1267.
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/scrsize10pt.clo
File: scrsize10pt.clo 2012/07/29 v3.11b KOMA-Script font size class option (10pt
)
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/koma-script/typearea.sty
Package: typearea 2012/07/29 v3.11b KOMA-Script package (type area)
 
Package typearea, 2012/07/29 v3.11b 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
Package typearea Info: These are the values describing the layout:
(typearea)             DIV  = 8
(typearea)             BCOR = 0.0pt
(typearea)             \paperwidth      = 597.50793pt
(typearea)              \textwidth      = 373.44246pt
(typearea)              DIV departure   = -4%
(typearea)              \evensidemargin = 39.76274pt
(typearea)              \oddsidemargin  = 39.76274pt
(typearea)             \paperheight     = 845.04694pt
(typearea)              \textheight     = 538.0pt
(typearea)              \topmargin      = 0.36087pt
(typearea)              \headheight     = 15.0pt
(typearea)              \headsep        = 18.0pt
(typearea)              \topskip        = 10.0pt
(typearea)              \footskip       = 42.0pt
(typearea)              \baselineskip   = 12.0pt
(typearea)              on input line 1213.
)
\c@part=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\abovecaptionskip=\skip45
\belowcaptionskip=\skip46
\c@pti@nb@sid@b@x=\box26
\c@figure=\count86
\c@table=\count87
\bibindent=\dimen102
) (/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/expl3.sty
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3names.sty
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty
Package: l3bootstrap 2013/01/08 v4420 L3 Experimental bootstrap code
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/luatex.sty
Package: luatex 2010/03/09 v0.4 LuaTeX basic definition package (HO)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX detected.
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count88
)
\LuT@AllocAttribute=\count277
\LuT@AllocCatcodeTable=\count278
\CatcodeTableStack=\count279
\CatcodeTableIniTeX=\catcodetable1
\CatcodeTableString=\catcodetable3
\CatcodeTableOther=\catcodetable5
\CatcodeTableLaTeX=\catcodetable7
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/luatex-loader.sty
Package: luatex-loader 2010/03/09 v0.4 Lua module loader (HO)
 
(/home/hbui/opt/texlive/2013/texmf-dist/scripts/oberdiek/oberdiek.luatex.lua)))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO)
 
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
(/home/hbui/opt/texlive/2013/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.
\pdftexcmds@toks=\toks15
))
Package: l3names 2012/12/07 v4346 L3 Namespace for primitives
)
Package: expl3 2013/03/14 v4469 L3 Experimental code bundle wrapper
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3basics.sty
Package: l3basics 2013/01/10 v4428 L3 Basic definitions
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3expan.sty
Package: l3expan 2013/02/03 v4458 L3 Argument expansion
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3tl.sty
Package: l3tl 2013/01/08 v4415 L3 Token lists
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3seq.sty
Package: l3seq 2013/01/12 v4434 L3 Sequences and stacks
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3int.sty
Package: l3int 2013/01/13 v4444 L3 Integers
\c_max_int=\count280
\l_tmpa_int=\count281
\l_tmpb_int=\count282
\g_tmpa_int=\count283
\g_tmpb_int=\count284
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3quark.sty
Package: l3quark 2012/11/04 v4268 L3 Quarks
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3prg.sty
Package: l3prg 2013/02/13 v4459 L3 Control structures
\g__prg_map_int=\count285
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3clist.sty
Package: l3clist 2013/01/08 v4414 L3 Comma separated lists
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3token.sty
Package: l3token 2013/01/10 v4428 L3 Experimental token manipulation
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3prop.sty
Package: l3prop 2013/01/09 v4423 L3 Property lists
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3msg.sty
Package: l3msg 2013/01/08 v4412 L3 Messages
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3file.sty
Package: l3file 2013/01/14 v4446 L3 File and I/O operations
\l_iow_line_count_int=\count286
\l__iow_target_count_int=\count287
\l__iow_current_line_int=\count288
\l__iow_current_word_int=\count289
\l__iow_current_indentation_int=\count290
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3skip.sty
Package: l3skip 2013/01/13 v4444 L3 Dimensions and skips
\c_zero_dim=\dimen256
\c_max_dim=\dimen257
\l_tmpa_dim=\dimen258
\l_tmpb_dim=\dimen259
\g_tmpa_dim=\dimen260
\g_tmpb_dim=\dimen261
\c_zero_skip=\skip256
\c_max_skip=\skip257
\l_tmpa_skip=\skip258
\l_tmpb_skip=\skip259
\g_tmpa_skip=\skip260
\g_tmpb_skip=\skip261
\c_zero_muskip=\muskip10
\c_max_muskip=\muskip11
\l_tmpa_muskip=\muskip12
\l_tmpb_muskip=\muskip13
\g_tmpa_muskip=\muskip14
\g_tmpb_muskip=\muskip15
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3keys.sty
Package: l3keys 2013/02/24 v4461 L3 Experimental key-value interfaces
\g__keyval_level_int=\count291
\l_keys_choice_int=\count292
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3fp.sty
Package: l3fp 2013/01/19 v4449 L3 Floating points
\c__fp_leading_shift_int=\count293
\c__fp_middle_shift_int=\count294
\c__fp_trailing_shift_int=\count295
\c__fp_big_leading_shift_int=\count296
\c__fp_big_middle_shift_int=\count297
\c__fp_big_trailing_shift_int=\count298
\c__fp_Bigg_leading_shift_int=\count299
\c__fp_Bigg_middle_shift_int=\count300
\c__fp_Bigg_trailing_shift_int=\count301
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3box.sty
Package: l3box 2013/01/08 v4411 L3 Experimental boxes
\c_empty_box=\box256
\l_tmpa_box=\box257
\l_tmpb_box=\box258
\g_tmpa_box=\box259
\g_tmpb_box=\box260
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3coffins.sty
Package: l3coffins 2012/09/09 v4212 L3 Coffin code layer
\l__coffin_internal_box=\box261
\l__coffin_internal_dim=\dimen262
\l__coffin_offset_x_dim=\dimen263
\l__coffin_offset_y_dim=\dimen264
\l__coffin_x_dim=\dimen265
\l__coffin_y_dim=\dimen266
\l__coffin_x_prime_dim=\dimen267
\l__coffin_y_prime_dim=\dimen268
\c_empty_coffin=\box262
\l__coffin_aligned_coffin=\box263
\l__coffin_aligned_internal_coffin=\box264
\l_tmpa_coffin=\box265
\l_tmpb_coffin=\box266
\l__coffin_display_coffin=\box267
\l__coffin_display_coord_coffin=\box268
\l__coffin_display_pole_coffin=\box269
\l__coffin_display_offset_dim=\dimen269
\l__coffin_display_x_dim=\dimen270
\l__coffin_display_y_dim=\dimen271
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3color.sty
Package: l3color 2012/08/29 v4156 L3 Experimental color support
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3luatex.sty
Package: l3luatex 2012/08/03 v4049 L3 Experimental LuaTeX-specific functions
\g__cctab_allocate_int=\count302
\g__cctab_stack_int=\count303
\c_code_cctab=\catcodetable9
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3kernel/l3candidates.sty
Package: l3candidates 2013/03/14 v4468 L3 Experimental additions to l3kernel
\l__box_top_dim=\dimen272
\l__box_bottom_dim=\dimen273
\l__box_left_dim=\dimen274
\l__box_right_dim=\dimen275
\l__box_top_new_dim=\dimen276
\l__box_bottom_new_dim=\dimen277
\l__box_left_new_dim=\dimen278
\l__box_right_new_dim=\dimen279
\l__box_internal_box=\box270
\l__coffin_bounding_shift_dim=\dimen280
\l__coffin_left_corner_dim=\dimen281
\l__coffin_right_corner_dim=\dimen282
\l__coffin_bottom_corner_dim=\dimen283
\l__coffin_top_corner_dim=\dimen284
\l__coffin_scaled_total_height_dim=\dimen285
\l__coffin_scaled_width_dim=\dimen286
))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2013/03/12 v4467 L3 Experimental document command parser
\l__xparse_current_arg_int=\count304
\l__xparse_m_args_int=\count305
\l__xparse_mandatory_args_int=\count306
\l__xparse_processor_int=\count307
\l__xparse_v_nesting_int=\count308
) (/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload.sty
Package: luaotfload 2013/05/23 v2.2d OpenType layout system
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase.sty
Package: luatexbase 2013/05/11 v0.6 Resource management for the LuaTeX macro pro
grammer
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-compat
.sty
Package: luatexbase-compat 2011/05/24 v0.4 Compatibility tools for LuaTeX
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-moduti
ls.sty
Package: luatexbase-modutils 2013/05/11 v0.6 Module utilities for LuaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-loader
.sty
Package: luatexbase-loader 2013/05/11 v0.6 Lua module loader for LuaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase.loader.
lua))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/modutils.lua)
Lua module: luatexbase-modutils 2013/05/11 0.6 Module utilities for LuaTeX
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-regs.s
ty
Package: luatexbase-regs 2011/05/24 v0.4 Registers allocation for LuaTeX
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-attr.s
ty
Package: luatexbase-attr 2013/05/11 v0.6 Attributes allocation for LuaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/attr.lua)
Lua module: luatexbase-attr 2013/05/11 0.6 Attributes allocation for LuaTeX
\lltxb@attr@unsetvalue=\count309
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-cctb.s
ty
Package: luatexbase-cctb 2013/05/11 v0.6 Catcodetable allocation for LuaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/cctb.lua)
Lua module: luatexbase-cctb 2013/05/11 0.6 Catcodetable allocation for LuaTeX
\lltxb@catcodetable@alloc=\count310
\CatcodeTableStack=\count311
\CatcodeTableIniTeX=\luatexcatcodetable1
\CatcodeTableString=\luatexcatcodetable3
\CatcodeTableOther=\luatexcatcodetable5
\CatcodeTableLaTeX=\luatexcatcodetable7
\CatcodeTableLaTeXAtLetter=\luatexcatcodetable9
\CatcodeTableExpl=\luatexcatcodetable11
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/luatexbase-mcb.st
y
Package: luatexbase-mcb 2013/05/11 v0.6 Callback management for LuaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luatexbase/mcb.lua)
Lua module: luatexbase-mcb 2013/05/11 0.6 register several functions in a callba
ck
))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload.lua)
Lua module: luaotfload 2013/05/23 2.2 OpenType layout system.
luaotfload: push namespace for font loader
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-merged.
lua)(using write cache: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/gener
ic)(using read cache: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic
 /home/hbui/.texlive2013/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: “I am using the merged version of 'luaotfload.lua' here. If
luaotfload:  you run into problems or experience unexpected behaviour,
luaotfload:  and if you have ConTeXt installed you can try to delete the
luaotfload:  file 'luaotfload-font-merged.lua' as I might then use the
luaotfload:  possibly updated libraries. The merged version is not
luaotfload:  supported as it is a frozen instance. Problems can be
luaotfload:  reported to the ConTeXt mailing list.”
luaotfload: pop namespace from font loader -- non-destructive
luaotfload: fontloader loaded in 0.016 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'
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-lib-dir
.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-overrid
e.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders
.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-databas
e.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-colors.
lua)
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'
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-feature
s.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-extrali
bs.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-typo-kr
n.lua)
luatexbase-attr: luatexbase.attributes["luaotfload@kern"] = 12
luatexbase-attr: luatexbase.attributes["luaotfload@fontkern"] = 13
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-letters
pace.lua)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/luaotfload/luaotfload-auxilia
ry.lua)
luatexbase-mcb: inserting 'luaotfload.fontdata_fallbacks'
at position 1 in 'luaotfload.patch_font'
luatexbase-mcb: inserting 'luaotfload.aux.set_sscale_dimens'
at position 2 in 'luaotfload.patch_font'
luatexbase-mcb: inserting 'luaotfload.aux.patch_cambria_domh'
at position 3 in 'luaotfload.patch_font'
luatexbase-mcb: inserting 'luaotfload.aux.set_capheight'
at position 4 in 'luaotfload.patch_font')
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/fontspec/fontspec.lua)
Lua module: fontspec 2013/05/20 2.3c Advanced font selection for LuaLaTeX.
\l_fontspec_script_int=\count312
\l_fontspec_language_int=\count313
\l_fontspec_strnum_int=\count314
\l_fontspec_tmpa_dim=\dimen287
\l_fontspec_tmpb_dim=\dimen288
\l_fontspec_tmpc_dim=\dimen289
Variant \tl_gset:cV already defined; not changing it on line 69
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/fontspec/fontspec-patches.sty
Package: fontspec-patches 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaT
eX
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2006/09/13 v1.1m fixes to LaTeX
LaTeX Info: Redefining \em on input line 420.
LaTeX Info: Redefining \textsubscript on input line 424.
)
LaTeX Info: Redefining \em on input line 22.
LaTeX Info: Redefining \emph on input line 30.
LaTeX Info: Redefining \- on input line 33.
 
*************************************************
* LaTeX warning: "xparse/redefine-command"
* Redefining document command \oldstylenums with arg. spec. 'm' on line 128.
*************************************************
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \liningnums with arg. spec. 'm' on line 132.
.................................................
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTe
X
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
 
(/home/hbui/opt/texlive/2013/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.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/euenc/eu2lmr.fd
File: eu2lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmroman10-regular.luc))
(/home/hbui/opt/texlive/2013/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
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/tipa/t3enc.def
File: t3enc.def 2001/12/31 T3 encoding
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmromanslant10-regular.luc)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmroman10-italic.luc)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmroman10-bold.luc)
LaTeX Font Info:    Try loading font information for EU2+lmss on input line 357.
 
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/euenc/eu2lmss.fd
File: eu2lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmsans10-regular.luc))
\tipaTiiicode=\count315
\tipasavetokens=\toks16
\tipachecktokens=\toks17
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/home/hbui/opt/texlive/2013/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.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
\Gread@gobject=\count316
))
\Gin@req@height=\dimen290
\Gin@req@width=\dimen291
))
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \fontspec with arg. spec. 'O{}m' on line 44.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setmainfont with arg. spec. 'O{}m' on line 49.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setsansfont with arg. spec. 'O{}m' on line 54.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setmonofont with arg. spec. 'O{}m' on line 59.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setmathrm with arg. spec. 'O{}m' on line 68.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setboldmathrm with arg. spec. 'O{}m' on line 72.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setmathsf with arg. spec. 'O{}m' on line 76.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \setmathtt with arg. spec. 'O{}m' on line 80.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newfontfamily with arg. spec. 'mO{}m' on line 99.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newfontface with arg. spec. 'mO{}m' on line 103.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \defaultfontfeatures with arg. spec. 'om' on line
. 111.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \addfontfeatures with arg. spec. 'm' on line 147.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newfontfeature with arg. spec. 'mm' on line 159.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newAATfeature with arg. spec. 'mmmm' on line 167.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newICUfeature with arg. spec. 'mmm' on line 175.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \aliasfontfeature with arg. spec. 'mm' on line
. 204.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \aliasfontfeatureoption with arg. spec. 'mmm' on
. line 206.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newfontscript with arg. spec. 'mm' on line 211.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \newfontlanguage with arg. spec. 'mm' on line 238.
.................................................
.................................................
. LaTeX info: "xparse/define-command"
. Defining document command \DeclareFontsExtensions with arg. spec. 'm' on
. line 259.
.................................................
Variant \prop_gput:cnV already defined; not changing it on line 586
Variant \prop_gput:cnx already defined; not changing it on line 587
\l_fontspec_tmp_int=\count317
LaTeX Info: Redefining \itshape on input line 2008.
LaTeX Info: Redefining \slshape on input line 2013.
LaTeX Info: Redefining \scshape on input line 2018.
LaTeX Info: Redefining \upshape on input line 2023.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2013/05/16 v3.9f The Babel package
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/babel-german/ngermanb.ldf
Language: ngermanb 2008/07/06 v2.6n new German support from the babel system
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2013/05/16 v3.9f Babel common definitions
\babel@savecnt=\count318
\U@D=\dimen292
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/babel/luababel.def
(/home/hbui/opt/texlive/2013/texmf-dist/tex/luatex/hyph-utf8/luatex-hyphen.lua)
luatex-hyphen: using data file: /home/hbui/opt/texlive/2013/texmf-var/tex/generi
c/config/language.dat.lua))
\l@naustrian = a dialect from \language\l@ngerman 
Package babel Info: Making " an active character on input line 92.
luatex-hyphen: loading patterns and exceptions for: ngerman (\language31)
luatex-hyphen: info: no hyphenation exceptions for this language))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/csquotes/csquotes.sty
Package: csquotes 2011/10/22 v5.1d context-sensitive quotations
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2011/01/03 v2.1 e-TeX tools for LaTeX
\etb@tempcnta=\count319
)
\csq@reset=\count320
\csq@gtype=\count321
\csq@glevel=\count322
\csq@qlevel=\count323
\csq@maxlvl=\count324
\csq@tshold=\count325
\csq@ltx@everypar=\toks18
 
(/home/hbui/opt/texlive/2013/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.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg 
))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count326
\float@exts=\toks19
\float@box=\box271
\@float@everytoks=\toks20
\@floatcapt=\box272
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/biblatex.sty
Package: biblatex 2013/05/01 v2.6 programmable bibliographies (PK/JW/AB)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/biblatex2.sty
Package: biblatex2 2013/05/01 v2.6 programmable bibliographies (biber) (PK/JW/AB
)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
)))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/logreq/logreq.sty
Package: logreq 2010/08/04 v1.0 xml request logger
\lrq@indent=\count327
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/logreq/logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
))
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2006/04/12  ver 3.3  Verb mode for urls, etc.
)
\c@tabx@nest=\count328
\c@listtotal=\count329
\c@listcount=\count330
\c@liststart=\count331
\c@liststop=\count332
\c@citecount=\count333
\c@citetotal=\count334
\c@multicitecount=\count335
\c@multicitetotal=\count336
\c@instcount=\count337
\c@maxnames=\count338
\c@minnames=\count339
\c@maxitems=\count340
\c@minitems=\count341
\c@citecounter=\count342
\c@savedcitecounter=\count343
\c@uniquelist=\count344
\c@uniquename=\count345
\c@refsection=\count346
\c@refsegment=\count347
\c@maxextratitle=\count348
\c@maxextratitleyear=\count349
\c@maxextrayear=\count350
\c@maxextraalpha=\count351
\c@abbrvpenalty=\count352
\c@highnamepenalty=\count353
\c@lownamepenalty=\count354
\c@maxparens=\count355
\c@parenlevel=\count356
\blx@tempcnta=\count357
\blx@tempcntb=\count358
\blx@tempcntc=\count359
\blx@maxsection=\count360
\blx@maxsegment@0=\count361
\blx@notetype=\count362
\blx@parenlevel@text=\count363
\blx@parenlevel@foot=\count364
\blx@sectionciteorder@0=\count365
\labelnumberwidth=\skip262
\labelalphawidth=\skip263
\shorthandwidth=\skip264
\biblabelsep=\skip265
\bibitemsep=\skip266
\bibnamesep=\skip267
\bibinitsep=\skip268
\bibparsep=\skip269
\bibhang=\skip270
\blx@bcfin=\read1
\blx@bcfout=\write3
\c@mincomprange=\count366
\c@maxcomprange=\count367
\c@mincompwidth=\count368
Package biblatex Info: Trying to load biblatex default data model...
Package biblatex Info: ... file 'blx-dm.def' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/blx-dm.def)
Package biblatex Info: Trying to load biblatex style data model...
Package biblatex Info: ... file 'authoryear-comp.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@afterword=\count369
\c@savedafterword=\count370
\c@annotator=\count371
\c@savedannotator=\count372
\c@author=\count373
\c@savedauthor=\count374
\c@bookauthor=\count375
\c@savedbookauthor=\count376
\c@commentator=\count377
\c@savedcommentator=\count378
\c@editor=\count379
\c@savededitor=\count380
\c@editora=\count381
\c@savededitora=\count382
\c@editorb=\count383
\c@savededitorb=\count384
\c@editorc=\count385
\c@savededitorc=\count386
\c@foreword=\count387
\c@savedforeword=\count388
\c@holder=\count389
\c@savedholder=\count390
\c@introduction=\count391
\c@savedintroduction=\count392
\c@namea=\count393
\c@savednamea=\count394
\c@nameb=\count395
\c@savednameb=\count396
\c@namec=\count397
\c@savednamec=\count398
\c@shortauthor=\count399
\c@savedshortauthor=\count400
\c@shorteditor=\count401
\c@savedshorteditor=\count402
\c@translator=\count403
\c@savedtranslator=\count404
\c@labelname=\count405
\c@savedlabelname=\count406
\c@institution=\count407
\c@savedinstitution=\count408
\c@lista=\count409
\c@savedlista=\count410
\c@listb=\count411
\c@savedlistb=\count412
\c@listc=\count413
\c@savedlistc=\count414
\c@listd=\count415
\c@savedlistd=\count416
\c@liste=\count417
\c@savedliste=\count418
\c@listf=\count419
\c@savedlistf=\count420
\c@location=\count421
\c@savedlocation=\count422
\c@organization=\count423
\c@savedorganization=\count424
\c@origlocation=\count425
\c@savedoriglocation=\count426
\c@origpublisher=\count427
\c@savedorigpublisher=\count428
\c@publisher=\count429
\c@savedpublisher=\count430
\c@language=\count431
\c@savedlanguage=\count432
\c@pageref=\count433
\c@savedpageref=\count434
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/blx-compat.def
File: blx-compat.def 2013/05/01 v2.6 biblatex compatibility (PK/JW/AB)
)
Package biblatex Info: Trying to load generic definitions...
Package biblatex Info: ... file 'biblatex.def' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/biblatex.def
File: biblatex.def 
\c@biburlnumpenalty=\count435
\c@biburlucpenalty=\count436
\c@biburllcpenalty=\count437
\c@smartand=\count438
)
Package biblatex Info: Trying to load bibliography style 'authoryear-comp'...
Package biblatex Info: ... file 'authoryear-comp.bbx' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/bbx/authoryear-comp.
bbx
File: authoryear-comp.bbx 2013/05/01 v2.6 biblatex bibliography style (PK/JW/AB)
 
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/bbx/authoryear.bbx
File: authoryear.bbx 2013/05/01 v2.6 biblatex bibliography style (PK/JW/AB)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2013/05/01 v2.6 biblatex bibliography style (PK/JW/AB)
\c@bbx:relatedcount=\count439
\c@bbx:relatedtotal=\count440
)))
Package biblatex Info: Trying to load citation style 'authoryear-comp'...
Package biblatex Info: ... file 'authoryear-comp.cbx' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/cbx/authoryear-comp.
cbx
File: authoryear-comp.cbx 2013/05/01 v2.6 biblatex citation style (PK/JW/AB)
Package biblatex Info: Redefining '\cite'.
Package biblatex Info: Redefining '\parencite'.
Package biblatex Info: Redefining '\footcite'.
Package biblatex Info: Redefining '\footcitetext'.
Package biblatex Info: Redefining '\smartcite'.
Package biblatex Info: Redefining '\textcite'.
Package biblatex Info: Redefining '\cites'.
Package biblatex Info: Redefining '\parencites'.
Package biblatex Info: Redefining '\footcites'.
Package biblatex Info: Redefining '\footcitetexts'.
Package biblatex Info: Redefining '\smartcites'.
Package biblatex Info: Redefining '\textcites'.
)
Package biblatex Info: Trying to load configuration file...
Package biblatex Info: ... file 'biblatex.cfg' found.
 (/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/biblatex.cfg
File: biblatex.cfg 
))) (/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.st
y
Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/05/28 v1.13 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 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2007/09/27 v1.1 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 2011/04/07 v1.3 Define keys (HO)
Package hobsub Info: Skipping package `luatex-loader' (already loaded).
Package hobsub Info: Skipping package `pdftexcmds' (already loaded).
Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO)
 
Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
) (/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen293
\Hy@linkcounter=\count441
\Hy@pagecounter=\count442
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count443
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Hyper figures OFF on input line 4443.
Package hyperref Info: Link nesting OFF on input line 4448.
Package hyperref Info: Hyper index ON on input line 4451.
Package hyperref Info: Plain pages OFF on input line 4458.
Package hyperref Info: Backreferencing OFF on input line 4463.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4688.
\c@Hy@tempcnt=\count444
LaTeX Info: Redefining \url on input line 5041.
\XeTeXLinkMargin=\dimen294
\Fld@menulength=\count445
\Field@Width=\dimen295
\Fld@charsize=\dimen296
Package hyperref Info: Hyper figures OFF on input line 6295.
Package hyperref Info: Link nesting OFF on input line 6300.
Package hyperref Info: Hyper index ON on input line 6303.
Package hyperref Info: backreferencing OFF on input line 6310.
Package hyperref Info: Link coloring OFF on input line 6315.
Package hyperref Info: Link coloring with OCG OFF on input line 6320.
Package hyperref Info: PDF/A mode OFF on input line 6325.
LaTeX Info: Redefining \ref on input line 6365.
LaTeX Info: Redefining \pageref on input line 6369.
\Hy@abspage=\count446
\c@Item=\count447
\c@Hfootnote=\count448
)
 
Package hyperref Message: Driver (autodetected): hpdftex.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX
\Fld@listcount=\count449
\c@bookmark@seq@number=\count450
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 28
2.
)
\Hy@SectionHShift=\skip271
)
Package csquotes Info: Checking for multilingual support...
Package csquotes Info: ... found 'babel' package.
Package csquotes Info: Adjusting default style.
Package csquotes Info: Redefining alias 'default' -> 'ngerman'.
Package biblatex Info: Trying to load language 'ngerman'...
Package biblatex Info: ... file 'ngerman.lbx' found.
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/lbx/ngerman.lbx
File: ngerman.lbx 2013/05/01 v2.6 biblatex localization (PK/JW/AB)
Package biblatex Info: Trying to load language 'german'...
Package biblatex Info: ... file 'german.lbx' found.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/biblatex/lbx/german.lbx
File: german.lbx 2013/05/01 v2.6 biblatex localization (PK/JW/AB)
))
(./biblatex-author-year.aux)
LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for EU2/lmr/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for T3/cmr/m/n on input line 16.
LaTeX Font Info:    Try loading font information for T3+cmr on input line 16.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/tipa/t3cmr.fd
File: t3cmr.fd 2001/12/31 TIPA font definitions
)
LaTeX Font Info:    ... okay on input line 16.
LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 16.
LaTeX Font Info:    ... okay on input line 16.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count451
\scratchdimen=\dimen297
\scratchbox=\box273
\nofMPsegments=\count452
\nofMParguments=\count453
\everyMPshowfont=\toks21
\MPscratchCnt=\count454
\MPscratchDim=\dimen298
\MPnumerator=\count455
\makeMPintoPDFobject=\count456
\everyMPtoPDFconversion=\toks22
) (/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
)
Package grfext Info: Graphics extension search list:
(grfext)             [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPEG
,.JBIG2,.JB2,.eps]
(grfext)             \AppendGraphicsExtensions on input line 452.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
 
))
.................................................
. fontspec info: "setup-math"
. Adjusting the maths setup (use [no-math] to avoid this).
.................................................
\symlegacymaths=\mathgroup4
LaTeX Font Info:    Overwriting symbol font `legacymaths' in version `bold'
(Font)                  OT1/cmr/m/n --> OT1/cmr/bx/n on input line 16.
LaTeX Font Info:    Redeclaring math accent \acute on input line 16.
LaTeX Font Info:    Redeclaring math accent \grave on input line 16.
LaTeX Font Info:    Redeclaring math accent \ddot on input line 16.
LaTeX Font Info:    Redeclaring math accent \tilde on input line 16.
LaTeX Font Info:    Redeclaring math accent \bar on input line 16.
LaTeX Font Info:    Redeclaring math accent \breve on input line 16.
LaTeX Font Info:    Redeclaring math accent \check on input line 16.
LaTeX Font Info:    Redeclaring math accent \hat on input line 16.
LaTeX Font Info:    Redeclaring math accent \dot on input line 16.
LaTeX Font Info:    Redeclaring math accent \mathring on input line 16.
LaTeX Font Info:    Redeclaring math symbol \colon on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Gamma on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Delta on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Theta on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Lambda on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Xi on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Pi on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Sigma on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Upsilon on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Phi on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Psi on input line 16.
LaTeX Font Info:    Redeclaring math symbol \Omega on input line 16.
LaTeX Font Info:    Redeclaring math symbol \mathdollar on input line 16.
LaTeX Font Info:    Redeclaring symbol font `operators' on input line 16.
LaTeX Font Info:    Encoding `OT1' has changed to `EU2' for symbol font
(Font)              `operators' in the math version `normal' on input line 16.
LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
(Font)                  OT1/cmr/m/n --> EU2/lmr/m/n on input line 16.
LaTeX Font Info:    Encoding `OT1' has changed to `EU2' for symbol font
(Font)              `operators' in the math version `bold' on input line 16.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  OT1/cmr/bx/n --> EU2/lmr/m/n on input line 16.
LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
(Font)                  EU2/lmr/m/n --> EU2/lmr/m/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathrm' in version `normal'
(Font)                  EU2/lmr/m/n --> EU2/lmr/m/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
(Font)                  OT1/cmr/m/it --> EU2/lmr/m/it on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
(Font)                  OT1/cmr/bx/n --> EU2/lmr/bx/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
(Font)                  OT1/cmss/m/n --> EU2/lmss/m/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
(Font)                  OT1/cmtt/m/n --> EU2/lmtt/m/n on input line 16.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  EU2/lmr/m/n --> EU2/lmr/bx/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathrm' in version `bold'
(Font)                  EU2/lmr/m/n --> EU2/lmr/bx/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
(Font)                  OT1/cmr/bx/it --> EU2/lmr/bx/it on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
(Font)                  OT1/cmss/bx/n --> EU2/lmss/bx/n on input line 16.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
(Font)                  OT1/cmtt/m/n --> EU2/lmtt/bx/n on input line 16.
Package biblatex Info: LuaTeX detected.
(biblatex)             Assuming input encoding 'utf8'.
Package biblatex Info: Automatic encoding selection.
(biblatex)             Assuming data encoding 'utf8'.
Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'biblatex-author-year.bbl' found.
 (./biblatex-author-year.bbl)
Package biblatex Info: Reference section=0 on input line 16.
Package biblatex Info: Reference segment=0 on input line 16.
\AtBeginShipoutBox=\box274
Package hyperref Info: Link coloring OFF on input line 16.
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section
 
(/home/hbui/opt/texlive/2013/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count457
)
LaTeX Info: Redefining \ref on input line 16.
LaTeX Info: Redefining \pageref on input line 16.
LaTeX Info: Redefining \nameref on input line 16.
 (./biblatex-author-year.out) (./biblatex-author-year.out)
\@outlinefile=\write4
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmsans10-bold.luc)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmroman7-regular.luc)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmroman5-regular.luc)
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
LaTeX Font Info:    External font `cmex10' loaded for size
(Font)              <7> on input line 27.
luaotfload | load: auto-selecting default features for script: dflt
LaTeX Font Info:    External font `cmex10' loaded for size
(Font)              <5> on input line 27.
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: dflt
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmroman7-italic.luc)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmromancaps10-regular.luc)
LaTeX Font Info:    Try loading font information for EU2+lmtt on input line 27.
 (/home/hbui/opt/texlive/2013/texmf-dist/tex/latex/euenc/eu2lmtt.fd
File: eu2lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
)
luaotfload | load: auto-selecting default features for script: latn
luaotfload | load: no defaults for script “latn”, falling back to “dflt
”(load luc: /home/hbui/opt/texlive/2013/texmf-var/luatex-cache/generic/fonts/o
tf/lmmono10-regular.luc)
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 28.
Package babel Info: Redefining ngerman shorthand "|
(babel)             in language  on input line 28.
Package babel Info: Redefining ngerman shorthand "~
(babel)             in language  on input line 28.
Package babel Info: Redefining ngerman shorthand "|
(babel)             in language  on input line 28.
Package babel Info: Redefining ngerman shorthand "~
(babel)             in language  on input line 28.
 [1
 
{/home/hbui/.texlive2013/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 28.
 (./biblatex-author-year.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 28.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 28.
Package rerunfilecheck Info: File `biblatex-author-year.out' has not changed.
(rerunfilecheck)             Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
Package logreq Info: Writing requests to 'biblatex-author-year.run.xml'.
 )
 
Here is how much of LuaTeX's memory you used:
 26321 strings out of 494718
 100000,953878 words of node,token memory allocated
 338 words of node memory still in use:
   3 hlist, 1 vlist, 1 rule, 2 glue, 1 kern, 4 attribute, 48 glue_spec, 4 attrib
ute_list, 3 action, 1 write nodes
   avail lists: 2:4817,3:281,4:773,5:142,6:1964,7:17,8:27,9:78,10:171
 29270 multiletter control sequences out of 65536+600000
 36 fonts using 2629319 bytes
 60i,4n,62p,829b,1378s stack positions out of 5000i,500n,10000p,200000b,100000s
</home/hbui/opt/texlive/2013/texmf-dist/fonts/opentype/public/lm/lmmono10-regula
r.otf></home/hbui/opt/texlive/2013/texmf-dist/fonts/opentype/public/lm/lmromanca
ps10-regular.otf></home/hbui/opt/texlive/2013/texmf-dist/fonts/opentype/public/l
m/lmroman7-italic.otf></home/hbui/opt/texlive/2013/texmf-dist/fonts/opentype/pub
lic/lm/lmroman10-italic.otf></home/hbui/opt/texlive/2013/texmf-dist/fonts/openty
pe/public/lm/lmsans10-bold.otf></home/hbui/opt/texlive/2013/texmf-dist/fonts/ope
ntype/public/lm/lmroman10-regular.otf></home/hbui/opt/texlive/2013/texmf-dist/fo
nts/type1/public/amsfonts/cm/cmmi7.pfb></home/hbui/opt/texlive/2013/texmf-dist/f
onts/type1/public/amsfonts/cm/cmr10.pfb>
Output written on biblatex-author-year.pdf (1 page, 44601 bytes).
 
PDF statistics: 88 PDF objects out of 1000 (max. 8388607)
 64 compressed objects within 1 object stream
 10 named destinations out of 1000 (max. 131072)
 1 words of extra memory for PDF output out of 10000 (max. 10000000)