-
Notifications
You must be signed in to change notification settings - Fork 4
/
using-r-main-crc.log
15384 lines (13642 loc) · 582 KB
/
using-r-main-crc.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 XeTeX, Version 3.141592653-2.6-0.999995 (MiKTeX 24.1) (preloaded format=xelatex 2024.2.14) 23 MAY 2024 01:44
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**./using-r-main-crc.tex
(using-r-main-crc.tex
LaTeX2e <2023-11-01> patch level 1
L3 programming layer <2024-01-22>
(krantz.cls
Document Class: krantz 2005/09/16 v1.4f Standard LaTeX document class
(C:\Program Files\MiKTeX\tex/latex/base\bk10.clo
File: bk10.clo 2023/05/17 v1.4n Standard LaTeX file (size option)
)
\trimheight=\dimen140
\trimwidth=\dimen141
\normaltextheight=\dimen142
\tempa=\dimen143
\tempdimen=\dimen144
\htrim=\dimen145
\vtrimtop=\dimen146
\vtrimbot=\dimen147
\ul@box=\box51
\ur@box=\box52
\ll@box=\box53
\lr@box=\box54
\@cipboxa=\box55
\@cipboxb=\box56
\@ciprulewidth=\dimen148
\c@part=\count183
\c@chapter=\count184
\c@section=\count185
\c@subsection=\count186
\c@subsubsection=\count187
\c@paragraph=\count188
\c@subparagraph=\count189
\secwd=\dimen149
\subsecwd=\dimen150
\subsubsecwd=\dimen151
\c@figure=\count190
\c@table=\count191
\abovecaptionskip=\skip48
\belowcaptionskip=\skip49
\c@numauthors=\count192
\section@toc@skip=\skip50
\SectionTOCWidth=\skip51
\subsection@toc@skip=\skip52
\SubSectionTOCWidth=\skip53
\subsubsection@toc@skip=\skip54
\SubSubSectionTOCWidth=\skip55
\paragraph@toc@skip=\skip56
\ParagraphTOCWidth=\skip57
\subparagraph@toc@skip=\skip58
\@AUonebox=\box57
\@AUtwobox=\box58
\@AUthreebox=\box59
\@AUfourbox=\box60
\@AUaffonebox=\box61
\@AUafftwobox=\box62
\@AUaffthreebox=\box63
\@AUafffourbox=\box64
\@finalAUboxfromone=\box65
\@finalAUboxfromtwo=\box66
\@finalAUboxfromthree=\box67
\@finalAUboxfromfour=\box68
\c@chaptocdepth=\count193
\bibindent=\dimen152
\tempbox=\box69
\nomenwidth=\dimen153
\@tablebox=\box70
\@tabletitlebox=\box71
\@tablewidth=\dimen154
\@tabletitlewidth=\dimen155
\max@tablewidth=\dimen156
\tempbox=\box72
\tempdimen=\dimen157
(C:\Program Files\MiKTeX\tex/latex/graphics\color.sty
Package: color 2022/01/06 v1.3d Standard LaTeX Color (DPC)
(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: xetex.def on input line 149.
(C:\Program Files\MiKTeX\tex/latex/graphics-def\xetex.def
File: xetex.def 2022/09/22 v5.0n Graphics/color driver for xetex
)
(C:\Program Files\MiKTeX\tex/latex/graphics\mathcolor.ltx))
(C:\Program Files\MiKTeX\tex/latex/framed\framed.sty
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip59
\fb@frw=\dimen158
\fb@frh=\dimen159
\FrameRule=\dimen160
\FrameSep=\dimen161
)
\tempbox=\box73
\notewidth=\dimen162
\wherebox=\box74
\wherewidth=\dimen163
\listtextleftmargin=\skip60
\listtextleftmarginii=\skip61
\listtextleftmarginiii=\skip62
\listtextrightmargin=\skip63
\listlabelleftskip=\skip64
\listlabelleftskipii=\skip65
\listlabelleftskipiii=\skip66
\abovelistskipi=\skip67
\belowlistskipi=\skip68
\abovelistskipii=\skip69
\belowlistskipii=\skip70
\abovelistskipiii=\skip71
\belowlistskipiii=\skip72
\labelsepi=\skip73
\labelsepii=\skip74
\labelsepiii=\skip75
\itemsepi=\skip76
\itemsepii=\skip77
\itemsepiii=\skip78
\enumdimwd=\dimen164
\enumdim=\dimen165
\concolwidth=\dimen166
\stempbox=\box75
) (knitr.sty
(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 107.
)
\Gin@req@height=\dimen167
\Gin@req@width=\dimen168
)
(C:\Program Files\MiKTeX\tex/latex/xcolor\xcolor.sty
Package: xcolor 2023/11/15 v3.01 LaTeX color extensions (UK)
(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: xetex.def on input line 274.
LaTeX Info: Redefining \color on input line 758.
(C:\Program Files\MiKTeX\tex/latex/graphics\mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1350.
Package xcolor Info: Model `RGB' extended on input line 1366.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1368.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1371.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1372.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1373.
))
(C:\Program Files\MiKTeX\tex/latex/base\alltt.sty
Package: alltt 2021/01/29 v2.0g defines alltt environment
)
(C:\Program Files\MiKTeX\tex/latex/draftwatermark\draftwatermark.sty
Package: draftwatermark 2020/12/08 3.0 Put a gray textual watermark on document
pages
(C:\Program Files\MiKTeX\tex/latex/kvoptions\kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
(C:\Program Files\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
)
(C:\Program Files\MiKTeX\tex/latex/kvsetkeys\kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)))
(C:\Program Files\MiKTeX\tex/generic/hologo\hologo.sty
Package: hologo 2021-11-16 v1.15 A logo collection with bookmark support (HO)
(C:\Program Files\MiKTeX\tex/generic/infwarerr\infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
(C:\Program Files\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode not found.
))
(C:\Program Files\MiKTeX\tex/latex/csquotes\csquotes.sty
Package: csquotes 2022-09-14 v5.2n context-sensitive quotations (JAW)
(C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count194
)
\csq@reset=\count195
\csq@gtype=\count196
\csq@glevel=\count197
\csq@qlevel=\count198
\csq@maxlvl=\count199
\csq@tshold=\count266
\csq@ltx@everypar=\toks18
(C:\Program Files\MiKTeX\tex/latex/csquotes\csquotes.def
File: csquotes.def 2022-09-14 v5.2n csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(C:\Program Files\MiKTeX\tex/latex/csquotes\csquotes.cfg
File: csquotes.cfg
))
(C:\Program Files\MiKTeX\tex/latex/animate\animate.sty
Package: animate 2023/06/18 PDF & SVG animations from files and inline graphics
(C:\Program Files\MiKTeX\tex/latex/base\ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
)
(C:\Program Files\MiKTeX\tex/latex/oberdiek\ifdraft.sty
Package: ifdraft 2016/05/16 v1.4 Detect class options draft and final (HO)
)
(C:\Program Files\MiKTeX\tex/latex/tools\calc.sty
Package: calc 2023/07/08 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count267
\calc@Bcount=\count268
\calc@Adimen=\dimen169
\calc@Bdimen=\dimen170
\calc@Askip=\skip79
\calc@Bskip=\skip80
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count269
\calc@Cskip=\skip81
)
(C:\Program Files\MiKTeX\tex/latex/media9\pdfbase.sty
Package: pdfbase 2022/08/04 v0.55 driver independent access to low-level PDF fe
atures
(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-xetex.def
File: l3backend-xetex.def 2024-01-04 L3 backend support: XeTeX
\g__graphics_track_int=\count270
\l__pdf_internal_box=\box76
\g__pdf_backend_object_int=\count271
\g__pdf_backend_annotation_int=\count272
\g__pdf_backend_link_int=\count273
)
\g_pbs_page_int=\count274
\g_pbs_obj_int=\count275
\g_pbs_oc_int=\count276
)
(C:\Program Files\MiKTeX\tex/latex/zref\zref-abspage.sty
Package: zref-abspage 2023-09-14 v2.35 Module abspage for zref (HO)
(C:\Program Files\MiKTeX\tex/latex/zref\zref-base.sty
Package: zref-base 2023-09-14 v2.35 Module base for zref (HO)
(C:\Program Files\MiKTeX\tex/generic/etexcmds\etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
(C:\Program Files\MiKTeX\tex/latex/auxhook\auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
Package zref Info: New property list: main on input line 767.
Package zref Info: New property: default on input line 768.
Package zref Info: New property: page on input line 769.
)
\c@abspage=\count277
Package zref Info: New property: abspage on input line 67.
)
(C:\Program Files\MiKTeX\tex/latex/ocgx2\ocgbase.sty
Package: ocgbase 2022/08/04 v0.22 support package for ocgx2.sty
\g_ocgbase_nd_int=\count278
)
\@anim@box=\box77
\@anim@measbox=\box78
\@anim@tmpdima=\dimen171
\@anim@tmpdimb=\dimen172
\@anim@num=\count279
\@anim@curframe=\count280
\@anim@curframe@zb=\count281
\@anim@resizeflags=\count282
\@anim@skipfram=\count283
\@anim@mulframecnt=\count284
\@anim@@tmlnfile=\read2
\@anim@tmpcnt=\count285
\c@@anim@ltxcnt=\count286
\@anim@curlayer=\count287
\@anim@lineno=\count288
\@anim@curfield=\count289
\@anim@@resizeflags=\count290
)
(C:\Program Files\MiKTeX\tex/latex/biblatex\biblatex.sty
Package: biblatex 2023/03/05 v3.19 programmable bibliographies (PK/MW)
(C:\Program Files\MiKTeX\tex/latex/logreq\logreq.sty
Package: logreq 2010/08/04 v1.0 xml request logger
\lrq@indent=\count291
(C:\Program Files\MiKTeX\tex/latex/logreq\logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
))
(C:\Program Files\MiKTeX\tex/latex/url\url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
\c@tabx@nest=\count292
\c@listtotal=\count293
\c@listcount=\count294
\c@liststart=\count295
\c@liststop=\count296
\c@citecount=\count297
\c@citetotal=\count298
\c@multicitecount=\count299
\c@multicitetotal=\count300
\c@instcount=\count301
\c@maxnames=\count302
\c@minnames=\count303
\c@maxitems=\count304
\c@minitems=\count305
\c@citecounter=\count306
\c@maxcitecounter=\count307
\c@savedcitecounter=\count308
\c@uniquelist=\count309
\c@uniquename=\count310
\c@refsection=\count311
\c@refsegment=\count312
\c@maxextratitle=\count313
\c@maxextratitleyear=\count314
\c@maxextraname=\count315
\c@maxextradate=\count316
\c@maxextraalpha=\count317
\c@abbrvpenalty=\count318
\c@highnamepenalty=\count319
\c@lownamepenalty=\count320
\c@maxparens=\count321
\c@parenlevel=\count322
\blx@tempcnta=\count323
\blx@tempcntb=\count324
\blx@tempcntc=\count325
\c@blx@maxsection=\count326
\blx@maxsegment@0=\count327
\blx@notetype=\count328
\blx@parenlevel@text=\count329
\blx@parenlevel@foot=\count330
\blx@sectionciteorder@0=\count331
\blx@sectionciteorderinternal@0=\count332
\blx@entrysetcounter=\count333
\blx@biblioinstance=\count334
\labelnumberwidth=\skip82
\labelalphawidth=\skip83
\biblabelsep=\skip84
\bibitemsep=\skip85
\bibnamesep=\skip86
\bibinitsep=\skip87
\bibparsep=\skip88
\bibhang=\skip89
\blx@bcfin=\read3
\blx@bcfout=\write3
\blx@langwohyphens=\language79
\c@mincomprange=\count335
\c@maxcomprange=\count336
\c@mincompwidth=\count337
Package biblatex Info: Trying to load biblatex default data model...
Package biblatex Info: ... file 'blx-dm.def' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex\blx-dm.def
File: blx-dm.def 2023/03/05 v3.19 biblatex localization (PK/MW)
)
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=\count338
\c@savedafterword=\count339
\c@annotator=\count340
\c@savedannotator=\count341
\c@author=\count342
\c@savedauthor=\count343
\c@bookauthor=\count344
\c@savedbookauthor=\count345
\c@commentator=\count346
\c@savedcommentator=\count347
\c@editor=\count348
\c@savededitor=\count349
\c@editora=\count350
\c@savededitora=\count351
\c@editorb=\count352
\c@savededitorb=\count353
\c@editorc=\count354
\c@savededitorc=\count355
\c@foreword=\count356
\c@savedforeword=\count357
\c@holder=\count358
\c@savedholder=\count359
\c@introduction=\count360
\c@savedintroduction=\count361
\c@namea=\count362
\c@savednamea=\count363
\c@nameb=\count364
\c@savednameb=\count365
\c@namec=\count366
\c@savednamec=\count367
\c@translator=\count368
\c@savedtranslator=\count369
\c@shortauthor=\count370
\c@savedshortauthor=\count371
\c@shorteditor=\count372
\c@savedshorteditor=\count373
\c@labelname=\count374
\c@savedlabelname=\count375
\c@institution=\count376
\c@savedinstitution=\count377
\c@lista=\count378
\c@savedlista=\count379
\c@listb=\count380
\c@savedlistb=\count381
\c@listc=\count382
\c@savedlistc=\count383
\c@listd=\count384
\c@savedlistd=\count385
\c@liste=\count386
\c@savedliste=\count387
\c@listf=\count388
\c@savedlistf=\count389
\c@location=\count390
\c@savedlocation=\count391
\c@organization=\count392
\c@savedorganization=\count393
\c@origlocation=\count394
\c@savedoriglocation=\count395
\c@origpublisher=\count396
\c@savedorigpublisher=\count397
\c@publisher=\count398
\c@savedpublisher=\count399
\c@language=\count400
\c@savedlanguage=\count401
\c@origlanguage=\count402
\c@savedoriglanguage=\count403
\c@pageref=\count404
\c@savedpageref=\count405
\shorthandwidth=\skip90
\shortjournalwidth=\skip91
\shortserieswidth=\skip92
\shorttitlewidth=\skip93
\shortauthorwidth=\skip94
\shorteditorwidth=\skip95
\locallabelnumberwidth=\skip96
\locallabelalphawidth=\skip97
\localshorthandwidth=\skip98
\localshortjournalwidth=\skip99
\localshortserieswidth=\skip100
\localshorttitlewidth=\skip101
\localshortauthorwidth=\skip102
\localshorteditorwidth=\skip103
Package biblatex Info: Trying to load enhanced support for Unicode engines...
Package biblatex Info: ... file 'blx-unicode.def' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex\blx-unicode.def)
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex\blx-compat.def
File: blx-compat.def 2023/03/05 v3.19 biblatex compatibility (PK/MW)
)
Package biblatex Info: Trying to load generic definitions...
Package biblatex Info: ... file 'biblatex.def' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex\biblatex.def
File: biblatex.def 2023/03/05 v3.19 biblatex compatibility (PK/MW)
\c@textcitecount=\count406
\c@textcitetotal=\count407
\c@textcitemaxnames=\count408
\c@biburlbigbreakpenalty=\count409
\c@biburlbreakpenalty=\count410
\c@biburlnumpenalty=\count411
\c@biburlucpenalty=\count412
\c@biburllcpenalty=\count413
\biburlbigskip=\muskip17
\biburlnumskip=\muskip18
\biburlucskip=\muskip19
\biburllcskip=\muskip20
\c@smartand=\count414
)
Package biblatex Info: Trying to load bibliography style 'authoryear-comp'...
Package biblatex Info: ... file 'authoryear-comp.bbx' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex/bbx\authoryear-comp.bbx
File: authoryear-comp.bbx 2023/03/05 v3.19 biblatex bibliography style (PK/MW)
Package biblatex Info: Trying to load bibliography style 'authoryear'...
Package biblatex Info: ... file 'authoryear.bbx' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex/bbx\authoryear.bbx
File: authoryear.bbx 2023/03/05 v3.19 biblatex bibliography style (PK/MW)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex/bbx\standard.bbx
File: standard.bbx 2023/03/05 v3.19 biblatex bibliography style (PK/MW)
\c@bbx:relatedcount=\count415
\c@bbx:relatedtotal=\count416
)))
Package biblatex Info: Trying to load citation style 'authoryear-comp'...
Package biblatex Info: ... file 'authoryear-comp.cbx' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex/cbx\authoryear-comp.cbx
File: authoryear-comp.cbx 2023/03/05 v3.19 biblatex citation style (PK/MW)
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 '\textcites'.
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: Trying to load configuration file...
Package biblatex Info: ... file 'biblatex.cfg' found.
(C:\Program Files\MiKTeX\tex/latex/biblatex\biblatex.cfg
File: biblatex.cfg
)
Package biblatex Warning: 'sortgiveninits' option is deprecated.
(biblatex) Please use 'inits' option to '\namepart'
(biblatex) in '\DeclareSortingNamekeyTemplate' instead.
Package biblatex Info: XeTeX detected.
(biblatex) Assuming input encoding 'utf8'.
Package biblatex Info: Document encoding is UTF8 ....
(C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty
Package: expl3 2024-01-22 L3 programming layer (loader)
)
Package biblatex Info: ... and expl3
(biblatex) 2024-01-22 L3 programming layer (loader)
(biblatex) is new enough (at least 2020/04/06),
(biblatex) setting 'casechanger=expl3'.
(C:\Program Files\MiKTeX\tex/latex/biblatex\blx-case-expl3.sty
(C:\Program Files\MiKTeX\tex/latex/l3packages/xparse\xparse.sty
Package: xparse 2023-10-10 L3 Experimental document command parser
)
Package: blx-case-expl3 2023/03/05 v3.19 expl3 case changing code for biblatex
))
(C:\Program Files\MiKTeX\tex/generic/babel\babel.sty
Package: babel 2024/01/07 v24.1 The Babel package
\babel@savecnt=\count417
\U@D=\dimen173
\l@unhyphenated=\language80
(C:\Program Files\MiKTeX\tex/generic/babel\xebabel.def)
\bbl@readstream=\read4
\bbl@dirlevel=\count418
*************************************
* Local config file bblopts.cfg used
*
(C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
babel
)
(C:\Program Files\MiKTeX\tex/latex/babel-english\british.ldf
Language: british 2017/06/06 v3.3r English support from the babel system
(C:\Program Files\MiKTeX\tex/latex/babel-english\english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
Package babel Info: Hyphen rules for 'canadian' set to \l@english
(babel) (\language0). Reported on input line 102.
Package babel Info: Hyphen rules for 'australian' set to \l@ukenglish
(babel) (\language73). Reported on input line 105.
Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
(babel) (\language73). Reported on input line 108.
)))
(C:\Program Files\MiKTeX\tex/generic/babel/locale/en\babel-british.tex
Package babel Info: Importing font and identification data for british
(babel) from babel-en-GB.ini. Reported on input line 11.
)
(abbrev.sty
Package: abbrev 2014/05/17
(C:\Program Files\MiKTeX\tex/latex/tools\xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
(C:\Program Files\MiKTeX\tex/latex/base\textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(C:\Program Files\MiKTeX\tex/latex/was\upgreek.sty
Package: upgreek 2003/02/12 v2.0 (WaS)
Package upgreek Info: Using Euler Roman for upright Greek on input line 31.
\symugrf@m=\mathgroup4
LaTeX Font Info: Overwriting symbol font `ugrf@m' in version `bold'
(Font) U/eur/m/n --> U/eur/b/n on input line 38.
)) (usingr.sty
Package: usingr 2022/10/20
(C:\Program Files\MiKTeX\tex/latex/booktabs\booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen174
\lightrulewidth=\dimen175
\cmidrulewidth=\dimen176
\belowrulesep=\dimen177
\belowbottomsep=\dimen178
\aboverulesep=\dimen179
\abovetopsep=\dimen180
\cmidrulesep=\dimen181
\cmidrulekern=\dimen182
\defaultaddspace=\dimen183
\@cmidla=\count419
\@cmidlb=\count420
\@aboverulesep=\dimen184
\@belowrulesep=\dimen185
\@thisruleclass=\count421
\@lastruleclass=\count422
\@thisrulewidth=\dimen186
)
(C:\Program Files\MiKTeX\tex/latex/microtype\microtype.sty
Package: microtype 2023/03/13 v3.1a Micro-typographical refinements (RS)
\MT@toks=\toks19
\MT@tempbox=\box79
\MT@count=\count423
LaTeX Info: Redefining \noprotrusionifhmode on input line 1059.
LaTeX Info: Redefining \leftprotrusion on input line 1060.
\MT@prot@toks=\toks20
LaTeX Info: Redefining \rightprotrusion on input line 1078.
LaTeX Info: Redefining \textls on input line 1368.
\MT@outer@kern=\dimen187
LaTeX Info: Redefining \textmicrotypecontext on input line 1988.
\MT@listname@count=\count424
(C:\Program Files\MiKTeX\tex/latex/microtype\microtype-xetex.def
File: microtype-xetex.def 2023/03/13 v3.1a Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 238.
)
Package microtype Info: Loading configuration file microtype.cfg.
(C:\Program Files\MiKTeX\tex/latex/microtype\microtype.cfg
File: microtype.cfg 2023/03/13 v3.1a microtype main configuration file (RS)
))
(C:\Program Files\MiKTeX\tex/latex/unicode-math\unicode-math.sty
Package: unicode-math 2023/08/13 v0.8r Unicode maths in XeLaTeX and LuaLaTeX
(C:\Program Files\MiKTeX\tex/latex/unicode-math\unicode-math-xetex.sty
Package: unicode-math-xetex 2023/08/13 v0.8r Unicode maths in XeLaTeX and LuaLa
TeX
(C:\Program Files\MiKTeX\tex/latex/l3packages/l3keys2e\l3keys2e.sty
Package: l3keys2e 2023-10-10 LaTeX2e option processing using LaTeX3 keys
)
(C:\Program Files\MiKTeX\tex/latex/fontspec\fontspec.sty
Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
(C:\Program Files\MiKTeX\tex/latex/fontspec\fontspec-xetex.sty
Package: fontspec-xetex 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count425
\l__fontspec_language_int=\count426
\l__fontspec_strnum_int=\count427
\l__fontspec_tmp_int=\count428
\l__fontspec_tmpa_int=\count429
\l__fontspec_tmpb_int=\count430
\l__fontspec_tmpc_int=\count431
\l__fontspec_em_int=\count432
\l__fontspec_emdef_int=\count433
\l__fontspec_strong_int=\count434
\l__fontspec_strongdef_int=\count435
\l__fontspec_tmpa_dim=\dimen188
\l__fontspec_tmpb_dim=\dimen189
\l__fontspec_tmpc_dim=\dimen190
(C:\Program Files\MiKTeX\tex/latex/base\fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(C:\Program Files\MiKTeX\tex/latex/fontspec\fontspec.cfg)))
(C:\Program Files\MiKTeX\tex/latex/base\fix-cm.sty
Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX
(C:\Program Files\MiKTeX\tex/latex/base\ts1enc.def
File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding TS1 on input line 47.
))
(C:\Program Files\MiKTeX\tex/latex/amsmath\amsmath.sty
Package: amsmath 2023/05/13 v2.17o AMS math features
\@mathmargin=\skip104
For additional information on amsmath, use the `?' option.
(C:\Program Files\MiKTeX\tex/latex/amsmath\amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text
(C:\Program Files\MiKTeX\tex/latex/amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks21
\ex@=\dimen191
))
(C:\Program Files\MiKTeX\tex/latex/amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen192
)
(C:\Program Files\MiKTeX\tex/latex/amsmath\amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count436
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count437
\leftroot@=\count438
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count439
\DOTSCASE@=\count440
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box80
\strutbox@=\box81
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen193
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count441
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count442
\dotsspace@=\muskip21
\c@parentequation=\count443
\dspbrk@lvl=\count444
\tag@help=\toks22
\row@=\count445
\column@=\count446
\maxfields@=\count447
\andhelp@=\toks23
\eqnshift@=\dimen194
\alignsep@=\dimen195
\tagshift@=\dimen196
\tagwidth@=\dimen197
\totwidth@=\dimen198
\lineht@=\dimen199
\@envbody=\toks24
\multlinegap=\skip105
\multlinetaggap=\skip106
\mathdisplay@stack=\toks25
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
)
\g__um_fam_int=\count448
\g__um_fonts_used_int=\count449
\l__um_primecount_int=\count450
\g__um_primekern_muskip=\muskip22
(C:\Program Files\MiKTeX\tex/latex/unicode-math\unicode-math-table.tex)))
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe
c)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe
c)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe
c)
Package fontspec Info: Font family 'LucidaBrightOT(0)' created for font
(fontspec) 'Lucida Bright OT' with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Bright
(fontspec) OT/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Lucida
(fontspec) Bright
(fontspec) OT/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright
(fontspec) OT/B/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Lucida
(fontspec) Bright
(fontspec) OT/B/OT:script=latn;language=dflt;+smcp;mapping=tex-text
;"
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Bright
(fontspec) OT/I/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida
(fontspec) Bright
(fontspec) OT/BI/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe
c)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe
c)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe
c)
Package fontspec Info: Font family 'LucidaBrightOT(1)' created for font
(fontspec) 'Lucida Bright OT' with options [].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Bright
(fontspec) OT/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Lucida
(fontspec) Bright OT/OT:script=latn;language=dflt;+smcp;"
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright
(fontspec) OT/B/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Lucida
(fontspec) Bright OT/B/OT:script=latn;language=dflt;+smcp;"
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Bright
(fontspec) OT/I/OT:script=latn;language=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida
(fontspec) Bright OT/BI/OT:script=latn;language=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) OT1/cmr/m/n --> TU/LucidaBrightOT(1)/m/n on input line
28.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/LucidaBrightOT(1)/m/it on input lin
e 28.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/LucidaBrightOT(1)/b/n on input line
28.
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec)
Package fontspec Info: Font family 'LucidaSansOT(0)' created for font 'Lucida
(fontspec) Sans OT' with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/B/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/I/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/BI/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec)
Package fontspec Info: Font family 'LucidaSansOT(1)' created for font 'Lucida
(fontspec) Sans OT' with options [].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/B/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/I/OT:script=latn;language=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida Sans
(fontspec) OT/BI/OT:script=latn;language=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/LucidaSansOT(1)/m/n on input line 2
9.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/LucidaSansOT(1)/b/n on input line
29.
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp
ec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp
ec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp
ec)
Package fontspec Info: Font family 'LucidaConsoleDK(0)' created for font
(fontspec) 'Lucida Console DK' with options
(fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=Word
Space,Scale=1.05].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[1.05]"Lucida
(fontspec) Console DK/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[1.05]"Lucida
(fontspec) Console DK/B/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->s*[1.05]"Lucida
(fontspec) Console DK/I/OT:script=latn;language=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(fontspec) - 'bold italic' (b/it) with NFSS spec.:
(fontspec) <->s*[1.05]"Lucida Console
(fontspec) DK/BI/OT:script=latn;language=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) and font adjustment code:
(fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font
(fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen
(fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font
(fontspec) \tex_hyphenchar:D \font =-1\scan_stop:
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp
ec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp
ec)
(C:/Users/aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp
ec)
Package fontspec Info: Font family 'LucidaConsoleDK(1)' created for font
(fontspec) 'Lucida Console DK' with options [Scale=1.05].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[1.05]"Lucida
(fontspec) Console DK/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[1.05]"Lucida
(fontspec) Console DK/B/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->s*[1.05]"Lucida
(fontspec) Console DK/I/OT:script=latn;language=dflt;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) - 'bold italic' (b/it) with NFSS spec.:
(fontspec) <->s*[1.05]"Lucida Console
(fontspec) DK/BI/OT:script=latn;language=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/m/n on input lin
e 29.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/b/n on input lin
e 29.
Package fontspec Info: Font family 'LucidaBrightMathOT(0)' created for font
(fontspec) 'Lucida Bright Math OT' with options
(fontspec) [BoldItalicFont={},ItalicFont={},SmallCapsFont={},Script
=Math].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Bright
(fontspec) Math OT/OT:script=math;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright Math
(fontspec) OT/B/OT:script=math;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
Package fontspec Info: Font family 'LucidaBrightMathOT(1)' created for font
(fontspec) 'Lucida Bright Math OT' with options
(fontspec) [BoldItalicFont={},ItalicFont={},SmallCapsFont={},Script
=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=Lucida
(fontspec) Bright Math OT,Style=MathScript},{Size=-6,Font=Lucida
(fontspec) Bright Math OT,Style=MathScriptScript}}].