-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV.log
1207 lines (1113 loc) · 50.8 KB
/
CV.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 LuaHBTeX, Version 1.15.0 (TeX Live 2022/Debian) (format=lualatex 2024.2.25) 2 OCT 2024 20:07
restricted system commands enabled.
**CV.tex
(./CV.tex
LaTeX2e <2022-11-01> patch level 1
Lua module: luaotfload 2022-10-03 3.23 Lua based OpenType font support
Lua module: lualibs 2022-10-04 2.75 ConTeXt Lua standard libraries.
Lua module: lualibs-extended 2022-10-04 2.75 ConTeXt Lua libraries -- extended c
ollection.
luaotfload | conf : Root cache directory is "/home/corey/.texlive2022/texmf-var/
luatex-cache/generic/names".
luaotfload | init : Loading fontloader "fontloader-2022-10-03.lua" from kpse-res
olved path "/usr/share/texlive/texmf-dist/tex/luatex/luaotfload/fontloader-2022-
10-03.lua".
Lua-only attribute luaotfload@noligature = 1
luaotfload | init : Context OpenType loader version 3.120
Inserting `luaotfload.node_processor' in `pre_linebreak_filter'.
Inserting `luaotfload.node_processor' in `hpack_filter'.
Inserting `luaotfload.glyph_stream' in `glyph_stream_provider'.
Inserting `luaotfload.define_font' in `define_font'.
Lua-only attribute luaotfload_color_attribute = 2
luaotfload | conf : Root cache directory is "/home/corey/.texlive2022/texmf-var/
luatex-cache/generic/names".
Inserting `luaotfload.harf.strip_prefix' in `find_opentype_file'.
Inserting `luaotfload.harf.strip_prefix' in `find_truetype_file'.
Removing `luaotfload.glyph_stream' from `glyph_stream_provider'.
Inserting `luaotfload.harf.glyphstream' in `glyph_stream_provider'.
Inserting `luaotfload.harf.finalize_vlist' in `post_linebreak_filter'.
Inserting `luaotfload.harf.finalize_hlist' in `hpack_filter'.
Inserting `luaotfload.cleanup_files' in `wrapup_run'.
Inserting `luaotfload.harf.finalize_unicode' in `finish_pdffile'.
Inserting `luaotfload.glyphinfo' in `glyph_info'.
Lua-only attribute luaotfload.letterspace_done = 3
Inserting `luaotfload.aux.set_sscale_dimens' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.set_font_index' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.patch_cambria_domh' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.fixup_fontdata' in `luaotfload.patch_font_unsafe'.
Inserting `luaotfload.aux.set_capheight' in `luaotfload.patch_font'.
Inserting `luaotfload.aux.set_xheight' in `luaotfload.patch_font'.
Inserting `luaotfload.rewrite_fontname' in `luaotfload.patch_font'. L3 programm
ing layer <2023-01-16>
Inserting `tracingstacklevels' in `input_level_string'.
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2022/07/02 v1.4n Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size12.clo
File: size12.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
luaotfload | db : Font names database loaded from /home/corey/.texlive2022/texmf
-var/luatex-cache/generic/names/luaotfload-names.luc.gz)
\c@part=\count183
\c@section=\count184
\c@subsection=\count185
\c@subsubsection=\count186
\c@paragraph=\count187
\c@subparagraph=\count188
\c@figure=\count189
\c@table=\count190
\abovecaptionskip=\skip48
\belowcaptionskip=\skip49
\bibindent=\dimen139
)
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2022/12/26 3.84 The Babel package
(/usr/share/texlive/texmf-dist/tex/generic/babel/luababel.def
\bbl@readstream=\read2
\l@dumylang=\language2
Package babel Info: Non-standard hyphenation setup on input line 118.
\l@nohyphenation=\language3
\l@mongolianlmc=\language4
\l@welsh=\language5
\l@serbian=\language6
\l@macedonian=\language7
\l@schoolfinnish=\language8
\l@bulgarian=\language9
\l@romansh=\language10
\l@spanish=\language11
\l@occitan=\language12
\l@swedish=\language13
\l@portuguese=\language14
\l@french=\language15
\l@latin=\language16
\l@icelandic=\language17
\l@hungarian=\language18
\l@serbianc=\language19
\l@ethiopic=\language20
\l@georgian=\language21
\l@finnish=\language22
\l@german=\language23
\l@telugu=\language24
\l@kurmanji=\language25
\l@marathi=\language26
\l@thai=\language27
\l@interlingua=\language28
\l@oriya=\language29
\l@usenglishmax=\language30
\l@galician=\language31
\l@german-x-2022-03-16=\language32
\l@uppersorbian=\language33
\l@classiclatin=\language34
\l@catalan=\language35
\l@gujarati=\language36
\l@slovak=\language37
\l@pali=\language38
\l@hindi=\language39
\l@pinyin=\language40
\l@ibycus=\language41
\l@panjabi=\language42
\l@liturgicallatin=\language43
\l@latvian=\language44
\l@turkish=\language45
\l@dutch=\language46
\l@bokmal=\language47
\l@czech=\language48
\l@friulan=\language49
\l@indonesian=\language50
\l@arabic=\language51
\l@malayalam=\language52
\l@kannada=\language53
\l@nynorsk=\language54
\l@swissgerman=\language55
\l@bengali=\language56
\l@churchslavonic=\language57
\l@basque=\language58
\l@romanian=\language59
\l@sanskrit=\language60
\l@slovenian=\language61
\l@danish=\language62
\l@piedmontese=\language63
\l@belarusian=\language64
\l@turkmen=\language65
\l@irish=\language66
\l@coptic=\language67
\l@ancientgreek=\language68
\l@russian=\language69
\l@croatian=\language70
\l@ukenglish=\language71
\l@esperanto=\language72
\l@estonian=\language73
\l@ngerman-x-2022-03-16=\language74
\l@monogreek=\language75
\l@assamese=\language76
\l@armenian=\language77
\l@farsi=\language78
\l@tamil=\language79
\l@lithuanian=\language80
\l@afrikaans=\language81
\l@ngerman=\language82
\l@mongolian=\language83
\l@polish=\language84
\l@ukrainian=\language85
\l@greek=\language86
\l@italian=\language87
\babelcatcodetablenum=\catcodetable12
\bbl@pattcodes=\catcodetable13
)
\babel@savecnt=\count191
\U@D=\dimen140
\l@unhyphenated=\language88
(/usr/share/texlive/texmf-dist/tex/generic/babel/luababel.def
\bbl@attr@locale=\attribute4
)
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/USenglish.ldf
Language: USenglish 2017/06/06 v3.3r English support from the babel system
(/usr/share/texlive/texmf-dist/tex/generic/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) (\language71). Reported on input line 105.
Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
(babel) (\language71). Reported on input line 108.
)))
(/usr/share/texlive/texmf-dist/tex/generic/babel/locale/en/babel-usenglish.tex
Package babel Info: Importing font and identification data for USenglish
(babel) from babel-en-US.ini. Reported on input line 11.
) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome/fontawesome.sty
Package: fontawesome 2016/05/15 v4.6.3.1 font awesome icons
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifxetex.sty
Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifluatex.sty
Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
)
(/usr/share/texlive/texmf-dist/tex/latex/fontawesome/fontawesomesymbols-generic
.tex) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2023-01-16 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-luatex.def
File: l3backend-luatex.def 2023-01-16 L3 backend support: PDF output (LuaTeX)
\l__color_backend_stack_int=\count192
\l__pdf_internal_box=\box51
))
Package: xparse 2023-01-16 L3 Experimental document command parser
)
Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
Lua module: fontspec 2022/01/15 2.8a Font selection for XeLaTeX and LuaLaTeX
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-luatex.sty
Package: fontspec-luatex 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaT
eX
\l__fontspec_script_int=\count193
\l__fontspec_language_int=\count194
\l__fontspec_strnum_int=\count195
\l__fontspec_tmp_int=\count196
\l__fontspec_tmpa_int=\count197
\l__fontspec_tmpb_int=\count198
\l__fontspec_tmpc_int=\count199
\l__fontspec_em_int=\count266
\l__fontspec_emdef_int=\count267
\l__fontspec_strong_int=\count268
\l__fontspec_strongdef_int=\count269
\l__fontspec_tmpa_dim=\dimen141
\l__fontspec_tmpb_dim=\dimen142
\l__fontspec_tmpc_dim=\dimen143
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
luaotfload | cache : Lookup cache loaded from /home/corey/.texlive2022/texmf-var
/luatex-cache/generic/names/luaotfload-lookup-cache.luc.
luaotfload | aux : font no 18 (nil) defines no feature for script latn
luaotfload | aux : font no 18 (nil) defines no feature for script dflt
Package fontspec Info: Could not resolve font "FontAwesome/BI" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Could not resolve font "FontAwesome/B" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Could not resolve font "FontAwesome/I" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Font family 'FontAwesome(0)' created for font
(fontspec) 'FontAwesome' with options [].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.:
(fontspec) <->"FontAwesome:mode=node;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.:
(/usr/share/texlive/texmf-dist/tex/latex/fontawesome/fontawesomesymbols-xeluate
x.tex)) (/usr/share/texlive/texmf-dist/tex/latex/etbb/ETbb.sty
Package: ETbb 2022/02/04 v1.052. Style file for ETbb.
(/usr/share/texlive/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.
(/usr/share/texmf/tex/latex/lm/t1lmr.fd
File: t1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern
))
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
LaTeX Font Info: Changing ? sub-encoding to TS1/0 on input line 78.
)
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifetex.sty
Package: ifetex 2019/10/25 v1.3 ifetex legacy package. Use iftex instead.
)
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count270
)
(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty
(/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex
\integerpart=\count271
\decimalpart=\count272
)
Package: xstring 2023/01/14 v1.85 String manipulations (CT)
)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty)
(/usr/share/texlive/texmf-dist/tex/latex/fontaxes/fontaxes.sty
Package: fontaxes 2020/07/21 v1.0e Font selection axes
LaTeX Info: Redefining \upshape on input line 29.
LaTeX Info: Redefining \itshape on input line 31.
LaTeX Info: Redefining \slshape on input line 33.
LaTeX Info: Redefining \swshape on input line 35.
LaTeX Info: Redefining \scshape on input line 37.
LaTeX Info: Redefining \sscshape on input line 39.
LaTeX Info: Redefining \ulcshape on input line 41.
LaTeX Info: Redefining \textsw on input line 47.
LaTeX Info: Redefining \textssc on input line 48.
LaTeX Info: Redefining \textulc on input line 49.
)
LaTeX Info: Redefining \swshape on input line 47.
(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks16
\XKV@tempa@toks=\toks17
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex))
\XKV@depth=\count273
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
)))
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count274
\Gm@cntv=\count275
\c@Gm@tempcnt=\count276
\Gm@bindingoffset=\dimen144
\Gm@wd@mp=\dimen145
\Gm@odd@mp=\dimen146
\Gm@even@mp=\dimen147
\Gm@layoutwidth=\dimen148
\Gm@layoutheight=\dimen149
\Gm@layouthoffset=\dimen150
\Gm@layoutvoffset=\dimen151
\Gm@dimlist=\toks18
)
(/usr/share/texlive/texmf-dist/tex/latex/marginnote/marginnote.sty
Package: marginnote 2018/08/09 v1.4b non floating margin notes for LaTeX
\c@mn@abspage=\count277
)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrextend.sty
Package: scrextend 2022/10/12 v3.38 KOMA-Script package (extend other classes w
ith features of KOMA-Script classes)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrkbase.sty
Package: scrkbase 2022/10/12 v3.38 KOMA-Script package (KOMA-Script-dependent b
asics and keyval usage)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbase.sty
Package: scrbase 2022/10/12 v3.38 KOMA-Script package (KOMA-Script-independent
basics and keyval usage)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty
Package: scrlfile 2022/10/12 v3.38 KOMA-Script package (file load hooks)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
Package: scrlfile-hook 2022/10/12 v3.38 KOMA-Script package (using LaTeX hooks)
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlogo.sty
Package: scrlogo 2022/10/12 v3.38 KOMA-Script package (logo)
)))
Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
Already applied: [0000/00/00] Usage of raw or classic option list on input line
368.
)))
(/usr/share/texlive/texmf-dist/tex/latex/sectsty/sectsty.sty
Package: sectsty 2002/02/25 v2.0.2 Commands to change all sectional heading sty
les
LaTeX Warning: Command \underbar has changed.
Check if current package is valid.
LaTeX Warning: Command \underline has changed.
Check if current package is valid.
) (/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty
Package: microtype 2022/06/23 v3.0f Micro-typographical refinements (RS)
\MT@toks=\toks19
\MT@tempbox=\box52
\MT@count=\count278
LaTeX Info: Redefining \noprotrusionifhmode on input line 1045.
LaTeX Info: Redefining \leftprotrusion on input line 1046.
LaTeX Info: Redefining \rightprotrusion on input line 1056.
LaTeX Info: Redefining \textls on input line 1234.
\MT@outer@kern=\dimen152
LaTeX Info: Redefining \textmicrotypecontext on input line 1858.
\MT@listname@count=\count279
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-luatex.def
File: microtype-luatex.def 2022/06/23 v3.0f Definitions specific to luatex (RS)
Lua module: microtype 2022/06/23 3.0f microtype module.
Module microtype Info: overwriting function `keepligature' on input line 63
LaTeX Info: Redefining \lsstyle on input line 686.
LaTeX Info: Redefining \lslig on input line 686.
\MT@outer@space=\skip50
)
Package microtype Info: Loading configuration file microtype.cfg.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg
File: microtype.cfg 2022/06/23 v3.0f microtype main configuration file (RS)
))
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
Package: color 2022/01/06 v1.3d Standard LaTeX Color (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: luatex.def on input line 149.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/luatex.def
File: luatex.def 2022/09/22 v1.2d Graphics/color driver for luatex
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/dvipsnam.def
File: dvipsnam.def 2016/06/17 v3.0m Driver-dependent file (DPC,SPQR)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx))
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2022-11-13 v7.00u Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/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 found.
\pdftexcmds@toks=\toks20
)
(/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count280
)
\@linkdim=\dimen153
\Hy@linkcounter=\count281
\Hy@pagecounter=\count282
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2022-11-13 v7.00u Hyperref: PDFDocEncoding definition (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count283
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2022-11-13 v7.00u Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Option `bookmarks' set `true' on input line 4045.
Package hyperref Info: Option `colorlinks' set `true' on input line 4045.
Package hyperref Info: Option `breaklinks' set `true' on input line 4045.
Package hyperref Info: Hyper figures OFF on input line 4162.
Package hyperref Info: Link nesting OFF on input line 4167.
Package hyperref Info: Hyper index ON on input line 4170.
Package hyperref Info: Plain pages OFF on input line 4177.
Package hyperref Info: Backreferencing OFF on input line 4182.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4410.
\c@Hy@tempcnt=\count284
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4748.
\XeTeXLinkMargin=\dimen154
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count285
\Field@Width=\dimen155
\Fld@charsize=\dimen156
Package hyperref Info: Hyper figures OFF on input line 6027.
Package hyperref Info: Link nesting OFF on input line 6032.
Package hyperref Info: Hyper index ON on input line 6035.
Package hyperref Info: backreferencing OFF on input line 6042.
Package hyperref Info: Link coloring ON on input line 6045.
Package hyperref Info: Link coloring with OCG OFF on input line 6052.
Package hyperref Info: PDF/A mode OFF on input line 6057.
(/usr/share/texlive/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=\count286
\c@Item=\count287
\c@Hfootnote=\count288
)
Package hyperref Info: Driver (autodetected): hluatex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hluatex.def
File: hluatex.def 2022-11-13 v7.00u Hyperref driver for luaTeX
(/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
(/usr/share/texlive/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
)
\Fld@listcount=\count289
\c@bookmark@seq@number=\count290
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(/usr/share/texlive/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
85.
)
\Hy@SectionHShift=\skip51
)
(/usr/share/texlive/texmf-dist/tex/latex/datetime2/datetime2.sty
Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats
(/usr/share/texlive/texmf-dist/tex/latex/tracklang/tracklang.sty
Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages
(/usr/share/texlive/texmf-dist/tex/generic/tracklang/tracklang.tex))
(/usr/share/texlive/texmf-dist/tex/latex/datetime2-english/datetime2-en-US.ldf
File: datetime2-en-US.ldf 2019/10/21 v1.05 (NLCT)
(/usr/share/texlive/texmf-dist/tex/latex/datetime2-english/datetime2-english-ba
se.ldf
File: datetime2-english-base.ldf 2019/10/21 v1.05 (NLCT)
))) (/usr/share/texlive/texmf-dist/tex/latex/nowidow/nowidow.sty
Package: nowidow 2011/09/20 1.0 Easily prevent widows and orphans
Package: nowidow
)
LaTeX Font Info: Trying to load font information for T1+ETbb-OsF on input li
ne 155.
(/usr/share/texlive/texmf-dist/tex/latex/etbb/T1ETbb-OsF.fd
File: T1ETbb-OsF.fd 2020/02/15 Font definitions for T1/ETbb-OsF.
)
LaTeX Font Info: Font shape `T1/ETbb-OsF/m/n' aliased to
(Font) `T1/ETbb-OsF/regular/n' on input line 155.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 12.0pt on input line 155.
(./CV.aux)
\openout1 = CV.aux
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 155.
LaTeX Font Info: Trying to load font information for TS1+cmr on input line 1
55.
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 2022/07/10 v2.5l Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 155.
LaTeX Font Info: ... okay on input line 155.
Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup4
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 155.
LaTeX Font Info: Redeclaring math accent \acute on input line 155.
LaTeX Font Info: Redeclaring math accent \grave on input line 155.
LaTeX Font Info: Redeclaring math accent \ddot on input line 155.
LaTeX Font Info: Redeclaring math accent \tilde on input line 155.
LaTeX Font Info: Redeclaring math accent \bar on input line 155.
LaTeX Font Info: Redeclaring math accent \breve on input line 155.
LaTeX Font Info: Redeclaring math accent \check on input line 155.
LaTeX Font Info: Redeclaring math accent \hat on input line 155.
LaTeX Font Info: Redeclaring math accent \dot on input line 155.
LaTeX Font Info: Redeclaring math accent \mathring on input line 155.
LaTeX Font Info: Redeclaring math symbol \colon on input line 155.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 155.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 155.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 155.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 155.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 155.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 155.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 155.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 155.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 155.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 155.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 155.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 155.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 155.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 155.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/ETbb-OsF/m/n on input line 155.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 155.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/ETbb-OsF/m/n on input line 155.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/ETbb-OsF/m/n --> TU/ETbb-OsF/m/n on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/ETbb-OsF/m/it on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/ETbb-OsF/b/n on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 155.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/ETbb-OsF/m/n --> TU/ETbb-OsF/b/n on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/ETbb-OsF/b/it on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 155.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 155.
\c@mv@tabular=\count291
\c@mv@boldtabular=\count292
LaTeX Font Info: Trying to load font information for OT1+ETbb-OsF on input l
ine 155.
(/usr/share/texlive/texmf-dist/tex/latex/etbb/OT1ETbb-OsF.fd
File: OT1ETbb-OsF.fd 2020/02/15 Font definitions for OT1/ETbb-OsF.
)
LaTeX Font Info: Font shape `OT1/ETbb-OsF/regular/n' will be
(Font) scaled to size 12.0pt on input line 155.
*geometry* driver: auto-detecting
*geometry* detected driver: luatex
*geometry* verbose mode - [ preamble ] result:
* driver: luatex
* paper: letterpaper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(107.97821pt, 398.33858pt, 107.97821pt)
* v-part:(T,H,B)=(33.46042pt, 711.3189pt, 50.19067pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=398.33858pt
* \textheight=711.3189pt
* \oddsidemargin=35.70822pt
* \evensidemargin=35.70822pt
* \topmargin=-75.80957pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=12.0pt
* \footskip=30.0pt
* \marginparwidth=71.13188pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=56.9055pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
LaTeX Info: Redefining \microtypecontext on input line 155.
Package microtype Info: Applying patch `item' on input line 155.
Package microtype Info: Applying patch `toc' on input line 155.
Package microtype Info: Applying patch `eqnum' on input line 155.
Package microtype Info: Applying patch `footnote' on input line 155.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: Automatic font expansion enabled (level 2),
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
Package microtype Info: Using default expansion set `alltext-nott'.
LaTeX Info: Redefining \showhyphens on input line 155.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of spacing.
Package microtype Info: No adjustment of kerning.
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `ETbb-OsF' (encoding: T1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count293
\scratchdimen=\dimen157
\scratchbox=\box53
\nofMPsegments=\count294
\nofMParguments=\count295
\everyMPshowfont=\toks21
\MPscratchCnt=\count296
\MPscratchDim=\dimen158
\MPnumerator=\count297
\makeMPintoPDFobject=\count298
\everyMPtoPDFconversion=\toks22
)
Package hyperref Info: Link coloring ON on input line 155.
(./CV.out) (./CV.out)
\@outlinefile=\write3
\openout3 = CV.out
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 24.88pt on input line 158.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/sc' will be
(Font) scaled to size 24.88pt on input line 158.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/it' will be
(Font) scaled to size 12.0pt on input line 160.
LaTeX Font Info: Trying to load font information for TU+ETbb-OsF on input li
ne 161.
LaTeX Font Info: No file TUETbb-OsF.fd. on input line 161.
LaTeX Font Warning: Font shape `TU/ETbb-OsF/m/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 161.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.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) `ETbb-OsF' (encoding: TU).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <12> on input line 161.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 161.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 161.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-cmr.cfg
File: mt-cmr.cfg 2013/05/19 v2.2 microtype config. file: Computer Modern Roman
(RS)
)
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 8.0pt on input line 161.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 10.0pt on input line 161.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 161.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 161.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 7.0pt on input line 161.
LaTeX Font Info: Font shape `T1/ETbb-OsF/bold/n' will be
(Font) scaled to size 12.0pt on input line 168.
LaTeX Font Warning: Font shape `TU/FontAwesome(0)/regular/n' undefined
(Font) using `TU/FontAwesome(0)/m/n' instead on input line 179.
(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-TU-empty.cfg
File: mt-TU-empty.cfg 2021/06/22 v1.1 microtype config. file: fonts with nonsta
ndard glyph set (RS)
)
Overfull \hbox (8.74066pt too wide) in paragraph at lines 185--192
| []
[]
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 17.28pt on input line 202.
LaTeX Font Info: Font shape `T1/ETbb-OsF/bold/n' will be
(Font) scaled to size 17.28pt on input line 202.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/sc' will be
(Font) scaled to size 17.28pt on input line 202.
Package marginnote Info: Margin note 1.1 is on absolute page 1 on input line 20
5.
Package marginnote Info: right page because not two side mode on input line 205
.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 10.95pt on input line 205.
Package marginnote Info: xpos seems to be 107.97821pt on input line 205.
Package marginnote Info: Margin note 1.2 is on absolute page 1 on input line 21
1.
Package marginnote Info: right page because not two side mode on input line 211
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 211.
Package marginnote Info: Margin note 1.3 is on absolute page 1 on input line 21
5.
Package marginnote Info: right page because not two side mode on input line 215
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 215.
Package marginnote Info: Margin note 1.4 is on absolute page 1 on input line 22
6.
Package marginnote Info: right page because not two side mode on input line 226
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 226.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/n' will be
(Font) scaled to size 14.4pt on input line 243.
LaTeX Font Info: Font shape `T1/ETbb-OsF/bold/n' will be
(Font) scaled to size 14.4pt on input line 243.
LaTeX Font Info: Font shape `T1/ETbb-OsF/regular/sc' will be
(Font) scaled to size 14.4pt on input line 243.
Package marginnote Info: Margin note 1.5 is on absolute page 1 on input line 24
5.
Package marginnote Info: right page because not two side mode on input line 245
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 245.
Package marginnote Info: Margin note 1.6 is on absolute page 2 on input line 25
1.
Package marginnote Info: right page because not two side mode on input line 251
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 251.
Overfull \hbox (10.23904pt too wide) in paragraph at lines 245--254
||[]\T1/ETbb-OsF/regular/n/12 ``Thomistic Max-imi-an-ism: A The-ol-ogy for Catho
lic and Or-tho-dox Re-communion,''
[]
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
Package marginnote Info: Margin note 2.1 is on absolute page 2 on input line 25
7.
Package marginnote Info: right page because not two side mode on input line 257
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 257.
Package marginnote Info: Margin note 2.2 is on absolute page 2 on input line 26
1.
Package marginnote Info: right page because not two side mode on input line 261
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 261.
Package marginnote Info: Margin note 2.3 is on absolute page 2 on input line 26
5.
Package marginnote Info: right page because not two side mode on input line 265
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 265.
Package marginnote Info: Margin note 2.4 is on absolute page 2 on input line 26
9.
Package marginnote Info: right page because not two side mode on input line 269
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 269.
Overfull \hbox (11.79759pt too wide) in paragraph at lines 257--272
||[][][]\T1/ETbb-OsF/regular/n/12 Kantzer Kom-line, Han-Luen. \T1/ETbb-OsF/regu
lar/it/12 Au-gus-tine on the Will: A The-o-log-i-cal Ac-count[][]\T1/ETbb-OsF/r
egular/n/12 . Thomistica,
[]
Package marginnote Info: Margin note 2.5 is on absolute page 2 on input line 27
5.
Package marginnote Info: right page because not two side mode on input line 275
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 275.
Package marginnote Info: Margin note 2.6 is on absolute page 2 on input line 27
8.
Package marginnote Info: right page because not two side mode on input line 278
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 278.
Package marginnote Info: Margin note 2.7 is on absolute page 2 on input line 28
2.
Package marginnote Info: right page because not two side mode on input line 282
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 282.
Package marginnote Info: Margin note 2.8 is on absolute page 2 on input line 28
6.
Package marginnote Info: right page because not two side mode on input line 286
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 286.
Package marginnote Info: Margin note 2.9 is on absolute page 2 on input line 29
4.
Package marginnote Info: right page because not two side mode on input line 294
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 294.
Package marginnote Info: Margin note 2.10 is on absolute page 2 on input line 2
97.
Package marginnote Info: right page because not two side mode on input line 297
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 297.
Package marginnote Info: Margin note 2.11 is on absolute page 2 on input line 3
00.
Package marginnote Info: right page because not two side mode on input line 300
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 300.
Package marginnote Info: Margin note 2.12 is on absolute page 2 on input line 3
04.
Package marginnote Info: right page because not two side mode on input line 304
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 304.
Package marginnote Info: Margin note 2.13 is on absolute page 2 on input line 3
08.
Package marginnote Info: right page because not two side mode on input line 308
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 308.
Package marginnote Info: Margin note 2.14 is on absolute page 2 on input line 3
12.
Package marginnote Info: right page because not two side mode on input line 312
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 312.
Package marginnote Info: Margin note 2.15 is on absolute page 2 on input line 3
16.
Package marginnote Info: right page because not two side mode on input line 316
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 316.
Package marginnote Info: Margin note 2.16 is on absolute page 2 on input line 3
20.
Package marginnote Info: right page because not two side mode on input line 320
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 320.
Package marginnote Info: Margin note 2.17 is on absolute page 3 on input line 3
24.
Package marginnote Info: right page because not two side mode on input line 324
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 324.
Package marginnote Info: Margin note 2.18 is on absolute page 3 on input line 3
28.
Package marginnote Info: right page because not two side mode on input line 328
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 328.
Package marginnote Info: Margin note 2.19 is on absolute page 3 on input line 3
32.
Package marginnote Info: right page because not two side mode on input line 332
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 332.
Package marginnote Info: Margin note 2.20 is on absolute page 3 on input line 3
35.
Package marginnote Info: right page because not two side mode on input line 335
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 335.
Underfull \hbox (badness 10000) in paragraph at lines 294--339
[]
[2
Missing character: There is no “ (U+201C) in font ETbb-Regular-osf-t1!
]
Package marginnote Info: Margin note 3.1 is on absolute page 3 on input line 34
7.
Package marginnote Info: right page because not two side mode on input line 347
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 347.
Package marginnote Info: Margin note 3.2 is on absolute page 3 on input line 35
2.
Package marginnote Info: right page because not two side mode on input line 352
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 352.
Package marginnote Info: Margin note 3.3 is on absolute page 3 on input line 35
7.
Package marginnote Info: right page because not two side mode on input line 357
.
Package marginnote Info: xpos seems to be 107.97821pt on input line 357.
Underfull \hbox (badness 10000) in paragraph at lines 347--361