-
Notifications
You must be signed in to change notification settings - Fork 20
/
crimebythenumbers.log
4705 lines (3322 loc) · 112 KB
/
crimebythenumbers.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.999993 (TeX Live 2021/W32TeX) (preloaded format=xelatex 2022.1.24) 12 OCT 2022 21:31
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**crimebythenumbers.tex
(./crimebythenumbers.tex
LaTeX2e <2021-11-15> patch level 1
L3 programming layer <2022-01-21> (./krantz.cls
Document Class: krantz 2005/09/16 v1.4f Standard LaTeX document class
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/bk10.clo
File: bk10.clo 2021/10/04 v1.4n Standard LaTeX file (size option)
)
\trimheight=\dimen138
\trimwidth=\dimen139
\normaltextheight=\dimen140
\tempa=\dimen141
\tempdimen=\dimen142
\htrim=\dimen143
\vtrimtop=\dimen144
\vtrimbot=\dimen145
\ul@box=\box50
\ur@box=\box51
\ll@box=\box52
\lr@box=\box53
\@cipboxa=\box54
\@cipboxb=\box55
\@ciprulewidth=\dimen146
\c@part=\count181
\c@chapter=\count182
\c@section=\count183
\c@subsection=\count184
\c@subsubsection=\count185
\c@paragraph=\count186
\c@subparagraph=\count187
\secwd=\dimen147
\subsecwd=\dimen148
\subsubsecwd=\dimen149
\c@figure=\count188
\c@table=\count189
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\c@numauthors=\count190
\section@toc@skip=\skip49
\SectionTOCWidth=\skip50
\subsection@toc@skip=\skip51
\SubSectionTOCWidth=\skip52
\subsubsection@toc@skip=\skip53
\SubSubSectionTOCWidth=\skip54
\paragraph@toc@skip=\skip55
\ParagraphTOCWidth=\skip56
\subparagraph@toc@skip=\skip57
\@AUonebox=\box56
\@AUtwobox=\box57
\@AUthreebox=\box58
\@AUfourbox=\box59
\@AUaffonebox=\box60
\@AUafftwobox=\box61
\@AUaffthreebox=\box62
\@AUafffourbox=\box63
\@finalAUboxfromone=\box64
\@finalAUboxfromtwo=\box65
\@finalAUboxfromthree=\box66
\@finalAUboxfromfour=\box67
\c@chaptocdepth=\count191
\bibindent=\dimen150
\tempbox=\box68
\nomenwidth=\dimen151
\@tablebox=\box69
\@tabletitlebox=\box70
\@tablewidth=\dimen152
\@tabletitlewidth=\dimen153
\max@tablewidth=\dimen154
\tempbox=\box71
\tempdimen=\dimen155
\tempbox=\box72
\notewidth=\dimen156
\wherebox=\box73
\wherewidth=\dimen157
\listtextleftmargin=\skip58
\listtextleftmarginii=\skip59
\listtextleftmarginiii=\skip60
\listtextrightmargin=\skip61
\listlabelleftskip=\skip62
\listlabelleftskipii=\skip63
\listlabelleftskipiii=\skip64
\abovelistskipi=\skip65
\belowlistskipi=\skip66
\abovelistskipii=\skip67
\belowlistskipii=\skip68
\abovelistskipiii=\skip69
\belowlistskipiii=\skip70
\labelsepi=\skip71
\labelsepii=\skip72
\labelsepiii=\skip73
\itemsepi=\skip74
\itemsepii=\skip75
\itemsepiii=\skip76
\enumdimwd=\dimen158
\enumdim=\dimen159
\concolwidth=\dimen160
\stempbox=\box74
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsmath.st
y
Package: amsmath 2021/10/15 v2.17l AMS math features
\@mathmargin=\skip77
For additional information on amsmath, use the `?' option.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amstext.st
y
Package: amstext 2021/08/26 v2.01 AMS text
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks16
\ex@=\dimen161
))
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen162
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2021/08/26 v2.02 operator names
)
\inf@bad=\count192
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count193
\leftroot@=\count194
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count195
\DOTSCASE@=\count196
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@=\box75
\strutbox@=\box76
\big@size=\dimen163
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count197
\c@MaxMatrixCols=\count198
\dotsspace@=\muskip16
\c@parentequation=\count199
\dspbrk@lvl=\count266
\tag@help=\toks17
\row@=\count267
\column@=\count268
\maxfields@=\count269
\andhelp@=\toks18
\eqnshift@=\dimen164
\alignsep@=\dimen165
\tagshift@=\dimen166
\tagwidth@=\dimen167
\totwidth@=\dimen168
\lineht@=\dimen169
\@envbody=\toks19
\multlinegap=\skip78
\multlinetaggap=\skip79
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2938.
LaTeX Info: Redefining \] on input line 2939.
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amsfonts/amssymb.s
ty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/Users/jkkap/AppData/Roaming/TinyTeX/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.
)) (c:/Users/jkkap/AppData/Roaming/TinyTeX/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.
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/iftex/iftex.st
y
Package: iftex 2020/03/06 v1.0d TeX engine tests
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/unicode-math/unico
de-math.sty
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2022-01-21 L3 programming layer (loader)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3backend/l3backen
d-xetex.def
File: l3backend-xetex.def 2022-01-12 L3 backend support: XeTeX
(|extractbb --version)
\c__kernel_sys_dvipdfmx_version_int=\count270
\l__color_backend_stack_int=\count271
\g__color_backend_stack_int=\count272
\g__graphics_track_int=\count273
\l__pdf_internal_box=\box77
\g__pdf_backend_object_int=\count274
\g__pdf_backend_annotation_int=\count275
\g__pdf_backend_link_int=\count276
))
Package: unicode-math 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLaTeX
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/unicode-math/unico
de-math-xetex.sty
Package: unicode-math-xetex 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLa
TeX
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3packages/xparse/
xparse.sty
Package: xparse 2022-01-12 L3 Experimental document command parser
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/l3packages/l3keys2
e/l3keys2e.sty
Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fontspec/fontspec.
sty
Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/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=\count277
\l__fontspec_language_int=\count278
\l__fontspec_strnum_int=\count279
\l__fontspec_tmp_int=\count280
\l__fontspec_tmpa_int=\count281
\l__fontspec_tmpb_int=\count282
\l__fontspec_tmpc_int=\count283
\l__fontspec_em_int=\count284
\l__fontspec_emdef_int=\count285
\l__fontspec_strong_int=\count286
\l__fontspec_strongdef_int=\count287
\l__fontspec_tmpa_dim=\dimen170
\l__fontspec_tmpb_dim=\dimen171
\l__fontspec_tmpc_dim=\dimen172
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fontspec/fontspec.
cfg))) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fix-cm
.sty
Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX
(c:/Users/jkkap/AppData/Roaming/TinyTeX/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.
))
\g__um_fam_int=\count288
\g__um_fonts_used_int=\count289
\l__um_primecount_int=\count290
\g__um_primekern_muskip=\muskip17
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/unicode-math/unico
de-math-table.tex)))
Package fontspec Info: Source Code Pro scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro/B scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro/I scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro/BI scale = 0.8979127327751181.
Package fontspec Info: Font family 'SourceCodePro(0)' created for font 'Source
(fontspec) Code Pro' with options
(fontspec) [Scale=MatchLowercase,WordSpace={1,0,0},HyphenChar=None,
PunctuationSpace=WordSpace,Scale=0.7].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[0.7]"Source
(fontspec) Code Pro/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*[0.7]"Source Code
(fontspec) Pro/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*[0.7]"Source
(fontspec) Code Pro/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*[0.7]"Source Code
(fontspec) Pro/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:
Package fontspec Info: Source Code Pro scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro/B scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro/I scale = 0.8979127327751181.
Package fontspec Info: Source Code Pro/BI scale = 0.8979127327751181.
Package fontspec Info: Font family 'SourceCodePro(1)' created for font 'Source
(fontspec) Code Pro' with options
(fontspec) [Scale=MatchLowercase,Scale=0.7].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[0.7]"Source
(fontspec) Code Pro/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[0.7]"Source Code
(fontspec) Pro/B/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
(fontspec) - 'italic' (m/it) with NFSS spec.: <->s*[0.7]"Source
(fontspec) Code Pro/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*[0.7]"Source Code
(fontspec) Pro/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/lmtt/m/n --> TU/SourceCodePro(1)/m/n on input line
20.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/lmtt/m/n --> TU/SourceCodePro(1)/bx/n on input line
20.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtyp
e.sty
Package: microtype 2021/12/10 v3.0b Micro-typographical refinements (RS)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/keyval.st
y
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks21
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/etoolbox/etoolbox.
sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count291
)
\MT@toks=\toks22
\MT@count=\count292
\MT@tempbox=\box78
LaTeX Info: Redefining \leftprotrusion on input line 1010.
LaTeX Info: Redefining \rightprotrusion on input line 1018.
LaTeX Info: Redefining \textls on input line 1173.
\MT@outer@kern=\dimen173
LaTeX Info: Redefining \textmicrotypecontext on input line 1759.
\MT@listname@count=\count293
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtyp
e-xetex.def
File: microtype-xetex.def 2021/12/10 v3.0b Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 234.
)
Package microtype Info: Loading configuration file microtype.cfg.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/microtyp
e.cfg
File: microtype.cfg 2021/12/10 v3.0b microtype main configuration file (RS)
)) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/xcolor.s
ty
Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/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 227.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-def/xetex
.def
File: xetex.def 2021/03/18 v5.0k Graphics/color driver for xetex
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352.
Package xcolor Info: Model `RGB' extended on input line 1368.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/dvipsnam.
def
File: dvipsnam.def 2016/06/17 v3.0m Driver-dependent file (DPC,SPQR)
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/svgnam.de
f
File: svgnam.def 2021/10/31 v2.13 Predefined colors according to SVG 1.1 (UK)
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/xcolor/x11nam.de
f
File: x11nam.def 2021/10/31 v2.13 Predefined colors according to Unix/X11 (UK)
))
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/fancyvrb/fancyvrb.
sty
Package: fancyvrb 2021/12/21 4.1b verbatim text (tvz,hv)
\FV@CodeLineNo=\count294
\FV@InFile=\read2
\FV@TabBox=\box79
\c@FancyVerbLine=\count295
\FV@StepNumber=\count296
\FV@OutFile=\write3
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/framed/framed.st
y
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip80
\fb@frw=\dimen174
\fb@frh=\dimen175
\FrameRule=\dimen176
\FrameSep=\dimen177
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/longtable.st
y
Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC)
\LTleft=\skip81
\LTright=\skip82
\LTpre=\skip83
\LTpost=\skip84
\LTchunksize=\count297
\LTcapwidth=\dimen178
\LT@head=\box80
\LT@firsthead=\box81
\LT@foot=\box82
\LT@lastfoot=\box83
\LT@gbox=\box84
\LT@cols=\count298
\LT@rows=\count299
\c@LT@tables=\count300
\c@LT@chunks=\count301
\LT@p@ftn=\toks23
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/booktabs/booktabs.
sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen179
\lightrulewidth=\dimen180
\cmidrulewidth=\dimen181
\belowrulesep=\dimen182
\belowbottomsep=\dimen183
\aboverulesep=\dimen184
\abovetopsep=\dimen185
\cmidrulesep=\dimen186
\cmidrulekern=\dimen187
\defaultaddspace=\dimen188
\@cmidla=\count302
\@cmidlb=\count303
\@aboverulesep=\dimen189
\@belowrulesep=\dimen190
\@thisruleclass=\count304
\@lastruleclass=\count305
\@thisrulewidth=\dimen191
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/array.sty
Package: array 2021/10/04 v2.5f Tabular extension package (FMi)
\col@sep=\dimen192
\ar@mcellbox=\box85
\extrarowheight=\dimen193
\NC@list=\toks24
\extratabsurround=\skip85
\backup@length=\skip86
\ar@cellbox=\box86
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count306
\calc@Bcount=\count307
\calc@Adimen=\dimen194
\calc@Bdimen=\dimen195
\calc@Askip=\skip87
\calc@Bskip=\skip88
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count308
\calc@Cskip=\skip89
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/mdwtools/footnote.
sty
Package: footnote 1997/01/28 1.13 Save footnotes around boxes
\fn@notes=\box87
\fn@width=\dimen196
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphicx.
sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/graphics.
sty
Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/graphics-cfg/graph
ics.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=\dimen197
\Gin@req@width=\dimen198
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/makeidx.sty
Package: makeidx 2021/10/04 v1.0m Standard LaTeX package
)
\@indexfile=\write4
\openout4 = `crimebythenumbers.idx'.
Writing index file crimebythenumbers.idx
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperref.
sty
Package: hyperref 2021-06-07 v7.00m Hypertext links for LaTeX
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/ltxcmds/ltxcmds.
sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdftexcmds/pdfte
xcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/infwarerr/infwar
err.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.
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvsetkeys/kvsetk
eys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/kvdefinekeys/kvd
efinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/pdfescape/pdfesc
ape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hycolor/hycolor.st
y
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/letltxmacro/letltx
macro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/auxhook/auxhook.st
y
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/kvoptions/kvoption
s.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
)
\@linkdim=\dimen199
\Hy@linkcounter=\count309
\Hy@pagecounter=\count310
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/pd1enc.de
f
File: pd1enc.def 2021-06-07 v7.00m Hyperref: PDFDocEncoding definition (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hyperref-
langpatches.def
File: hyperref-langpatches.def 2021-06-07 v7.00m Hyperref: patches for babel la
nguages
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/intcalc/intcalc.
sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/etexcmds/etexcmd
s.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count311
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2021-06-07 v7.00m Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Option `unicode' set `true' on input line 4073.
Package hyperref Info: Hyper figures OFF on input line 4192.
Package hyperref Info: Link nesting OFF on input line 4197.
Package hyperref Info: Hyper index ON on input line 4200.
Package hyperref Info: Plain pages OFF on input line 4207.
Package hyperref Info: Backreferencing OFF on input line 4212.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4445.
\c@Hy@tempcnt=\count312
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip18
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4804.
\XeTeXLinkMargin=\dimen256
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bitset/bitset.st
y
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/bigintcalc/bigin
tcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count313
\Field@Width=\dimen257
\Fld@charsize=\dimen258
Package hyperref Info: Hyper figures OFF on input line 6076.
Package hyperref Info: Link nesting OFF on input line 6081.
Package hyperref Info: Hyper index ON on input line 6084.
Package hyperref Info: backreferencing OFF on input line 6091.
Package hyperref Info: Link coloring OFF on input line 6096.
Package hyperref Info: Link coloring with OCG OFF on input line 6101.
Package hyperref Info: PDF/A mode OFF on input line 6106.
LaTeX Info: Redefining \ref on input line 6146.
LaTeX Info: Redefining \pageref on input line 6150.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/atbegshi-ltx.
sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count314
\c@Item=\count315
\c@Hfootnote=\count316
)
Package hyperref Info: Driver (autodetected): hxetex.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/hxetex.de
f
File: hxetex.def 2021-06-07 v7.00m Hyperref driver for XeTeX
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/stringenc/string
enc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box88
\c@Hy@AnnotLevel=\count317
\HyField@AnnotCount=\count318
\Fld@listcount=\count319
\c@bookmark@seq@number=\count320
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/rerunfilecheck/rer
unfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/atveryend-ltx
.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/uniquecounter/un
iquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip90
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption.st
y
Package: caption 2020/10/26 v3.5g Customizing captions (AR)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/caption3.s
ty
Package: caption3 2020/10/21 v2.2e caption3 kernel (AR)
\captionmargin=\dimen259
\captionmargin@=\dimen260
\captionwidth=\dimen261
\caption@tempdima=\dimen262
\caption@indent=\dimen263
\caption@parindent=\dimen264
\caption@hangindent=\dimen265
Package caption Info: Unknown document class (or package),
(caption) standard defaults will be used.
Package caption Info: \@makecaption = \long macro:#1#2->\vskip \abovecaptionski
p \sbox \@tempboxa {#1: #2}\ifdim \wd \@tempboxa >\hsize {\FigCapFont #1} #2\pa
r \else \global \@minipagefalse {\FigCapFont #1} #2\par \fi \vskip \belowcaptio
nskip on input line 1139.
)
Package caption Warning: Unknown document class (or package),
(caption) standard defaults will be used.
See the caption package documentation for explanation.
\c@caption@flags=\count321
\c@continuedfloat=\count322
Package caption Info: hyperref package is loaded.
Package caption Info: longtable package is loaded.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/caption/ltcaption.
sty
Package: ltcaption 2020/05/30 v1.4b longtable captions (AR)
))
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/emptypage/emptypag
e.sty
Package: emptypage 2010/05/30 v1.2 Suppress page numbers and headings on empty
pages
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+lmr on input line 11
2.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/lm/t1lmr.fd
File: t1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
))
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/listings/listings.
sty
\lst@mode=\count323
\lst@gtempboxa=\box89
\lst@token=\toks25
\lst@length=\count324
\lst@currlwidth=\dimen266
\lst@column=\count325
\lst@pos=\count326
\lst@lostspace=\dimen267
\lst@width=\dimen268
\lst@newlines=\count327
\lst@lineno=\count328
\lst@maxwidth=\dimen269
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/listings/lstmisc.s
ty
File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz)
\c@lstnumber=\count329
\lst@skipnumbers=\count330
\lst@framebox=\box90
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/listings/listings.
cfg
File: listings.cfg 2020/03/24 1.8d listings configuration
))
Package: listings 2020/03/24 1.8d (Carsten Heinz)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count331
\float@exts=\toks26
\float@box=\box91
\@float@everytoks=\toks27
\@floatcapt=\box92
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/amscls/amsthm.st
y
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=\skip91
\thm@postskip=\skip92
\thm@headsep=\skip93
\dth@everypar=\toks33
) (c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/natbib/natbib.st
y
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip94
\bibsep=\skip95
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count332
)
Package hyperref Info: Option `colorlinks' set `true' on input line 209.
(./crimebythenumbers.aux)
\openout1 = `crimebythenumbers.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 215.
LaTeX Font Info: ... okay on input line 215.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
(Font) OT1/lmr/m/n --> TU/lmr/m/n on input line 215.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/lmr/m/it --> TU/lmr/m/it on input line 215.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/lmr/bx/n --> TU/lmr/bx/n on input line 215.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/lmss/m/n --> TU/lmss/m/n on input line 215.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/lmss/bx/n --> TU/lmss/bx/n on input line 215.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: 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.9989520677190833]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->s*[0.9989520677190833]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
LaTeX Font Info: Trying to load font information for T1+latinmodern-math.otf
(0) on input line 215.
LaTeX Font Info: No file T1latinmodern-math.otf(0).fd. on input line 215.
LaTeX Font Warning: Font shape `T1/latinmodern-math.otf(0)/m/n' undefined
(Font) using `T1/cmr/m/n' instead on input line 215.
Package unicode-math Warning: The first font loaded by unicode-math must be an
(unicode-math) OpenType Math font (with script=math). If you
(unicode-math) simply want ‘the default’ before loading
(unicode-math) supplementary fonts over the top for certain
(unicode-math) ranges, use:
(unicode-math) \setmathfont{latinmodern-math.otf}
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: latinmodern-math scale = 0.9989520677190833.
Package fontspec Info: 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=0-},{Size=0-0,Font=latinmodern-m
ath.otf,Style=MathScript},{Size=-0,Font=latinmodern-math.otf,Style=MathScriptSc
ript}},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) <0->s*[0.9989520677190833]"[latinmodern-math.otf]/OT:scr
ipt=math;language=dflt;"<0-0>s*[0.9989520677190833]"[latinmodern-math.otf]/OT:s
cript=math;language=dflt;+ssty=0;"<-0>s*[0.9989520677190833]"[latinmodern-math.
otf]/OT:script=math;language=dflt;+ssty=1;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(fontspec) - 'bold' (b/n) with NFSS spec.:
(fontspec) <->s*[0.9989520677190833]"[latinmodern-math.otf]/OT:scri
pt=math;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.:
LaTeX Font Info: Trying to load font information for T1+latinmodern-math.otf
(1) on input line 215.
LaTeX Font Info: No file T1latinmodern-math.otf(1).fd. on input line 215.
LaTeX Font Warning: Font shape `T1/latinmodern-math.otf(1)/m/n' undefined
(Font) using `T1/cmr/m/n' instead on input line 215.
LaTeX Font Info: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `normal' on input line 215.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/lmr/m/n --> T1/latinmodern-math.otf(1)/m/n on input
line 215.
LaTeX Font Info: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `bold' on input line 215.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/lmr/bx/n --> T1/latinmodern-math.otf(1)/b/n on inpu
t line 215.
LaTeX Info: Redefining \microtypecontext on input line 215.
Package microtype Info: Applying patch `item' on input line 215.
Package microtype Info: Applying patch `toc' on input line 215.
Package microtype Info: Applying patch `eqnum' on input line 215.
Package microtype Info: Applying patch `footnote' on input line 215.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using protrusion set `basicmath'.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of spacing.
Package microtype Info: No adjustment of kerning.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/microtype/mt-Latin
ModernRoman.cfg
File: mt-LatinModernRoman.cfg 2021/02/21 v1.1 microtype config. file: Latin Mod
ern Roman (RS)
)
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `lmr' (encoding: T1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
Package hyperref Info: Link coloring ON on input line 215.
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/hyperref/nameref.s
ty
Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/latex/refcount/refcount.
sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(c:/Users/jkkap/AppData/Roaming/TinyTeX/texmf-dist/tex/generic/gettitlestring/g
ettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count333
)
LaTeX Info: Redefining \ref on input line 215.
LaTeX Info: Redefining \pageref on input line 215.
LaTeX Info: Redefining \nameref on input line 215.
(./crimebythenumbers.out) (./crimebythenumbers.out)
\@outlinefile=\write5
\openout5 = `crimebythenumbers.out'.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: float package is loaded.