forked from suchow/Dissertate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.log
More file actions
1214 lines (1081 loc) · 42.7 KB
/
thesis.log
File metadata and controls
1214 lines (1081 loc) · 42.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is XeTeX, Version 3.1415926-2.2-0.9997.4 (TeX Live 2010) (format=xelatex 2010.7.21) 8 DEC 2011 04:24
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**thesis.tex
(./thesis.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2009-06-19, ngerman-x-2009-06-19, ancientgreek, ibycus, arabic, armenian
, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danish, dutch, u
kenglish, usenglishmax, esperanto, estonian, farsi, finnish, french, galician,
german, ngerman, swissgerman, monogreek, greek, hungarian, icelandic, assamese,
bengali, gujarati, hindi, kannada, malayalam, marathi, oriya, panjabi, tamil,
telugu, indonesian, interlingua, irish, italian, kurmanji, lao, latin, latvian,
lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, polish, portuguese, roma
nian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, turkish,
turkmen, ukrainian, uppersorbian, welsh, loaded.
(./harvard-thesis.cls
Document Class: harvard-thesis 2011/12/08 v0.3 Harvard University Thesis Class
(/usr/local/texlive/2010/texmf-dist/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2010/texmf-dist/tex/latex/base/bk11.clo
File: bk11.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count80
\c@chapter=\count81
\c@section=\count82
\c@subsection=\count83
\c@subsubsection=\count84
\c@paragraph=\count85
\c@subparagraph=\count86
\c@figure=\count87
\c@table=\count88
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2010/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2010/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: xetex.def on input line 91.
(/usr/local/texlive/2010/texmf-dist/tex/xelatex/xetex-def/xetex.def
File: xetex.def 2009/11/22 v0.94 LaTeX color/graphics driver for XeTeX (RRM/JK)
))
\Gin@req@height=\dimen103
\Gin@req@width=\dimen104
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2010/06/18 v6.81g Hypertext links for LaTeX
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2010/04/26 v1.7 LaTeX kernel commands for general use (HO)
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2010/03/01 v1.9 Key value parser (HO)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/message (HO)
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2010/01/28 v1.3 Prefix for e-TeX command names (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
))
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/pdfescape.sty
Package: pdfescape 2010/03/01 v1.9 Provides hex, PDF name and string conversion
s (HO)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2010/04/01 v0.9 Utility functions of pdfTeX for LuaTeX (HO)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: pdfTeX >= 1.30 not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
))
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2010/01/28 v2.1 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in pdf mode not detected.
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2010/03/01 v1.5 Switches for detecting VTeX and its modes (HO)
Package ifvtex Info: VTeX not detected.
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2009/01/23 v0.5 Provides ifxetex conditional
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/oberdiek/hycolor.sty
Package: hycolor 2009/12/12 v1.6 Color options of hyperref/bookmark (HO)
(/usr/local/texlive/2010/texmf-dist/tex/latex/oberdiek/xcolor-patch.sty
Package: xcolor-patch 2009/12/12 xcolor patch
))
(/usr/local/texlive/2010/texmf-dist/tex/latex/oberdiek/letltxmacro.sty
Package: letltxmacro 2008/06/24 v1.3 Let assignment for LaTeX macros (HO)
)
\@linkdim=\dimen105
\Hy@linkcounter=\count89
\Hy@pagecounter=\count90
(/usr/local/texlive/2010/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2010/06/18 v6.81g Hyperref: PDFDocEncoding definition (HO)
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/intcalc.sty
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
(/usr/local/texlive/2010/texmf-dist/tex/xelatex/xetexconfig/hyperref.cfg
File: hyperref.cfg 2008/07/11 v1.2 hyperref configuration for XeLaTeX
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2010/02/22 v3.7 Keyval support for LaTeX options (HO)
)
Package hyperref Info: Hyper figures OFF on input line 3658.
Package hyperref Info: Link nesting OFF on input line 3663.
Package hyperref Info: Hyper index ON on input line 3666.
Package hyperref Info: Plain pages OFF on input line 3673.
Package hyperref Info: Backreferencing OFF on input line 3678.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 3874.
(/usr/local/texlive/2010/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip10
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4159.
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/bitset.sty
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/bigintcalc.sty
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
))
\Fld@menulength=\count91
\Field@Width=\dimen106
\Fld@charsize=\dimen107
\Field@toks=\toks15
Package hyperref Info: Hyper figures OFF on input line 5137.
Package hyperref Info: Link nesting OFF on input line 5142.
Package hyperref Info: Hyper index ON on input line 5145.
Package hyperref Info: backreferencing OFF on input line 5152.
Package hyperref Info: Link coloring OFF on input line 5157.
Package hyperref Info: Link coloring with OCG OFF on input line 5162.
Package hyperref Info: PDF/A mode OFF on input line 5167.
LaTeX Info: Redefining \ref on input line 5207.
LaTeX Info: Redefining \pageref on input line 5211.
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/atbegshi.sty
Package: atbegshi 2010/03/25 v1.12 At begin shipout hook (HO)
)
\Hy@abspage=\count92
\c@Item=\count93
\c@Hfootnote=\count94
)
* hyperref using default driver hxetex *
(/usr/local/texlive/2010/texmf-dist/tex/latex/hyperref/hxetex.def
File: hxetex.def 2010/06/18 v6.81g Hyperref driver for XeTeX
(/usr/local/texlive/2010/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2010/06/18 v6.81g Hyperref: PDF Unicode definition (HO)
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/stringenc.sty
Package: stringenc 2010/03/01 v1.8 Converts strings between encodings (HO)
)
\pdfm@box=\box26
\c@Hy@AnnotLevel=\count95
\HyField@AnnotCount=\count96
\Fld@listcount=\count97
\c@bookmark@seq@number=\count98
(/usr/local/texlive/2010/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2010/03/16 v1.6 Rerun checks for auxiliary files (HO)
Package rerunfilecheck Info: Feature \pdfmdfivesum is not available
(rerunfilecheck) (e.g. pdfTeX or LuaTeX with package `pdftexcmds').
(rerunfilecheck) Therefore file contents cannot be checked efficien
tly
(rerunfilecheck) and the loading of the package is aborted.
)
\Hy@SectionHShift=\skip43
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip44
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks16
\ex@=\dimen108
))
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen109
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count99
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count100
\leftroot@=\count101
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count102
\DOTSCASE@=\count103
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box27
\strutbox@=\box28
\big@size=\dimen110
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count104
\c@MaxMatrixCols=\count105
\dotsspace@=\muskip11
\c@parentequation=\count106
\dspbrk@lvl=\count107
\tag@help=\toks17
\row@=\count108
\column@=\count109
\maxfields@=\count110
\andhelp@=\toks18
\eqnshift@=\dimen111
\alignsep@=\dimen112
\tagshift@=\dimen113
\tagwidth@=\dimen114
\totwidth@=\dimen115
\lineht@=\dimen116
\@envbody=\toks19
\multlinegap=\skip45
\multlinetaggap=\skip46
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2009/06/22 v3.00
(/usr/local/texlive/2010/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
))
(/usr/local/texlive/2010/texmf-dist/tex/latex/natbib/natbib.sty
Package: natbib 2009/11/07 8.31a (PWD, AO)
\bibhang=\skip47
\bibsep=\skip48
LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count111
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/titlesec/titlesec.sty
Package: titlesec 2007/08/12 v2.8 Sectioning titles
\ttl@box=\box29
\beforetitleunit=\skip49
\aftertitleunit=\skip50
\ttl@plus=\dimen117
\ttl@minus=\dimen118
\ttl@toksa=\toks21
\titlewidth=\dimen119
\titlewidthlast=\dimen120
\titlewidthfirst=\dimen121
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/units/units.sty
Package: units 1998/08/04 v0.9b Typesetting units
(/usr/local/texlive/2010/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/units/nicefrac.sty
Package: nicefrac 1998/08/04 v0.9b Nice fractions
\L@UnitsRaiseDisplaystyle=\skip51
\L@UnitsRaiseTextstyle=\skip52
\L@UnitsRaiseScriptstyle=\skip53
LaTeX Info: Redefining \nicefrac on input line 131.
))
(/usr/local/texlive/2010/texmf-dist/tex/latex/tools/verbatim.sty
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks22
\verbatim@line=\toks23
\verbatim@in@stream=\read1
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/graphics/color.sty
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
(/usr/local/texlive/2010/texmf-dist/tex/latex/latexconfig/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: xetex.def on input line 130.
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/tocloft/tocloft.sty
Package: tocloft 2009/09/04 v2.3d parameterised ToC, etc., typesetting
Package tocloft Note: The document has chapter divisions.
\cftparskip=\skip54
\cftbeforetoctitleskip=\skip55
\cftaftertoctitleskip=\skip56
\cftbeforepartskip=\skip57
\cftpartnumwidth=\skip58
\cftpartindent=\skip59
\cftbeforechapskip=\skip60
\cftchapindent=\skip61
\cftchapnumwidth=\skip62
\cftbeforesecskip=\skip63
\cftsecindent=\skip64
\cftsecnumwidth=\skip65
\cftbeforesubsecskip=\skip66
\cftsubsecindent=\skip67
\cftsubsecnumwidth=\skip68
\cftbeforesubsubsecskip=\skip69
\cftsubsubsecindent=\skip70
\cftsubsubsecnumwidth=\skip71
\cftbeforeparaskip=\skip72
\cftparaindent=\skip73
\cftparanumwidth=\skip74
\cftbeforesubparaskip=\skip75
\cftsubparaindent=\skip76
\cftsubparanumwidth=\skip77
\cftbeforeloftitleskip=\skip78
\cftafterloftitleskip=\skip79
\cftbeforefigskip=\skip80
\cftfigindent=\skip81
\cftfignumwidth=\skip82
\c@lofdepth=\count112
\c@lotdepth=\count113
\cftbeforelottitleskip=\skip83
\cftafterlottitleskip=\skip84
\cftbeforetabskip=\skip85
\cfttabindent=\skip86
\cfttabnumwidth=\skip87
) (/usr/local/texlive/2010/texmf-dist/tex/latex/pdfsync/pdfsync.sty
Package: pdfsync 2008/01/26 v1.1
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/fltpage/fltpage.sty
Package: fltpage 1998/10/29 v.0.3 Floats on full page (SMU)
(/usr/local/texlive/2010/texmf-dist/tex/latex/tools/afterpage.sty
Package: afterpage 1995/10/27 v1.08 After-Page Package (DPC)
\AP@output=\toks24
\AP@partial=\box30
\AP@footins=\box31
)
\c@FP@figureC=\count114
\c@FP@tableC=\count115
\FP@floatCorpusBOX=\box32
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/natbib/bibentry.sty
Package: bibentry 2007/10/30 1.5 (PWD)
)
No file thesis.bbl.
(/usr/local/texlive/2010/texmf-dist/tex/latex/lettrine/lettrine.sty
File: lettrine.sty 2007/08/08 v1.62 (Daniel Flipo)
\c@DefaultLines=\count116
\DefaultFindent=\dimen122
\DefaultNindent=\dimen123
\DefaultSlope=\dimen124
\L@lbox=\box33
\L@tbox=\box34
\c@L@lines=\count117
\L@Pindent=\dimen125
\L@Findent=\dimen126
\L@Nindent=\dimen127
\L@lraise=\dimen128
\L@first=\dimen129
\L@next=\dimen130
\L@slope=\dimen131
\L@height=\dimen132
\LettrineWidth=\dimen133
Loading lettrine.cfg
(/usr/local/texlive/2010/texmf-dist/tex/latex/lettrine/lettrine.cfg))
(/usr/local/texlive/2010/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2010/07/13 v5.5 Page Geometry
\Gm@cnth=\count118
\Gm@cntv=\count119
\c@Gm@tempcnt=\count120
\Gm@bindingoffset=\dimen134
\Gm@wd@mp=\dimen135
\Gm@odd@mp=\dimen136
\Gm@even@mp=\dimen137
\Gm@layoutwidth=\dimen138
\Gm@layoutheight=\dimen139
\Gm@layouthoffset=\dimen140
\Gm@layoutvoffset=\dimen141
\Gm@dimlist=\toks25
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
\fancy@headwidth=\skip88
\f@ncyO@elh=\skip89
\f@ncyO@erh=\skip90
\f@ncyO@olh=\skip91
\f@ncyO@orh=\skip92
\f@ncyO@elf=\skip93
\f@ncyO@erf=\skip94
\f@ncyO@olf=\skip95
\f@ncyO@orf=\skip96
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/quotchap/quotchap.sty
Package: quotchap 1998/02/09 v0.9f Decorative Chapter Headings with Quotes
\@quotebox=\box35
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/titling/titling.sty
Package: titling 2009/09/04 v2.1d maketitle typesetting
\thanksmarkwidth=\skip97
\thanksmargin=\skip98
\droptitle=\skip99
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/setspace/setspace.sty
Package: setspace 2000/12/01 6.7 Contributed and Supported LaTeX2e package
Package: `setspace' 6.7 <2000/12/01>
) (/usr/local/texlive/2010/texmf-dist/tex/latex/booktabs/booktabs.sty
Package: booktabs 2005/04/14 v1.61803 publication quality tables
\heavyrulewidth=\dimen142
\lightrulewidth=\dimen143
\cmidrulewidth=\dimen144
\belowrulesep=\dimen145
\belowbottomsep=\dimen146
\aboverulesep=\dimen147
\abovetopsep=\dimen148
\cmidrulesep=\dimen149
\cmidrulekern=\dimen150
\defaultaddspace=\dimen151
\@cmidla=\count121
\@cmidlb=\count122
\@aboverulesep=\dimen152
\@belowrulesep=\dimen153
\@thisruleclass=\count123
\@lastruleclass=\count124
\@thisrulewidth=\dimen154
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2010/01/09 v3.1m Customizing captions (AR)
(/usr/local/texlive/2010/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2010/01/14 v3.1m caption3 kernel (AR)
\captionmargin=\dimen155
\captionmargin@=\dimen156
\captionwidth=\dimen157
\caption@indent=\dimen158
\caption@parindent=\dimen159
\caption@hangindent=\dimen160
)
\c@ContinuedFloat=\count125
Package caption Info: fltpage package is loaded.
Package caption Info: hyperref package is loaded.
)
(/usr/local/texlive/2010/texmf-dist/tex/xelatex/mathspec/mathspec.sty
Package: mathspec 2009/09/30 v0.2 LaTeX Package (Mathematics font selection for
XeLaTeX)
(/usr/local/texlive/2010/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2010/04/10 v1.9 e-TeX tools for LaTeX
(/usr/local/texlive/2010/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count126
)
\etb@tempcnta=\count127
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/fontspec/fontspec.sty
Package: fontspec 2010/07/14 v2.0b Advanced font selection for XeLaTeX/LuaLaTeX
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/expl3.sty
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3names.sty
Package: l3names 2010/07/11 v1981 L3 Experimental Naming Scheme for TeX Primiti
ves
)
Package: expl3 2010/07/13 v1982 L3 Experimental code bundle wrapper
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3basics.sty
Package: l3basics 2010/06/07 v1942 L3 Experimental basic definitions
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3expan.sty
Package: l3expan 2010/06/10 v1948 L3 Experimental Argument Expansion module
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3tl.sty
Package: l3tl 2010/05/22 v1919 L3 Experimental Token Lists
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3intexpr.sty
Package: l3intexpr 2010/06/15 v1957 L3 Integer Expressions
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3quark.sty
Package: l3quark 2010/03/21 v1853 L3 Experimental Quark Commands
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3seq.sty
Package: l3seq 2010/03/29 v1879 L3 Experimental sequences and stacks
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3toks.sty
Package: l3toks 2010/05/25 v1933 L3 Experimental Token Registers
\l_tmpb_toks=\toks26
\l_tmpc_toks=\toks27
\g_tmpa_toks=\toks28
\g_tmpb_toks=\toks29
\g_tmpc_toks=\toks30
\c_empty_toks=\toks31
\l_tl_replace_toks=\toks32
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3int.sty
Package: l3int 2010/05/25 v1933 L3 Experimental Integer module
\l_tmpa_int=\count128
\l_tmpb_int=\count129
\l_tmpc_int=\count130
\g_tmpa_int=\count131
\g_tmpb_int=\count132
\c_max_int=\count133
\g_tl_inline_level_int=\count134
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3prg.sty
Package: l3prg 2010/03/21 v1853 L3 Experimental control structures
\g_prg_inline_level_int=\count135
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3clist.sty
Package: l3clist 2010/03/29 v1878 L3 Experimental comma separated lists
\g_clist_inline_level_int=\count136
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3token.sty
Package: l3token 2010/04/11 v1890 L3 Experimental token investigation and manip
ulation
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3prop.sty
Package: l3prop 2010/03/21 v1857 L3 Experimental Property Lists
\g_prop_inline_level_int=\count137
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3msg.sty
Package: l3msg 2010/03/23 v1866 L3 Experimental LaTeX Messages module
\l_msg_redirect_classes_prop=\toks33
\l_msg_redirect_names_prop=\toks34
\l_msg_redirect_fatal_prop=\toks35
\l_msg_redirect_error_prop=\toks36
\l_msg_redirect_warning_prop=\toks37
\l_msg_redirect_info_prop=\toks38
\l_msg_redirect_log_prop=\toks39
\l_msg_redirect_trace_prop=\toks40
\l_msg_redirect_none_prop=\toks41
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3io.sty
Package: l3io 2010/05/22 v1923 L3 Experimental i/o module
\g_iow_streams_prop=\toks42
\g_ior_streams_prop=\toks43
\l_iow_stream_int=\count138
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3skip.sty
Package: l3skip 2010/05/25 v1933 L3 Experimental skip registers
\l_tmpa_skip=\skip100
\l_tmpb_skip=\skip101
\l_tmpc_skip=\skip102
\g_tmpa_skip=\skip103
\g_tmpb_skip=\skip104
\l_tmpa_dim=\dimen161
\l_tmpb_dim=\dimen162
\l_tmpc_dim=\dimen163
\l_tmpd_dim=\dimen164
\g_tmpa_dim=\dimen165
\g_tmpb_dim=\dimen166
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3box.sty
Package: l3box 2010/05/22 v1919 L3 Experimental Box module
\l_tmpb_box=\box36
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3keyval.sty
Package: l3keyval 2010/04/11 v1890 L3 Experimental keyval processing
\l_KV_level_int=\count139
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3keys.sty
Package: l3keys 2010/05/24 v1931 L3 Experimental key-value support
\l_keys_choice_int=\count140
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3precom.sty
Package: l3precom 2010/02/09 v1793 L3 Experimental precompilation module
\g_gen_sym_int=\count141
\g_ggen_sym_int=\count142
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3xref.sty
Package: l3xref 2010/02/09 v1786 L3 Experimental cross referencing
\g_xref_all_curr_immediate_fields_prop=\toks44
\g_xref_all_curr_deferred_fields_prop=\toks45
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3file.sty
Package: l3file 2010/03/21 v1853 L3 Experimental file loading
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/expl3/l3fp.sty
Package: l3fp 2010/07/08 v1979 L3 Experimental floating-point operations
\l_fp_input_a_integer_int=\count143
\l_fp_input_a_decimal_int=\count144
\l_fp_input_b_integer_int=\count145
\l_fp_input_b_decimal_int=\count146
\l_fp_input_a_sign_int=\count147
\l_fp_input_b_sign_int=\count148
\l_fp_split_sign_int=\count149
\l_fp_mul_a_i_int=\count150
\l_fp_mul_a_ii_int=\count151
\l_fp_mul_a_iii_int=\count152
\l_fp_mul_a_iv_int=\count153
\l_fp_mul_a_v_int=\count154
\l_fp_mul_a_vi_int=\count155
\l_fp_mul_b_i_int=\count156
\l_fp_mul_b_ii_int=\count157
\l_fp_mul_b_iii_int=\count158
\l_fp_mul_b_iv_int=\count159
\l_fp_mul_b_v_int=\count160
\l_fp_mul_b_vi_int=\count161
\l_fp_mul_output_int=\count162
\l_fp_div_count_int=\count163
\l_fp_div_offset_int=\count164
\l_fp_output_sign_int=\count165
\l_fp_output_integer_int=\count166
\l_fp_output_decimal_int=\count167
\l_fp_round_discard_int=\count168
\l_fp_round_position_int=\count169
\l_fp_tmp_int=\count170
\c_one_hundred_million=\count171
\c_one_thousand_million=\count172
\l_fp_tmp_dim=\dimen167
\l_fp_round_precision_int=\count173
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count174
\calc@Bcount=\count175
\calc@Adimen=\dimen168
\calc@Bdimen=\dimen169
\calc@Askip=\skip105
\calc@Bskip=\skip106
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count176
\calc@Cskip=\skip107
))
(/usr/local/texlive/2010/texmf-dist/tex/latex/xpackages/xbase/xparse.sty
Package: xparse 2010/05/23 v1927 Generic document command parser
\c_xparse_shorthands_prop=\toks46
\l_xparse_m_args_int=\count177
\l_xparse_mandatory_args_int=\count178
\l_xparse_processor_int=\count179
\l_xparse_total_args_int=\count180
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/kastrup/binhex.tex)
\c@zf@newff=\count181
\c@zf@index=\count182
\c@zf@script=\count183
\c@zf@language=\count184
\l_fontspec_strnum_int=\count185
(/usr/local/texlive/2010/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2008/08/13 v2.6a package option processing (HA)
(/usr/local/texlive/2010/texmf-dist/tex/generic/xkeyval/xkeyval.tex
\XKV@toks=\toks47
\XKV@tempa@toks=\toks48
\XKV@depth=\count186
File: xkeyval.tex 2008/08/13 v2.6a key=value parser (HA)
))
(/usr/local/texlive/2010/texmf-dist/tex/latex/fontspec/fontspec-patches.sty
Package: fontspec-patches 2010/07/14 v2.0b Advanced font selection for XeLaTeX/
LuaLaTeX
(/usr/local/texlive/2010/texmf-dist/tex/latex/base/fixltx2e.sty
Package: fixltx2e 2006/09/13 v1.1m fixes to LaTeX
LaTeX Info: Redefining \em on input line 420.
LaTeX Info: The control sequence `\[' is already robust on input line 471.
LaTeX Info: The control sequence `\]' is already robust on input line 472.
)
LaTeX Info: Redefining \em on input line 23.
LaTeX Info: Redefining \emph on input line 27.
LaTeX Info: Redefining \- on input line 30.
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
(/usr/local/texlive/2010/texmf-dist/tex/latex/euenc/eu1enc.def
File: eu1enc.def 2010/05/27 v0.1g Experimental Unicode font encodings
)
LaTeX Font Info: Try loading font information for EU1+lmr on input line 100.
(/usr/local/texlive/2010/texmf-dist/tex/latex/euenc/eu1lmr.fd
File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
LaTeX Info: Defining document command \fontspec
(LaTeX) with arg. spec. 'O{}m' on line 264.
LaTeX Info: Defining document command \setmainfont
(LaTeX) with arg. spec. 'O{}m' on line 268.
LaTeX Info: Defining document command \setsansfont
(LaTeX) with arg. spec. 'O{}m' on line 272.
LaTeX Info: Defining document command \setmonofont
(LaTeX) with arg. spec. 'O{}m' on line 276.
LaTeX Info: Defining document command \setmathrm
(LaTeX) with arg. spec. 'O{}m' on line 280.
LaTeX Info: Defining document command \setboldmathrm
(LaTeX) with arg. spec. 'O{}m' on line 283.
LaTeX Info: Defining document command \setmathsf
(LaTeX) with arg. spec. 'O{}m' on line 286.
LaTeX Info: Defining document command \setmathtt
(LaTeX) with arg. spec. 'O{}m' on line 289.
LaTeX Info: Defining document command \newfontfamily
(LaTeX) with arg. spec. 'mO{}m' on line 304.
LaTeX Info: Defining document command \newfontface
(LaTeX) with arg. spec. 'mO{}m' on line 307.
LaTeX Info: Defining document command \defaultfontfeatures
(LaTeX) with arg. spec. 'm' on line 308.
LaTeX Info: Defining document command \addfontfeatures
(LaTeX) with arg. spec. 'm' on line 325.
LaTeX Info: Defining document command \newfontfeature
(LaTeX) with arg. spec. 'mm' on line 334.
LaTeX Info: Defining document command \newAATfeature
(LaTeX) with arg. spec. 'mmmm' on line 343.
LaTeX Info: Defining document command \newICUfeature
(LaTeX) with arg. spec. 'mmm' on line 352.
LaTeX Info: Defining document command \aliasfontfeature
(LaTeX) with arg. spec. 'mm' on line 354.
LaTeX Info: Defining document command \aliasfontfeatureoption
(LaTeX) with arg. spec. 'mmm' on line 357.
LaTeX Info: Defining document command \newfontscript
(LaTeX) with arg. spec. 'mm' on line 362.
LaTeX Info: Defining document command \newfontlanguage
(LaTeX) with arg. spec. 'mm' on line 379.
LaTeX Info: Defining document command \DeclareFontsExtensions
(LaTeX) with arg. spec. 'm' on line 395.
\c@fontspec_tmp_int=\count187
LaTeX Info: Redefining \itshape on input line 1903.
LaTeX Info: Redefining \slshape on input line 1907.
LaTeX Info: Redefining \scshape on input line 1911.
LaTeX Info: Redefining \upshape on input line 1915.
fontspec.cfg loaded.
(/usr/local/texlive/2010/texmf-dist/tex/latex/fontspec/fontspec.cfg))
\c@eu@=\count188
\c@eu@i=\count189
\c@mkern=\count190
)
\c@zf@famc@Arno Pro=\count191
fontspec Info: Defining font family for 'Arno Pro' with options [Numbers={OldS
tyle,Proportional}].
Package fontspec Info: Defining shape m/n with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape m/sc with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape bx/n with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape bx/sc with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape m/it with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape m/si with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape bx/it with raw font features:
(fontspec) +onum;+pnum;.
Package fontspec Info: Defining shape bx/si with raw font features:
(fontspec) +onum;+pnum;.
\symDigits:m:n=\mathgroup6
\symLatin:m:n=\mathgroup7
\symLatin:m:it=\mathgroup8
\symGreek:m:n=\mathgroup9
\symGreek:m:it=\mathgroup10
fontspec Info: Defining font family for 'Arno Pro' with options [].
Package fontspec Info: Defining shape m/n with raw font features:
(fontspec) .
Package fontspec Info: Defining shape m/sc with raw font features:
(fontspec) .
Package fontspec Info: Defining shape bx/n with raw font features:
(fontspec) .
Package fontspec Info: Defining shape bx/sc with raw font features:
(fontspec) .
Package fontspec Info: Defining shape m/it with raw font features:
(fontspec) .
Package fontspec Info: Defining shape m/si with raw font features:
(fontspec) .
Package fontspec Info: Defining shape bx/it with raw font features:
(fontspec) .
Package fontspec Info: Defining shape bx/si with raw font features:
(fontspec) .
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line 69.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
(Font) EU1/ArnoPro(1)/m/n --> EU1/ArnoPro(1)/bx/n on input lin
e 69.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 69.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> EU1/ArnoPro(1)/m/it on input line 69.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> EU1/ArnoPro(1)/m/it on input line 69.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 69.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> EU1/ArnoPro(1)/bx/n on input line 69.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> EU1/ArnoPro(1)/bx/n on input line 69.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) EU1/ArnoPro(1)/m/it --> EU1/ArnoPro(1)/bx/it on input l
ine 69.
\symOperators:m:n=\mathgroup11
(/usr/local/texlive/2010/texmf-dist/tex/xelatex/xltxtra/xltxtra.sty
Package: xltxtra 2010/06/03 v0.5d Improvements for the "XeLaTeX" format
(/usr/local/texlive/2010/texmf-dist/tex/xelatex/xunicode/xunicode.sty
File: xunicode.sty 2008/02/08 v0.91 provides access to latin accents and many o
ther characters in Unicode lower plane
)
(/usr/local/texlive/2010/texmf-dist/tex/latex/metalogo/metalogo.sty
Package: metalogo 2010/05/29 v0.12 Extended TeX logo macros
\xl@everylogo=\toks49
\xl@@everylogo=\toks50
LaTeX Info: Redefining \TeX on input line 193.
LaTeX Info: Redefining \LaTeX on input line 202.
LaTeX Info: Redefining \LaTeXe on input line 219.
)
LaTeX Info: Redefining \textsubscript on input line 62.
LaTeX Info: Redefining \textsuperscript on input line 64.
\xxt@tempbox=\box37
)
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Info: Defining font family for 'Arno Pro' with options [Mapping=tex-t
ext, Numbers=OldStyle,Mapping=tex-text, Numbers=OldStyle, Ligatures={{Historic,
Contextual,Rare}}].
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape m/n with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape m/sc with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro/B',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro/B',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape bx/n with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro/B',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro/B',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape bx/sc with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro/I',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro/I',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape m/it with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro/I',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro/I',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape m/si with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro/BI',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro/BI',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape bx/it with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
fontspec Warning: OpenType feature 'Ligatures=Historic' (+hlig) not available
(fontspec) for font 'Arno Pro/BI',
(fontspec) with script 'Latin', and language 'Default'.
fontspec Warning: OpenType feature 'Ligatures=Contextual' (+clig) not availabl
e
(fontspec) for font 'Arno Pro/BI',
(fontspec) with script 'Latin', and language 'Default'.
Package fontspec Info: Defining shape bx/si with raw font features:
(fontspec) mapping=tex-text;+onum;mapping=tex-text;+onum;+dlig;.
) (./thesis.aux (./chapters/chapter1.aux) (./chapters/chapter2.aux)
(./chapters/chapter3.aux) (./endmatter/colophon.aux))
\openout1 = `thesis.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 6.
LaTeX Font Info: ... okay on input line 6.
\AtBeginShipoutBox=\box38
Package hyperref Info: Link coloring OFF on input line 6.
(/usr/local/texlive/2010/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
(/usr/local/texlive/2010/texmf-dist/tex/latex/oberdiek/refcount.sty
Package: refcount 2008/08/11 v3.1 Data extraction from references (HO)
)
(/usr/local/texlive/2010/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2009/12/18 v1.3 Cleanup title references (HO)
)
\c@section@level=\count192
)
LaTeX Info: Redefining \ref on input line 6.