瀏覽代碼

Finishes draft of thesis

Caleb Fangmeier 5 年之前
父節點
當前提交
823d714f2f

+ 4 - 2
Makefile

@@ -53,6 +53,7 @@ build/%.tex: content/%.md
 04_html: build/04_simulation_and_reconstruction.html
 05_html: build/05_tttt_measurement.html
 06_html: build/06_pixel_assembly.html
+07_html: build/07_conclusion.html
 
 00_tex: build/00_abstract.tex
 01_tex: build/01_introduction.tex
@@ -61,13 +62,14 @@ build/%.tex: content/%.md
 04_tex: build/04_simulation_and_reconstruction.tex
 05_tex: build/05_tttt_measurement.tex
 06_tex: build/06_pixel_assembly.tex
+07_tex: build/07_conclusion.tex
 
 
-html: 00_html 01_html 02_html 03_html 04_html 05_html 06_html
+html: 00_html 01_html 02_html 03_html 04_html 05_html 06_html 07_html
 	$(PELICAN) $(BUILDDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
 	$(PELICAN) $(BUILDDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
 
-pdf: 00_tex 01_tex 02_tex 03_tex 04_tex 05_tex 06_tex
+pdf: 00_tex 01_tex 02_tex 03_tex 04_tex 05_tex 06_tex 07_tex
 	cd $(BUILDDIR); rubber thesis
 	[ -f $(BUILDDIR)/thesis.pdf ] && cp $(BUILDDIR)/thesis.pdf $(OUTPUTDIR)
 

+ 3 - 0
build/abstract.latex

@@ -0,0 +1,3 @@
+
+$body$
+

+ 4 - 3
build/thesis.tex

@@ -120,8 +120,8 @@ citestyle=phys  % Amaerican Institute of Physics style
 \adviser{Frank Golf}
 \adviserAbstract{Professor Frank Golf}
 \major{Physics and Astronomy}
-\degreemonth{TBD}
-\degreeyear{TBD}
+\degreemonth{December}
+\degreeyear{2019}
 %%
 %% For most people the defaults will be correct, so they are commented
 %% out. To manually set these, just uncomment and make the needed
@@ -146,7 +146,7 @@ citestyle=phys  % Amaerican Institute of Physics style
 %%
 %% Required
 \begin{abstract}
-\include{00_abstract}
+    \input{00_abstract}
 \end{abstract}
 
 %% Optional
@@ -187,6 +187,7 @@ citestyle=phys  % Amaerican Institute of Physics style
 \include{04_simulation_and_reconstruction}
 \include{05_tttt_measurement}
 \include{06_pixel_assembly}
+\include{07_conclusion}
 
 %% backmatter is needed at the end of the main body of your thesis to
 %% set up page numbering correctly for the remainder of the thesis

文件差異過大導致無法顯示
+ 5 - 1
content/00_abstract.md


文件差異過大導致無法顯示
+ 4 - 13
content/01_introduction.md


+ 1 - 1
content/02_standard_model.md

@@ -202,5 +202,5 @@ $$
 m_f = \frac{y_f}{2} v.
 $$
 
-For most fermions, this coupling, $y_f$, is very small. For electrons it is roughly $2\times 10^{-6}$, for example. However, the top quark is unique in that its Yukawa coupling is ~1. This makes the top quark a fine candidate for studying the behaviour of the Higgs.
+For most fermions, this coupling, $y_f$, is very small. For electrons it is roughly $2\times 10^{-6}$, for example. However, the top quark is unique in that its Yukawa coupling is ~1. This makes the top quark a fine candidate for studying the behaviour of the Higgs. In particular, the production cross section of four top quarks is highly dependent upon the top Yukawa coupling. This is explored more deeply in chapter 5.
 

文件差異過大導致無法顯示
+ 42 - 31
content/05_tttt_measurement.md


文件差異過大導致無法顯示
+ 0 - 2
content/06_pixel_assembly.md


文件差異過大導致無法顯示
+ 8 - 0
content/07_conclusion.md


二進制
content/figures/four_top/systematic_uncertainties.png


文件差異過大導致無法顯示
+ 123 - 8
content/references.bib


+ 5 - 1
convert.py

@@ -8,13 +8,17 @@ from os.path import splitext, join
 
 def make_tex(infilename):
     outfilename = splitext(infilename)[0]+'.tex'
+    if 'abstract' in infilename:
+        template = 'abstract'
+    else:
+        template = 'chapter'
     run(('pandoc', '--biblatex',
          '-F', 'pandoc-crossref',
          '-F', '../filters/note_filter.py',
          # '-F', '../filters/shorthand_filter.py',
          '-s', infilename, '-o', outfilename,
          '--metadata=bibliography:references.bib',
-         '--template=chapter',
+         f'--template={template}',
          ))
     with open(outfilename, 'r') as f:
         body = f.read()