-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathRProgrammingForResearch.log
More file actions
5248 lines (4064 loc) · 174 KB
/
Copy pathRProgrammingForResearch.log
File metadata and controls
5248 lines (4064 loc) · 174 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is XeTeX, Version 3.141592653-2.6-0.999998 (TeX Live 2026) (preloaded format=xelatex 2026.3.22) 24 AUG 2026 09:02
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**RProgrammingForResearch.tex
(./RProgrammingForResearch.tex
LaTeX2e <2025-11-01>
L3 programming layer <2026-01-19>
(/usr/local/texlive/2026/texmf-dist/tex/latex/base/book.cls
Document Class: book 2025/01/22 v1.4n Standard LaTeX document class
(/usr/local/texlive/2026/texmf-dist/tex/latex/base/bk10.clo
File: bk10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
)
\c@part=\count271
\c@chapter=\count272
\c@section=\count273
\c@subsection=\count274
\c@subsubsection=\count275
\c@paragraph=\count276
\c@subparagraph=\count277
\c@figure=\count278
\c@table=\count279
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
\bibindent=\dimen148
) (/usr/local/texlive/2026/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
(/usr/local/texlive/2026/texmf-dist/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.
(/usr/local/texlive/2026/texmf-dist/tex/latex/graphics-def/xetex.def
File: xetex.def 2025/11/01 v5.0p Graphics/color driver for xetex
) (/usr/local/texlive/2026/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349.
Package xcolor Info: Model `RGB' extended on input line 1365.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372.
) (/usr/local/texlive/2026/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2025/07/09 v2.17z AMS math features
\@mathmargin=\skip51
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2026/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2024/11/17 v2.01 AMS text
(/usr/local/texlive/2026/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks17
\ex@=\dimen149
)) (/usr/local/texlive/2026/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen150
) (/usr/local/texlive/2026/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count280
LaTeX Info: Redefining \frac on input line 233.
\uproot@=\count281
\leftroot@=\count282
LaTeX Info: Redefining \overline on input line 398.
LaTeX Info: Redefining \colon on input line 409.
\classnum@=\count283
\DOTSCASE@=\count284
LaTeX Info: Redefining \ldots on input line 495.
LaTeX Info: Redefining \dots on input line 498.
LaTeX Info: Redefining \cdots on input line 619.
\Mathstrutbox@=\box53
\strutbox@=\box54
LaTeX Info: Redefining \big on input line 721.
LaTeX Info: Redefining \Big on input line 722.
LaTeX Info: Redefining \bigg on input line 723.
LaTeX Info: Redefining \Bigg on input line 724.
\big@size=\dimen151
LaTeX Font Info: Redeclaring font encoding OML on input line 742.
LaTeX Font Info: Redeclaring font encoding OMS on input line 743.
\macc@depth=\count285
LaTeX Info: Redefining \bmod on input line 904.
LaTeX Info: Redefining \pmod on input line 909.
LaTeX Info: Redefining \smash on input line 939.
LaTeX Info: Redefining \relbar on input line 969.
LaTeX Info: Redefining \Relbar on input line 970.
\c@MaxMatrixCols=\count286
\dotsspace@=\muskip17
\c@parentequation=\count287
\dspbrk@lvl=\count288
\tag@help=\toks18
\row@=\count289
\column@=\count290
\maxfields@=\count291
\andhelp@=\toks19
\eqnshift@=\dimen152
\alignsep@=\dimen153
\tagshift@=\dimen154
\tagwidth@=\dimen155
\totwidth@=\dimen156
\lineht@=\dimen157
\@envbody=\toks20
\multlinegap=\skip52
\multlinetaggap=\skip53
\mathdisplay@stack=\toks21
LaTeX Info: Redefining \[ on input line 2950.
LaTeX Info: Redefining \] on input line 2951.
) (/usr/local/texlive/2026/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/local/texlive/2026/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
)) (/usr/local/texlive/2026/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2024/12/12 v1.0g TeX engine tests
) (/usr/local/texlive/2026/texmf-dist/tex/latex/unicode-math/unicode-math.sty (
/usr/local/texlive/2026/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2026-01-19 L3 programming layer (loader)
(/usr/local/texlive/2026/texmf-dist/tex/latex/l3backend/l3backend-xetex.def
File: l3backend-xetex.def 2025-10-09 L3 backend support: XeTeX
\g__graphics_track_int=\count292
\g__pdfannot_backend_int=\count293
\g__pdfannot_backend_link_int=\count294
))
Package: unicode-math 2023/08/13 v0.8r Unicode maths in XeLaTeX and LuaLaTeX
(/usr/local/texlive/2026/texmf-dist/tex/latex/unicode-math/unicode-math-xetex.s
ty
Package: unicode-math-xetex 2023/08/13 v0.8r Unicode maths in XeLaTeX and LuaLa
TeX
(/usr/local/texlive/2026/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
Package: xparse 2025-10-09 L3 Experimental document command parser
) (/usr/local/texlive/2026/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.st
y
Package: l3keys2e 2025-10-09 LaTeX2e option processing using LaTeX3 keys
) (/usr/local/texlive/2026/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2025/09/29 v2.9g Font selection for XeLaTeX and LuaLaTeX
(/usr/local/texlive/2026/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2025/09/29 v2.9g Font selection for XeLaTeX and LuaLaTe
X
\l__fontspec_script_int=\count295
\l__fontspec_language_int=\count296
\l__fontspec_strnum_int=\count297
\l__fontspec_tmp_int=\count298
\l__fontspec_tmpa_int=\count299
\l__fontspec_tmpb_int=\count300
\l__fontspec_tmpc_int=\count301
\l__fontspec_em_int=\count302
\l__fontspec_emdef_int=\count303
\l__fontspec_strong_int=\count304
\l__fontspec_strongdef_int=\count305
\l__fontspec_tmpa_dim=\dimen158
\l__fontspec_tmpb_dim=\dimen159
\l__fontspec_tmpc_dim=\dimen160
(/usr/local/texlive/2026/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2025/07/18 v2.1d Standard LaTeX package
) (/usr/local/texlive/2026/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (/usr/
local/texlive/2026/texmf-dist/tex/latex/base/fix-cm.sty
Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX
(/usr/local/texlive/2026/texmf-dist/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.
LaTeX Encoding Info: Redeclaring text command \capitalcedilla (encoding TS1)
on input line 49.
LaTeX Encoding Info: Redeclaring text command \capitalogonek (encoding TS1)
on input line 52.
LaTeX Encoding Info: Redeclaring text command \capitalgrave (encoding TS1) o
n input line 55.
LaTeX Encoding Info: Redeclaring text command \capitalacute (encoding TS1) o
n input line 56.
LaTeX Encoding Info: Redeclaring text command \capitalcircumflex (encoding T
S1) on input line 57.
LaTeX Encoding Info: Redeclaring text command \capitaltilde (encoding TS1) o
n input line 58.
LaTeX Encoding Info: Redeclaring text command \capitaldieresis (encoding TS1
) on input line 59.
LaTeX Encoding Info: Redeclaring text command \capitalhungarumlaut (encoding
TS1) on input line 60.
LaTeX Encoding Info: Redeclaring text command \capitalring (encoding TS1) on
input line 61.
LaTeX Encoding Info: Redeclaring text command \capitalcaron (encoding TS1) o
n input line 62.
LaTeX Encoding Info: Redeclaring text command \capitalbreve (encoding TS1) o
n input line 63.
LaTeX Encoding Info: Redeclaring text command \capitalmacron (encoding TS1)
on input line 64.
LaTeX Encoding Info: Redeclaring text command \capitaldotaccent (encoding TS
1) on input line 65.
LaTeX Encoding Info: Redeclaring text command \t (encoding TS1) on input lin
e 66.
LaTeX Encoding Info: Redeclaring text command \capitaltie (encoding TS1) on
input line 67.
LaTeX Encoding Info: Redeclaring text command \newtie (encoding TS1) on inpu
t line 68.
LaTeX Encoding Info: Redeclaring text command \capitalnewtie (encoding TS1)
on input line 69.
LaTeX Encoding Info: Redeclaring text symbol \textcapitalcompwordmark (encod
ing TS1) on input line 70.
LaTeX Encoding Info: Redeclaring text symbol \textascendercompwordmark (enco
ding TS1) on input line 71.
LaTeX Encoding Info: Redeclaring text symbol \textquotestraightbase (encodin
g TS1) on input line 72.
LaTeX Encoding Info: Redeclaring text symbol \textquotestraightdblbase (enco
ding TS1) on input line 73.
LaTeX Encoding Info: Redeclaring text symbol \texttwelveudash (encoding TS1)
on input line 74.
LaTeX Encoding Info: Redeclaring text symbol \textthreequartersemdash (encod
ing TS1) on input line 75.
LaTeX Encoding Info: Redeclaring text symbol \textleftarrow (encoding TS1) o
n input line 76.
LaTeX Encoding Info: Redeclaring text symbol \textrightarrow (encoding TS1)
on input line 77.
LaTeX Encoding Info: Redeclaring text symbol \textblank (encoding TS1) on in
put line 78.
LaTeX Encoding Info: Redeclaring text symbol \textdollar (encoding TS1) on i
nput line 79.
LaTeX Encoding Info: Redeclaring text symbol \textquotesingle (encoding TS1)
on input line 80.
LaTeX Encoding Info: Redeclaring text command \textasteriskcentered (encodin
g TS1) on input line 81.
LaTeX Encoding Info: Redeclaring text symbol \textdblhyphen (encoding TS1) o
n input line 92.
LaTeX Encoding Info: Redeclaring text symbol \textfractionsolidus (encoding
TS1) on input line 93.
LaTeX Encoding Info: Redeclaring text symbol \textzerooldstyle (encoding TS1
) on input line 94.
LaTeX Encoding Info: Redeclaring text symbol \textoneoldstyle (encoding TS1)
on input line 95.
LaTeX Encoding Info: Redeclaring text symbol \texttwooldstyle (encoding TS1)
on input line 96.
LaTeX Encoding Info: Redeclaring text symbol \textthreeoldstyle (encoding TS
1) on input line 97.
LaTeX Encoding Info: Redeclaring text symbol \textfouroldstyle (encoding TS1
) on input line 98.
LaTeX Encoding Info: Redeclaring text symbol \textfiveoldstyle (encoding TS1
) on input line 99.
LaTeX Encoding Info: Redeclaring text symbol \textsixoldstyle (encoding TS1)
on input line 100.
LaTeX Encoding Info: Redeclaring text symbol \textsevenoldstyle (encoding TS
1) on input line 101.
LaTeX Encoding Info: Redeclaring text symbol \texteightoldstyle (encoding TS
1) on input line 102.
LaTeX Encoding Info: Redeclaring text symbol \textnineoldstyle (encoding TS1
) on input line 103.
LaTeX Encoding Info: Redeclaring text symbol \textlangle (encoding TS1) on i
nput line 104.
LaTeX Encoding Info: Redeclaring text symbol \textminus (encoding TS1) on in
put line 105.
LaTeX Encoding Info: Redeclaring text symbol \textrangle (encoding TS1) on i
nput line 106.
LaTeX Encoding Info: Redeclaring text symbol \textmho (encoding TS1) on inpu
t line 107.
LaTeX Encoding Info: Redeclaring text symbol \textbigcircle (encoding TS1) o
n input line 108.
LaTeX Encoding Info: Redeclaring text command \textcircled (encoding TS1) on
input line 109.
LaTeX Encoding Info: Redeclaring text symbol \textohm (encoding TS1) on inpu
t line 115.
LaTeX Encoding Info: Redeclaring text symbol \textlbrackdbl (encoding TS1) o
n input line 116.
LaTeX Encoding Info: Redeclaring text symbol \textrbrackdbl (encoding TS1) o
n input line 117.
LaTeX Encoding Info: Redeclaring text symbol \textuparrow (encoding TS1) on
input line 118.
LaTeX Encoding Info: Redeclaring text symbol \textdownarrow (encoding TS1) o
n input line 119.
LaTeX Encoding Info: Redeclaring text symbol \textasciigrave (encoding TS1)
on input line 120.
LaTeX Encoding Info: Redeclaring text symbol \textborn (encoding TS1) on inp
ut line 121.
LaTeX Encoding Info: Redeclaring text symbol \textdivorced (encoding TS1) on
input line 122.
LaTeX Encoding Info: Redeclaring text symbol \textdied (encoding TS1) on inp
ut line 123.
LaTeX Encoding Info: Redeclaring text symbol \textleaf (encoding TS1) on inp
ut line 124.
LaTeX Encoding Info: Redeclaring text symbol \textmarried (encoding TS1) on
input line 125.
LaTeX Encoding Info: Redeclaring text symbol \textmusicalnote (encoding TS1)
on input line 126.
LaTeX Encoding Info: Redeclaring text symbol \texttildelow (encoding TS1) on
input line 127.
LaTeX Encoding Info: Redeclaring text symbol \textdblhyphenchar (encoding TS
1) on input line 128.
LaTeX Encoding Info: Redeclaring text symbol \textasciibreve (encoding TS1)
on input line 129.
LaTeX Encoding Info: Redeclaring text symbol \textasciicaron (encoding TS1)
on input line 130.
LaTeX Encoding Info: Redeclaring text symbol \textacutedbl (encoding TS1) on
input line 131.
LaTeX Encoding Info: Redeclaring text symbol \textgravedbl (encoding TS1) on
input line 132.
LaTeX Encoding Info: Redeclaring text symbol \textdagger (encoding TS1) on i
nput line 133.
LaTeX Encoding Info: Redeclaring text symbol \textdaggerdbl (encoding TS1) o
n input line 134.
LaTeX Encoding Info: Redeclaring text symbol \textbardbl (encoding TS1) on i
nput line 135.
LaTeX Encoding Info: Redeclaring text symbol \textperthousand (encoding TS1)
on input line 136.
LaTeX Encoding Info: Redeclaring text symbol \textbullet (encoding TS1) on i
nput line 137.
LaTeX Encoding Info: Redeclaring text symbol \textcelsius (encoding TS1) on
input line 138.
LaTeX Encoding Info: Redeclaring text symbol \textdollaroldstyle (encoding T
S1) on input line 139.
LaTeX Encoding Info: Redeclaring text symbol \textcentoldstyle (encoding TS1
) on input line 140.
LaTeX Encoding Info: Redeclaring text symbol \textflorin (encoding TS1) on i
nput line 141.
LaTeX Encoding Info: Redeclaring text symbol \textcolonmonetary (encoding TS
1) on input line 142.
LaTeX Encoding Info: Redeclaring text symbol \textwon (encoding TS1) on inpu
t line 143.
LaTeX Encoding Info: Redeclaring text symbol \textnaira (encoding TS1) on in
put line 144.
LaTeX Encoding Info: Redeclaring text symbol \textguarani (encoding TS1) on
input line 145.
LaTeX Encoding Info: Redeclaring text symbol \textpeso (encoding TS1) on inp
ut line 146.
LaTeX Encoding Info: Redeclaring text symbol \textlira (encoding TS1) on inp
ut line 147.
LaTeX Encoding Info: Redeclaring text symbol \textrecipe (encoding TS1) on i
nput line 148.
LaTeX Encoding Info: Redeclaring text symbol \textinterrobang (encoding TS1)
on input line 149.
LaTeX Encoding Info: Redeclaring text symbol \textinterrobangdown (encoding
TS1) on input line 150.
LaTeX Encoding Info: Redeclaring text symbol \textdong (encoding TS1) on inp
ut line 151.
LaTeX Encoding Info: Redeclaring text symbol \texttrademark (encoding TS1) o
n input line 152.
LaTeX Encoding Info: Redeclaring text symbol \textpertenthousand (encoding T
S1) on input line 153.
LaTeX Encoding Info: Redeclaring text symbol \textpilcrow (encoding TS1) on
input line 154.
LaTeX Encoding Info: Redeclaring text symbol \textbaht (encoding TS1) on inp
ut line 155.
LaTeX Encoding Info: Redeclaring text symbol \textnumero (encoding TS1) on i
nput line 156.
LaTeX Encoding Info: Redeclaring text symbol \textdiscount (encoding TS1) on
input line 157.
LaTeX Encoding Info: Redeclaring text symbol \textestimated (encoding TS1) o
n input line 158.
LaTeX Encoding Info: Redeclaring text symbol \textopenbullet (encoding TS1)
on input line 159.
LaTeX Encoding Info: Redeclaring text symbol \textservicemark (encoding TS1)
on input line 160.
LaTeX Encoding Info: Redeclaring text symbol \textlquill (encoding TS1) on i
nput line 161.
LaTeX Encoding Info: Redeclaring text symbol \textrquill (encoding TS1) on i
nput line 162.
LaTeX Encoding Info: Redeclaring text symbol \textcent (encoding TS1) on inp
ut line 163.
LaTeX Encoding Info: Redeclaring text symbol \textsterling (encoding TS1) on
input line 164.
LaTeX Encoding Info: Redeclaring text symbol \textcurrency (encoding TS1) on
input line 165.
LaTeX Encoding Info: Redeclaring text symbol \textyen (encoding TS1) on inpu
t line 166.
LaTeX Encoding Info: Redeclaring text symbol \textbrokenbar (encoding TS1) o
n input line 167.
LaTeX Encoding Info: Redeclaring text symbol \textsection (encoding TS1) on
input line 168.
LaTeX Encoding Info: Redeclaring text symbol \textasciidieresis (encoding TS
1) on input line 169.
LaTeX Encoding Info: Redeclaring text symbol \textcopyright (encoding TS1) o
n input line 170.
LaTeX Encoding Info: Redeclaring text symbol \textordfeminine (encoding TS1)
on input line 171.
LaTeX Encoding Info: Redeclaring text symbol \textcopyleft (encoding TS1) on
input line 172.
LaTeX Encoding Info: Redeclaring text symbol \textlnot (encoding TS1) on inp
ut line 173.
LaTeX Encoding Info: Redeclaring text symbol \textcircledP (encoding TS1) on
input line 174.
LaTeX Encoding Info: Redeclaring text symbol \textregistered (encoding TS1)
on input line 175.
LaTeX Encoding Info: Redeclaring text symbol \textasciimacron (encoding TS1)
on input line 176.
LaTeX Encoding Info: Redeclaring text symbol \textdegree (encoding TS1) on i
nput line 177.
LaTeX Encoding Info: Redeclaring text symbol \textpm (encoding TS1) on input
line 178.
LaTeX Encoding Info: Redeclaring text symbol \texttwosuperior (encoding TS1)
on input line 179.
LaTeX Encoding Info: Redeclaring text symbol \textthreesuperior (encoding TS
1) on input line 180.
LaTeX Encoding Info: Redeclaring text symbol \textasciiacute (encoding TS1)
on input line 181.
LaTeX Encoding Info: Redeclaring text symbol \textmu (encoding TS1) on input
line 182.
LaTeX Encoding Info: Redeclaring text symbol \textparagraph (encoding TS1) o
n input line 183.
LaTeX Encoding Info: Redeclaring text symbol \textperiodcentered (encoding T
S1) on input line 184.
LaTeX Encoding Info: Redeclaring text symbol \textreferencemark (encoding TS
1) on input line 185.
LaTeX Encoding Info: Redeclaring text symbol \textonesuperior (encoding TS1)
on input line 186.
LaTeX Encoding Info: Redeclaring text symbol \textordmasculine (encoding TS1
) on input line 187.
LaTeX Encoding Info: Redeclaring text symbol \textsurd (encoding TS1) on inp
ut line 188.
LaTeX Encoding Info: Redeclaring text symbol \textonequarter (encoding TS1)
on input line 189.
LaTeX Encoding Info: Redeclaring text symbol \textonehalf (encoding TS1) on
input line 190.
LaTeX Encoding Info: Redeclaring text symbol \textthreequarters (encoding TS
1) on input line 191.
LaTeX Encoding Info: Redeclaring text symbol \texteuro (encoding TS1) on inp
ut line 192.
LaTeX Encoding Info: Redeclaring text symbol \texttimes (encoding TS1) on in
put line 193.
LaTeX Encoding Info: Redeclaring text symbol \textdiv (encoding TS1) on inpu
t line 194.
))
\g__um_fam_int=\count306
\g__um_fonts_used_int=\count307
\l__um_primecount_int=\count308
\g__um_primekern_muskip=\muskip18
(/usr/local/texlive/2026/texmf-dist/tex/latex/unicode-math/unicode-math-table.t
ex))) (/usr/local/texlive/2026/texmf-dist/tex/latex/lm/lmodern.sty
Package: lmodern 2015/05/01 v1.6.1 Latin Modern Fonts
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
) (/usr/local/texlive/2026/texmf-dist/tex/latex/upquote/upquote.sty
Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba
tim
(/usr/local/texlive/2026/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2024/04/24 v2.1b Standard LaTeX package
)) (/usr/local/texlive/2026/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2026/03/01 v3.2d Micro-typographical refinements (RS)
(/usr/local/texlive/2026/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks22
) (/usr/local/texlive/2026/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2025/10/02 v2.5m e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count309
)
\MT@toks=\toks23
\MT@tempbox=\box55
\MT@count=\count310
LaTeX Info: Redefining \noprotrusionifhmode on input line 1084.
LaTeX Info: Redefining \leftprotrusion on input line 1085.
\MT@prot@toks=\toks24
LaTeX Info: Redefining \rightprotrusion on input line 1104.
LaTeX Info: Redefining \textls on input line 1449.
\MT@outer@kern=\dimen161
LaTeX Info: Redefining \microtypecontext on input line 2053.
LaTeX Info: Redefining \textmicrotypecontext on input line 2070.
\MT@listname@count=\count311
(/usr/local/texlive/2026/texmf-dist/tex/latex/microtype/microtype-xetex.def
File: microtype-xetex.def 2026/03/01 v3.2d Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 443.
LaTeX Info: Redefining \lslig on input line 451.
\MT@outer@space=\skip54
)
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/local/texlive/2026/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2026/03/01 v3.2d microtype main configuration file (RS)
)
LaTeX Info: Redefining \microtypesetup on input line 3065.
) (/usr/local/texlive/2026/texmf-dist/tex/latex/parskip/parskip.sty
Package: parskip 2021-03-14 v2.0h non-zero parskip adjustments
(/usr/local/texlive/2026/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
(/usr/local/texlive/2026/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
) (/usr/local/texlive/2026/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
))) (/usr/local/texlive/2026/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
Package: fancyvrb 2025/07/28 4.6 verbatim text (tvz,hv)
\FV@CodeLineNo=\count312
\FV@InFile=\read2
\FV@TabBox=\box56
\c@FancyVerbLine=\count313
\FV@StepNumber=\count314
\FV@OutFile=\write3
) (/usr/local/texlive/2026/texmf-dist/tex/latex/framed/framed.sty
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip55
\fb@frw=\dimen162
\fb@frh=\dimen163
\FrameRule=\dimen164
\FrameSep=\dimen165
) (/usr/local/texlive/2026/texmf-dist/tex/latex/tools/longtable.sty
Package: longtable 2025-10-13 v4.24 Multi-page Table package (DPC)
\LTleft=\skip56
\LTright=\skip57
\LTpre=\skip58
\LTpost=\skip59
\LTchunksize=\count315
\LTcapwidth=\dimen166
\LT@head=\box57
\LT@firsthead=\box58
\LT@foot=\box59
\LT@lastfoot=\box60
\LT@gbox=\box61
\LT@cols=\count316
\LT@rows=\count317
\c@LT@tables=\count318
\c@LT@chunks=\count319
\LT@p@ftn=\toks25
) (/usr/local/texlive/2026/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen167
\lightrulewidth=\dimen168
\cmidrulewidth=\dimen169
\belowrulesep=\dimen170
\belowbottomsep=\dimen171
\aboverulesep=\dimen172
\abovetopsep=\dimen173
\cmidrulesep=\dimen174
\cmidrulekern=\dimen175
\defaultaddspace=\dimen176
\@cmidla=\count320
\@cmidlb=\count321
\@aboverulesep=\dimen177
\@belowrulesep=\dimen178
\@thisruleclass=\count322
\@lastruleclass=\count323
\@thisrulewidth=\dimen179
) (/usr/local/texlive/2026/texmf-dist/tex/latex/tools/array.sty
Package: array 2025/09/25 v2.6n Tabular extension package (FMi)
\col@sep=\dimen180
\ar@mcellbox=\box62
\extrarowheight=\dimen181
\NC@list=\toks26
\extratabsurround=\skip60
\backup@length=\skip61
\ar@cellbox=\box63
) (/usr/local/texlive/2026/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2025/03/01 v4.3b Infix arithmetic (KKT,FJ)
\calc@Acount=\count324
\calc@Bcount=\count325
\calc@Adimen=\dimen182
\calc@Bdimen=\dimen183
\calc@Askip=\skip62
\calc@Bskip=\skip63
LaTeX Info: Redefining \setlength on input line 86.
LaTeX Info: Redefining \addtolength on input line 87.
\calc@Ccount=\count326
\calc@Cskip=\skip64
) (/usr/local/texlive/2026/texmf-dist/tex/latex/footnotehyper/footnotehyper.sty
Package: footnotehyper 2025/11/15 v1.1f hyperref aware footnote.sty (JFB)
\FNH@notes=\box64
\FNH@width=\dimen184
\FNH@toks=\toks27
) (/usr/local/texlive/2026/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2026/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2026/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
) (/usr/local/texlive/2026/texmf-dist/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 106.
)
\Gin@req@height=\dimen185
\Gin@req@width=\dimen186
)
\pandoc@box=\box65
(/usr/local/texlive/2026/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks28
\thm@bodyfont=\toks29
\thm@headfont=\toks30
\thm@notefont=\toks31
\thm@headpunct=\toks32
\thm@preskip=\skip65
\thm@postskip=\skip66
\thm@headsep=\skip67
\dth@everypar=\toks33
) (/usr/local/texlive/2026/texmf-dist/tex/latex/bookmark/bookmark.sty
Package: bookmark 2023-12-10 v1.31 PDF bookmarks (HO)
(/usr/local/texlive/2026/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2026-01-29 v7.01p Hypertext links for LaTeX
(/usr/local/texlive/2026/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (/usr/local/texlive/2026/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
(/usr/local/texlive/2026/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/local/texlive/2026/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode not found.
)) (/usr/local/texlive/2026/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (/usr/local/texlive/2026/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2026-01-29 v2.58 Cross-referencing by name of section
(/usr/local/texlive/2026/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/local/texlive/2026/texmf-dist/tex/generic/gettitlestring/gettitlestring.s
ty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count327
) (/usr/local/texlive/2026/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
\@linkdim=\dimen187
\Hy@linkcounter=\count328
\Hy@pagecounter=\count329
(/usr/local/texlive/2026/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2026-01-29 v7.01p Hyperref: PDFDocEncoding definition (HO)
) (/usr/local/texlive/2026/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count330
(/usr/local/texlive/2026/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2026-01-29 v7.01p Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Option `unicode' set `true' on input line 4072.
Package hyperref Info: Hyper figures OFF on input line 4201.
Package hyperref Info: Link nesting OFF on input line 4206.
Package hyperref Info: Hyper index ON on input line 4209.
Package hyperref Info: Plain pages OFF on input line 4216.
Package hyperref Info: Backreferencing OFF on input line 4221.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4468.
\c@Hy@tempcnt=\count331
(/usr/local/texlive/2026/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip19
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4807.
\XeTeXLinkMargin=\dimen188
(/usr/local/texlive/2026/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/local/texlive/2026/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count332
\Field@Width=\dimen189
\Fld@charsize=\dimen190
Package hyperref Info: Hyper figures OFF on input line 6084.
Package hyperref Info: Link nesting OFF on input line 6089.
Package hyperref Info: Hyper index ON on input line 6092.
Package hyperref Info: backreferencing OFF on input line 6099.
Package hyperref Info: Link coloring OFF on input line 6104.
Package hyperref Info: Link coloring with OCG OFF on input line 6109.
Package hyperref Info: PDF/A mode OFF on input line 6114.
\Hy@abspage=\count333
\c@Item=\count334
\c@Hfootnote=\count335
)
Package hyperref Info: Driver (autodetected): hxetex.
(/usr/local/texlive/2026/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2026-01-29 v7.01p Hyperref driver for XeTeX
\pdfm@box=\box66
\c@Hy@AnnotLevel=\count336
\HyField@AnnotCount=\count337
\Fld@listcount=\count338
\c@bookmark@seq@number=\count339
(/usr/local/texlive/2026/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2025-06-21 v1.11 Rerun checks for auxiliary files (HO)
(/usr/local/texlive/2026/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
84.
)
\Hy@SectionHShift=\skip68
) (/usr/local/texlive/2026/texmf-dist/tex/latex/bookmark/bkm-dvipdfm.def
File: bkm-dvipdfm.def 2023-12-10 v1.31 bookmark driver for dvipdfm (HO)
\BKM@id=\count340
)) (/usr/local/texlive/2026/texmf-dist/tex/latex/xurl/xurl.sty
Package: xurl 2022/01/09 v 0.10 modify URL breaks
) (./RProgrammingForResearch.aux)
\openout1 = `RProgrammingForResearch.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 197.
LaTeX Font Info: ... okay on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) OT1/lmr/m/n --> TU/lmr/m/n on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/lmr/m/it --> TU/lmr/m/it on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/lmr/bx/n --> TU/lmr/bx/n on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/lmss/m/n --> TU/lmss/m/n on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/lmss/bx/n --> TU/lmss/bx/n on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/lmtt/m/n --> TU/lmtt/m/n on input line 197.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/lmtt/m/n --> TU/lmtt/bx/n on input line 197.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) Font family 'latinmodern-math.otf(0)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,BoldFont={latinmodern-math.otf}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->s*[0.9999964596882403]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->s*[0.9999964596882403]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
LaTeX Font Info: Font shape `TU/latinmodern-math.otf(0)/m/n' will be
(Font) scaled to size 10.0pt on input line 197.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) Font family 'latinmodern-math.otf(1)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=latinmode
rn-math.otf,Style=MathScript},{Size=-6,Font=latinmodern-math.otf,Style=MathScri
ptScript}},BoldFont={latinmodern-math.otf}].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <8.5->s*[0.9999964596882403]"[latinmodern-math.otf]/OT:s
cript=math;language=dflt;"<6-8.5>s*[0.9999964596882403]"[latinmodern-math.otf]/
OT:script=math;language=dflt;+ssty=0;"<-6>s*[0.9999964596882403]"[latinmodern-m
ath.otf]/OT:script=math;language=dflt;+ssty=1;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->s*[0.9999964596882403]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
LaTeX Font Info: Font shape `TU/latinmodern-math.otf(1)/m/n' will be
(Font) scaled to size 10.0pt on input line 197.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 197.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/lmr/m/n --> TU/latinmodern-math.otf(1)/m/n on input
line 197.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 197.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/lmr/bx/n --> TU/latinmodern-math.otf(1)/b/n on inpu
t line 197.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 1.000096459334209.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 1.000096459334209.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 1.000096459334209.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 1.000096459334209.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 1.000096459334209.
Package fontspec Info:
(fontspec) Font family 'latinmodern-math.otf(2)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=latinmode
rn-math.otf,Style=MathScript},{Size=-6,Font=latinmodern-math.otf,Style=MathScri
ptScript}},BoldFont={latinmodern-math.otf},ScaleAgain=1.0001,FontAdjustment={\f
ontdimen
(fontspec) 8\font =6.77pt\relax \fontdimen 9\font =3.94pt\relax
(fontspec) \fontdimen 10\font =4.44pt\relax \fontdimen 11\font
(fontspec) =6.86pt\relax \fontdimen 12\font =3.45pt\relax
(fontspec) \fontdimen 13\font =3.63pt\relax \fontdimen 14\font
(fontspec) =3.63pt\relax \fontdimen 15\font =2.89pt\relax
(fontspec) \fontdimen 16\font =2.47pt\relax \fontdimen 17\font
(fontspec) =2.47pt\relax \fontdimen 18\font =2.5pt\relax
(fontspec) \fontdimen 19\font =2.0pt\relax \fontdimen 22\font
(fontspec) =2.5pt\relax \fontdimen 20\font =0pt\relax \fontdimen
(fontspec) 21\font =0pt\relax }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <8.5->s*[1.000096459334209]"[latinmodern-math.otf]/OT:sc
ript=math;language=dflt;"<6-8.5>s*[1.000096459334209]"[latinmodern-math.otf]/OT
:script=math;language=dflt;+ssty=0;"<-6>s*[1.000096459334209]"[latinmodern-math
.otf]/OT:script=math;language=dflt;+ssty=1;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->s*[1.000096459334209]"[latinmodern-math.otf]/OT:scrip
t=math;language=dflt;"
LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font
(Font) `symbols' in the math version `normal' on input line 197.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/lmsy/m/n --> TU/latinmodern-math.otf(2)/m/n on inpu
t line 197.
LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font
(Font) `symbols' in the math version `bold' on input line 197.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/lmsy/b/n --> TU/latinmodern-math.otf(2)/b/n on inpu
t line 197.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9998964600422715.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9998964600422715.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9998964600422715.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9998964600422715.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9999964596882403.
Package fontspec Info:
(fontspec) latinmodern-math scale = 0.9998964600422715.
Package fontspec Info:
(fontspec) Font family 'latinmodern-math.otf(3)' created for font
(fontspec) 'latinmodern-math.otf' with options
(fontspec) [Scale=MatchLowercase,BoldItalicFont={},ItalicFont={},Sm
allCapsFont={},Script=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=latinmode
rn-math.otf,Style=MathScript},{Size=-6,Font=latinmodern-math.otf,Style=MathScri
ptScript}},BoldFont={latinmodern-math.otf},ScaleAgain=0.9999,FontAdjustment={\f
ontdimen
(fontspec) 8\font =0.4pt\relax \fontdimen 9\font =2.0pt\relax
(fontspec) \fontdimen 10\font =1.67pt\relax \fontdimen 11\font
(fontspec) =1.11pt\relax \fontdimen 12\font =6.0pt\relax
(fontspec) \fontdimen 13\font =0pt\relax }].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <8.5->s*[0.9998964600422715]"[latinmodern-math.otf]/OT:s
cript=math;language=dflt;"<6-8.5>s*[0.9998964600422715]"[latinmodern-math.otf]/
OT:script=math;language=dflt;+ssty=0;"<-6>s*[0.9998964600422715]"[latinmodern-m
ath.otf]/OT:script=math;language=dflt;+ssty=1;"
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->s*[0.9998964600422715]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 1
97.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/lmex/m/n --> TU/latinmodern-math.otf(3)/m/n on inpu
t line 197.
LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 197
.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/lmex/m/n --> TU/latinmodern-math.otf(3)/b/n on inpu
t line 197.
LaTeX Info: Redefining \microtypecontext on input line 197.
Package microtype Info: Applying patch `item' on input line 197.
Package microtype Info: Applying patch `toc' on input line 197.
Package microtype Info: Applying patch `eqnum' on input line 197.
Package microtype Info: Applying patch `footnote' on input line 197.
Package microtype Info: Applying patch `verbatim' on input line 197.
LaTeX Info: Redefining \microtypesetup on input line 197.