Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_2_Build_1042 / install / IzPack / src / doc / izpack-doc.tex @ 42158

History | View | Annotate | Download (2.01 KB)

1
%
2
% IzPack documentation
3
%
4
% Copyright (c) 2001-2004 Julien Ponge
5
%
6
% <julien@izforge.com>
7
% http://www.izforge.com/
8
%
9
%begin{latexonly}
10
\newif\ifpdf
11
\ifx\pdfoutput\undefined
12
\pdffalse
13
\else
14
\pdfoutput=1
15
\pdftrue
16
\fi
17

    
18
% Change this as needed :
19
%   - a4paper to your paper format
20
%   - the document class to your need (book, article, ...)
21
\ifpdf
22
\documentclass[a4paper, 12pt, pdftex]{report}
23
\else
24
%end{latexonly}
25
\documentclass[a4paper, 12pt, dvips]{report}
26
%begin{latexonly}
27
\fi
28
%end{latexonly}
29

    
30
% The packages we need
31
\usepackage{verbatim}
32
\usepackage{moreverb}
33
\usepackage{url}
34
\usepackage{tabularx}
35
\usepackage[final]{graphicx}
36
\usepackage[hyperindex,breaklinks=true,pdfborder={0 0 0}]{hyperref}
37
%begin{latexonly}
38
\ifpdf
39
\hypersetup{colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=red}
40
\fi
41
%end{latexonly}
42
\usepackage{html}
43
\begin{htmlonly}
44
\newcommand{\href}[2]{\htmladdnormallink{#2}{#1}}
45
\end{htmlonly}
46

    
47
% Commands definition
48
\newcommand{\Java}{Java\texttrademark\ }
49
\newcommand{\IzPack}{\textsc{IzPack}\ }
50
\newcommand{\tag}[1]{\texttt{<#1>}}
51
\newcommand{\attr}[1]{\texttt{#1}}
52

    
53
% get deeper TOC (so we have nice bookmarks in PDF)
54
\setcounter{tocdepth}{4}
55

    
56
% We start here
57
\begin{document}
58

    
59
  % First pages
60
  %\maketitle
61
  \include{cover}
62
  \tableofcontents
63

    
64
  % The chapters
65
  \include{introduction}
66
  \include{chapter1}
67
  \include{chapter2}
68
  \include{chapter3}
69
  \include{chapter4}
70
  \include{chapter5}
71
  \include{UserInput}
72
  \include{CustomActions}
73

    
74
  % Appendixes
75
  \appendix
76
  \chapter{The GNU General Public License}
77
  \footnotesize
78
  \verbatiminput{GPL}
79
  
80
  \normalsize
81
  \chapter{The Commons Creative Attribution-NonCommercial-ShareAlike License}
82
  \label{CC-license}
83
  A friendly summary of the license terms is available at
84
  \href{http://creativecommons.org/licenses/by-nc-sa/1.0/}
85
    {\url{http://creativecommons.org/licenses/by-nc-sa/1.0/}}. The following are
86
  the full legal terms which govern this documentation.\\
87
  \footnotesize
88
  \verbatiminput{CC-Attribution-NonCommercial-ShareAlike-1.0}
89
  \normalsize
90
\end{document}