From 97c5b833811e6884e8152996c1ffd68205290bee Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Sun, 22 Mar 2020 15:10:06 -0400
Subject: added stub papers
---
Makefile | 4 ++--
execsumm/document.tex | 4 ++++
format.tex | 18 ++++++++++++++----
progreport/document.tex | 4 ++++
4 files changed, 24 insertions(+), 6 deletions(-)
create mode 100644 execsumm/document.tex
create mode 100644 progreport/document.tex
diff --git a/Makefile b/Makefile
index 163bc67..11e867d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
.POSIX:
.SUFFIXES: .tex .pdf
all: progreport/document.pdf execsumm/document.pdf
-progreport/document.pdf: progreport/document.tex
-execsumm/document.pdf: execsumm/document.tex
+progreport/document.pdf: progreport/document.tex format.tex
+execsumm/document.pdf: execsumm/document.tex format.tex
.tex.pdf:
pdftex $<
clean:
diff --git a/execsumm/document.tex b/execsumm/document.tex
new file mode 100644
index 0000000..4db9e4a
--- /dev/null
+++ b/execsumm/document.tex
@@ -0,0 +1,4 @@
+\input ../format
+\titlesub{Part 3: Executive Summary}{Mystery Circuit}
+
+\bye
diff --git a/format.tex b/format.tex
index 1fa9d04..8c7dfa5 100644
--- a/format.tex
+++ b/format.tex
@@ -17,12 +17,22 @@
\font\fourteenrm=cmr12 at 14pt
\font\twelverm=cmr12
+%% \themonth
+\edef\themonth{%
+ \ifcase\month
+ \or Jan\or Feb\or Mar%
+ \or Apr\or May\or Jun%
+ \or Jul\or Aug\or Sep%
+ \or Oct\or Nov\or Dec%
+ \fi
+}
+
%% Headers
{\obeylines\parindent=0in
-Holden Rohrer, Holden Watson, and Nithya Jayakumar
-2019 Oct 21
-Applied Combinatorics--Math 3012
-Livshyts
+Holden Rohrer and Nithya Jayakumar
+2020 \themonth \number\day
+Differential Equations (MATH 2552)
+Mayer
\medskip
}
diff --git a/progreport/document.tex b/progreport/document.tex
new file mode 100644
index 0000000..dc6dcd5
--- /dev/null
+++ b/progreport/document.tex
@@ -0,0 +1,4 @@
+\input ../format
+\titlesub{Part 2: Progress Report}{Mystery Circuit}
+
+\bye
--
cgit