File: devref.tex.in

package info (click to toggle)
form 4.2.1%2Bgit20200217-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,500 kB
  • sloc: ansic: 101,613; cpp: 9,375; sh: 1,582; makefile: 505
file content (91 lines) | stat: -rw-r--r-- 2,348 bytes parent folder | download | duplicates (3)
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
\input{version.tex}
\def\formdate{\repodate}
%begin{latexonly}  % To avoid latex2html/latex2html#37
\providecommand{\repodate}{\today}
%end{latexonly}


\documentclass[11pt,titlepage]{article}
\usepackage{makeidx}

%begin{latexonly}

\makeatletter
\renewcommand*\l@section{\@dottedtocline{1}{1.5em}{3.0em}}
\renewcommand*\l@subsection{\@dottedtocline{2}{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{\emptypage}{\newpage \thispagestyle{empty} \tiny{.} \normalsize}
\newcommand{\clearemptydoublepage}{\newpage{\pagestyle{empty}\cleardoublepage}}

\newcommand{\C}[1]{{\tt #1}}
\newcommand{\LINK}[1]{{\tt #1}}

\newcommand{\FORM}{{\sc FORM}}
\newcommand{\TFORM}{{\sc TFORM}}
\newcommand{\PARFORM}{{\sc ParFORM}}

\makeindex

\begin{document}

\thispagestyle{empty}
\title{\Huge FORM \\ \Large version @VERSION@ \\ \huge Developer's reference manual}
\date{\formdate}
\author{J.A.M.Vermaseren et al.}
\maketitle

\clearemptydoublepage
\emptypage
\clearemptydoublepage
\pagenumbering{roman}
\setcounter{page}{1}
\clearemptydoublepage
\tableofcontents
\clearemptydoublepage
\emptypage
\clearemptydoublepage
\pagenumbering{arabic}
\setcounter{page}{1}

\section{Initial remarks}

This document is intended for people who are interested in understanding how \FORM\ works internally,
how to find and correct bugs in the source code, and how to extend \FORM\ by implementing new
features.

It is assumed, that the source code is available, either as a package or directly via CVS access to
the \FORM\ repository. The \FORM\ package contains many files and several subdirectories. The actual
sources of \FORM, \TFORM, and \PARFORM\ are all in the directory \C{sources} (see section
\ref{sec:source} for an overview).  Documentation can be found in the directory \C{doc}. The testing
suite is contained in the directory \C{check}.

\input{@srcdir@/source}

\input{@srcdir@/formrun}

\section{Specific topics}

\input{@srcdir@/indepth}

\input{@srcdir@/testsuite}

\input{@srcdir@/cvs}

\printindex

\end{document}