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
|
\documentclass[a4paper,twoside]{article}
\usepackage{fullpage}
\usepackage{graphics}
\usepackage{xspace}
\usepackage{alltt}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\setcounter{secnumdepth}{3} %% pour numroter les subsubsections
\setcounter{tocdepth}{3} %% profondeur dans la table des matires
\usepackage{times}
\title{Paj User Manual}
\author{Benhur Stein}
\newenvironment{code}{\begin{alltt}}{\end{alltt}}
\begin{document}
\newcommand{\menu}[1]{\fbox{#1}}
\maketitle
\section{Starting the application}
To execute Paj, the GNUstep environment must have been set
previously, with either
\begin{code}
source \emph{gnustep_path}/System/Makefiles/GNUstep.sh
\end{code}
or
\begin{code}
source \emph{gnustep_path}/System/Makefiles/GNUstep.csh
\end{code}
depending on your shell.
Then, the command
\begin{code}
openapp Paje
\end{code}
will execute it.
Once started, the \menu{Open...} menu
option can be used to open a file.
Alternatively, the command
\begin{code}
gopen \emph{file.trace}
\end{code}
will execute Paj and make it open the trace file
\emph{file.trace}.
\section{Navegating the trace file}
The main visualization window is composed of three parts:
\begin{itemize}
\item space-time diagram;
\item status area;
\item zooming buttons.
\end{itemize}
\subsection{Space-time diagram}
\subsection{Status area}
\subsection{Zooming buttons}
\section{Customizing the space-time view}
\section{Using Filters}
\end{document}
|