-
Notifications
You must be signed in to change notification settings - Fork 3
/
Lecture notes.log
1429 lines (1119 loc) · 43.8 KB
/
Lecture notes.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 pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2020.2.3) 28 MAY 2020 17:00
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**"Lecture notes.tex"
(./Lecture notes.tex
LaTeX2e <2018-12-01>
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2018/09/03 v1.4i Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option)
)
\c@part=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2018/12/01 v2.17b AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks14
\ex@=\dimen103
)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen104
) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count88
LaTeX Info: Redefining \frac on input line 223.
\uproot@=\count89
\leftroot@=\count90
LaTeX Info: Redefining \overline on input line 385.
\classnum@=\count91
\DOTSCASE@=\count92
LaTeX Info: Redefining \ldots on input line 482.
LaTeX Info: Redefining \dots on input line 485.
LaTeX Info: Redefining \cdots on input line 606.
\Mathstrutbox@=\box27
\strutbox@=\box28
\big@size=\dimen105
LaTeX Font Info: Redeclaring font encoding OML on input line 729.
LaTeX Font Info: Redeclaring font encoding OMS on input line 730.
\macc@depth=\count93
\c@MaxMatrixCols=\count94
\dotsspace@=\muskip10
\c@parentequation=\count95
\dspbrk@lvl=\count96
\tag@help=\toks15
\row@=\count97
\column@=\count98
\maxfields@=\count99
\andhelp@=\toks16
\eqnshift@=\dimen106
\alignsep@=\dimen107
\tagshift@=\dimen108
\tagwidth@=\dimen109
\totwidth@=\dimen110
\lineht@=\dimen111
\@envbody=\toks17
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks18
LaTeX Info: Redefining \[ on input line 2844.
LaTeX Info: Redefining \] on input line 2845.
) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 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 106.
) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
) (/usr/share/texlive/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2017/10/31 v2.20.4
\thm@style=\toks19
\thm@bodyfont=\toks20
\thm@headfont=\toks21
\thm@notefont=\toks22
\thm@headpunct=\toks23
\thm@preskip=\skip46
\thm@postskip=\skip47
\thm@headsep=\skip48
\dth@everypar=\toks24
) (/usr/share/texlive/texmf-dist/tex/latex/braket/braket.sty) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2018/04/16 v5.8 Page Geometry
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks25
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count100
\Gm@cntv=\count101
\c@Gm@tempcnt=\count102
\Gm@bindingoffset=\dimen112
\Gm@wd@mp=\dimen113
\Gm@odd@mp=\dimen114
\Gm@even@mp=\dimen115
\Gm@layoutwidth=\dimen116
\Gm@layoutheight=\dimen117
\Gm@layouthoffset=\dimen118
\Gm@layoutvoffset=\dimen119
\Gm@dimlist=\toks26
) (/usr/share/texlive/texmf-dist/tex/latex/bbold/bbold.sty
Package: bbold 1994/04/06 Bbold symbol package
LaTeX Font Info: Redeclaring math alphabet \mathbb on input line 42.
) (/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip49
\enit@outerparindent=\dimen120
\enit@toks=\toks27
\enit@inbox=\box29
\enit@count@id=\count103
\enitdp@description=\count104
) (/usr/share/texlive/texmf-dist/tex/latex/mdframed/mdframed.sty
Package: mdframed 2013/07/01 1.9b: mdframed
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)))) (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2019-07-01 L3 programming layer (loader)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex
Package: expl3 2019-07-01 L3 programming layer (code)
\c_max_int=\count105
\l_tmpa_int=\count106
\l_tmpb_int=\count107
\g_tmpa_int=\count108
\g_tmpb_int=\count109
\g__kernel_prg_map_int=\count110
\c__ior_term_ior=\count111
\c_log_iow=\count112
\l_iow_line_count_int=\count113
\l__iow_line_target_int=\count114
\l__iow_one_indent_int=\count115
\l__iow_indent_int=\count116
\c_zero_dim=\dimen121
\c_max_dim=\dimen122
\l_tmpa_dim=\dimen123
\l_tmpb_dim=\dimen124
\g_tmpa_dim=\dimen125
\g_tmpb_dim=\dimen126
\c_zero_skip=\skip50
\c_max_skip=\skip51
\l_tmpa_skip=\skip52
\l_tmpb_skip=\skip53
\g_tmpa_skip=\skip54
\g_tmpb_skip=\skip55
\c_zero_muskip=\muskip11
\c_max_muskip=\muskip12
\l_tmpa_muskip=\muskip13
\l_tmpb_muskip=\muskip14
\g_tmpa_muskip=\muskip15
\g_tmpb_muskip=\muskip16
\l_keys_choice_int=\count117
\l__intarray_loop_int=\count118
\c__intarray_sp_dim=\dimen127
\g__intarray_font_int=\count119
\c__fp_leading_shift_int=\count120
\c__fp_middle_shift_int=\count121
\c__fp_trailing_shift_int=\count122
\c__fp_big_leading_shift_int=\count123
\c__fp_big_middle_shift_int=\count124
\c__fp_big_trailing_shift_int=\count125
\c__fp_Bigg_leading_shift_int=\count126
\c__fp_Bigg_middle_shift_int=\count127
\c__fp_Bigg_trailing_shift_int=\count128
\c__kernel_randint_max_int=\count129
\g__fp_array_int=\count130
\l__fp_array_loop_int=\count131
\l__sort_length_int=\count132
\l__sort_min_int=\count133
\l__sort_top_int=\count134
\l__sort_max_int=\count135
\l__sort_true_max_int=\count136
\l__sort_block_int=\count137
\l__sort_begin_int=\count138
\l__sort_end_int=\count139
\l__sort_A_int=\count140
\l__sort_B_int=\count141
\l__sort_C_int=\count142
\l__str_internal_int=\count143
\c__str_replacement_char_int=\count144
\l__tl_analysis_normal_int=\count145
\l__tl_analysis_index_int=\count146
\l__tl_analysis_nesting_int=\count147
\l__tl_analysis_type_int=\count148
\l__regex_internal_a_int=\count149
\l__regex_internal_b_int=\count150
\l__regex_internal_c_int=\count151
\l__regex_balance_int=\count152
\l__regex_group_level_int=\count153
\l__regex_mode_int=\count154
\c__regex_cs_in_class_mode_int=\count155
\c__regex_cs_mode_int=\count156
\l__regex_catcodes_int=\count157
\l__regex_default_catcodes_int=\count158
\c__regex_catcode_D_int=\count159
\c__regex_catcode_S_int=\count160
\c__regex_catcode_L_int=\count161
\c__regex_catcode_O_int=\count162
\c__regex_catcode_A_int=\count163
\c__regex_all_catcodes_int=\count164
\l__regex_show_lines_int=\count165
\l__regex_min_state_int=\count166
\l__regex_max_state_int=\count167
\l__regex_left_state_int=\count168
\l__regex_right_state_int=\count169
\l__regex_capturing_group_int=\count170
\l__regex_min_pos_int=\count171
\l__regex_max_pos_int=\count172
\l__regex_curr_pos_int=\count173
\l__regex_start_pos_int=\count174
\l__regex_success_pos_int=\count175
\l__regex_curr_char_int=\count176
\l__regex_curr_catcode_int=\count177
\l__regex_last_char_int=\count178
\l__regex_case_changed_char_int=\count179
\l__regex_curr_state_int=\count180
\l__regex_step_int=\count181
\l__regex_min_active_int=\count182
\l__regex_max_active_int=\count183
\l__regex_replacement_csnames_int=\count184
\l__regex_match_count_int=\count185
\l__regex_min_submatch_int=\count186
\l__regex_submatch_int=\count187
\l__regex_zeroth_submatch_int=\count188
\g__regex_trace_regex_int=\count189
\c_empty_box=\box30
\l_tmpa_box=\box31
\l_tmpb_box=\box32
\g_tmpa_box=\box33
\g_tmpb_box=\box34
\l__box_top_dim=\dimen128
\l__box_bottom_dim=\dimen129
\l__box_left_dim=\dimen130
\l__box_right_dim=\dimen131
\l__box_top_new_dim=\dimen132
\l__box_bottom_new_dim=\dimen133
\l__box_left_new_dim=\dimen134
\l__box_right_new_dim=\dimen135
\l__box_internal_box=\box35
\l__coffin_internal_box=\box36
\l__coffin_internal_dim=\dimen136
\l__coffin_offset_x_dim=\dimen137
\l__coffin_offset_y_dim=\dimen138
\l__coffin_x_dim=\dimen139
\l__coffin_y_dim=\dimen140
\l__coffin_x_prime_dim=\dimen141
\l__coffin_y_prime_dim=\dimen142
\c_empty_coffin=\box37
\l__coffin_aligned_coffin=\box38
\l__coffin_aligned_internal_coffin=\box39
\l_tmpa_coffin=\box40
\l_tmpb_coffin=\box41
\g_tmpa_coffin=\box42
\g_tmpb_coffin=\box43
\l__coffin_bounding_shift_dim=\dimen143
\l__coffin_left_corner_dim=\dimen144
\l__coffin_right_corner_dim=\dimen145
\l__coffin_bottom_corner_dim=\dimen146
\l__coffin_top_corner_dim=\dimen147
\l__coffin_scaled_total_height_dim=\dimen148
\l__coffin_scaled_width_dim=\dimen149
\c__coffin_empty_coffin=\box44
\l__coffin_display_coffin=\box45
\l__coffin_display_coord_coffin=\box46
\l__coffin_display_pole_coffin=\box47
\l__coffin_display_offset_dim=\dimen150
\l__coffin_display_x_dim=\dimen151
\l__coffin_display_y_dim=\dimen152
\g__file_internal_ior=\read1
\l__seq_internal_a_int=\count190
\l__seq_internal_b_int=\count191
\c__deprecation_minus_one=\count192
) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
File: l3backend-pdfmode.def 2019-04-06 v L3 Experimental backend support: PDF mode
\l__kernel_color_stack_int=\count193
\l__pdf_internal_box=\box48
))
Package: xparse 2019-05-28 L3 Experimental document command parser
\l__xparse_current_arg_int=\count194
\g__xparse_grabber_int=\count195
\l__xparse_m_args_int=\count196
\l__xparse_v_nesting_int=\count197
) (/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count198
) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/zref-abspage.sty
Package: zref-abspage 2018/11/21 v2.27 Module abspage for zref (HO)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/zref-base.sty
Package: zref-base 2018/11/21 v2.27 Module base for zref (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO)
)
Package zref Info: New property list: main on input line 759.
Package zref Info: New property: default on input line 760.
Package zref Info: New property: page on input line 761.
) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/atbegshi.sty
Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO)
)
\c@abspage=\count199
Package zref Info: New property: abspage on input line 62.
) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty
Package: needspace 2010/09/12 v1.3d reserve vertical space
) (/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
))
\mdf@templength=\skip56
\c@mdf@globalstyle@cnt=\count266
\mdf@skipabove@length=\skip57
\mdf@skipbelow@length=\skip58
\mdf@leftmargin@length=\skip59
\mdf@rightmargin@length=\skip60
\mdf@innerleftmargin@length=\skip61
\mdf@innerrightmargin@length=\skip62
\mdf@innertopmargin@length=\skip63
\mdf@innerbottommargin@length=\skip64
\mdf@splittopskip@length=\skip65
\mdf@splitbottomskip@length=\skip66
\mdf@outermargin@length=\skip67
\mdf@innermargin@length=\skip68
\mdf@linewidth@length=\skip69
\mdf@innerlinewidth@length=\skip70
\mdf@middlelinewidth@length=\skip71
\mdf@outerlinewidth@length=\skip72
\mdf@roundcorner@length=\skip73
\mdf@footenotedistance@length=\skip74
\mdf@userdefinedwidth@length=\skip75
\mdf@needspace@length=\skip76
\mdf@frametitleaboveskip@length=\skip77
\mdf@frametitlebelowskip@length=\skip78
\mdf@frametitlerulewidth@length=\skip79
\mdf@frametitleleftmargin@length=\skip80
\mdf@frametitlerightmargin@length=\skip81
\mdf@shadowsize@length=\skip82
\mdf@extratopheight@length=\skip83
\mdf@subtitleabovelinewidth@length=\skip84
\mdf@subtitlebelowlinewidth@length=\skip85
\mdf@subtitleaboveskip@length=\skip86
\mdf@subtitlebelowskip@length=\skip87
\mdf@subtitleinneraboveskip@length=\skip88
\mdf@subtitleinnerbelowskip@length=\skip89
\mdf@subsubtitleabovelinewidth@length=\skip90
\mdf@subsubtitlebelowlinewidth@length=\skip91
\mdf@subsubtitleaboveskip@length=\skip92
\mdf@subsubtitlebelowskip@length=\skip93
\mdf@subsubtitleinneraboveskip@length=\skip94
\mdf@subsubtitleinnerbelowskip@length=\skip95
(/usr/share/texlive/texmf-dist/tex/latex/mdframed/md-frame-0.mdf
File: md-frame-0.mdf 2013/07/01\ 1.9b: md-frame-0
)
\mdf@frametitlebox=\box49
\mdf@footnotebox=\box50
\mdf@splitbox@one=\box51
\mdf@splitbox@two=\box52
\mdf@splitbox@save=\box53
\mdfsplitboxwidth=\skip96
\mdfsplitboxtotalwidth=\skip97
\mdfsplitboxheight=\skip98
\mdfsplitboxdepth=\skip99
\mdfsplitboxtotalheight=\skip100
\mdfframetitleboxwidth=\skip101
\mdfframetitleboxtotalwidth=\skip102
\mdfframetitleboxheight=\skip103
\mdfframetitleboxdepth=\skip104
\mdfframetitleboxtotalheight=\skip105
\mdffootnoteboxwidth=\skip106
\mdffootnoteboxtotalwidth=\skip107
\mdffootnoteboxheight=\skip108
\mdffootnoteboxdepth=\skip109
\mdffootnoteboxtotalheight=\skip110
\mdftotallinewidth=\skip111
\mdfboundingboxwidth=\skip112
\mdfboundingboxtotalwidth=\skip113
\mdfboundingboxheight=\skip114
\mdfboundingboxdepth=\skip115
\mdfboundingboxtotalheight=\skip116
\mdf@freevspace@length=\skip117
\mdf@horizontalwidthofbox@length=\skip118
\mdf@verticalmarginwhole@length=\skip119
\mdf@horizontalspaceofbox=\skip120
\mdfsubtitleheight=\skip121
\mdfsubsubtitleheight=\skip122
\c@mdfcountframes=\count267
****** mdframed patching \endmdf@trivlist
****** -- success******
\mdf@envdepth=\count268
\c@mdf@env@i=\count269
\c@mdf@env@ii=\count270
\c@mdf@zref@counter=\count271
Package zref Info: New property: mdf@pagevalue on input line 895.
) (/usr/share/texlive/texmf-dist/tex/latex/ntheorem/ntheorem.sty
Style `ntheorem', Version 1.33 <2011/08/15>
Package: ntheorem 2011/08/15 1.33
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
/usr/share/texlive/texmf-dist/tex/latex/ntheorem/ntheorem.sty:524: Package ntheorem Error: Theorem style plain already defined.
See the ntheorem package documentation for explanation.
Type H <return> for immediate help.
...
l.524 ...rfont ##1\ ##2\ (##3)\theorem@separator]}
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.
\theorem@style=\toks28
\theorem@@style=\toks29
\theorembodyfont=\toks30
\theoremnumbering=\toks31
\theorempreskipamount=\skip123
\theorempostskipamount=\skip124
\theoremframepreskipamount=\skip125
\theoremframepostskipamount=\skip126
\theoreminframepreskipamount=\skip127
\theoreminframepostskipamount=\skip128
\theorem@preskip=\toks32
\theorem@postskip=\toks33
\theorem@framepreskip=\toks34
\theorem@framepostskip=\toks35
\theorem@inframepreskip=\toks36
\theorem@inframepostskip=\toks37
\theoremindent=\dimen153
\theorem@indent=\dimen154
\theoremrightindent=\dimen155
\theorem@rightindent=\dimen156
\theoremheaderfont=\toks38
\theoremseparator=\toks39
\theoremprework=\toks40
\theorempostwork=\toks41
\theoremsymbol=\toks42
\qedsymbol=\toks43
\theoremkeyword=\toks44
\qedsymbol=\toks45
\thm@topsep=\skip129
\thm@topsepadd=\skip130
) (/usr/share/texlive/texmf-dist/tex/latex/commath/commath.sty) (/usr/share/texlive/texmf-dist/tex/latex/mathtools/mathtools.sty
Package: mathtools 2018/01/08 v1.21 mathematical typesetting tools
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count272
\calc@Bcount=\count273
\calc@Adimen=\dimen157
\calc@Bdimen=\dimen158
\calc@Askip=\skip131
\calc@Bskip=\skip132
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count274
\calc@Cskip=\skip133
) (/usr/share/texlive/texmf-dist/tex/latex/mathtools/mhsetup.sty
Package: mhsetup 2017/03/31 v1.3 programming setup (MH)
)
LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 129.
LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 129.
\g_MT_multlinerow_int=\count275
\l_MT_multwidth_dim=\dimen159
\origjot=\skip134
\l_MT_shortvdotswithinadjustabove_dim=\dimen160
\l_MT_shortvdotswithinadjustbelow_dim=\dimen161
\l_MT_above_intertext_sep=\dimen162
\l_MT_below_intertext_sep=\dimen163
\l_MT_above_shortintertext_sep=\dimen164
\l_MT_below_shortintertext_sep=\dimen165
) (/usr/share/texlive/texmf-dist/tex/latex/doublestroke/dsfont.sty
Package: dsfont 1995/08/01 v0.1 Double stroke roman fonts
) (/usr/share/texlive/texmf-dist/tex/latex/qcircuit/qcircuit.sty
Package: qcircuit 2018/08/14
(/usr/share/texlive/texmf-dist/tex/generic/xypic/xy.sty (/usr/share/texlive/texmf-dist/tex/generic/xypic/xy.tex Bootstrap'ing: catcodes, docmode, (/usr/share/texlive/texmf-dist/tex/generic/xypic/xyrecat.tex) (/usr/share/texlive/texmf-dist/tex/generic/xypic/xyidioms.tex)
Xy-pic version 3.8.9 <2013/10/06>
Copyright (c) 1991-2013 by Kristoffer H. Rose <krisrose@tug.org> and others
Xy-pic is free software: see the User's Guide for details.
Loading kernel: messages; fonts; allocations: state,
\X@c=\dimen166
\Y@c=\dimen167
\U@c=\dimen168
\D@c=\dimen169
\L@c=\dimen170
\R@c=\dimen171
\Edge@c=\toks46
\X@p=\dimen172
\Y@p=\dimen173
\U@p=\dimen174
\D@p=\dimen175
\L@p=\dimen176
\R@p=\dimen177
\Edge@p=\toks47
\X@origin=\dimen178
\Y@origin=\dimen179
\X@xbase=\dimen180
\Y@xbase=\dimen181
\X@ybase=\dimen182
\Y@ybase=\dimen183
\X@min=\dimen184
\Y@min=\dimen185
\X@max=\dimen186
\Y@max=\dimen187
\lastobjectbox@=\box54
\zerodotbox@=\box55
\almostz@=\dimen188
direction,
\d@X=\dimen189
\d@Y=\dimen190
\K@=\count276
\KK@=\count277
\Direction=\count278
\K@dXdY=\dimen191
\K@dYdX=\dimen192
\xyread@=\read2
\xywrite@=\write3
\csp@=\count279
\quotPTK@=\dimen193
utility macros; pictures: \xy, positions,
\swaptoks@@=\toks48
\connectobjectbox@@=\box56
objects,
\styletoks@=\toks49
decorations; kernel objects: directionals, circles, text; options; algorithms: directions, edges, connections; Xy-pic loaded)
Package: xy 2013/10/06 Xy-pic version 3.8.9
(/usr/share/texlive/texmf-dist/tex/generic/xypic/xypdf.tex Xy-pic option: PDF driver v.1.7 loaded)) (/usr/share/texlive/texmf-dist/tex/generic/xypic/xymatrix.tex Xy-pic option: Matrix feature v.3.14
\Row=\count280
\Col=\count281
\queue@=\toks50
\queue@@=\toks51
\qcount@=\count282
\qcount@@=\count283
\matrixsize@=\count284
loaded) (/usr/share/texlive/texmf-dist/tex/generic/xypic/xyframe.tex Xy-pic option: Frame and Bracket extension v.3.14 loaded) Xy-pic pdf driver: `frame' extension support (/usr/share/texlive/texmf-dist/tex/generic/xypic/xypdf-fr.tex (/usr/share/texlive/texmf-dist/tex/generic/xypic/xycurve.tex Xy-pic option: Curve and Spline extension v.3.12 curve,
\crv@cnt@=\count285
\crvpts@=\toks52
\splinebox@=\box57
\splineval@=\dimen194
\splinedepth@=\dimen195
\splinetol@=\dimen196
\splinelength@=\dimen197
circles,
\L@=\dimen198
loaded) Xy-pic pdf driver: `curve' extension support (/usr/share/texlive/texmf-dist/tex/generic/xypic/xypdf-cu.tex loaded) loaded) (/usr/share/texlive/texmf-dist/tex/generic/xypic/xyarrow.tex Xy-pic option: Arrow and Path feature v.3.9 path, \ar, loaded) (/usr/share/texlive/texmf-dist/tex/generic/xypic/xyarc.tex Xy-pic option: Circle, Ellipse, Arc feature v.3.8 circles, ellipses, elliptical arcs, loaded))
\c@remark=\count286
\c@propos=\count287
\c@example=\count288
\c@definition=\count289
\c@theorem=\count290
\c@postu=\count291
(./Lecture notes.aux)
\openout1 = `"Lecture notes.aux"'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 26.
LaTeX Font Info: ... okay on input line 26.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 26.
LaTeX Font Info: ... okay on input line 26.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 26.
LaTeX Font Info: ... okay on input line 26.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 26.
LaTeX Font Info: ... okay on input line 26.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 26.
LaTeX Font Info: ... okay on input line 26.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 26.
LaTeX Font Info: ... okay on input line 26.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: <default>
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(72.26999pt, 469.75502pt, 72.26999pt)
* v-part:(T,H,B)=(72.26999pt, 650.43001pt, 72.26999pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=469.75502pt
* \textheight=650.43001pt
* \oddsidemargin=0.0pt
* \evensidemargin=0.0pt
* \topmargin=-37.0pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=65.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.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)
\AtBeginShipoutBox=\box58
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count292
\scratchdimen=\dimen199
\scratchbox=\box59
\nofMPsegments=\count293
\nofMParguments=\count294
\everyMPshowfont=\toks53
\MPscratchCnt=\count295
\MPscratchDim=\dimen256
\MPnumerator=\count296
\makeMPintoPDFobject=\count297
\everyMPtoPDFconversion=\toks54
) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 99.
)
\Gin@req@height=\dimen257
\Gin@req@width=\dimen258
)
LaTeX Font Info: Try loading font information for U+msa on input line 26.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 26.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
Package xypdf Info: Line width: 0.39998pt on input line 26.
Underfull \hbox (badness 10000) in paragraph at lines 30--34
[]
LaTeX Font Info: Try loading font information for OMS+cmr on input line 52.
(/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd
File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 52.
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
Underfull \hbox (badness 10000) in paragraph at lines 105--107
[]
[2]
Underfull \hbox (badness 10000) in paragraph at lines 120--124
[]
Underfull \hbox (badness 10000) in paragraph at lines 129--132
[]
Underfull \hbox (badness 10000) in paragraph at lines 129--132
[]
[3]
Package mdframed Info: mdframed detected package amsthm
changed the theorem header of amsthm
(mdframed) on input line 168.
LaTeX Font Info: Try loading font information for U+bbold on input line 180.
(/usr/share/texlive/texmf-dist/tex/latex/bbold/Ubbold.fd)
Package mdframed Info: mdframed detected package amsthm
changed the theorem header of amsthm
(mdframed) on input line 212.
Underfull \hbox (badness 10000) in paragraph at lines 225--226
[]
LaTeX Font Info: Try loading font information for U+dsrom on input line 242.
(/usr/share/texlive/texmf-dist/tex/latex/doublestroke/Udsrom.fd
File: Udsrom.fd 1995/08/01 v0.1 Double stroke roman font definitions
)
<graph/1.png, id=22, 382.42876pt x 144.54pt>
File: graph/1.png Graphic file (type png)
<use graph/1.png>
Package pdftex.def Info: graph/1.png used on input line 250.
(pdftex.def) Requested size: 191.2139pt x 72.2698pt.
Package mdframed Info: mdframed detected package amsthm
changed the theorem header of amsthm
(mdframed) on input line 293.
Package mdframed Info: Not enough space on this page on input line 303.
[4 <./graph/1.png>]
Package mdframed Info: Not enough space on this page on input line 303.
Package mdframed Info: mdframed detected package amsthm
changed the theorem header of amsthm
(mdframed) on input line 304.
LaTeX Font Info: Font shape `OMS/cmr/m/it' in size <10> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 333.
[5]
<graph/2.png, id=38, 803.0pt x 854.19125pt>
File: graph/2.png Graphic file (type png)
<use graph/2.png>
Package pdftex.def Info: graph/2.png used on input line 365.
(pdftex.def) Requested size: 80.3047pt x 85.42412pt.
./Lecture notes.tex:381: LaTeX Error: There's no line here to end.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.381 \[
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.
Underfull \hbox (badness 10000) in paragraph at lines 387--391
[]
Package mdframed Info: mdframed detected package amsthm
changed the theorem header of amsthm
(mdframed) on input line 397.
Underfull \hbox (badness 10000) in paragraph at lines 401--404
[]
[6 <./graph/2.png>]
Overfull \hbox (32.07721pt too wide) in paragraph at lines 422--424
\OT1/cmr/m/it/10 From pos-tu-late of pro-jec-tive mea-sure-ment, $\OML/cmm/m/it/10 M[] \OT1/cmr/m/n/10 = \OML/cmm/m/it/10 M[]\OT1/cmr/m/n/10 (\OML/cmm/m/it/10 Hermition\OT1/cmr/m/n/10 )$ \OT1/cmr/m/it/10 and $\OML/cmm/m/it/10 M[]M[] \OT1/cmr/m/n/10 = \OML/cmm/m/it/10 M[]^^N[]\OT1/cmr/m/n/10 (\OML/cmm/m/it/10 OrthogonalProjector\OT1/cmr/m/n/10 )$
[]
Underfull \hbox (badness 10000) in paragraph at lines 427--430
[]
Underfull \hbox (badness 10000) in paragraph at lines 460--467
[]
Underfull \hbox (badness 10000) in paragraph at lines 460--467
[]
Underfull \hbox (badness 10000) in paragraph at lines 460--467
[]
[7]
Package mdframed Info: mdframed detected package amsthm
changed the theorem header of amsthm
(mdframed) on input line 490.
./Lecture notes.tex:534: LaTeX Error: There's no line here to end.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.534 \begin
{enumerate}
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.
Underfull \hbox (badness 10000) in paragraph at lines 537--538
[]
[8]
Underfull \hbox (badness 10000) in paragraph at lines 607--609
[]
[9]
Underfull \hbox (badness 10000) in paragraph at lines 610--612
[]
Underfull \hbox (badness 10000) in paragraph at lines 650--652
[]
Underfull \hbox (badness 10000) in paragraph at lines 655--659
[]
[10]
<graph/3.png, id=58, 398.23781pt x 225.09094pt>
File: graph/3.png Graphic file (type png)
<use graph/3.png>
Package pdftex.def Info: graph/3.png used on input line 666.
(pdftex.def) Requested size: 119.47226pt x 67.52779pt.
Underfull \hbox (badness 10000) in paragraph at lines 674--677
[]
Underfull \hbox (badness 10000) in paragraph at lines 721--725
[]
Underfull \hbox (badness 10000) in paragraph at lines 721--725
[]
[11 <./graph/3.png>]
./Lecture notes.tex:732: Double subscript.
l.732 ...\psi|P_{m}|\psi} = _{a}\braket{-|+}_{b} _
{b}\braket{+|-}_{a}=\sin^{...
I treat `x_1_2' essentially like `x_1{}_2'.
Underfull \hbox (badness 10000) in paragraph at lines 735--737
[]
<graph/4.png, id=63, 520.94624pt x 179.16937pt>
File: graph/4.png Graphic file (type png)
<use graph/4.png>
Package pdftex.def Info: graph/4.png used on input line 740.
(pdftex.def) Requested size: 156.28508pt x 53.75122pt.
Underfull \hbox (badness 10000) in paragraph at lines 747--751
[]
Underfull \hbox (badness 10000) in paragraph at lines 747--751
[]
Underfull \hbox (badness 10000) in paragraph at lines 747--751
[]
[12 <./graph/4.png>]
Underfull \hbox (badness 10000) in paragraph at lines 794--797
[]
Underfull \hbox (badness 10000) in paragraph at lines 799--803
[]
<graph/5.png, id=68, 190.46156pt x 190.46156pt>
File: graph/5.png Graphic file (type png)
<use graph/5.png>
Package pdftex.def Info: graph/5.png used on input line 813.
(pdftex.def) Requested size: 95.23053pt x 95.23053pt.
LaTeX Warning: `h' float specifier changed to `ht'.
Underfull \hbox (badness 10000) in paragraph at lines 823--830
[]
Underfull \hbox (badness 10000) in paragraph at lines 823--830
[]
Underfull \hbox (badness 10000) in paragraph at lines 823--830
[]
Underfull \hbox (badness 10000) in paragraph at lines 823--830
[]
Underfull \hbox (badness 10000) in paragraph at lines 823--830
[]
Underfull \hbox (badness 10000) in paragraph at lines 823--830
[]
[13]
<graph/6.png, id=73, 424.58624pt x 312.41719pt>
File: graph/6.png Graphic file (type png)
<use graph/6.png>
Package pdftex.def Info: graph/6.png used on input line 833.
(pdftex.def) Requested size: 169.83148pt x 124.96465pt.
Underfull \hbox (badness 10000) in paragraph at lines 842--843
[]
[14 <./graph/5.png> <./graph/6.png>]
./Lecture notes.tex:876: Missing { inserted.
<to be read again>
}
l.876 \end{proof}
A left brace was mandatory here, so I've put one in.
You might want to delete and/or insert some corrections
so that I will find a matching right brace soon.
(If you're confused by all this, try typing `I}' now.)
./Lecture notes.tex:876: Missing } inserted.
<inserted text>
}
l.876 \end{proof}
I've inserted something that you may have forgotten.
(See the <inserted text> above.)
With luck, this will get me unwedged. But if you
really didn't forget anything, try typing `2' now; then
my insertion and my current dilemma will both disappear.
Underfull \hbox (badness 10000) in paragraph at lines 879--880
[]
<xymatrix 3x1 143> <xymatrix 3x1 143> <xymatrix 3x1 143> <xymatrix 3x1 143> <xymatrix 3x1 143> <xymatrix 3x1 143>
Overfull \hbox (17.20514pt too wide) detected at line 911
[][]
[]
<xymatrix 3x1 143> <xymatrix 5x1 341> <xymatrix 5x1 341> <xymatrix 5x1 341>
Underfull \hbox (badness 10000) in paragraph at lines 946--949