cairo: Add support for png and trim.
[pspp] / doc / pspp.texi
1 \input texinfo @c -*- texinfo -*-
2 @c PSPP - a program for statistical analysis.
3 @c Copyright (C) 2017, 2019, 2020 Free Software Foundation, Inc.
4 @c Permission is granted to copy, distribute and/or modify this document
5 @c under the terms of the GNU Free Documentation License, Version 1.3
6 @c or any later version published by the Free Software Foundation;
7 @c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
8 @c A copy of the license is included in the section entitled "GNU
9 @c Free Documentation License".
10
11 @c %**start of header
12 @setfilename pspp.info
13 @settitle PSPP
14 @c For double-sided printing, uncomment:
15 @c @setchapternewpage odd
16 @c %**end of header
17
18 @macro gui
19 graphic user interface
20 @end macro
21
22 @macro psppsyntax{FILE}
23 @html
24 <div class="pspp-syntax">
25 @end html
26 @cartouche
27 @smallexample
28 @verbatiminclude pspp-figures/\FILE\
29 @end smallexample
30 @end cartouche
31 @html
32 </div>
33 @end html
34 @end macro
35
36 @macro psppimage{FILE}
37 @cartouche
38 @ifhtml
39 @image{screenshots/\FILE\-ad} @c Adwaita theme is better for web pages.
40 @end ifhtml
41 @iftex
42 @image{screenshots/\FILE\-hc,433.62pt} @c High Contrast theme, width \\the\\hsize
43 @end iftex
44 @ifinfo
45 @image{screenshots/\FILE\-ad} @c Adwaita theme for stand aloneinfo
46 @end ifinfo
47 @end cartouche
48 @end macro
49
50 @macro psppoutput{FILE}
51 @ifnothtml
52 @smallexample
53 @include pspp-figures/\FILE\.texi
54 @end smallexample
55 @end ifnothtml
56 @ifhtml
57 @cartouche
58 @html
59
60 <div class="pspp">
61 @include pspp-figures/\FILE\.html
62 </div>
63
64 @end html
65 @end cartouche
66 @end ifhtml
67 @end macro
68
69 @macro note{param1}
70 @quotation
71 @strong{Please note:} \param1\
72 @end quotation
73 @end macro
74
75 @c A macro to indicate variable names used in examples.
76 @c NOT metasyntactical variables - for that use @var
77 @macro exvar{VAR}
78 @b{\VAR\}
79 @end macro
80
81 @include version.texi
82
83 @c This macro should be used for marking command names.  For the purposes of markup,
84 @c  no distinction is made between ``commands'' and ``procedures''.
85 @macro cmd{CMDNAME}
86 @code{\CMDNAME\}
87 @end macro
88
89 @c This macro is used for fragments of command syntax that are not in themselves command names.
90 @c It does not necessarily have to be a subcommand.
91 @macro subcmd{CMDNAME}
92 @code{\CMDNAME\}
93 @end macro
94
95 @c Use this macro to refer to PSPP itself .  Not when giving a shell command line example.
96 @macro pspp
97 @sc{pspp}
98 @end macro
99
100
101 @ifset MISSING_CLICKSEQUENCE
102 @alias clicksequence = asis
103 @macro click {}
104 ->
105 @end macro
106 @end ifset
107
108 @iftex
109 @finalout
110 @end iftex
111
112 @dircategory Math
113 @direntry
114 * PSPP: (pspp).             Statistical analysis package.
115 * PSPPIRE: (pspp).          Graphical user interface to @pspp{}.
116 @end direntry
117
118 @copying
119 This manual is for GNU PSPP version @value{VERSION},
120 software for statistical analysis.
121
122 Copyright @copyright{} 1997, 1998, 2004, 2005, 2009, 2012, 2013, 2014, 2016, 2019, 2020 Free Software Foundation, Inc.
123
124 @quotation
125 Permission is granted to copy, distribute and/or modify this document
126 under the terms of the GNU Free Documentation License, Version 1.3
127 or any later version published by the Free Software Foundation;
128 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
129 A copy of the license is included in the section entitled "GNU
130 Free Documentation License".
131 @end quotation
132 @end copying
133
134 @titlepage
135 @title PSPP Users' Guide
136 @subtitle GNU PSPP Statistical Analysis Software
137 @subtitle Release @value{VERSION}
138 @page
139 @vskip 0pt plus 1filll
140 @insertcopying
141 @end titlepage
142
143 @contents
144
145
146 @ifnottex
147 @node Top
148 @top GNU PSPP
149
150 @insertcopying
151 @end ifnottex
152
153 @menu
154 * Introduction::                Description of the package.
155 * License::                     Your rights and obligations.
156
157 * Invoking PSPP::               Starting the PSPP text-based interface.
158 * Invoking PSPPIRE::            Starting the PSPP graphical user interface.
159 * Using PSPP::                  How to use PSPP --- A brief tutorial.
160 * Language::                    Basics of the PSPP command language.
161 * Expressions::                 Numeric and string expression syntax.
162
163 * Data Input and Output::       Reading data from user files.
164 * System and Portable File IO:: Reading and writing system & portable files.
165 * Combining Data Files::        Combining data from multiple files.
166 * Manipulating Variables::      Adjusting and examining variables.
167 * Data Manipulation::           Simple operations on data.
168 * Data Selection::              Select certain cases for analysis.
169 * Conditionals and Looping::    Doing things many times or not at all.
170 * Statistics::                  Basic statistical procedures.
171 * Utilities::                   Other commands.
172
173 * Invoking pspp-convert::       Utility for converting among file formats.
174 * Invoking pspp-output::        Utility for working with viewer (SPV) files.
175 * Invoking pspp-dump-sav::      Utility for examining raw .sav files.
176 * Not Implemented::             What's not here yet
177 * Bugs::                        Known problems; submitting bug reports.
178
179 * Function Index::              Index of PSPP functions for expressions.
180 * Command Index::               Index of PSPP procedures.
181 * Concept Index::               Index of concepts.
182
183 * GNU Free Documentation License:: License for copying this manual.
184 @end menu
185
186 @include introduction.texi
187 @include license.texi
188
189 @include invoking.texi
190 @include tutorial.texi
191 @include language.texi
192 @include expressions.texi
193 @include data-io.texi
194 @include files.texi
195 @include combining.texi
196 @include variables.texi
197 @include transformation.texi
198 @include data-selection.texi
199 @include flow-control.texi
200 @include statistics.texi
201 @include utilities.texi
202
203 @include pspp-convert.texi
204 @include pspp-output.texi
205 @include pspp-dump-sav.texi
206 @include not-implemented.texi
207 @include bugs.texi
208
209 @include function-index.texi
210 @include command-index.texi
211 @include concept-index.texi
212
213 @include fdl.texi
214
215 @bye