aboutsummaryrefslogtreecommitdiff
path: root/document/format.tex
blob: 58d6f329d0892916ea5b287e8ccc924460f98d43 (plain)
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
\input color

\definecolor{darkgreen}{rgb}{0,0.2,0}
\definecolor{lightgreen}{rgb}{0.624,0.878,0.624}
\definecolor{green}{rgb}{0,0.5,0}

\pagecolor{darkgreen} %
\color{black} %text color

\def\colo#1{\colorbox{white}{\vbox to 31.5in{#1}}}

\newbox\contents \setbox\contents\vbox{}
\newbox\curbox
\def\getcontents height #1 width #2{%#1 is height, #2 is width; returns that much of the \contents box
  {%
    \hsize=#2\relax
    \setbox\curbox=\vsplit\contents to #1
    \box\curbox
  }
}
\def\appendcontents #1{%appends a vbox to contents
  \setbox\contents\vbox{\box\contents #1}
}
\pdfpageheight=36in
\pdfpagewidth=48in
\hsize=11in
\vsize=32in
\voffset=2in
\nopagenumbers

%gives ''\newfont myfont=cmr10@14pt''
\newcount\spacing
\newdimen\size
\def\adjs{%adjust spacing
  \baselineskip=\size \multiply\baselineskip by \spacing \divide\baselineskip by 100 \multiply\baselineskip by 6 \divide\baselineskip by 5%6/5 = normal 1.2 addition for character depth
}
\def\newfont#1=#2@#3pt{%name, base, size
  \expandafter\font\csname x#1\endcsname=#2 at #3pt
  \expandafter\edef\csname #1\endcsname{\size=#3pt \adjs \csname x#1\endcsname}
}

% font definitions
\newfont title=cmb10@48pt
\newfont text=cmr10@36pt\text
\newfont head=cmb10@24pt
\spacing=120

% sectioning
\def\section#1{
  \centerline{
    \fcolorbox{green}{black}%
    \head #1%
  }
}

\def\include#1;#2\par{
  \section{#1}
  \input #2\relax
}