doc: Keep copyright and license comments from showing up in TeX output.
[pspp] / doc / pspp-dev.texi
1 \input texinfo @c -*- texinfo -*-
2 @c PSPP - a program for statistical analysis.
3 @c Copyright (C) 2017 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-dev.info
13 @settitle PSPP
14 @c For double-sided printing, uncomment:
15 @c @setchapternewpage odd
16 @c %**end of header
17
18 @include version-dev.texi
19
20 @macro cmd{CMDNAME}
21 \CMDNAME\
22 @end macro
23 @macro struct{TAG}
24 @code{struct \TAG\}
25 @end macro
26 @macro union{TAG}
27 @code{union \TAG\}
28 @end macro
29 @macro enum{TAG}
30 @code{enum \TAG\}
31 @end macro
32 @macro func{NAME}
33 @code{\NAME\}
34 @end macro
35
36 @iftex
37 @finalout
38 @end iftex
39
40 @dircategory Math
41 @direntry
42 * PSPP Developers Guide: (pspp-dev). Tutorial and reference for PSPP developers.
43 @end direntry
44
45 @copying
46 This manual is for GNU PSPP version @value{VERSION},
47 software for statistical analysis.
48
49 Copyright @copyright{} 1997, 1998, 2004, 2005, 2007, 2010, 2014, 2015, 2016 Free Software Foundation, Inc.
50
51 @quotation
52 Permission is granted to copy, distribute and/or modify this document
53 under the terms of the GNU Free Documentation License, Version 1.3
54 or any later version published by the Free Software Foundation;
55 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
56 A copy of the license is included in the section entitled "GNU
57 Free Documentation License".
58 @end quotation
59 @end copying
60
61 @titlepage
62 @title PSPP Developers Guide
63 @subtitle GNU PSPP Statistical Analysis Software
64 @subtitle Release @value{VERSION}
65 @author Ben Pfaff
66 @author John Darrington
67 @page
68 @vskip 0pt plus 1filll
69 @insertcopying
70 @end titlepage
71
72 @contents
73
74
75 @ifnottex
76 @node Top
77 @top GNU PSPP Developers Guide
78
79 @insertcopying
80 @end ifnottex
81
82 @menu
83 * Introduction::                Introduction to PSPP development.
84 * Basic Concepts::              Data structures and concepts.
85 * Parsing Command Syntax::      How to parse command syntax.
86 * Processing Data::             Data input, output, and processing.
87 * Presenting Output::           Producing machine- and human-readable output.
88 * Internationalisation::        Dealing with locale issues.
89
90 * Function Index::              Index of PSPP functions.
91 * Concept Index::               Index of concepts.
92
93 * Portable File Format::        Format of PSPP portable files.
94 * System File Format::          Format of PSPP system files.
95 * SPSS/PC+ System File Format:: Format of SPSS/PC+ system files.
96 * SPSS Viewer File Format::     Format of SPSS Viewer (SPV) files.
97 * Encrypted File Wrappers::     Common wrapper for encrypted SPSS files.
98 * q2c Input Format::            Format of syntax accepted by q2c.
99
100 * GNU Free Documentation License:: License for copying this manual.
101 @end menu
102
103 @include dev/intro.texi
104 @include dev/concepts.texi
105 @include dev/syntax.texi
106 @include dev/data.texi
107 @include dev/output.texi
108 @include dev/i18n.texi
109
110 @include function-index.texi
111 @include concept-index.texi
112
113 @include dev/portable-file-format.texi
114 @include dev/system-file-format.texi
115 @include dev/pc+-file-format.texi
116 @include dev/spv-file-format.texi
117 @include dev/encrypted-file-wrappers.texi
118 @include dev/q2c.texi
119
120 @include fdl.texi
121
122 @bye
123
124 @c Local Variables:
125 @c compile-command: "makeinfo pspp-dev.texi"
126 @c End: