blob: 1eed2d9660dc1a3a441c6770a65886cf10837ee8 (
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
|
\def\pubdate#1{\gdef\@pubdate{#1}}
\def\address#1{\gdef\@address{#1}}
\def\maketitle{\par
\begingroup
\newpage \global\@topnum\z@
\@maketitle
\@makeheadings
\endgroup
\setcounter{footnote}{0}
\let\maketitle\relax
\let\@maketitle\relax
}
\def\@maketitle{\newpage
\null
\begin{tabular*}{\textwidth}{@{\hspace{0in}} l @{\extracolsep{\fill}} r @{\hspace{0in}}}
Internet Engineering Task Force & \@author \\
INTERNET-DRAFT & \@address \\
& \@pubdate
\end{tabular*}
\begin{center}
\large\bf\@title
\end{center}
\def\@makeheadings{
\null
% Generate RFC page headings
\gdef\@oddhead {\rm INTERNET-DRAFT \hfil \@title \hfil \@pubdate}
\gdef\@evenhead{\rm INTERNET-DRAFT \hfil \@title \hfil \@pubdate}
\gdef\@oddfoot {\rm \@author\hfil [Page \thepage ]}
\gdef\@evenfoot{\rm \@author\hfil [Page \thepage ]}
}
}
\evensidemargin 0in
\oddsidemargin 0in
\topmargin 0pt
\textwidth 6.5in
\textheight 8.5in
\parindent 0in
\parskip 12pt
\thispagestyle{empty}
|