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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
\input{version.tex}
\def\formmajorversion{\repomajorversion}
\def\formminorversion{\repominorversion}
\def\formdate{\repodate}
%begin{latexonly} % To avoid latex2html/latex2html#37
\providecommand{\repodate}{\today}
%end{latexonly}
\documentclass[11pt]{report}
\usepackage{makeidx}
%begin{latexonly}
\makeatletter
\renewcommand*\l@section{\@dottedtocline{1}{1.5em}{3.0em}}
\makeatother
% Use hyperref package (hyperlinks) with correct option for pdflatex/latex:
\usepackage{ifpdf}
\ifpdf
\RequirePackage[pdftex]{hyperref}
\else
\RequirePackage[hypertex]{hyperref}
\fi
% and link indices back to text:
\hypersetup{hyperindex,pagebackref,pdfpagemode={None},draft=false}
%end{latexonly}
\providecommand{\texorpdfstring}[2]{#1}% htmlonly
\newcommand{\pfill}{\hfill}
\newcommand{\emptypage}{\newpage \thispagestyle{empty} \tiny{.} \normalsize}
\newcommand{\lefttabitem}[1]{\noindent{\begin{minipage}[t]{4cm}{#1}
\end{minipage}}\vspace{1mm}}
\newcommand{\leftvitem}[2]{\noindent{\begin{minipage}[t]{#1}{#2}
\end{minipage}}\vspace{1mm}}
\newcommand{\tabitem}[1]{{\begin{minipage}[t]{12cm}{#1}\end{minipage}}
\vspace{1mm}}
\newcommand{\rightvitem}[2]{{\begin{minipage}[t]{#1}{#2}\end{minipage}}
\vspace{1mm}}
\newcommand{\clearemptydoublepage}{\newpage{\pagestyle{empty}\cleardoublepage}}
\textheight 655pt % Height of text (including footnotes and figures,
% excluding running head and foot).
% Note 1cm = 28.453pt
\textwidth 16.5cm % Width of text line.
%
% Need to move the origin on the page to centre the block of text:
%
\hoffset -2.15cm \voffset -1.7cm % settings good for IBM 3812 printer
\def\FORM{{\sc FORM}}
\def\TFORM{{\sc TFORM}}
\def\ParFORM{{\sc ParFORM}}
\def\Andre#1{{\sl #1}}
\def\Remark#1{{\sl #1}}
\def\Tr{{\rm Tr}}
\def\hash{\symbol{"23}}
\def\sign(#1){(\!-\!1)^{#1}}
\def\binom(#1,#2){ (\!\!
\begin{array}{c} #1 \\ #2 \end{array}\!\! ) }
\def\plus{\!+\!}
\def\minus{\!-\!}
\def\mydot{\!\!\cdot\!}
\def\nn{\nonumber \\ &&}
\def\nne{\nonumber \\ & = &}
\makeindex
\begin{document}
\begin{titlepage}
\title{\Huge FORM \\ \Large version @VERSION@ \\ \huge Reference manual}
\date{\formdate}
\author{J.A.M.~Vermaseren, T.~Kaneko, J.~Kuipers, B.~Ruijl, M.~Tentyukov, T.~Ueda and J.~Vollinga}
\end{titlepage}
\maketitle
%\clearemptydoublepage
%\pagenumbering{roman}
%\setcounter{page}{1}
%\clearemptydoublepage
%\tableofcontents
%%\emptypage
%\clearemptydoublepage
%\pagenumbering{arabic}
\setcounter{page}{2}
\clearemptydoublepage
\emptypage
\clearemptydoublepage
\pagenumbering{roman}
\setcounter{page}{1}
\clearemptydoublepage
\tableofcontents
\clearemptydoublepage
\emptypage
\clearemptydoublepage
\pagenumbering{arabic}
\setcounter{page}{1}
\input{@srcdir@/startup}
\input{@srcdir@/variable}
\input{@srcdir@/prepro}
\input{@srcdir@/module}
\input{@srcdir@/pattern}
\input{@srcdir@/dollar}
\input{@srcdir@/statements}
\input{@srcdir@/functions}
\input{@srcdir@/bracket}
\input{@srcdir@/optim}
\input{@srcdir@/polynomials}
\input{@srcdir@/tablebas}
\input{@srcdir@/dict}
\input{@srcdir@/gamma}
\input{@srcdir@/metric}
\input{@srcdir@/sorting}
\input{@srcdir@/setup}
\input{@srcdir@/parallel}
\input{@srcdir@/external}
\input{@srcdir@/spectators}
\input{@srcdir@/diagrams}
\printindex
\end{document}
|