blob: 9aabb557e9fe4af9b3cc09354a0f433db3ea4175 (
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
|
%% Links
\def\link#1{%
\pdfstartlink
user{/Subtype /Link
/Border [ 0 0 0 ]
/A <<
/Type /Action
/S /URI
/URI (#1)
>>}%
{\it #1}%
\pdfendlink
}
%% Fonts
\font\fourteenbf=ptmb7t at 14pt
\font\fourteenrm=ptmb7t at 14pt
\font\twelverm=ptmr7t at 12pt
\twelverm\baselineskip=24pt
%% Headers
{\obeylines\parindent=0in
Holden Rohrer and Radeen Dixon
2020 Jan 15
Georgia State Science Fair
Kuhn
\medskip
}
\headline={\baselineskip=0.5in \twelverm \hfil \vbox{\hbox{\ifnum\pageno=1\else Dixon, Rohrer \the\pageno \fi}}}
\nopagenumbers
%% Sectioning
\def\titlesub#1#2{\centerline{\fourteenbf #1}\centerline{#2}\bigskip}
\def\section#1\par{\thesection{#1:}}
\def\thesection#1{\vskip .3\hsize\goodbreak\vskip -.3\hsize\bigskip\noindent{\fourteenrm#1\bigskip}}
%% Modular Sections
\def\include#1:#2\par{\section #1\par\par\input #2\relax}
\def\sinclude#1:#2\par{\subsection #1\par\par\input #2\relax}
%% Bullet Points and Numbering
\def\pre#1{\par\leavevmode\llap{\hbox to \parindent{\hfil #1 \hfil}}}
%% Pictures
\newcount\pics \pics=0
\def\picture#1#2{{\advance\pics by 1\vbox{\centerline{\pdfximage width 6in{#1}\pdfrefximage\pdflastximage}\centerline{\def\a{#2}\ifx\a\empty\else\vbox{\leftskip=0pt plus 1fill\rightskip=0pt plus 1fill\parindent=0pt\relax Fig \number\pics: #2}\fi}}}}
\def\twopicture#1#2#3{{\advance\pics by 1\line{\vbox{\centerline{\pdfximage width 4in{#1}\pdfrefximage\pdflastximage\pdfximage width 4in{#2}\pdfrefximage\pdflastximage}\centerline{\def\a{#3}\ifx\a\empty\else\vbox{\leftskip=0pt plus 1fill\rightskip=0pt plus 1fill\parindent=0pt\relax Fig \number\pics: #3}\fi}}}}}
|