-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreader.log
More file actions
executable file
·1104 lines (982 loc) · 36.7 KB
/
reader.log
File metadata and controls
executable file
·1104 lines (982 loc) · 36.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 pdfTeX, Version 3.141592-1.40.4 (MiKTeX 2.7) (preloaded format=pdflatex 2008.1.29) 9 FEB 2008 10:43
entering extended mode
**\input reader.tex
(reader.tex ("C:\Program Files\MiKTeX 2.7\tex\latex\memoir\memoir.cls"
Document Class: memoir 2005/09/25 v1.618 configurable document class
\onelineskip=\skip41
\lxvchars=\skip42
\xlvchars=\skip43
\@memcnta=\count79
\stockheight=\skip44
\stockwidth=\skip45
\trimtop=\skip46
\trimedge=\skip47
("C:\Program Files\MiKTeX 2.7\tex\latex\memoir\mem11.clo"
File: mem11.clo 2002/07/27 v0.2 memoir class 11pt size option
)
\spinemargin=\skip48
\foremargin=\skip49
\uppermargin=\skip50
\lowermargin=\skip51
\headdrop=\skip52
\normalrulethickness=\skip53
\headwidth=\skip54
\c@storedpagenumber=\count80
\thanksmarkwidth=\skip55
\thanksmarksep=\skip56
\droptitle=\skip57
\abstitleskip=\skip58
\absleftindent=\skip59
\abs@leftindent=\dimen102
\absrightindent=\skip60
\absparindent=\skip61
\absparsep=\skip62
\c@part=\count81
\c@chapter=\count82
\c@section=\count83
\c@subsection=\count84
\c@subsubsection=\count85
\c@paragraph=\count86
\c@subparagraph=\count87
\beforechapskip=\skip63
\midchapskip=\skip64
\afterchapskip=\skip65
\chapindent=\skip66
\bottomsectionskip=\skip67
\secindent=\skip68
\beforesecskip=\skip69
\aftersecskip=\skip70
\subsecindent=\skip71
\beforesubsecskip=\skip72
\aftersubsecskip=\skip73
\subsubsecindent=\skip74
\beforesubsubsecskip=\skip75
\aftersubsubsecskip=\skip76
\paraindent=\skip77
\beforeparaskip=\skip78
\afterparaskip=\skip79
\subparaindent=\skip80
\beforesubparaskip=\skip81
\aftersubparaskip=\skip82
\pfbreakskip=\skip83
\c@@ppsavesec=\count88
\c@@ppsaveapp=\count89
\ragrparindent=\dimen103
\parsepi=\skip84
\topsepi=\skip85
\itemsepi=\skip86
\parsepii=\skip87
\topsepii=\skip88
\topsepiii=\skip89
\m@msavetopsep=\skip90
\m@msavepartopsep=\skip91
\@enLab=\toks14
\c@vslineno=\count90
\c@poemline=\count91
\c@modulo@vs=\count92
\vleftskip=\skip92
\vrightskip=\skip93
\stanzaskip=\skip94
\versewidth=\skip95
\vgap=\skip96
\vindent=\skip97
\vleftmargin=\dimen104
\c@verse=\count93
\c@chrsinstr=\count94
\beforepoemtitleskip=\skip98
\afterpoemtitleskip=\skip99
\c@poem=\count95
\beforePoemTitleskip=\skip100
\midPoemTitleskip=\skip101
\afterPoemTitleskip=\skip102
\col@sep=\dimen105
\extrarowheight=\dimen106
\NC@list=\toks15
\extratabsurround=\skip103
\backup@length=\skip104
\TX@col@width=\dimen107
\TX@old@table=\dimen108
\TX@old@col=\dimen109
\TX@target=\dimen110
\TX@delta=\dimen111
\TX@cols=\count96
\TX@ftn=\toks16
\heavyrulewidth=\dimen112
\lightrulewidth=\dimen113
\cmidrulewidth=\dimen114
\belowrulesep=\dimen115
\belowbottomsep=\dimen116
\aboverulesep=\dimen117
\abovetopsep=\dimen118
\cmidrulesep=\dimen119
\cmidrulekern=\dimen120
\defaultaddspace=\dimen121
\@cmidla=\count97
\@cmidlb=\count98
\@aboverulesep=\dimen122
\@belowrulesep=\dimen123
\@thisruleclass=\count99
\@lastruleclass=\count100
\@thisrulewidth=\dimen124
\ctableftskip=\skip105
\ctabrightskip=\skip106
\abovecolumnspenalty=\count101
\@linestogo=\count102
\@cellstogo=\count103
\@cellsincolumn=\count104
\crtok=\toks17
\@mincolumnwidth=\dimen125
\c@newflo@tctr=\count105
\@contcwidth=\skip107
\@contindw=\skip108
\abovecaptionskip=\skip109
\belowcaptionskip=\skip110
\subfloattopskip=\skip111
\subfloatcapskip=\skip112
\subfloatcaptopadj=\skip113
\subfloatbottomskip=\skip114
\subfloatlabelskip=\skip115
\subfloatcapmargin=\dimen126
\c@@contsubnum=\count106
\beforeepigraphskip=\skip116
\afterepigraphskip=\skip117
\epigraphwidth=\skip118
\epigraphrule=\skip119
LaTeX Info: Redefining \em on input line 4895.
LaTeX Info: Redefining \emph on input line 4903.
\tocentryskip=\skip120
\tocbaseline=\skip121
\cftparskip=\skip122
\cftbeforepartskip=\skip123
\cftpartindent=\skip124
\cftpartnumwidth=\skip125
\cftbeforechapterskip=\skip126
\cftchapterindent=\skip127
\cftchapternumwidth=\skip128
\cftbeforesectionskip=\skip129
\cftsectionindent=\skip130
\cftsectionnumwidth=\skip131
\cftbeforesubsectionskip=\skip132
\cftsubsectionindent=\skip133
\cftsubsectionnumwidth=\skip134
\cftbeforesubsubsectionskip=\skip135
\cftsubsubsectionindent=\skip136
\cftsubsubsectionnumwidth=\skip137
\cftbeforeparagraphskip=\skip138
\cftparagraphindent=\skip139
\cftparagraphnumwidth=\skip140
\cftbeforesubparagraphskip=\skip141
\cftsubparagraphindent=\skip142
\cftsubparagraphnumwidth=\skip143
\c@maxsecnumdepth=\count107
\bibindent=\dimen127
\bibitemsep=\skip144
\indexcolsep=\skip145
\indexrule=\skip146
\indexmarkstyle=\toks18
\@indexbox=\insert233
\glossarycolsep=\dimen128
\glossaryrule=\dimen129
\sideparvshift=\skip147
\sideins=\insert232
\sidebarhsep=\skip148
\sidebarvsep=\skip149
\sidebarwidth=\skip150
\footmarkwidth=\skip151
\footmarksep=\skip152
\footparindent=\skip153
\footinsdim=\skip154
\footinsv@r=\insert231
\@mpfootinsv@r=\insert230
\m@m@k=\count108
\m@m@h=\dimen130
\m@mipn@skip=\skip155
\c@sheetsequence=\count109
\c@lastsheet=\count110
\c@lastpage=\count111
\every@verbatim=\toks19
\afterevery@verbatim=\toks20
\verbatim@line=\toks21
\tab@position=\count112
\verbatim@in@stream=\read1
\verbatimindent=\skip156
\verbatim@out=\write3
\bvboxsep=\skip157
\c@bvlinectr=\count113
\bvnumlength=\skip158
\FrameRule=\dimen131
\FrameSep=\dimen132
\c@cp@cntr=\count114
LaTeX Info: Redefining \: on input line 8292.
LaTeX Info: Redefining \! on input line 8294.
\c@ism@mctr=\count115
\c@xsm@mctr=\count116
\c@csm@mctr=\count117
\c@ksm@mctr=\count118
\c@xksm@mctr=\count119
\c@cksm@mctr=\count120
\c@msm@mctr=\count121
\c@xmsm@mctr=\count122
\c@cmsm@mctr=\count123
\c@bsm@mctr=\count124
\c@workm@mctr=\count125
\c@figure=\count126
\c@lofdepth=\count127
\c@lofdepth=\count127
\cftbeforefigureskip=\skip159
\cftfigureindent=\skip160
\cftfigurenumwidth=\skip161
\c@table=\count127
\c@lotdepth=\count128
\c@lotdepth=\count128
\cftbeforetableskip=\skip162
\cfttableindent=\skip163
\cfttablenumwidth=\skip164
Package abstract emulated by memoir.
Package appendix emulated by memoir.
Package array emulated by memoir.
Package booktabs emulated by memoir.
Package ccaption emulated by memoir.
Package chngcntr emulated by memoir.
Package chngpage emulated by memoir.
Package crop emulated by memoir.
Package dcolumn emulated by memoir.
Package delarray emulated by memoir.
Package enumerate emulated by memoir.
Package epigraph emulated by memoir.
Package framed emulated by memoir.
Package ifmtarg emulated by memoir.
Package ifpdf emulated by memoir.
Package index emulated by memoir.
Package makeidx emulated by memoir.
Package moreverb emulated by memoir.
Package needspace emulated by memoir.
Package newfile emulated by memoir.
Package nextpage emulated by memoir.
Package patchcmd emulated by memoir.
Package shortvrb emulated by memoir.
Package showidx emulated by memoir.
Package tabularx emulated by memoir.
Package titleref emulated by memoir.
Package titling emulated by memoir.
Package tocbibind emulated by memoir.
Package tocloft emulated by memoir.
Package verbatim emulated by memoir.
Package verse emulated by memoir.
("C:\Program Files\MiKTeX 2.7\tex\latex\memoir\mempatch.sty"
File: mempatch.sty 2007/12/24 v4.9a Patches for memoir class v1.618
\m@mscap@capbox=\box26
\m@mscap@fbox=\box27
\sidecapsep=\dimen133
\sidecapwidth=\dimen134
\m@m@tempdima=\dimen135
\m@mscapraise=\dimen136
\sidecapraise=\dimen137
\m@mscapmainwidth=\dimen138
\m@mscaplkern=\dimen139
\c@book=\count128
\cftbeforebookskip=\skip165
\cftbookindent=\dimen140
\cftbooknumwidth=\dimen141
\c@pagenote=\count129
Package pagenote emulated by memoir.
\cftbeforesectionskip=\skip166
\cftsectionindent=\skip167
\cftsectionnumwidth=\skip168
\cftbeforesubsectionskip=\skip169
\cftsubsectionindent=\skip170
\cftsubsectionnumwidth=\skip171
\cftbeforesubsubsectionskip=\skip172
\cftsubsubsectionindent=\skip173
\cftsubsubsectionnumwidth=\skip174
\cftbeforeparagraphskip=\skip175
\cftparagraphindent=\skip176
\cftparagraphnumwidth=\skip177
\cftbeforesubparagraphskip=\skip178
\cftsubparagraphindent=\skip179
\cftsubparagraphnumwidth=\skip180
\cftbeforefigureskip=\skip181
\cftfigureindent=\skip182
\cftfigurenumwidth=\skip183
\cftbeforetableskip=\skip184
\cfttableindent=\skip185
\cfttablenumwidth=\skip186
LaTeX Info: Redefining \cftpagenumberson on input line 1333.
\everylistparindent=\dimen142
Package setspace emulated by memoir.
\memPD=\dimen143
Package parskip emulated by memoir.
\m@mabparskip=\skip187
\itemsepii=\skip188
\itemsepiii=\skip189
\partopsepiii=\skip190
\sidebartopsep=\skip191
\c@lofdepth=\count130
\c@lotdepth=\count131
\prechapterprecisshift=\dimen144
\c@memfvsline=\count132
\c@memfbvline=\count133
Package ifxetex emulated by memoir.
))
(readerpackage.sty
Package: readerpackage
("C:\Program Files\MiKTeX 2.7\tex\latex\amsmath\amsmath.sty"
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip192
For additional information on amsmath, use the `?' option.
("C:\Program Files\MiKTeX 2.7\tex\latex\amsmath\amstext.sty"
Package: amstext 2000/06/29 v2.01
("C:\Program Files\MiKTeX 2.7\tex\latex\amsmath\amsgen.sty"
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks22
\ex@=\dimen145
))
("C:\Program Files\MiKTeX 2.7\tex\latex\amsmath\amsbsy.sty"
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen146
)
("C:\Program Files\MiKTeX 2.7\tex\latex\amsmath\amsopn.sty"
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count134
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count135
\leftroot@=\count136
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count137
\DOTSCASE@=\count138
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@=\box28
\strutbox@=\box29
\big@size=\dimen147
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count139
\c@MaxMatrixCols=\count140
\dotsspace@=\muskip10
\c@parentequation=\count141
\dspbrk@lvl=\count142
\tag@help=\toks23
\row@=\count143
\column@=\count144
\maxfields@=\count145
\andhelp@=\toks24
\eqnshift@=\dimen148
\alignsep@=\dimen149
\tagshift@=\dimen150
\tagwidth@=\dimen151
\totwidth@=\dimen152
\lineht@=\dimen153
\@envbody=\toks25
\multlinegap=\skip193
\multlinetaggap=\skip194
\mathdisplay@stack=\toks26
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
("C:\Program Files\MiKTeX 2.7\tex\latex\amsfonts\amssymb.sty"
Package: amssymb 2002/01/22 v2.2d
("C:\Program Files\MiKTeX 2.7\tex\latex\amsfonts\amsfonts.sty"
Package: amsfonts 2001/10/25 v2.2f
\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 132.
))
("C:\Program Files\MiKTeX 2.7\tex\latex\amscls\amsthm.sty"
Package: amsthm 2004/08/06 v2.20
\thm@style=\toks27
\thm@bodyfont=\toks28
\thm@headfont=\toks29
\thm@notefont=\toks30
\thm@headpunct=\toks31
\thm@preskip=\skip195
\thm@postskip=\skip196
\thm@headsep=\skip197
\dth@everypar=\toks32
)
("C:\Program Files\MiKTeX 2.7\tex\latex\mflogo\mflogo.sty"
Package: mflogo 1999/03/10 v2.0 LaTeX package for Metafont and MetaPost logos
)
("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\graphicx.sty"
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\keyval.sty"
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks33
)
("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\graphics.sty"
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\trig.sty"
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\00miktex\graphics.cfg"
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 90.
("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\pdftex.def"
File: pdftex.def 2007/06/12 v0.04h Graphics/color for pdfTeX
\Gread@gobject=\count146
))
\Gin@req@height=\dimen154
\Gin@req@width=\dimen155
)
("C:\Program Files\MiKTeX 2.7\tex\latex\base\fontenc.sty"
Package: fontenc 2005/09/27 v1.99g Standard LaTeX package
("C:\Program Files\MiKTeX 2.7\tex\latex\base\t1enc.def"
File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file
LaTeX Font Info: Redeclaring font encoding T1 on input line 43.
))
("C:\Program Files\MiKTeX 2.7\tex\latex\psnfss\mathpazo.sty"
Package: mathpazo 2005/04/12 PSNFSS-v9.2a Palatino w/ Pazo Math (D.Puga, WaS)
\symupright=\mathgroup6
)
("C:\Program Files\MiKTeX 2.7\tex\latex\psnfss\helvet.sty"
Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\eulervm\eulervm.sty"
Package: eulervm 2005/01/11 v4.0 (WaS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\luxi\luximono.sty"
Package: luximono 2004/01/26 loading LuxiMono as tt font (WaS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\microtype.sty"
Package: microtype 2007/12/23 v2.3 Micro-typography with pdfTeX (RS)
\MT@toks=\toks34
\MT@count=\count147
LaTeX Info: Redefining \lsstyle on input line 1591.
LaTeX Info: Redefining \lslig on input line 1591.
\MT@outer@space=\skip198
LaTeX Info: Redefining \textls on input line 1592.
\MT@outer@kern=\dimen156
LaTeX Info: Redefining \textmicrotypecontext on input line 2119.
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\microtype.cfg"
File: microtype.cfg 2007/12/23 v2.3 microtype main configuration file (RS)
))
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xy.sty"
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xy.tex" Bootstrap'ing:
catcodes, docmode, ("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyrecat.tex"
) ("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyidioms.tex")
Xy-pic version 3.7 <1999/02/16>
Copyright (c) 1991-1998 by Kristoffer H. Rose <krisrose@ens-lyon.fr>
Xy-pic is free software: see the User's Guide for details.
Loading kernel: messages; fonts; allocations: state,
\X@c=\dimen157
\Y@c=\dimen158
\U@c=\dimen159
\D@c=\dimen160
\L@c=\dimen161
\R@c=\dimen162
\Edge@c=\toks35
\X@p=\dimen163
\Y@p=\dimen164
\U@p=\dimen165
\D@p=\dimen166
\L@p=\dimen167
\R@p=\dimen168
\Edge@p=\toks36
\X@origin=\dimen169
\Y@origin=\dimen170
\X@xbase=\dimen171
\Y@xbase=\dimen172
\X@ybase=\dimen173
\Y@ybase=\dimen174
\X@min=\dimen175
\Y@min=\dimen176
\X@max=\dimen177
\Y@max=\dimen178
\lastobjectbox@=\box30
\zerodotbox@=\box31
\almostz@=\dimen179
direction,
\d@X=\dimen180
\d@Y=\dimen181
\K@=\count148
\KK@=\count149
\Direction=\count150
\K@dXdY=\dimen182
\K@dYdX=\dimen183
\xyread@=\read2
\xywrite@=\write4
\csp@=\count151
\quotPTK@=\dimen184
utility macros; pictures: \xy, positions,
\swaptoks@@=\toks37
\connectobjectbox@@=\box32
objects,
\styletoks@=\toks38
decorations;
kernel objects: directionals, circles, text; options; algorithms: directions,
edges, connections; Xy-pic loaded)
Package: xy 1999/02/16 Xy-pic version 3.7
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyall.tex"
Xy-pic option: All features v.3.3
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xycurve.tex"
Xy-pic option: Curve and Spline extension v.3.7 curve,
\crv@cnt@=\count152
\crvpts@=\toks39
\splinebox@=\box33
\splineval@=\dimen185
\splinedepth@=\dimen186
\splinetol@=\dimen187
\splinelength@=\dimen188
circles,
\L@=\dimen189
loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyframe.tex"
Xy-pic option: Frame and Bracket extension v.3.7 loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xycmtip.tex"
Xy-pic option: Computer Modern tip extension v.3.3
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xytips.tex"
Xy-pic option: More Tips extension v.3.3 loaded) loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyline.tex"
Xy-pic option: Line styles extension v.3.6
\xylinethick@=\dimen190
loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyrotate.tex"
Xy-pic option: Rotate and Scale extension v.3.3 loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xycolor.tex"
Xy-pic option: Colour extension v.3.3 loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xymatrix.tex"
Xy-pic option: Matrix feature v.3.4
\Row=\count153
\Col=\count154
\queue@=\toks40
\queue@@=\toks41
\qcount@=\count155
\qcount@@=\count156
\matrixsize@=\count157
loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xyarrow.tex"
Xy-pic option: Arrow and Path feature v.3.5 path, \ar, loaded)
("C:\Program Files\MiKTeX 2.7\tex\generic\xypic\xygraph.tex"
Xy-pic option: Graph feature v.3.7 loaded) loaded))
("C:\Program Files\MiKTeX 2.7\tex\latex\koma-script\typearea.sty"
Package: typearea 2007/12/24 v2.98 KOMA-Script package (type area)
Package typearea, 2007/12/24 v2.98 KOMA-Script package (type area)
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-
("C:\Program Files\MiKTeX 2.7\tex\latex\koma-script\scrkbase.sty"
Package: scrkbase 2007/12/24 v2.98 KOMA-Script package (basics and keyval use)
("C:\Program Files\MiKTeX 2.7\tex\latex\koma-script\scrlfile.sty"
Package: scrlfile 2007/12/18 v2.98 KOMA-Script package (loading files)
Package scrlfile, 2007/12/18 v2.98 KOMA-Script package (loading files)
Copyright (C) Markus Kohm
LaTeX Warning: Command \InputIfFileExists has changed.
Check if current package is valid.
))
\ta@bcor=\skip199
\ta@div=\count158
Package scrkbase Info: You've used obsolete option `DIVcalc'.
(scrkbase) \KOMAExecuteOptions{DIV=calc} will be
(scrkbase) used instead.
(scrkbase) You may simply replace `DIVcalc'
(scrkbase) by `DIV=calc'.
\ta@hblk=\skip200
\ta@vblk=\skip201
\ta@temp=\skip202
DIV calculation for typearea with good linewidth.
LaTeX Font Info: Try loading font information for T1+ppl on input line 906.
("C:\Program Files\MiKTeX 2.7\tex\latex\psnfss\t1ppl.fd"
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
)
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 8
(typearea) BCOR = 34.1433pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 352.1029pt
(typearea) DIV-departure = 6/100
(typearea) \evensidemargin = 68.57117pt
(typearea) \oddsidemargin = 32.29388pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 541.40024pt
(typearea) \topmargin = -4.03914pt
(typearea) \headheight = 17.0pt
(typearea) \headsep = 20.40001pt
(typearea) \topskip = 11.0pt
(typearea) \footskip = 47.60002pt
(typearea) \baselineskip = 13.6pt
(typearea) on input line 906.
)
("C:\Program Files\MiKTeX 2.7\tex\latex\hyperref\hyperref.sty"
Package: hyperref 2008/01/09 v6.77i Hypertext links for LaTeX
("C:\Program Files\MiKTeX 2.7\tex\latex\oberdiek\hycolor.sty"
Package: hycolor 2007/04/11 v1.1 Code for color options of hyperref/bookmark (H
O)
)
\@linkdim=\dimen191
\Hy@linkcounter=\count159
\Hy@pagecounter=\count160
("C:\Program Files\MiKTeX 2.7\tex\latex\confproc\pd1enc.def"
File: pd1enc.def 1999/03/30 v0.3 PDFDocEncoding (Heiko Oberdiek)
)
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\etexcmds.sty"
Package: etexcmds 2007/12/12 v1.2 Prefix for e-TeX command names (HO)
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2007/09/09 v1.2 Providing info/warning/message (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.
)
("C:\Program Files\MiKTeX 2.7\tex\latex\00miktex\hyperref.cfg"
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
("C:\Program Files\MiKTeX 2.7\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2007/10/18 v3.0 Keyval support for LaTeX options (HO)
)
Package hyperref Info: Option `colorlinks' set `true' on input line 2686.
Package hyperref Info: Hyper figures OFF on input line 2722.
Package hyperref Info: Link nesting OFF on input line 2727.
Package hyperref Info: Hyper index ON on input line 2730.
Package hyperref Info: Plain pages OFF on input line 2737.
Package hyperref Info: Backreferencing OFF on input line 2742.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 2898.
("C:\Program Files\MiKTeX 2.7\tex\latex\ltxmisc\url.sty"
\Urlmuskip=\muskip11
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 3068.
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\bitset.sty"
Package: bitset 2007/09/28 v1.0 Data type bit set (HO)
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\intcalc.sty"
Package: intcalc 2007/09/27 v1.1 Expandable integer calculations (HO)
)
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\bigintcalc.sty"
Package: bigintcalc 2007/11/11 v1.1 Expandable big integer calculations (HO)
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\pdftexcmds.sty"
Package: pdftexcmds 2007/12/12 v0.3 LuaTeX support for pdfTeX utility functions
(HO)
Package pdftexcmds Info: LuaTeX not detected on input line 139.
)))
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\kvsetkeys.sty"
Package: kvsetkeys 2007/09/29 v1.3 Key value parser with default handler suppor
t (HO)
)
\Fld@menulength=\count161
\Field@Width=\dimen192
\Fld@charsize=\dimen193
\Field@toks=\toks42
Package hyperref Info: Hyper figures OFF on input line 3949.
Package hyperref Info: Link nesting OFF on input line 3954.
Package hyperref Info: Hyper index ON on input line 3957.
Package hyperref Info: backreferencing OFF on input line 3964.
Package hyperref Info: Link coloring ON on input line 3967.
("C:\Program Files\MiKTeX 2.7\tex\generic\oberdiek\atbegshi.sty"
Package: atbegshi 2007/09/09 v1.6 At begin shipout hook (HO)
)
\Hy@abspage=\count162
\c@Item=\count163
)
("C:\Program Files\MiKTeX 2.7\tex\latex\memoir\memhfixc.sty"
Package: memhfixc 2006/11/22 v1.9 nameref/hyperref package fixes for memoir cla
ss
\c@memhycontfloat=\count164
)
*hyperref using default driver hpdftex*
("C:\Program Files\MiKTeX 2.7\tex\latex\hyperref\hpdftex.def"
File: hpdftex.def 2008/01/09 v6.77i Hyperref driver for pdfTeX
\Fld@listcount=\count165
)
DIV calculation for typearea with good linewidth.
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 8
(typearea) BCOR = 34.1433pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 352.1029pt
(typearea) DIV-departure = 6/100
(typearea) \evensidemargin = 68.57117pt
(typearea) \oddsidemargin = 32.29388pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 539.36165pt
(typearea) \topmargin = -5.90924pt
(typearea) \headheight = 17.85005pt
(typearea) \headsep = 21.42006pt
(typearea) \topskip = 11.0pt
(typearea) \footskip = 49.98015pt
(typearea) \baselineskip = 14.28004pt
(typearea) on input line 21.
\c@theorem=\count166
\c@thm=\count167
) (reader.aux (overview.aux) (typeset.aux) (mathmode.aux) (moremathmode.aux)
(mathexamples.aux) (tables.aux) (doc_classes.aux) (packages.aux)
(newcommands.aux) (bibliography.aux) (software.aux) (mathcommands.aux)
(listpackages.aux) (commonerrors.aux))
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 9.
LaTeX Font Info: ... okay on input line 9.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 9.
LaTeX Font Info: ... okay on input line 9.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 9.
LaTeX Font Info: ... okay on input line 9.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 9.
LaTeX Font Info: ... okay on input line 9.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 9.
LaTeX Font Info: ... okay on input line 9.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 9.
LaTeX Font Info: ... okay on input line 9.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 9.
LaTeX Font Info: ... okay on input line 9.
("C:\Program Files\MiKTeX 2.7\tex\context\base\supp-pdf.tex"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count168
\scratchdimen=\dimen194
\scratchbox=\box34
\nofMPsegments=\count169
\nofMParguments=\count170
\MPscratchCnt=\count171
\MPscratchDim=\dimen195
\MPnumerator=\count172
\everyMPtoPDFconversion=\toks43
)
LaTeX Info: Redefining \microtypecontext on input line 9.
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: 4, non-selected.
Package microtype Info: Using default expansion set `basictext'.
Package microtype Info: No tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\mt-ppl.cfg"
File: mt-ppl.cfg 2005/11/16 v1.6 microtype config. file: Palatino (RS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\color.sty"
Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
("C:\Program Files\MiKTeX 2.7\tex\latex\00miktex\color.cfg"
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 130.
)
Package hyperref Info: Link coloring ON on input line 9.
("C:\Program Files\MiKTeX 2.7\tex\latex\hyperref\nameref.sty"
Package: nameref 2007/05/29 v2.31 Cross-referencing by name of section
("C:\Program Files\MiKTeX 2.7\tex\latex\oberdiek\refcount.sty"
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
)
\c@section@level=\count173
)
LaTeX Info: Redefining \ref on input line 9.
LaTeX Info: Redefining \pageref on input line 9.
(reader.out)
(reader.out)
\@outlinefile=\write5
\AtBeginShipoutBox=\box35
Redoing nameref's sectioning
Redoing nameref's label
LaTeX Font Info: Try loading font information for U+zeur on input line 16.
("C:\Program Files\MiKTeX 2.7\tex\latex\eulervm\uzeur.fd"
File: uzeur.fd 2005/01/11 v4.0 (WaS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\mt-eur.cfg"
File: mt-eur.cfg 2006/07/31 v1.1 microtype config. file: AMS Euler Roman (RS)
)
LaTeX Font Info: Try loading font information for U+zeus on input line 16.
("C:\Program Files\MiKTeX 2.7\tex\latex\eulervm\uzeus.fd"
File: uzeus.fd 2005/01/11 v4.0 (WaS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\mt-eus.cfg"
File: mt-eus.cfg 2006/07/28 v1.2 microtype config. file: AMS Euler Script (RS)
)
LaTeX Font Info: Try loading font information for U+zeuex on input line 16.
("C:\Program Files\MiKTeX 2.7\tex\latex\eulervm\uzeuex.fd"
File: uzeuex.fd 2005/01/11 v4.0 (WaS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\mt-msa.cfg"
File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS)
)
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\mt-msb.cfg"
File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS)
)
LaTeX Font Info: Try loading font information for OT1+zplm on input line 16.
("C:\Program Files\MiKTeX 2.7\tex\latex\psnfss\ot1zplm.fd"
File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm.
) [1
{C:/Documents and Settings/All Users/Application Data/MiKTeX/2.7/pdftex/config/
pdftex.map}]
[2
]
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <24.88> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 21.
(reader.toc
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <10.95> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 1.
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <8> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 3.
pdfTeX warning (ext4): destination with the same identifier (name{page.i}) has
been already used, duplicate ignored
<to be read again>
\relax
l.47 ...{4.4}Better Looking Math}{34}{section.4.4}
[1]
LaTeX Font Info: Try loading font information for T1+ul9 on input line 60.
("C:\Program Files\MiKTeX 2.7\tex\latex\luxi\t1ul9.fd"
File: t1ul9.fd 2003/03/02 font definitions for LuxiMono T1/ul9
)
LaTeX Font Info: Font shape `T1/ul9/m/n' will be
(Font) scaled to size 9.43053pt on input line 60.
pdfTeX warning (ext4): destination with the same identifier (name{page.ii}) has
been already used, duplicate ignored
<to be read again>
\relax
l.100 ...monly Used Math Commands}{81}{appendix.B}
[2]) (reader.lot [3])
[4] (overview.tex
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <20.74> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 1.
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <14.4> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 4.
Underfull \vbox (badness 10000) has occurred while \output is active []
[1
]
LaTeX Font Info: Try loading font information for U+logo on input line 48.
("C:\Program Files\MiKTeX 2.7\tex\latex\mflogo\ulogo.fd"
File: ulogo.fd 1999/03/10 v2.0 LaTeX font defs for Metafont and MetaPost logos
) [2]
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <10> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 91.
[3] [4] [5])
[6] (typeset.tex
LaTeX Font Info: Font shape `T1/ppl/bx/n' in size <12> not available
(Font) Font shape `T1/ppl/b/n' tried instead on input line 19.
[7
] [8]
Underfull \hbox (badness 10000) in paragraph at lines 111--114
[]
Underfull \hbox (badness 10000) in paragraph at lines 115--118
[]
Underfull \hbox (badness 10000) in paragraph at lines 119--122
[]
Underfull \hbox (badness 10000) in paragraph at lines 123--126
[]
Underfull \hbox (badness 10000) in paragraph at lines 127--129
[]
Underfull \hbox (badness 10000) in paragraph at lines 130--132
[]
Underfull \vbox (badness 7168) detected at line 136
[]
Underfull \vbox (badness 4846) has occurred while \output is active []
[9]
[10] [11] [12] [13] [14] [15] [16] [17] [18]) [19] (mathmode.tex [20
] [21]
[22] [23] [24] [25] [26]
LaTeX Font Info: Try loading font information for U+fplmbb on input line 333
.
("C:\Program Files\MiKTeX 2.7\tex\latex\psnfss\ufplmbb.fd"
File: ufplmbb.fd 2003/10/30 Fontinst v1.914 font definitions for U/fplmbb.
)
LaTeX Font Info: Try loading font information for T1+phv on input line 351.
("C:\Program Files\MiKTeX 2.7\tex\latex\psnfss\t1phv.fd"
File: t1phv.fd 2001/06/04 scalable font definitions for T1/phv.
)
("C:\Program Files\MiKTeX 2.7\tex\latex\microtype\mt-euf.cfg"
File: mt-euf.cfg 2006/07/03 v1.1 microtype config. file: AMS Euler Fraktur (RS)
) [27] [28])
[29] (moremathmode.tex [30
] [31] [32] <xymatrix 2x2 18> <xymatrix 2x2 154>
<xymatrix 2x2 182> [33]
LaTeX Font Info: Font shape `T1/ul9/m/it' in size <10.95> not available
(Font) Font shape `T1/ul9/m/sl' tried instead on input line 173.
LaTeX Font Info: Font shape `T1/ul9/m/sl' will be
(Font) scaled to size 9.43053pt on input line 173.
[34] [35] [36] [37] [38]) [39] (mathexamples.tex
[40
] [41] [42]
Underfull \vbox (badness 10000) has occurred while \output is active []
[43]
[44]
Underfull \vbox (badness 2205) has occurred while \output is active []
[45]
[46] <xymatrix 2x2 182> <xymatrix 2x2 196> <xymatrix 2x2 182> <xymatrix 2x2
182> [47]) [48] (tables.tex [49
]
LaTeX Font Info: Font shape `T1/ul9/bx/n' in size <14.4> not available
(Font) Font shape `T1/ul9/b/n' tried instead on input line 57.
LaTeX Font Info: Font shape `T1/ul9/b/n' will be
(Font) scaled to size 12.4018pt on input line 57.
[50]
Underfull \vbox (badness 4467) has occurred while \output is active []
[51]
[52]) [53] (doc_classes.tex [54
]
Underfull \vbox (badness 10000) has occurred while \output is active []
[55]