-
Notifications
You must be signed in to change notification settings - Fork 0
/
_main.log
1349 lines (1191 loc) · 51.9 KB
/
_main.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.999994 (TeX Live 2022) (preloaded format=xelatex 2023.3.9) 17 APR 2023 09:17
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**"c:/Users/sminl/OneDrive - UCB-O365/G/Dissertation/_main.tex"
(c:/Users/sminl/OneDrive - UCB-O365/G/Dissertation/_main.tex
LaTeX2e <2022-11-01> patch level 1
L3 programming layer <2023-02-22> (./thesis.cls
Document Class: thesis 2020/08/06
--------------------------------------------------------------
+---+ Thesis Style (thesis.cls) version 1.14
+---+ for University of Colorado Ph.D. theses/dissertations.
* Conforms to the University of Colorado at Boulder Graduate
* School "SPECIFICATIONS for Preparation of Master's Thesis
* and Doctoral Dissertations" (rev. May 2020).
--------------------------------------------------------------
URL: http://www.colorado.edu/oit/software-hardware/tex-latex
(c:/texlive/2022/texmf-dist/tex/latex/base/report.cls
Document Class: report 2022/07/02 v1.4n Standard LaTeX document class
(c:/texlive/2022/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
)
\c@part=\count181
\c@chapter=\count182
\c@section=\count183
\c@subsection=\count184
\c@subsubsection=\count185
\c@paragraph=\count186
\c@subparagraph=\count187
\c@figure=\count188
\c@table=\count189
\abovecaptionskip=\skip48
\belowcaptionskip=\skip49
\bibindent=\dimen140
) (c:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
) (c:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
) (c:/texlive/2022/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box51
\UL@hyphenbox=\box52
\UL@skip=\skip50
\UL@hook=\toks16
\UL@height=\dimen141
\UL@pe=\count190
\UL@pixel=\dimen142
\ULC@box=\box53
Package: ulem 2019/11/18
\ULdepth=\dimen143
) (c:/texlive/2022/texmf-dist/tex/latex/natbib/natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip51
\bibsep=\skip52
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count191
)
\c@th@SecNum=\count192
\c@th@SectionSave=\count193
\th@SubSubSecSpc=\skip53
\c@th@storepage=\count194
) (c:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(c:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks17
\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:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
(c:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks18
) (c:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
(c:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
) (c:/texlive/2022/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 107.
(c:/texlive/2022/texmf-dist/tex/latex/graphics-def/xetex.def
File: xetex.def 2022/09/22 v5.0n Graphics/color driver for xetex
))
\Gin@req@height=\dimen144
\Gin@req@width=\dimen145
) (c:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen146
\lightrulewidth=\dimen147
\cmidrulewidth=\dimen148
\belowrulesep=\dimen149
\belowbottomsep=\dimen150
\aboverulesep=\dimen151
\abovetopsep=\dimen152
\cmidrulesep=\dimen153
\cmidrulekern=\dimen154
\defaultaddspace=\dimen155
\@cmidla=\count195
\@cmidlb=\count196
\@aboverulesep=\dimen156
\@belowrulesep=\dimen157
\@thisruleclass=\count197
\@lastruleclass=\count198
\@thisrulewidth=\dimen158
) (c:/texlive/2022/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
) (c:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2023-02-07 v7.00v Hypertext links for LaTeX
(c:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
) (c:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
) (c:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(c:/texlive/2022/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.
) (c:/texlive/2022/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
) (c:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (c:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
) (c:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (c:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
) (c:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
Package auxhook Warning: Cannot patch \document,
(auxhook) using \AtBeginDocument instead.
) (c:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2022-05-17 v2.50 Cross-referencing by name of section
(c:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
) (c:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(c:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count199
)
\@linkdim=\dimen159
\Hy@linkcounter=\count266
\Hy@pagecounter=\count267
(c:/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2023-02-07 v7.00v Hyperref: PDFDocEncoding definition (HO)
) (c:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
) (c:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count268
(c:/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2023-02-07 v7.00v Hyperref: PDF Unicode definition (HO)
)
Package hyperref Info: Hyper figures OFF on input line 4177.
Package hyperref Info: Link nesting OFF on input line 4182.
Package hyperref Info: Hyper index ON on input line 4185.
Package hyperref Info: Plain pages OFF on input line 4192.
Package hyperref Info: Backreferencing OFF on input line 4197.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4425.
\c@Hy@tempcnt=\count269
LaTeX Info: Redefining \url on input line 4763.
\XeTeXLinkMargin=\dimen160
(c:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(c:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count270
\Field@Width=\dimen161
\Fld@charsize=\dimen162
Package hyperref Info: Hyper figures OFF on input line 6042.
Package hyperref Info: Link nesting OFF on input line 6047.
Package hyperref Info: Hyper index ON on input line 6050.
Package hyperref Info: backreferencing OFF on input line 6057.
Package hyperref Info: Link coloring OFF on input line 6062.
Package hyperref Info: Link coloring with OCG OFF on input line 6067.
Package hyperref Info: PDF/A mode OFF on input line 6072.
(c:/texlive/2022/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=\count271
\c@Item=\count272
\c@Hfootnote=\count273
)
Package hyperref Info: Driver (autodetected): hxetex.
(c:/texlive/2022/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2023-02-07 v7.00v Hyperref driver for XeTeX
(c:/texlive/2022/texmf-dist/tex/generic/stringenc/stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO)
)
\pdfm@box=\box54
\c@Hy@AnnotLevel=\count274
\HyField@AnnotCount=\count275
\Fld@listcount=\count276
\c@bookmark@seq@number=\count277
(c:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(c:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package
with kernel methods
) (c:/texlive/2022/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 285.
)
\Hy@SectionHShift=\skip54
) (c:/texlive/2022/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)
(c:/texlive/2022/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:/texlive/2022/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
Package xcolor Info: Model `RGB' extended on input line 1369.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
) (c:/texlive/2022/texmf-dist/tex/generic/soul/soul.sty
Package: soul 2023-02-18 v3.0 Permit use of UTF-8 characters in soul (HO)
(c:/texlive/2022/texmf-dist/tex/generic/soul/soul-ori.sty
Package: soul-ori 2023-02-18 v3.0 letterspacing/underlining (mf)
\SOUL@word=\toks19
\SOUL@lasttoken=\toks20
\SOUL@syllable=\toks21
\SOUL@cmds=\toks22
\SOUL@buffer=\toks23
\SOUL@token=\toks24
\SOUL@syllgoal=\dimen163
\SOUL@syllwidth=\dimen164
\SOUL@charkern=\dimen165
\SOUL@hyphkern=\dimen166
\SOUL@dimen=\dimen167
\SOUL@dimeni=\dimen168
\SOUL@minus=\count278
\SOUL@comma=\count279
\SOUL@apo=\count280
\SOUL@grave=\count281
\SOUL@spaceskip=\skip55
\SOUL@ttwidth=\dimen169
\SOUL@uldp=\dimen170
\SOUL@ulht=\dimen171
)) (c:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry
(c:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count282
\Gm@cntv=\count283
\c@Gm@tempcnt=\count284
\Gm@bindingoffset=\dimen172
\Gm@wd@mp=\dimen173
\Gm@odd@mp=\dimen174
\Gm@even@mp=\dimen175
\Gm@layoutwidth=\dimen176
\Gm@layoutheight=\dimen177
\Gm@layouthoffset=\dimen178
\Gm@layoutvoffset=\dimen179
\Gm@dimlist=\toks25
) (c:/texlive/2022/texmf-dist/tex/latex/framed/framed.sty
Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks
\OuterFrameSep=\skip56
\fb@frw=\dimen180
\fb@frh=\dimen181
\FrameRule=\dimen182
\FrameSep=\dimen183
) (c:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2022/03/01 v3.6b Customizing captions (AR)
(c:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2022/03/17 v2.3b caption3 kernel (AR)
\caption@tempdima=\dimen184
\captionmargin=\dimen185
\caption@leftmargin=\dimen186
\caption@rightmargin=\dimen187
\caption@width=\dimen188
\caption@indent=\dimen189
\caption@parindent=\dimen190
\caption@hangindent=\dimen191
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count285
\c@continuedfloat=\count286
Package caption Info: hyperref package is loaded.
) (c:/texlive/2022/texmf-dist/tex/latex/subfig/subfig.sty
Package: subfig 2005/06/28 ver: 1.3 subfig package
\c@KVtest=\count287
\sf@farskip=\skip57
\sf@captopadj=\dimen192
\sf@capskip=\skip58
\sf@nearskip=\skip59
\c@subfigure=\count288
\c@subfigure@save=\count289
\c@lofdepth=\count290
\c@subtable=\count291
\c@subtable@save=\count292
\c@lotdepth=\count293
\sf@top=\skip60
\sf@bottom=\skip61
) (c:/texlive/2022/texmf-dist/tex/latex/fontspec/fontspec.sty (c:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (c:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2023-02-22 L3 programming layer (loader)
(c:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-xetex.def
File: l3backend-xetex.def 2023-01-16 L3 backend support: XeTeX
\g__graphics_track_int=\count294
\l__pdf_internal_box=\box55
\g__pdf_backend_object_int=\count295
\g__pdf_backend_annotation_int=\count296
\g__pdf_backend_link_int=\count297
))
Package: xparse 2023-02-02 L3 Experimental document command parser
)
Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
(c:/texlive/2022/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
Package: fontspec-xetex 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX
\l__fontspec_script_int=\count298
\l__fontspec_language_int=\count299
\l__fontspec_strnum_int=\count300
\l__fontspec_tmp_int=\count301
\l__fontspec_tmpa_int=\count302
\l__fontspec_tmpb_int=\count303
\l__fontspec_tmpc_int=\count304
\l__fontspec_em_int=\count305
\l__fontspec_emdef_int=\count306
\l__fontspec_strong_int=\count307
\l__fontspec_strongdef_int=\count308
\l__fontspec_tmpa_dim=\dimen193
\l__fontspec_tmpb_dim=\dimen194
\l__fontspec_tmpc_dim=\dimen195
(c:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
) (c:/texlive/2022/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (c:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty
Package: titlesec 2021/07/05 v2.14 Sectioning titles
\ttl@box=\box56
\beforetitleunit=\skip62
\aftertitleunit=\skip63
\ttl@plus=\dimen196
\ttl@minus=\dimen197
\ttl@toksa=\toks26
\titlewidth=\dimen198
\titlewidthlast=\dimen199
\titlewidthfirst=\dimen256
Package titlesec Warning: Non standard sectioning command \section
(titlesec) detected. Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command \subsection
(titlesec) detected. Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command \subsubsection
(titlesec) detected. Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command \paragraph
(titlesec) detected. Using default spacing and no format.
Package titlesec Warning: Non standard sectioning command \subparagraph
(titlesec) detected. Using default spacing and no format.
)
Package fontspec Info: Font family 'NotoSerif(0)' created for font 'Noto
(fontspec) Serif' with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Noto
(fontspec) Serif/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Noto
(fontspec) Serif/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Noto
(fontspec) Serif/B/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Noto
(fontspec) Serif/B/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Noto
(fontspec) Serif/I/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) <->"Noto
(fontspec) Serif/I/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Noto
(fontspec) Serif/BI/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) <->"Noto
(fontspec) Serif/BI/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
Package fontspec Info: Font family 'NotoSans(0)' created for font 'Noto Sans'
(fontspec) with options [Ligatures=TeX].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Noto
(fontspec) Sans/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Noto
(fontspec) Sans/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Noto
(fontspec) Sans/B/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Noto
(fontspec) Sans/B/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Noto
(fontspec) Sans/I/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'italic small caps' (m/scit) with NFSS spec.:
(fontspec) <->"Noto
(fontspec) Sans/I/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Noto
(fontspec) Sans/BI/OT:script=latn;language=dflt;mapping=tex-text;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) <->"Noto
(fontspec) Sans/BI/OT:script=latn;language=dflt;+smcp;mapping=tex-text;"
Package fontspec Info: Could not resolve font "Noto Sans Mono/I" (it probably
(fontspec) doesn't exist).
Package fontspec Info: Font family 'NotoSansMono(0)' created for font 'Noto
(fontspec) Sans Mono' with options
(fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=WordSpace].
(fontspec)
(fontspec) This font family consists of the following NFSS
(fontspec) series/shapes:
(fontspec)
(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Noto Sans
(fontspec) Mono/OT:script=latn;language=dflt;"
(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Noto Sans
(fontspec) Mono/OT:script=latn;language=dflt;+smcp;"
(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.: <->"Noto Sans
(fontspec) Mono/B/OT:script=latn;language=dflt;"
(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Noto
(fontspec) Sans Mono/B/OT:script=latn;language=dflt;+smcp;"
(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.: <->"Noto Sans
(fontspec) Mono/BI/OT:script=latn;language=dflt;"
(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.:
(fontspec) <->"Noto Sans
(fontspec) Mono/BI/OT:script=latn;language=dflt;+smcp;"
(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:
(./macros.tex
\c@th@theorem=\count309
)
Putting page number on short LoF
Putting page number on short LoT
(./_main.aux)
\openout1 = `_main.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 125.
LaTeX Font Info: Trying to load font information for TS1+cmr on input line 125.
(c:/texlive/2022/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 125.
LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
Package hyperref Info: Link coloring OFF on input line 125.
(./_main.out) (./_main.out)
\@outlinefile=\write3
\openout3 = `_main.out'.
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
*geometry* verbose mode - [ preamble ] result:
* driver: xetex
* paper: <default>
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(92.14519pt, 430.00462pt, 92.14519pt)
* v-part:(T,H,B)=(95.39737pt, 556.47656pt, 143.09605pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=469.75499pt
* \textheight=650.43pt
* \oddsidemargin=0.0pt
* \evensidemargin=0.0pt
* \topmargin=-21.68121pt
* \headheight=14.45377pt
* \headsep=0.0pt
* \topskip=28.90755pt
* \footskip=8.0pt
* \marginparwidth=59.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: subfig package v1.3 is loaded.
Package caption Info: End \AtBeginDocument code.
Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid
(fontspec) this).
\symlegacymaths=\mathgroup6
LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold'
(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 125.
LaTeX Font Info: Redeclaring math accent \acute on input line 125.
LaTeX Font Info: Redeclaring math accent \grave on input line 125.
LaTeX Font Info: Redeclaring math accent \ddot on input line 125.
LaTeX Font Info: Redeclaring math accent \tilde on input line 125.
LaTeX Font Info: Redeclaring math accent \bar on input line 125.
LaTeX Font Info: Redeclaring math accent \breve on input line 125.
LaTeX Font Info: Redeclaring math accent \check on input line 125.
LaTeX Font Info: Redeclaring math accent \hat on input line 125.
LaTeX Font Info: Redeclaring math accent \dot on input line 125.
LaTeX Font Info: Redeclaring math accent \mathring on input line 125.
LaTeX Font Info: Redeclaring math symbol \colon on input line 125.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 125.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 125.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 125.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 125.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 125.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 125.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 125.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 125.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 125.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 125.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 125.
LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 125.
LaTeX Font Info: Redeclaring symbol font `operators' on input line 125.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `normal' on input line 125.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> TU/NotoSerif(0)/m/n on input line 125.
LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font
(Font) `operators' in the math version `bold' on input line 125.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> TU/NotoSerif(0)/m/n on input line 125.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) TU/NotoSerif(0)/m/n --> TU/NotoSerif(0)/m/n on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> TU/NotoSerif(0)/m/it on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> TU/NotoSerif(0)/b/n on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
(Font) OT1/cmss/m/n --> TU/NotoSans(0)/m/n on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
(Font) OT1/cmtt/m/n --> TU/NotoSansMono(0)/m/n on input line 125.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) TU/NotoSerif(0)/m/n --> TU/NotoSerif(0)/b/n on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> TU/NotoSerif(0)/b/it on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
(Font) OT1/cmss/bx/n --> TU/NotoSans(0)/b/n on input line 125.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
(Font) OT1/cmtt/m/n --> TU/NotoSansMono(0)/b/n on input line 125.
Making Title Page
Making Abstract Page
[1
]
Making Dedication Page
LaTeX Font Info: Font shape `TU/NotoSerif(0)/m/sl' in size <10.95> not available
(Font) Font shape `TU/NotoSerif(0)/m/it' tried instead on input line 125.
[2
]
Making Acknowledgement Page
[3
]
Making ToC Page
[4
] (./_main.toc
LaTeX Font Info: Trying to load font information for U+msa on input line 3.
(c:/texlive/2022/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Trying to load font information for U+msb on input line 3.
(c:/texlive/2022/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
) [5
] [6] [7]
Overfull \hbox (1.39063pt too wide) detected at line 82
[]\TU/NotoSerif(0)/m/n/10.95 100
[]
Overfull \hbox (1.39063pt too wide) detected at line 83
[]\TU/NotoSerif(0)/m/n/10.95 101
[]
Overfull \hbox (1.39063pt too wide) detected at line 84
[]\TU/NotoSerif(0)/m/n/10.95 101
[]
Overfull \hbox (1.39063pt too wide) detected at line 85
[]\TU/NotoSerif(0)/m/n/10.95 101
[]
Overfull \hbox (1.39063pt too wide) detected at line 86
[]\TU/NotoSerif(0)/m/n/10.95 102
[]
Overfull \hbox (1.39063pt too wide) detected at line 87
[]\TU/NotoSerif(0)/m/n/10.95 103
[]
[8]
Overfull \hbox (1.39063pt too wide) detected at line 88
[]\TU/NotoSerif(0)/m/n/10.95 103
[]
Overfull \hbox (1.39063pt too wide) detected at line 89
[]\TU/NotoSerif(0)/m/n/10.95 104
[]
Overfull \hbox (1.39063pt too wide) detected at line 90
[]\TU/NotoSerif(0)/m/n/10.95 105
[]
Overfull \hbox (1.39063pt too wide) detected at line 91
[]\TU/NotoSerif(0)/m/n/10.95 106
[]
Overfull \hbox (1.39063pt too wide) detected at line 92
[]\TU/NotoSerif(0)/m/n/10.95 107
[]
Overfull \hbox (1.39063pt too wide) detected at line 94
[]\TU/NotoSerif(0)/m/n/10.95 110
[]
Overfull \hbox (1.39063pt too wide) detected at line 95
[]\TU/NotoSerif(0)/m/n/10.95 111
[]
Overfull \hbox (1.39063pt too wide) detected at line 96
[]\TU/NotoSerif(0)/m/n/10.95 112
[]
Overfull \hbox (1.39063pt too wide) detected at line 97
[]\TU/NotoSerif(0)/m/n/10.95 114
[]
Overfull \hbox (1.39063pt too wide) detected at line 98
[]\TU/NotoSerif(0)/m/n/10.95 116
[]
Overfull \hbox (1.39063pt too wide) detected at line 99
[]\TU/NotoSerif(0)/m/n/10.95 116
[]
Overfull \hbox (1.39063pt too wide) detected at line 100
[]\TU/NotoSerif(0)/m/n/10.95 118
[]
Overfull \hbox (1.39063pt too wide) detected at line 101
[]\TU/NotoSerif(0)/m/n/10.95 119
[]
Overfull \hbox (1.39063pt too wide) detected at line 102
[]\TU/NotoSerif(0)/m/n/10.95 120
[]
Overfull \hbox (1.39063pt too wide) detected at line 103
[]\TU/NotoSerif(0)/m/n/10.95 121
[]
Overfull \hbox (1.39063pt too wide) detected at line 104
[]\TU/NotoSerif(0)/m/n/10.95 122
[]
Overfull \hbox (1.39063pt too wide) detected at line 105
[]\TU/NotoSerif(0)/m/n/10.95 124
[]
Overfull \hbox (1.39063pt too wide) detected at line 106
[]\TU/NotoSerif(0)/m/n/10.95 127
[]
Overfull \hbox (1.39063pt too wide) detected at line 107
[]\TU/NotoSerif(0)/m/n/10.95 128
[]
Overfull \hbox (1.39063pt too wide) detected at line 108
[]\TU/NotoSerif(0)/m/n/10.95 130
[]
Overfull \hbox (1.39063pt too wide) detected at line 109
[]\TU/NotoSerif(0)/m/n/10.95 131
[]
[9]
Overfull \hbox (1.39063pt too wide) detected at line 110
[]\TU/NotoSerif(0)/m/n/10.95 133
[]
Overfull \hbox (1.39063pt too wide) detected at line 111
[]\TU/NotoSerif(0)/m/n/10.95 135
[]
Overfull \hbox (1.39063pt too wide) detected at line 113
[]\TU/NotoSerif(0)/m/n/10.95 139
[]
Overfull \hbox (1.39063pt too wide) detected at line 114
[]\TU/NotoSerif(0)/m/n/10.95 140
[]
Overfull \hbox (1.39063pt too wide) detected at line 115
[]\TU/NotoSerif(0)/m/n/10.95 143
[]
Overfull \hbox (1.39063pt too wide) detected at line 116
[]\TU/NotoSerif(0)/m/n/10.95 143
[]
Overfull \hbox (1.39063pt too wide) detected at line 117
[]\TU/NotoSerif(0)/m/n/10.95 143
[]
Overfull \hbox (1.39063pt too wide) detected at line 118
[]\TU/NotoSerif(0)/m/n/10.95 144
[]
Overfull \hbox (1.39063pt too wide) detected at line 119
[]\TU/NotoSerif(0)/m/n/10.95 146
[]
Overfull \hbox (1.39063pt too wide) detected at line 121
[]\TU/NotoSerif(0)/m/n/10.95 149
[]
)
\tf@toc=\write4
\openout4 = `_main.toc'.
Making LoT Page
Making Short LoT...
[10]
Short Chapter (page numbered)
(./_main.lot
Overfull \hbox (2.71562pt too wide) in paragraph at lines 7--7
[][] [][]\TU/NotoSerif(0)/m/n/10.95 Comparison of the Loom Pedals authors’ weaving experiences and disciplinary
[]
)
\tf@lot=\write5
\openout5 = `_main.lot'.
Making LoF Page
Making Short LoF...
[11
]
Short Chapter (page numbered)
(./_main.lof [12
]
Overfull \hbox (1.39063pt too wide) detected at line 27
[]\TU/NotoSerif(0)/m/n/10.95 102
[]
Overfull \hbox (1.39063pt too wide) detected at line 28
[]\TU/NotoSerif(0)/m/n/10.95 103
[]
Overfull \hbox (1.39063pt too wide) detected at line 29
[]\TU/NotoSerif(0)/m/n/10.95 104
[]
Overfull \hbox (1.39063pt too wide) detected at line 31
[]\TU/NotoSerif(0)/m/n/10.95 117
[]
Overfull \hbox (1.39063pt too wide) detected at line 32
[]\TU/NotoSerif(0)/m/n/10.95 138
[]
Overfull \hbox (1.39063pt too wide) detected at line 33
[]\TU/NotoSerif(0)/m/n/10.95 138
[]
)
\tf@lof=\write6
\openout6 = `_main.lof'.
-------------------Beginning Body----------------------
[13] (./ch_1_intro.tex
\th@ChapterStyle\th@DoChapCenterChapter \th@ChapterStyle 1.
[1
] [2] [3] [4] [5] [6]) (./ch_2_background.tex [7]
\th@ChapterStyle\th@DoChapCenterChapter \th@ChapterStyle 2.
[8
] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] (./ch_2_adacad.tex [23]
File: figs/AdaCAD_weavedrafts_300.jpg Graphic file (type bmp)
<figs/AdaCAD_weavedrafts_300.jpg>
[24] [25] [26]
File: figs/AdaCAD_multicomp.jpg Graphic file (type bmp)
<figs/AdaCAD_multicomp.jpg>
LaTeX Warning: `h' float specifier changed to `ht'.
[27] [28])) (./ch_3_e-textiles.tex [29] [30]
\th@ChapterStyle\th@DoChapCenterChapter \th@ChapterStyle 3.
[31
] [32] [33] [34] [35] [36] [37] [38]) (./ch_4_unfabricate.tex [39]
\th@ChapterStyle\th@DoChapCenterChapter \th@ChapterStyle 4.
File: figs/UF_teaser.png Graphic file (type bmp)
<figs/UF_teaser.png>
[40
] [41] [42] [43] [44]
File: figs/UF_unravelling_6panels.png Graphic file (type bmp)
<figs/UF_unravelling_6panels.png>
[45] [46] [47] [48] [49] [50]
File: figs/UF_knitweave_cutff.png Graphic file (type bmp)
<figs/UF_knitweave_cutff.png>
[51] [52]
File: figs/UF_weave_contweft.pdf Graphic file (type pdf)
<use figs/UF_weave_contweft.pdf>
File: figs/UF_weave_contweftwarp.pdf Graphic file (type pdf)
<use figs/UF_weave_contweftwarp.pdf>
File: figs/UF_weave_contweftwarp2.pdf Graphic file (type pdf)
<use figs/UF_weave_contweftwarp2.pdf>
[53]
File: figs/UF_warptightening.png Graphic file (type bmp)
<figs/UF_warptightening.png>
[54] [55]
File: figs/UF_loommod.png Graphic file (type bmp)
<figs/UF_loommod.png>
[56]
File: figs/UF_workflow.png Graphic file (type bmp)
<figs/UF_workflow.png>
[57] [58]
File: figs/UF_sensor.png Graphic file (type bmp)
<figs/UF_sensor.png>
[59] [60] [61] [62] [63] [64] [65]
File: figs/UF_concepts.png Graphic file (type bmp)
<figs/UF_concepts.png>
[66]) (./ch_5_loom-pedals.tex [67] [68] [69] [70] [71] [72]
\th@ChapterStyle\th@DoChapCenterChapter \th@ChapterStyle 5.
[73
] [74] [75] [76] [77]
File: figs/LP_2_loom-parts.png Graphic file (type bmp)
<figs/LP_2_loom-parts.png>
LaTeX Warning: `h' float specifier changed to `ht'.
[78] [79]
File: figs/LP_3_drafts.png Graphic file (type bmp)
<figs/LP_3_drafts.png>
[80]
File: figs/LP_4_jacquard-loom.png Graphic file (type bmp)
<figs/LP_4_jacquard-loom.png>
[81] [82] [83] [84] [85] [86]
File: figs/LP_fig_workflow_SMALL.png Graphic file (type bmp)
<figs/LP_fig_workflow_SMALL.png>
[87] [88]
File: figs/LP_5_sysConnections.png Graphic file (type bmp)
<figs/LP_5_sysConnections.png>
File: figs/LP_6_pedal-enclosure.jpg Graphic file (type bmp)
<figs/LP_6_pedal-enclosure.jpg>
[89] [90]
File: figs/LP_8_connecting.jpg Graphic file (type bmp)
<figs/LP_8_connecting.jpg>
[91] [92]
File: figs/LP_gui_v2.png Graphic file (type bmp)
<figs/LP_gui_v2.png>
[93] [94] [95] [96]
File: figs/LP_author-samples.png Graphic file (type bmp)
<figs/LP_author-samples.png>
[97] [98] [99] [100]
File: figs/LP_fig_draft-inputs.png Graphic file (type bmp)
<figs/LP_fig_draft-inputs.png>
[101]
File: figs/LP_11_sliders.png Graphic file (type bmp)
<figs/LP_11_sliders.png>
[102]
File: figs/LP_sequencer.png Graphic file (type bmp)
<figs/LP_sequencer.png>
LaTeX Warning: `h' float specifier changed to `ht'.
[103] [104] [105] [106] [107]) (./ch_6_speculations.tex [108]
\th@ChapterStyle\th@DoChapCenterChapter \th@ChapterStyle 6.
[109
] [110] [111]