summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--local.mk2
-rw-r--r--manual.tex30
-rw-r--r--packages_and_macros.tex14
-rw-r--r--title_page.tex8
4 files changed, 27 insertions, 27 deletions
diff --git a/local.mk b/local.mk
index 36fe715..a8b1dda 100644
--- a/local.mk
+++ b/local.mk
@@ -7,7 +7,7 @@ PACKAGE_DIR = $(shell basename `pwd`)
tex_independent := manual.tex
t2t_fig_files :=
tex_fig_files := $(wildcard pdf_figs/*.pdf)
-tex_includes := $(wildcard chapters/*.tex)
+tex_includes := $(wildcard chapters/*.tex) title_page.tex packages_and_macros.tex
REQUIRED_TARGETS += pdf_tex
INSTALL_TARGETS += install_pdf_tex
diff --git a/manual.tex b/manual.tex
index 7800da0..2228d85 100644
--- a/manual.tex
+++ b/manual.tex
@@ -1,34 +1,15 @@
\documentclass[12pt,openany]{book}
-\usepackage{tabularx,boxedminipage,amsmath,fullpage,units}
-\usepackage{graphicx}
-\usepackage[pdftex,final]{hyperref}
-\hypersetup{
- colorlinks=true, % false: boxed links; true: colored links
- linkcolor=blue, % color of internal links
- citecolor=blue, % color of links to bibliography
- filecolor=magenta, % color of file links
- urlcolor=blue
-}
-
-\newcommand{\vect}[1]{\boldsymbol{#1}}
-
+\input{./packages_and_macros.tex}
\begin{document}
-\title{Physics 251 Atomic Physics Lab Manual}
-\author{
- W. J. Kossler \and A. Reilly \and J. Kane (2006 edition) \and
- I. Novikova (2009 edition)
- \and M. Kordosky (2011-2012 edition)
- \and E. E. Mikhailov (2013 edition)
-}
-\date{Fall 2013}
+
+\input{./title_page.tex}
\maketitle
\tableofcontents
-%\newpage
-
%\input{chapters/sched.tex}
%\include{chapters/intro}
+
\include{chapters/interferometry}
\include{chapters/emratio}
\include{chapters/ediffract}
@@ -41,11 +22,8 @@
%\input{chapters/hspect.tex}
%\input{chapters/naspec.tex}
-
-
%\include{chapters/spol}
%\input{chapters/millikan.tex}
-
%\input{chapters/tour.tex}
%\input{chapters/appendices.tex}
diff --git a/packages_and_macros.tex b/packages_and_macros.tex
new file mode 100644
index 0000000..bb03cbf
--- /dev/null
+++ b/packages_and_macros.tex
@@ -0,0 +1,14 @@
+% -*- latex -*-
+\usepackage{tabularx,boxedminipage,amsmath,fullpage,units}
+\usepackage{graphicx}
+\usepackage[pdftex,final]{hyperref}
+\hypersetup{
+ colorlinks=true, % false: boxed links; true: colored links
+ linkcolor=blue, % color of internal links
+ citecolor=blue, % color of links to bibliography
+ filecolor=magenta, % color of file links
+ urlcolor=blue
+}
+
+\newcommand{\vect}[1]{\boldsymbol{#1}}
+
diff --git a/title_page.tex b/title_page.tex
new file mode 100644
index 0000000..2ddcaa1
--- /dev/null
+++ b/title_page.tex
@@ -0,0 +1,8 @@
+\title{Physics 251 Atomic Physics Lab Manual}
+\author{
+ W. J. Kossler \and A. Reilly \and J. Kane (2006 edition) \and
+ I. Novikova (2009 edition)
+ \and M. Kordosky (2011-2012 edition)
+ \and E. E. Mikhailov (2013 edition)
+}
+\date{Fall 2013}