]>
Commit | Line | Data |
---|---|---|
499b2ed8 JS |
1 | \documentstyle[a4,11pt,makeidx,verbatim,texhelp,fancyheadings,palatino]{report} |
2 | % JACS: doesn't make it through Tex2RTF, sorry. I will put it into texhelp.sty | |
3 | % since Tex2RTF doesn't parse it. | |
4 | % BTW, style MUST be report for it to work for Tex2RTF. | |
5 | %KB: | |
6 | %\addtolength{\textwidth}{1in} | |
7 | %\addtolength{\oddsidemargin}{-0.5in} | |
8 | %\addtolength{\topmargin}{-0.5in} | |
9 | %\addtolength{\textheight}{1in} | |
10 | %\sloppy | |
11 | %end of my changes | |
12 | \newcommand{\indexit}[1]{#1\index{#1}}% | |
13 | \newcommand{\pipe}[0]{$\|$\ }% | |
14 | \definecolour{black}{0}{0}{0}% | |
15 | \definecolour{cyan}{0}{255}{255}% | |
16 | \definecolour{green}{0}{255}{0}% | |
17 | \definecolour{magenta}{255}{0}{255}% | |
18 | \definecolour{red}{255}{0}{0}% | |
19 | \definecolour{blue}{0}{0}{200}% | |
20 | \definecolour{yellow}{255}{255}{0}% | |
21 | \definecolour{white}{255}{255}{255}% | |
22 | % | |
23 | \input psbox.tex | |
24 | % Remove this for processing with dvi2ps instead of dvips | |
25 | %\special{!/@scaleunit 1 def} | |
26 | \parskip=10pt | |
27 | \parindent=0pt | |
28 | \title{FL: a Frame Layout Framework} | |
29 | \author{by Aleksandras Gluchovas} | |
30 | \date{January 2nd 2002} | |
31 | ||
32 | \makeindex | |
33 | \begin{document} | |
34 | \maketitle | |
35 | \pagestyle{fancyplain} | |
36 | \bibliographystyle{plain} | |
37 | \setheader{{\it CONTENTS}}{}{}{}{}{{\it CONTENTS}} | |
38 | \setfooter{\thepage}{}{}{}{}{\thepage}% | |
39 | \pagenumbering{roman} | |
40 | \tableofcontents | |
41 | ||
42 | \chapter{Copyright notice} | |
43 | \setheader{{\it COPYRIGHT}}{}{}{}{}{{\it COPYRIGHT}}% | |
44 | \setfooter{\thepage}{}{}{}{}{\thepage}% | |
45 | ||
46 | FL is copyright Aleksandras Gluchovas, 2001-2002. | |
47 | ||
48 | The licence is the wxWindows Licence. | |
49 | ||
50 | \input{body.tex} | |
51 | \input{classes.tex} | |
52 | \input{category.tex} | |
53 | \input{topics.tex} | |
54 | ||
55 | \bibliography{refs} | |
56 | \addcontentsline{toc}{chapter}{Bibliography} | |
57 | \setheader{{\it REFERENCES}}{}{}{}{}{{\it REFERENCES}}% | |
58 | \setfooter{\thepage}{}{}{}{}{\thepage}% | |
59 | ||
60 | \newpage | |
61 | % Note: In RTF, the \printindex must come before the | |
62 | % change of header/footer, since the \printindex inserts | |
63 | % the RTF \sect command which divides one chapter from | |
64 | % the next. | |
65 | \rtfonly{\printindex | |
66 | \addcontentsline{toc}{chapter}{Index} | |
67 | \setheader{{\it INDEX}}{}{}{}{}{{\it INDEX}}% | |
68 | \setfooter{\thepage}{}{}{}{}{\thepage} | |
69 | } | |
70 | % In Latex, it must be this way around (I think) | |
71 | \latexonly{\addcontentsline{toc}{chapter}{Index} | |
72 | \setheader{{\it INDEX}}{}{}{}{}{{\it INDEX}}% | |
73 | \setfooter{\thepage}{}{}{}{}{\thepage} | |
74 | \printindex | |
75 | } | |
76 | ||
77 | \end{document} |