spv-file-format: Footnotes can't refer to footnotes.
[pspp] / doc / dev / spv-file-format.texi
1 @c PSPP - a program for statistical analysis.
2 @c Copyright (C) 2019 Free Software Foundation, Inc.
3 @c Permission is granted to copy, distribute and/or modify this document
4 @c under the terms of the GNU Free Documentation License, Version 1.3
5 @c or any later version published by the Free Software Foundation;
6 @c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
7 @c A copy of the license is included in the section entitled "GNU
8 @c Free Documentation License".
9 @c
10
11 @node SPSS Viewer File Format
12 @appendix SPSS Viewer File Format
13
14 SPSS Viewer or @file{.spv} files, here called SPV files, are written
15 by SPSS 16 and later to represent the contents of its output editor.
16 This chapter documents the format, based on examination of a corpus of
17 about 8,000 files from a variety of sources.  This description is
18 detailed enough to both read and write SPV files.
19
20 SPSS 15 and earlier versions instead use @file{.spo} files, which have
21 a completely different output format based on the Microsoft Compound
22 Document Format.  This format is not documented here.
23
24 An SPV file is a Zip archive that can be read with @command{zipinfo}
25 and @command{unzip} and similar programs.  The final member in the Zip
26 archive is the @dfn{manifest}, a file named
27 @file{META-INF/MANIFEST.MF}.  This structure makes SPV files resemble
28 Java ``JAR'' files (and ODF files), but whereas a JAR manifest
29 contains a sequence of colon-delimited key/value pairs, an SPV
30 manifest contains the string @samp{allowPivoting=true}, without a
31 new-line.  PSPP uses this string to identify an SPV file; it is
32 invariant across the corpus.@footnote{SPV files always begin with the
33 7-byte sequence 50 4b 03 04 14 00 08, but this is not a useful magic
34 number because most Zip archives start the same way.}@footnote{SPSS
35 writes @file{META-INF/MANIFEST.MF} to every SPV file, but it does not
36 read it or even require it to exist, so using different contents,
37 e.g.@: as @samp{allowingPivot=false} has no effect.}
38
39 The rest of the members in an SPV file's Zip archive fall into two
40 categories: @dfn{structure} and @dfn{detail} members.  Structure
41 member names begin with @file{outputViewer@var{nnnnnnnnnn}}, where
42 each @var{n} is a decimal digit, and end with @file{.xml}, and often
43 include the string @file{_heading} in between.  Each of these members
44 represents some kind of output item (a table, a heading, a block of
45 text, etc.) or a group of them.  The member whose output goes at the
46 beginning of the document is numbered 0, the next member in the output
47 is numbered 1, and so on.
48
49 Structure members contain XML.  This XML is sometimes self-contained,
50 but it often references detail members in the Zip archive, which are
51 named as follows:
52
53 @table @asis
54 @item @file{@var{prefix}_table.xml} and @file{@var{prefix}_tableData.bin}
55 @itemx @file{@var{prefix}_lightTableData.bin}
56 The structure of a table plus its data.  Older SPV files pair a
57 @file{@var{prefix}_table.xml} file that describes the table's
58 structure with a binary @file{@var{prefix}_tableData.bin} file that
59 gives its data.  Newer SPV files (the majority of those in the corpus)
60 instead include a single @file{@var{prefix}_lightTableData.bin} file
61 that incorporates both into a single binary format.
62
63 @item @file{@var{prefix}_warning.xml} and @file{@var{prefix}_warningData.bin}
64 @itemx @file{@var{prefix}_lightWarningData.bin}
65 Same format used for tables, with a different name.
66
67 @item @file{@var{prefix}_notes.xml} and @file{@var{prefix}_notesData.bin}
68 @itemx @file{@var{prefix}_lightNotesData.bin}
69 Same format used for tables, with a different name.
70
71 @item @file{@var{prefix}_chartData.bin} and @file{@var{prefix}_chart.xml}
72 The structure of a chart plus its data.  Charts do not have a
73 ``light'' format.
74
75 @item @file{@var{prefix}_pmml.scf}
76 @itemx @file{@var{prefix}_stats.scf}
77 @item @file{@var{prefix}_model.xml}
78 Not yet investigated.  The corpus contains few examples.
79 @end table
80
81 The @file{@var{prefix}} in the names of the detail members is
82 typically an 11-digit decimal number that increases for each item,
83 tending to skip values.  Older SPV files use different naming
84 conventions.  Structure member refer to detail members by name, and so
85 their exact names do not matter to readers as long as they are unique.
86
87 SPSS tolerates corrupted Zip archives that Zip reader libraries tend
88 to reject.  These can be fixed up with @command{zip -FF}.
89
90 @menu
91 * SPV Structure Member Format::
92 * SPV Light Detail Member Format::
93 * SPV Legacy Detail Member Binary Format::
94 * SPV Legacy Detail Member XML Format::
95 @end menu
96
97 @node SPV Structure Member Format
98 @section Structure Member Format
99
100 A structure member lays out the high-level structure for a group of
101 output items such as heading, tables, and charts.  Structure members
102 do not include the details of tables and charts but instead refer to
103 them by their member names.
104
105 Structure members' XML files claim conformance with a collection of
106 XML Schemas.  These schemas are distributed, under a nonfree license,
107 with SPSS binaries.  Fortunately, the schemas are not necessary to
108 understand the structure members.  The schemas can even
109 be deceptive because they document elements and attributes that are
110 not in the corpus and do not document elements and attributes that are
111 commonly found in the corpus.
112
113 Structure members use a different XML namespace for each schema, but
114 these namespaces are not entirely consistent.  In some SPV files, for
115 example, the @code{viewer-tree} schema is associated with namespace
116 @indicateurl{http://xml.spss.com/spss/viewer-tree} and in others with
117 @indicateurl{http://xml.spss.com/spss/viewer/viewer-tree} (note the
118 additional @file{viewer/}).  Under either name, the schema URIs are
119 not resolvable to obtain the schemas themselves.
120
121 One may ignore all of the above in interpreting a structure member.
122 The actual XML has a simple and straightforward form that does not
123 require a reader to take schemas or namespaces into account.  A
124 structure member's root is @code{heading} element, which contains
125 @code{heading} or @code{container} elements (or a mix), forming a
126 tree.  In turn, @code{container} holds a @code{label} and one more
127 child, usually @code{text} or @code{table}.
128
129 The following sections document the elements found in structure
130 members in a context-free grammar-like fashion.  Consider the
131 following example, which specifies the attributes and content for the
132 @code{container} element:
133
134 @example
135 container
136    :visibility=(visible | hidden)
137    :page-break-before=(always)?
138    :text-align=(left | center)?
139    :width=dimension
140 => label (table | container_text | graph | model | object | image | tree)
141 @end example
142
143 Each attribute specification begins with @samp{:} followed by the
144 attribute's name.  If the attribute's value has an easily specified
145 form, then @samp{=} and its description follows the name.  Finally, if
146 the attribute is optional, the specification ends with @samp{?}.  The
147 following value specifications are defined:
148
149 @table @code
150 @item (@var{a} | @var{b} | @dots{})
151 One of the listed literal strings.  If only one string is listed, it
152 is the only acceptable value.  If @code{OTHER} is listed, then any
153 string not explicitly listed is also accepted.
154
155 @item bool
156 Either @code{true} or @code{false}.
157
158 @item dimension
159 A floating-point number followed by a unit, e.g.@: @code{10pt}.  Units
160 in the corpus include @code{in} (inch), @code{pt} (points, 72/inch),
161 @code{px} (``device-independent pixels'', 96/inch), and @code{cm}.  If
162 the unit is omitted then points should be assumed.  The number and
163 unit may be separated by white space.
164
165 The corpus also includes localized names for units.  A reader must
166 understand these to properly interpret the dimension:
167
168 @table @asis
169 @item inch
170 @code{인치}, @code{pol.}, @code{cala}, @code{cali}
171
172 @item point
173 @code{пт}
174
175 @item centimeter
176 @code{см}
177 @end table
178
179 @item real
180 A floating-point number.
181
182 @item int
183 An integer.
184
185 @item color
186 A color in one of the forms @code{#@var{rr}@var{gg}@var{bb}} or
187 @code{@var{rr}@var{gg}@var{bb}}, or the string @code{transparent}, or
188 one of the standard Web color names.
189
190 @item ref
191 @item ref @var{element}
192 @itemx ref(@var{elem1} | @var{elem2} | @dots{})
193 The name from the @code{id} attribute in some element.  If one or more
194 elements are named, the name must refer to one of those elements,
195 otherwise any element is acceptable.
196 @end table
197
198 All elements have an optional @code{id} attribute.  If present, its
199 value must be unique.  In practice many elements are assigned
200 @code{id} attributes that are never referenced.
201
202 The content specification for an element supports the following
203 syntax:
204
205 @table @code
206 @item @var{element}
207 An element.
208
209 @item @var{a} @var{b}
210 @var{a} followed by @var{b}.
211
212 @item @var{a} | @var{b} | @var{c}
213 One of @var{a} or @var{b} or @var{c}.
214
215 @item @var{a}?
216 Zero or one instances of @var{a}.
217
218 @item @var{a}*
219 Zero or more instances of @var{a}.
220
221 @item @var{b}+
222 One or more instances of @var{a}.
223
224 @item (@var{subexpression})
225 Grouping for a subexpression.
226
227 @item EMPTY
228 No content.
229
230 @item TEXT
231 Text and CDATA.
232 @end table
233
234 Element and attribute names are sometimes suffixed by another name in
235 square brackets to distinguish different uses of the same name.  For
236 example, structure XML has two @code{text} elements, one inside
237 @code{container}, the other inside @code{pageParagraph}.  The former
238 is defined as @code{text[container_text]} and referenced as
239 @code{container_text}, the latter defined as
240 @code{text[pageParagraph_text]} and referenced as
241 @code{pageParagraph_text}.
242
243 This language is used in the PSPP source code for parsing structure
244 and detail XML members.  Refer to
245 @file{src/output/spv/structure-xml.grammar} and
246 @file{src/output/spv/detail-xml.grammar} for the full grammars.
247
248 The following example shows the contents of a typical structure member
249 for a @cmd{DESCRIPTIVES} procedure.  A real structure member is not
250 indented.  This example also omits most attributes, all XML namespace
251 information, and the CSS from the embedded HTML:
252
253 @example
254 <?xml version="1.0" encoding="utf-8"?>
255 <heading>
256   <label>Output</label>
257   <heading commandName="Descriptives">
258     <label>Descriptives</label>
259     <container>
260       <label>Title</label>
261       <text commandName="Descriptives" type="title">
262         <html lang="en">
263 <![CDATA[<head><style type="text/css">...</style></head><BR>Descriptives]]>
264         </html>
265       </text>
266     </container>
267     <container visibility="hidden">
268       <label>Notes</label>
269       <table commandName="Descriptives" subType="Notes" type="note">
270         <tableStructure>
271           <dataPath>00000000001_lightNotesData.bin</dataPath>
272         </tableStructure>
273       </table>
274     </container>
275     <container>
276       <label>Descriptive Statistics</label>
277       <table commandName="Descriptives" subType="Descriptive Statistics"
278              type="table">
279         <tableStructure>
280           <dataPath>00000000002_lightTableData.bin</dataPath>
281         </tableStructure>
282       </table>
283     </container>
284   </heading>
285 </heading>
286 @end example
287
288 @menu
289 * SPV Structure heading Element::
290 * SPV Structure label Element::
291 * SPV Structure container Element::
292 * SPV Structure text Element (Inside @code{container})::
293 * SPV Structure html Element::
294 * SPV Structure table Element::
295 * SPV Structure graph Element::
296 * SPV Structure model Element::
297 * SPV Structure tree Element::
298 * SPV Structure Path Elements::
299 * SPV Structure pageSetup Element::
300 * SPV Structure @code{text} Element (Inside @code{pageParagraph})::
301 @end menu
302
303 @node SPV Structure heading Element
304 @subsection The @code{heading} Element
305
306 @example
307 heading[root_heading]
308    :creator-version?
309    :creator?
310    :creation-date-time?
311    :lockReader=bool?
312    :schemaLocation?
313 => label pageSetup? (container | heading)*
314
315 heading
316    :creator-version?
317    :commandName?
318    :visibility[heading_visibility]=(collapsed)?
319    :locale?
320    :olang?
321 => label (container | heading)*
322 @end example
323
324 The root of a structure member is a @code{heading}, which represents a
325 section of output beginning with a @code{label} and
326 ordinarily followed by content containers or further nested
327 (sub)-sections of output.  Unlike heading elements in HTML and other
328 common document formats, which precede the content that they head,
329 @code{heading} contains the elements that appear below the heading.
330
331 The document root heading, only, may contain a @code{pageSetup}
332 element.
333
334 The following attributes have been observed on both document root and
335 nested @code{heading} elements.
336
337 @defvr {Attribute} creator-version
338 The version of the software that created this SPV file.  A string of
339 the form @code{xxyyzzww} represents software version xx.yy.zz.ww,
340 e.g.@: @code{21000001} is version 21.0.0.1.  Trailing pairs of zeros
341 are sometimes omitted, so that @code{21}, @code{210000}, and
342 @code{21000000} are all version 21.0.0.0 (and the corpus contains all
343 three of those forms).
344 @end defvr
345
346 @noindent
347 The following attributes have been observed on document root
348 @code{heading} elements only:
349
350 @defvr {Attribute} @code{creator}
351 The directory in the file system of the software that created this SPV
352 file.
353 @end defvr
354
355 @defvr {Attribute} @code{creation-date-time}
356 The date and time at which the SPV file was written, in a
357 locale-specific format, e.g.@: @code{Friday, May 16, 2014 6:47:37 PM
358 PDT} or @code{lunedì 17 marzo 2014 3.15.48 CET} or even @code{Friday,
359 December 5, 2014 5:00:19 o'clock PM EST}.
360 @end defvr
361
362 @defvr {Attribute} @code{lockReader}
363 Whether a reader should be allowed to edit the output.  The possible
364 values are @code{true} and @code{false}.  The value @code{false} is by
365 far the most common.
366 @end defvr
367
368 @defvr {Attribute} @code{schemaLocation}
369 This is actually an XML Namespace attribute.  A reader may ignore it.
370 @end defvr
371
372 @noindent
373 The following attributes have been observed only on nested
374 @code{heading} elements:
375
376 @defvr {Attribute} @code{commandName}
377 A locale-invariant identifier for the command that produced the
378 output, e.g.@: @code{Frequencies}, @code{T-Test}, @code{Non Par Corr}.
379 @end defvr
380
381 @defvr {Attribute} @code{visibility}
382 To what degree the output represented by the element is visible.
383 @end defvr
384
385 @defvr {Attribute} @code{locale}
386 The locale used for output, in Windows format, which is similar to the
387 format used in Unix with the underscore replaced by a hyphen, e.g.@:
388 @code{en-US}, @code{en-GB}, @code{el-GR}, @code{sr-Cryl-RS}.
389 @end defvr
390
391 @defvr {Attribute} @code{olang}
392 The output language, e.g.@: @code{en}, @code{it}, @code{es},
393 @code{de}, @code{pt-BR}.
394 @end defvr
395
396 @node SPV Structure label Element
397 @subsection The @code{label} Element
398
399 @example
400 label => TEXT
401 @end example
402
403 Every @code{heading} and @code{container} holds a @code{label} as its
404 first child.  The label text is what appears in the outline pane of
405 the GUI's viewer window.  PSPP also puts it into the outline of PDF
406 output.  The label text doesn't appear in the output itself.
407
408 The text in @code{label} describes what it labels, often by naming the
409 statistical procedure that was executed, e.g.@: ``Frequencies'' or
410 ``T-Test''.  The root @code{heading} in a structure member is normally
411 ``Output''.  Labels are often very generic, especially within a
412 @code{container}, e.g.@: ``Title'' or ``Warnings'' or ``Notes''.
413 Label text is localized according to the output language, e.g.@: in
414 Italian a frequency table procedure is labeled ``Frequenze''.
415
416 The user can edit labels to be anything they want.  The corpus
417 contains a few examples of empty labels, ones that contain no text,
418 probably as a result of user editing.
419
420 @node SPV Structure container Element
421 @subsection The @code{container} Element
422
423 @example
424 container
425    :visibility=(visible | hidden)
426    :page-break-before=(always)?
427    :text-align=(left | center)?
428    :width=dimension
429 => label (table | container_text | graph | model | object | image | tree)
430 @end example
431
432 A @code{container} serves to contain and label a @code{table},
433 @code{text}, or other kind of item.
434
435 This element has the following attributes.
436
437 @defvr {Attribute} @code{visibility}
438 Whether the container's content is displayed.  ``Notes'' tables are
439 often hidden; other data is usually
440 @end defvr
441
442 @defvr {Attribute} @code{text-align}
443 Alignment of text within the container.  Observed with nested
444 @code{table} and @code{text} elements.
445 @end defvr
446
447 @defvr {Attribute} @code{width}
448 The width of the container, e.g.@: @code{1097px}.
449 @end defvr
450
451 @node SPV Structure text Element (Inside @code{container})
452 @subsection The @code{text} Element (Inside @code{container})
453
454 @example
455 text[container_text]
456   :type[text_type]=(title | log | text | page-title)
457   :commandName?
458   :creator-version?
459 => html
460 @end example
461
462 This @code{text} element is nested inside a @code{container}.  There
463 is a different @code{text} element that is nested inside a
464 @code{pageParagraph}.
465
466 This element has the following attributes.
467
468 @defvr {Attribute} @code{type}
469 The semantics of the text.
470 @end defvr
471
472 @defvr {Attribute} @code{commandName}
473 As on the @code{heading} element.  For output not specific to a
474 command, this is simply @code{log}.  The corpus contains one example
475 of where @code{commandName} is present but set to the empty string.
476 @end defvr
477
478 @defvr {Attribute} @code{creator-version}
479 As on the @code{heading} element.
480 @end defvr
481
482 @node SPV Structure html Element
483 @subsection The @code{html} Element
484
485 @example
486 html :lang=(en) => TEXT
487 @end example
488
489 The element contains an HTML document as text (or, in practice, as
490 CDATA).  In some cases, the document starts with @code{<html>} and
491 ends with @code{</html>}; in others the @code{html} element is
492 implied.  Generally the HTML includes a @code{head} element with a CSS
493 stylesheet.  The HTML body often begins with @code{<BR>}.
494
495 The HTML document uses only the following elements:
496
497 @table @code
498 @item html
499 Sometimes, the document is enclosed with
500 @code{<html>}@dots{}@code{</html>}.
501
502 @item br
503 The HTML body often begins with @code{<BR>} and may contain it as well.
504
505 @item b
506 @itemx i
507 @itemx u
508 Styling.
509
510 @item font
511 The attributes @code{face}, @code{color}, and @code{size} are
512 observed.  The value of @code{color} takes one of the forms
513 @code{#@var{rr}@var{gg}@var{bb}} or @code{rgb (@var{r}, @var{g},
514 @var{b})}.  The value of @code{size} is a number between 1 and 7,
515 inclusive.
516 @end table
517
518 The CSS in the corpus is simple.  To understand it, a parser only
519 needs to be able to skip white space, @code{<!--}, and @code{-->}, and
520 parse style only for @code{p} elements.  Only the following properties
521 matter:
522
523 @table @code
524 @item color
525 In the form @code{@var{rr}@var{gg}@var{bb}}, e.g. @code{000000}, with
526 no leading @samp{#}.
527
528 @item font-weight
529 Either @code{bold} or @code{normal}.
530
531 @item font-style
532 Either @code{italic} or @code{normal}.
533
534 @item text-decoration
535 Either @code{underline} or @code{normal}.
536
537 @item font-family
538 A font name, commonly @code{Monospaced} or @code{SansSerif}.
539
540 @item font-size
541 Values claim to be in points, e.g.@: @code{14pt}, but the values are
542 actually in ``device-independent pixels'' (px), at 96/inch.
543 @end table
544
545 This element has the following attributes.
546
547 @defvr {Attribute} @code{lang}
548 This always contains @code{en} in the corpus.
549 @end defvr
550
551 @node SPV Structure table Element
552 @subsection The @code{table} Element
553
554 @example
555 table
556    :VDPId?
557    :ViZmlSource?
558    :activePageId=int?
559    :commandName
560    :creator-version?
561    :displayFiltering=bool?
562    :maxNumCells=int?
563    :orphanTolerance=int?
564    :rowBreakNumber=int?
565    :subType
566    :tableId
567    :tableLookId?
568    :type[table_type]=(table | note | warning)
569 => tableProperties? tableStructure
570
571 tableStructure => path? dataPath csvPath?
572 @end example
573
574 This element has the following attributes.
575
576 @defvr {Attribute} @code{commandName}
577 As on the @code{heading} element.
578 @end defvr
579
580 @defvr {Attribute} @code{type}
581 One of @code{table}, @code{note}, or @code{warning}.
582 @end defvr
583
584 @defvr {Attribute} @code{subType}
585 The locale-invariant command ID for the particular kind of output that
586 this table represents in the procedure.  This can be the same as
587 @code{commandName} e.g.@: @code{Frequencies}, or different, e.g.@:
588 @code{Case Processing Summary}.  Generic subtypes @code{Notes} and
589 @code{Warnings} are often used.
590 @end defvr
591
592 @defvr {Attribute} @code{tableId}
593 A number that uniquely identifies the table within the SPV file,
594 typically a large negative number such as @code{-4147135649387905023}.
595 @end defvr
596
597 @defvr {Attribute} @code{creator-version}
598 As on the @code{heading} element.  In the corpus, this is only present
599 for version 21 and up and always includes all 8 digits.
600 @end defvr
601
602 @xref{SPV Detail Legacy Properties}, for details on the
603 @code{tableProperties} element.
604
605 @node SPV Structure graph Element
606 @subsection The @code{graph} Element
607
608 @example
609 graph
610    :VDPId?
611    :ViZmlSource?
612    :commandName?
613    :creator-version?
614    :dataMapId?
615    :dataMapURI?
616    :editor?
617    :refMapId?
618    :refMapURI?
619    :csvFileIds?
620    :csvFileNames?
621 => dataPath? path csvPath?
622 @end example
623
624 This element represents a graph.  The @code{dataPath} and @code{path}
625 elements name the Zip members that give the details of the graph.
626 Normally, both elements are present; there is only one counterexample
627 in the corpus.
628
629 @code{csvPath} only appears in one SPV file in the corpus, for two
630 graphs.  In these two cases, @code{dataPath}, @code{path}, and
631 @code{csvPath} all appear.  These @code{csvPath} name Zip members with
632 names of the form @file{@var{number}_csv.bin}, where @var{number} is a
633 many-digit number and the same as the @code{csvFileIds}.  The named
634 Zip members are CSV text files (despite the @file{.bin} extension).
635 The CSV files are encoded in UTF-8 and begin with a U+FEFF byte-order
636 marker.
637
638 @node SPV Structure model Element
639 @subsection The @code{model} Element
640
641 @example
642 model
643    :PMMLContainerId?
644    :PMMLId
645    :StatXMLContainerId
646    :VDPId
647    :auxiliaryViewName
648    :commandName
649    :creator-version
650    :mainViewName
651 => ViZml? dataPath? path | pmmlContainerPath statsContainerPath
652
653 pmmlContainerPath => TEXT
654
655 statsContainerPath => TEXT
656
657 ViZml :viewName? => TEXT
658 @end example
659
660 This element represents a model.  The @code{dataPath} and @code{path}
661 elements name the Zip members that give the details of the model.
662 Normally, both elements are present; there is only one counterexample
663 in the corpus.
664
665 The details are unexplored.  The @code{ViZml} element contains base-64
666 encoded text, that decodes to a binary format with some embedded text
667 strings, and @code{path} names an Zip member that contains XML.
668 Alternatively, @code{pmmlContainerPath} and @code{statsContainerPath}
669 name Zip members with @file{.scf} extension.
670
671 @node SPV Structure tree Element
672 @subsection The @code{tree} Element
673
674 @example
675 tree
676    :commandName
677    :creator-version
678    :name
679    :type
680 => dataPath path
681 @end example
682
683 This element represents a tree.  The @code{dataPath} and @code{path}
684 elements name the Zip members that give the details of the tree.
685 The details are unexplored.
686
687 @node SPV Structure Path Elements
688 @subsection Path Elements
689
690 @example
691 dataPath => TEXT
692
693 path => TEXT
694
695 csvPath => TEXT
696 @end example
697
698 These element contain the name of the Zip members that hold details
699 for a container.  For tables:
700
701 @itemize @bullet
702 @item
703 When a ``light'' format is used, only @code{dataPath} is present, and
704 it names a @file{.bin} member of the Zip file that has @code{light} in
705 its name, e.g.@: @code{0000000001437_lightTableData.bin} (@pxref{SPV
706 Light Detail Member Format}).
707
708 @item
709 When the legacy format is used, both are present.  In this case,
710 @code{dataPath} names a Zip member with a legacy binary format that
711 contains relevant data (@pxref{SPV Legacy Detail Member Binary
712 Format}), and @code{path} names a Zip member that uses an XML format
713 (@pxref{SPV Legacy Detail Member XML Format}).
714 @end itemize
715
716 Graphs normally follow the legacy approach described above.  The
717 corpus contains one example of a graph with @code{path} but not
718 @code{dataPath}.  The reason is unexplored.
719
720 Models use @code{path} but not @code{dataPath}.  @xref{SPV Structure
721 graph Element}, for more information.
722
723 These elements have no attributes.
724
725 @node SPV Structure pageSetup Element
726 @subsection The @code{pageSetup} Element
727
728 @example
729 pageSetup
730    :initial-page-number=int?
731    :chart-size=(as-is | full-height | half-height | quarter-height | OTHER)?
732    :margin-left=dimension?
733    :margin-right=dimension?
734    :margin-top=dimension?
735    :margin-bottom=dimension?
736    :paper-height=dimension?
737    :paper-width=dimension?
738    :reference-orientation?
739    :space-after=dimension?
740 => pageHeader pageFooter
741
742 pageHeader => pageParagraph?
743
744 pageFooter => pageParagraph?
745
746 pageParagraph => pageParagraph_text
747 @end example
748
749 The @code{pageSetup} element has the following attributes.
750
751 @defvr {Attribute} @code{initial-page-number}
752 The page number to put on the first page of printed output.  Usually
753 @code{1}.
754 @end defvr
755
756 @defvr {Attribute} @code{chart-size}
757 One of the listed, self-explanatory chart sizes,
758 @code{quarter-height}, or a localization (!) of one of these (e.g.@:
759 @code{dimensione attuale}, @code{Wie vorgegeben}).
760 @end defvr
761
762 @defvr {Attribute} @code{margin-left}
763 @defvrx {Attribute} @code{margin-right}
764 @defvrx {Attribute} @code{margin-top}
765 @defvrx {Attribute} @code{margin-bottom}
766 Margin sizes, e.g.@: @code{0.25in}.
767 @end defvr
768
769 @defvr {Attribute} @code{paper-height}
770 @defvrx {Attribute} @code{paper-width}
771 Paper sizes.
772 @end defvr
773
774 @defvr {Attribute} @code{reference-orientation}
775 Indicates the orientation of the output page.  Either @code{0deg}
776 (portrait) or @code{90deg} (landscape),
777 @end defvr
778
779 @defvr {Attribute} @code{space-after}
780 The amount of space between printed objects, typically @code{12pt}.
781 @end defvr
782
783 @node SPV Structure @code{text} Element (Inside @code{pageParagraph})
784 @subsection The @code{text} Element (Inside @code{pageParagraph})
785
786 @example
787 text[pageParagraph_text] :type=(title | text) => TEXT
788 @end example
789
790 This @code{text} element is nested inside a @code{pageParagraph}.  There
791 is a different @code{text} element that is nested inside a
792 @code{container}.
793
794 The element is either empty, or contains CDATA that holds almost-XHTML
795 text: in the corpus, either an @code{html} or @code{p} element.  It is
796 @emph{almost}-XHTML because the @code{html} element designates the
797 default namespace as
798 @indicateurl{http://xml.spss.com/spss/viewer/viewer-tree} instead of
799 an XHTML namespace, and because the CDATA can contain substitution
800 variables.  The following variables are supported:
801
802 @table @code
803 @item &[Date]
804 @itemx &[Time]
805 The current date or time in the preferred format for the locale.
806
807 @item &[Head1]
808 @itemx &[Head2]
809 @itemx &[Head3]
810 @itemx &[Head4]
811 First-, second-, third-, or fourth-level heading.
812
813 @item &[PageTitle]
814 The page title.
815
816 @item &[Filename]
817 Name of the output file.
818
819 @item &[Page]
820 The page number.
821 @end table
822
823 @code{&[Page]} for the page number and @code{&[PageTitle]} for the
824 page title.
825
826 Typical contents (indented for clarity):
827
828 @example
829 <html xmlns="http://xml.spss.com/spss/viewer/viewer-tree">
830     <head></head>
831     <body>
832         <p style="text-align:right; margin-top: 0">Page &[Page]</p>
833     </body>
834 </html>
835 @end example
836
837 This element has the following attributes.
838
839 @defvr {Attribute} @code{type}
840 Always @code{text}.
841 @end defvr
842
843 @node SPV Light Detail Member Format
844 @section Light Detail Member Format
845
846 This section describes the format of ``light'' detail @file{.bin}
847 members.  These members have a binary format which we describe here in
848 terms of a context-free grammar using the following conventions:
849
850 @table @asis
851 @item NonTerminal @result{} @dots{}
852 Nonterminals have CamelCaps names, and @result{} indicates a
853 production.  The right-hand side of a production is often broken
854 across multiple lines.  Break points are chosen for aesthetics only
855 and have no semantic significance.
856
857 @item 00, 01, @dots{}, ff.
858 A bytes with a fixed value, written as a pair of hexadecimal digits.
859
860 @item i0, i1, @dots{}, i9, i10, i11, @dots{}
861 @itemx ib0, ib1, @dots{}, ib9, ib10, ib11, @dots{}
862 A 32-bit integer in little-endian or big-endian byte order,
863 respectively, with a fixed value, written in decimal.  Prefixed by
864 @samp{i} for little-endian or @samp{ib} for big-endian.
865
866 @item byte
867 A byte.
868
869 @item bool
870 A byte with value 0 or 1.
871
872 @item int16
873 @itemx be16
874 A 16-bit unsigned integer in little-endian or big-endian byte order,
875 respectively.
876
877 @item int32
878 @itemx be32
879 A 32-bit unsigned integer in little-endian or big-endian byte order,
880 respectively.
881
882 @item int64
883 @itemx be64
884 A 64-bit unsigned integer in little-endian or big-endian byte order,
885 respectively.
886
887 @item double
888 A 64-bit IEEE floating-point number.
889
890 @item float
891 A 32-bit IEEE floating-point number.
892
893 @item string
894 @itemx bestring
895 A 32-bit unsigned integer, in little-endian or big-endian byte order,
896 respectively, followed by the specified number of bytes of character
897 data.  (The encoding is indicated by the Formats nonterminal.)
898
899 @item @var{x}?
900 @var{x} is optional, e.g.@: 00? is an optional zero byte.
901
902 @item @var{x}*@var{n}
903 @var{x} is repeated @var{n} times, e.g.@: byte*10 for ten arbitrary bytes.
904
905 @item @var{x}[@var{name}]
906 Gives @var{x} the specified @var{name}.  Names are used in textual
907 explanations.  They are also used, also bracketed, to indicate counts,
908 e.g.@: @code{int32[n] byte*[n]} for a 32-bit integer followed by the
909 specified number of arbitrary bytes.
910
911 @item @var{a} @math{|} @var{b}
912 Either @var{a} or @var{b}.
913
914 @item (@var{x})
915 Parentheses are used for grouping to make precedence clear, especially
916 in the presence of @math{|}, e.g.@: in 00 (01 @math{|} 02 @math{|} 03)
917 00.
918
919 @item count(@var{x})
920 @itemx becount(@var{x})
921 A 32-bit unsigned integer, in little-endian or big-endian byte order,
922 respectively, that indicates the number of bytes in @var{x}, followed
923 by @var{x} itself.
924
925 @item v1(@var{x})
926 In a version 1 @file{.bin} member, @var{x}; in version 3, nothing.
927 (The @file{.bin} header indicates the version.)
928
929 @item v3(@var{x})
930 In a version 3 @file{.bin} member, @var{x}; in version 1, nothing.
931 @end table
932
933 PSPP uses this grammar to parse light detail members.  See
934 @file{src/output/spv/light-binary.grammar} in the PSPP source tree for
935 the full grammar.
936
937 Little-endian byte order is far more common in this format, but a few
938 pieces of the format use big-endian byte order.
939
940 Light detail members express linear units in two ways: points (pt), at
941 72/inch, and ``device-independent pixels'' (px), at 96/inch.  To
942 convert from pt to px, multiply by 1.33 and round up.  To convert
943 from px to pt, divide by 1.33 and round down.
944
945 A ``light'' detail member @file{.bin} consists of a number of sections
946 concatenated together, terminated by an optional byte 01:
947
948 @example
949 LightMember =>
950     Header Titles Footnotes
951     Areas Borders PrintSettings TableSettings Formats
952     Dimensions Axes Cells
953     01?
954 @end example
955
956 The following sections go into more detail.
957
958 @menu
959 * SPV Light Member Header::
960 * SPV Light Member Titles::
961 * SPV Light Member Footnotes::
962 * SPV Light Member Areas::
963 * SPV Light Member Borders::
964 * SPV Light Member Print Settings::
965 * SPV Light Member Table Settings::
966 * SPV Light Member Formats::
967 * SPV Light Member Dimensions::
968 * SPV Light Member Categories::
969 * SPV Light Member Axes::
970 * SPV Light Member Cells::
971 * SPV Light Member Value::
972 * SPV Light Member ValueMod::
973 @end menu
974
975 @node SPV Light Member Header
976 @subsection Header
977
978 An SPV light member begins with a 39-byte header:
979
980 @example
981 Header =>
982     01 00
983     (i1 @math{|} i3)[version]
984     bool[x0]
985     bool[x1]
986     bool[rotate-inner-column-labels]
987     bool[rotate-outer-row-labels]
988     bool[x2]
989     int32[x3]
990     int32[min-col-width] int32[max-col-width]
991     int32[min-row-width] int32[max-row-width]
992     int64[table-id]
993 @end example
994
995 @code{version} is a version number that affects the interpretation of
996 some of the other data in the member.  We will refer to ``version 1''
997 and ``version 3'' later on and use v1(@dots{}) and v3(@dots{}) for
998 version-specific formatting (as described previously).
999
1000 If @code{rotate-inner-column-labels} is 1, then column labels closest
1001 to the data are rotated to be vertical; otherwise, they are shown
1002 in the normal way.
1003
1004 If @code{rotate-outer-row-labels} is 1, then row labels farthest from
1005 the data are rotated to be vertical; otherwise, they are shown in the
1006 normal way.
1007
1008 @code{table-id} is a binary version of the @code{tableId} attribute in
1009 the structure member that refers to the detail member.  For example,
1010 if @code{tableId} is @code{-4122591256483201023}, then @code{table-id}
1011 would be 0xc6c99d183b300001.
1012
1013 @code{min-col-width} is the minimum width that a column will be
1014 assigned automatically.  @code{max-col-width} is the maximum width
1015 that a column will be assigned to accommodate a long column label.
1016 @code{min-row-width} and @code{max-row-width} are a similar range for
1017 the width of row labels.  All of these measurements are in 1/96 inch
1018 units (called a ``device independent pixel'' unit in Windows).
1019
1020 The meaning of the other variable parts of the header is not known.  A
1021 writer may safely use version 3, true for @code{x0}, false for
1022 @code{x1}, true for @code{x2}, and 0x15 for @code{x3}.
1023
1024 @node SPV Light Member Titles
1025 @subsection Titles
1026
1027 @example
1028 Titles =>
1029     Value[title] 01?
1030     Value[subtype] 01? 31
1031     Value[user-title] 01?
1032     (31 Value[corner-text] @math{|} 58)
1033     (31 Value[caption] @math{|} 58)
1034 @end example
1035
1036 The Titles follow the Header and specify the table's title, caption,
1037 and corner text.
1038
1039 The @code{user-title} is shown above the title and reflects any user
1040 editing of the title text or style.  The @code{title} is the title
1041 originally generated by the procedure.  Both of these are appropriate
1042 for presentation and localized to the user's language.  For example,
1043 for a frequency table, @code{title} and @code{user-title} normally
1044 name the variable and @code{c} is simply ``Frequencies''.
1045
1046 @code{subtype} is the same as the @code{subType} attribute in the
1047 @code{table} structure XML element that referred to this member.
1048 @xref{SPV Structure table Element}, for details.
1049
1050 The @code{corner-text}, if present, is shown in the upper-left corner
1051 of the table, above the row headings and to the left of the column
1052 headings.  It is usually absent.  Corner text prevents row dimension
1053 labels from being displayed above the dimension's group and category
1054 labels (see @code{show-row-labels-in-corner}).
1055
1056 The @code{caption}, if present, is shown below the table.
1057 @code{caption} reflects user editing of the caption.
1058
1059 @node SPV Light Member Footnotes
1060 @subsection Footnotes
1061
1062 @example
1063 Footnotes => int32[n-footnotes] Footnote*[n-footnotes]
1064 Footnote => Value[text] (58 @math{|} 31 Value[marker]) int32[show]
1065 @end example
1066
1067 Each footnote has @code{text} and an optional custom @code{marker}
1068 (such as @samp{*}).
1069
1070 The syntax for Value would allow footnotes (and their markers) to
1071 reference other footnotes, but in practice this doesn't work.
1072
1073 @code{show} is a 32-bit signed integer.  It is positive to show the
1074 footnote or negative to hide it.  Its magnitude is often 1, and in
1075 other cases tends to be the number of references to the footnote.
1076
1077 @node SPV Light Member Areas
1078 @subsection Areas
1079
1080 @example
1081 Areas => 00? Area*8
1082 Area =>
1083     byte[index] 31
1084     string[typeface] float[size] int32[style] bool[underline]
1085     int32[halign] int32[valign]
1086     string[fg-color] string[bg-color]
1087     bool[alternate] string[alt-fg-color] string[alt-bg-color]
1088     v3(int32[left-margin] int32[right-margin] int32[top-margin] int32[bottom-margin])
1089 @end example
1090
1091 Each Area represents the style for a different area of the table, in
1092 the following order: title, caption, footer, corner, column labels,
1093 row labels, data, and layers.
1094
1095 @code{index} is the 1-based index of the Area, i.e. 1 for the first
1096 Area, through 8 for the final Area.
1097
1098 @code{typeface} is the string name of the font used in the area.  In
1099 the corpus, this is @code{SansSerif} in over 99% of instances and
1100 @code{Times New Roman} in the rest.
1101
1102 @code{size} is the size of the font, in px (@pxref{SPV Light Detail
1103 Member Format}) The most common size in the corpus is 12 px.  Even
1104 though @code{size} has a floating-point type, in the corpus its values
1105 are always integers.
1106
1107 @code{style} is a bit mask.  Bit 0 (with value 1) is set for bold, bit
1108 1 (with value 2) is set for italic.
1109
1110 @code{underline} is 1 if the font is underlined, 0 otherwise.
1111
1112 @code{halign} specifies horizontal alignment: 0 for center, 2 for
1113 left, 4 for right, 61453 for decimal, 64173 for mixed.  Mixed
1114 alignment varies according to type: string data is left-justified,
1115 numbers and most other formats are right-justified.
1116
1117 @code{valign} specifies vertical alignment: 0 for center, 1 for top, 3
1118 for bottom.
1119
1120 @code{fg-color} and @code{bg-color} are the foreground color and
1121 background color, respectively.  In the corpus, these are always
1122 @code{#000000} and @code{#ffffff}, respectively.
1123
1124 @code{alternate} is 1 if rows should alternate colors, 0 if all rows
1125 should be the same color.  When @code{alternate} is 1,
1126 @code{alt-fg-color} and @code{alt-bg-color} specify the colors for the
1127 alternate rows; otherwise they are empty strings.
1128
1129 @code{left-margin}, @code{right-margin}, @code{top-margin}, and
1130 @code{bottom-margin} are measured in px.
1131
1132 @node SPV Light Member Borders
1133 @subsection Borders
1134
1135 @example
1136 Borders =>
1137     count(
1138         ib1[endian]
1139         be32[n-borders] Border*[n-borders]
1140         bool[show-grid-lines]
1141         00 00 00)
1142
1143 Border =>
1144     be32[border-type]
1145     be32[stroke-type]
1146     be32[color]
1147 @end example
1148
1149 The Borders reflect how borders between regions are drawn.
1150
1151 The fixed value of @code{endian} can be used to validate the
1152 endianness.
1153
1154 @code{show-grid-lines} is 1 to draw grid lines, otherwise 0.
1155
1156 Each Border describes one kind of border.  @code{n-borders} seems to
1157 always be 19.  Each @code{border-type} appears once (although in an
1158 unpredictable order) and correspond to the following borders:
1159
1160 @table @asis
1161 @item 0
1162 Title.
1163 @item 1@dots{}4
1164 Left, top, right, and bottom outer frame.
1165 @item 5@dots{}8
1166 Left, top, right, and bottom inner frame.
1167 @item 9, 10
1168 Left and top of data area.
1169 @item 11, 12
1170 Horizontal and vertical dimension rows.
1171 @item 13, 14
1172 Horizontal and vertical dimension columns.
1173 @item 15, 16
1174 Horizontal and vertical category rows.
1175 @item 17, 18
1176 Horizontal and vertical category columns.
1177 @end table
1178
1179 @code{stroke-type} describes how a border is drawn, as one of:
1180
1181 @table @asis
1182 @item 0
1183 No line.
1184 @item 1
1185 Solid line.
1186 @item 2
1187 Dashed line.
1188 @item 3
1189 Thick line.
1190 @item 4
1191 Thin line.
1192 @item 5
1193 Double line.
1194 @end table
1195
1196 @code{color} is an RGB color.  Bits 24--31 are alpha, bits 16--23 are
1197 red, 8--15 are green, 0--7 are blue.  An alpha of 255 indicates an
1198 opaque color, therefore opaque black is 0xff000000.
1199
1200 @node SPV Light Member Print Settings
1201 @subsection Print Settings
1202
1203 @example
1204 PrintSettings =>
1205     count(
1206         ib1[endian]
1207         bool[all-layers]
1208         bool[paginate-layers]
1209         bool[fit-width]
1210         bool[fit-length]
1211         bool[top-continuation]
1212         bool[bottom-continuation]
1213         be32[n-orphan-lines]
1214         bestring[continuation-string])
1215 @end example
1216
1217 The PrintSettings reflect settings for printing.  The fixed value of
1218 @code{endian} can be used to validate the endianness.
1219
1220 @code{all-layers} is 1 to print all layers, 0 to print only the
1221 visible layers.
1222
1223 @code{paginate-layers} is 1 to print each layer at the start of a new
1224 page, 0 otherwise.  (This setting is honored only @code{all-layers} is
1225 1, since otherwise only one layer is printed.)
1226
1227 @code{fit-width} and @code{fit-length} control whether the table is
1228 shrunk to fit within a page's width or length, respectively.
1229
1230 @code{n-orphan-lines} is the minimum number of rows or columns to put
1231 in one part of a table that is broken across pages.
1232
1233 If @code{top-continuation} is 1, then @code{continuation-string} is
1234 printed at the top of a page when a table is broken across pages for
1235 printing; similarly for @code{bottom-continuation} and the bottom of a
1236 page.  Usually, @code{continuation-string} is empty.
1237
1238 @node SPV Light Member Table Settings
1239 @subsection Table Settings
1240
1241 @example
1242 TableSettings =>
1243     count(
1244       v3(
1245         ib1[endian]
1246         be32[x5]
1247         be32[current-layer]
1248         bool[omit-empty]
1249         bool[show-row-labels-in-corner]
1250         bool[show-alphabetic-markers]
1251         bool[footnote-marker-superscripts]
1252         byte[x6]
1253         becount(
1254           Breakpoints[row-breaks] Breakpoints[column-breaks]
1255           Keeps[row-keeps] Keeps[column-keeps]
1256           PointKeeps[row-point-keeps] PointKeeps[column-point-keeps]
1257         )
1258         bestring[notes]
1259         bestring[table-look]
1260         00...))
1261
1262 Breakpoints => be32[n-breaks] be32*[n-breaks]
1263
1264 Keeps => be32[n-keeps] Keep*[n-keeps]
1265 Keep => be32[offset] be32[n]
1266
1267 PointKeeps => be32[n-point-keeps] PointKeep*[n-point-keeps]
1268 PointKeep => be32[offset] be32 be32
1269 @end example
1270
1271 The TableSettings reflect display settings.  The fixed value of
1272 @code{endian} can be used to validate the endianness.
1273
1274 @code{current-layer} is the displayed layer.  The interpretation when
1275 there is more than one layer dimension is not yet known.
1276
1277 If @code{omit-empty} is 1, empty rows or columns (ones with nothing in
1278 any cell) are hidden; otherwise, they are shown.
1279
1280 If @code{show-row-labels-in-corner} is 1, then row labels are shown in
1281 the upper left corner; otherwise, they are shown nested.
1282
1283 If @code{show-alphabetic-markers} is 1, markers are shown as letters
1284 (e.g.@: @samp{a}, @samp{b}, @samp{c}, @dots{}); otherwise, they are
1285 shown as numbers starting from 1.
1286
1287 When @code{footnote-marker-superscripts} is 1, footnote markers are shown
1288 as superscripts, otherwise as subscripts.
1289
1290 The Breakpoints are rows or columns after which there is a page break;
1291 for example, a row break of 1 requests a page break after the second
1292 row.  Usually no breakpoints are specified, indicating that page
1293 breaks should be selected automatically.
1294
1295 The Keeps are ranges of rows or columns to be kept together without a
1296 page break; for example, a row Keep with @code{offset} 1 and @code{n}
1297 10 requests that the 10 rows starting with the second row be kept
1298 together.  Usually no Keeps are specified.
1299
1300 The PointKeeps seem to be generated automatically based on
1301 user-specified Keeps.  They seems to indicate a conversion from rows
1302 or columns to pixel or point offsets.
1303
1304 @code{notes} is a text string that contains user-specified notes.  It
1305 is displayed when the user hovers the cursor over the table, like text
1306 in the @code{title} attribute in HTML.  It is not printed.  It is
1307 usually empty.
1308
1309 @code{table-look} is the name of a SPSS ``TableLook'' table style,
1310 such as ``Default'' or ``Academic''; it is often empty.
1311
1312 TableSettings ends with an arbitrary number of null bytes.  A writer
1313 may safely write 82 null bytes.
1314
1315 A writer may safely use 4 for @code{x5} and 0 for @code{x6}.
1316
1317 @node SPV Light Member Formats
1318 @subsection Formats
1319
1320 @example
1321 Formats =>
1322     int32[n-widths] int32*[n-widths]
1323     string[locale]
1324     int32[current-layer]
1325     bool bool bool
1326     Y0
1327     CustomCurrency
1328     count(
1329       v1(X0?)
1330       v3(count(X1 count(X2)) count(X3)))
1331 Y0 => int32[epoch] byte[decimal] byte[grouping]
1332 CustomCurrency => int32[n-ccs] string*[n-ccs]
1333 @end example
1334
1335 If @code{n-widths} is nonzero, then the accompanying integers are
1336 column widths as manually adjusted by the user.
1337
1338 @code{locale} is a locale including an encoding, such as
1339 @code{en_US.windows-1252} or @code{it_IT.windows-1252}.  The rest of
1340 the character strings in the member use this encoding.  The encoding
1341 string is itself encoded in US-ASCII.
1342
1343 @code{epoch} is the year that starts the epoch.  A 2-digit year is
1344 interpreted as belonging to the 100 years beginning at the epoch.  The
1345 default epoch year is 69 years prior to the current year; thus, in
1346 2017 this field by default contains 1948.  In the corpus, @code{epoch}
1347 ranges from 1943 to 1948, plus some contain -1.
1348
1349 @code{decimal} is the decimal point character.  The observed values
1350 are @samp{.} and @samp{,}.
1351
1352 @code{grouping} is the grouping character.  Usually, it is @samp{,} if
1353 @code{decimal} is @samp{.}, and vice versa.  Other observed values are
1354 @samp{'} (apostrophe), @samp{ } (space), and zero (presumably
1355 indicating that digits should not be grouped).
1356
1357 @code{n-ccs} is observed as either 0 or 5.  When it is 5, the
1358 following strings are CCA through CCE format strings.  @xref{Custom
1359 Currency Formats,,, pspp, PSPP}.  Most commonly these are all
1360 @code{-,,,} but other strings occur.
1361
1362 @subsubheading X0
1363
1364 X0 only appears, optionally, in version 1 members.
1365
1366 @example
1367 X0 => byte*14 Y1 Y2
1368 Y1 =>
1369     string[command] string[command-local]
1370     string[language] string[charset] string[locale]
1371     bool bool bool bool
1372     Y0
1373 Y2 => CustomCurrency byte[missing] bool[x17]
1374 @end example
1375
1376 @code{command} describes the statistical procedure that generated the
1377 output, in English.  It is not necessarily the literal syntax name of
1378 the procedure: for example, NPAR TESTS becomes ``Nonparametric
1379 Tests.''  @code{command-local} is the procedure's name, translated
1380 into the output language; it is often empty and, when it is not,
1381 sometimes the same as @code{command}.
1382
1383 @code{dataset} is the name of the dataset analyzed to produce the
1384 output, e.g.@: @code{DataSet1}, and @code{datafile} the name of the
1385 file it was read from, e.g.@: @file{C:\Users\foo\bar.sav}.  The latter
1386 is sometimes the empty string.
1387
1388 @code{missing} is the character used to indicate that a cell contains
1389 a missing value.  It is always observed as @samp{.}.
1390
1391 X0 repeats @code{decimal}, @code{grouping}, CustomCurrency, and
1392 @code{missing} already included in Formats.
1393
1394 A writer may safely use false for @code{x17}.
1395
1396 @subsubheading X1
1397
1398 X1 only appears in version 3 members.
1399
1400 @example
1401 X1 =>
1402     bool
1403     byte[show-title]
1404     bool[x16]
1405     byte[lang]
1406     byte[show-variables]
1407     byte[show-values]
1408     int32[x18] int32[x19]
1409     00*17
1410     bool[x20]
1411     bool[show-caption]
1412 @end example
1413
1414 @code{lang} may indicate the language in use.  Some values seem to be
1415 0: @t{en}, 1: @t{de}, 2: @t{es}, 3: @t{it}, 5: @t{ko}, 6: @t{pl}, 8:
1416 @t{zh-tw}, 10: @t{pt_BR}, 11: @t{fr}.  The @code{locale} in Formats
1417 and the @code{language}, @code{charset}, and @code{locale} in X0 are
1418 more likely to be useful in practice.
1419
1420 @code{show-variables} determines how variables are displayed by
1421 default.  A value of 1 means to display variable names, 2 to display
1422 variable labels when available, 3 to display both (name followed by
1423 label, separated by a space).  The most common value is 0, which
1424 probably means to use a global default.
1425
1426 @code{show-values} is a similar setting for values.  A value of 1
1427 means to display the value, 2 to display the value label when
1428 available, 3 to display both.  Again, the most common value is 0,
1429 which probably means to use a global default.
1430
1431 @code{show-title} is 1 to show the caption, 10 to hide it.
1432
1433 @code{show-caption} is true to show the caption, false to hide it.
1434
1435 A writer may safely use false for @code{x14}, false
1436 for @code{x16}, -1 for @code{x18} and @code{x19}, and false for
1437 @code{x20}.
1438
1439 @subsubheading X2
1440
1441 X2 only appears in version 3 members.
1442
1443 @example
1444 X2 =>
1445     int32[n-row-heights] int32*[n-row-heights]
1446     int32[n-style-map] StyleMap*[n-style-map]
1447     int32[n-styles] StylePair*[n-styles]
1448     count((i0 i0)?)
1449 StyleMap => int64[cell-index] int16[style-index]
1450 @end example
1451
1452 If present, @code{n-row-heights} and the accompanying integers are row
1453 heights as manually adjusted by the user.
1454
1455 The rest of X2 specifies styles for data cells.  At first glance this
1456 is odd, because each data cell can have its own style embedded as part
1457 of the data, but in practice X2 specifies a style for a cell only if
1458 that cell is empty (and thus does not appear in the data at all).
1459 Each StyleMap specifies the index of a blank cell, calculated the same
1460 was as in the Cells (@pxref{SPV Light Member Cells}), along with a
1461 0-based index into the accompanying StylePair array.
1462
1463 A writer may safely omit the optional @code{i0 i0} inside the
1464 @code{count(@dots{})}.
1465
1466 @subsubheading X3
1467
1468 X3 only appears in version 3 members.
1469
1470 @example
1471 X3 =>
1472     01 00 byte[x21] 00 00 00
1473     Y1
1474     double[small] 01
1475     (string[dataset] string[datafile] i0 int32[date] i0)?
1476     Y2
1477     (int32[x22] i0)?
1478 @end example
1479
1480 @code{date} is a date, as seconds since the epoch, i.e.@: since
1481 January 1, 1970.  Pivot tables within an SPV file often have dates a
1482 few minutes apart, so this is probably a creation date for the table
1483 rather than for the file.
1484
1485 X3 repeats @code{decimal}, @code{grouping}, CustomCurrency, and
1486 @code{missing} already included in Formats.  @code{command},
1487 @code{command-local}, @code{language}, @code{charset}, and
1488 @code{locale} have the same meaning as in X0.
1489
1490 @code{small} is a small real number, e.g.@: .001.  Numbers smaller
1491 than this in absolute value are displayed in scientific notation.
1492
1493 Sometimes @code{dataset}, @code{datafile}, and @code{date} are present
1494 and other times they are absent.  The reader can distinguish by
1495 assuming that they are present and then checking whether the
1496 presumptive @code{dataset} contains a null byte (a valid string never
1497 will).
1498
1499 @code{x22} is usually 0 or 2000000.
1500
1501 A writer may safely use 4 for @code{x21} and omit @code{x22} and the
1502 other optional bytes at the end.
1503
1504 @node SPV Light Member Dimensions
1505 @subsection Dimensions
1506
1507 A pivot table presents multidimensional data.  A Dimension identifies
1508 the categories associated with each dimension.
1509
1510 @example
1511 Dimensions => int32[n-dims] Dimension*[n-dims]
1512 Dimension =>
1513     Value[name] DimProperties
1514     int32[n-categories] Category*[n-categories]
1515 DimProperties =>
1516     byte[x1]
1517     byte[x2]
1518     int32[x3]
1519     bool[hide-dim-label]
1520     bool[hide-all-labels]
1521     01 int32[dim-index]
1522 @end example
1523
1524 @code{name} is the name of the dimension, e.g.@: @code{Variables},
1525 @code{Statistics}, or a variable name.
1526
1527 The meanings of @code{x1} and @code{x3} are unknown.  @code{x1} is
1528 usually 0 but many other values have been observed.  A writer may
1529 safely use 0 for @code{x1} and 2 for @code{x3}.
1530
1531 @code{x2} is 0, 1, or 2.  For a pivot table with @var{L} layer
1532 dimensions, @var{R} row dimensions, and @var{C} column dimensions,
1533 @code{x2} is 2 for the first @var{L} dimensions, 0 for the next
1534 @var{R} dimensions, and 1 for the remaining @var{C} dimensions.  This
1535 does not mean that the layer dimensions must be presented first,
1536 followed by the row dimensions, followed by the column dimensions---on
1537 the contrary, they are frequently in a different order---but @code{x2}
1538 must follow this pattern to prevent the pivot table from being
1539 misinterpreted.
1540
1541 If @code{hide-dim-label} is 00, the pivot table displays a label for
1542 the dimension itself.  Because usually the group and category labels
1543 are enough explanation, it is usually 01.
1544
1545 If @code{hide-all-labels} is 01, the pivot table omits all labels for
1546 the dimension, including group and category labels.  It is usually 00.
1547 When @code{hide-all-labels} is 01, @code{show-dim-label} is ignored.
1548
1549 @code{dim-index} is usually the 0-based index of the dimension, e.g.@:
1550 0 for the first dimension, 1 for the second, and so on.  Sometimes it
1551 is -1.  There is no visible difference.
1552
1553 @node SPV Light Member Categories
1554 @subsection Categories
1555
1556 Categories are arranged in a tree.  Only the leaf nodes in the tree
1557 are really categories; the others just serve as grouping constructs.
1558
1559 @example
1560 Category => Value[name] (Leaf @math{|} Group)
1561 Leaf => 00 00 00 i2 int32[leaf-index] i0
1562 Group =>
1563     bool[merge] 00 01 int32[x23]
1564     i-1 int32[n-subcategories] Category*[n-subcategories]
1565 @end example
1566
1567 @code{name} is the name of the category (or group).
1568
1569 A Leaf represents a leaf category.  The Leaf's @code{leaf-index} is a
1570 nonnegative integer unique within the Dimension and less than
1571 @code{n-categories} in the Dimension.  If the user does not sort or
1572 rearrange the categories, then @code{leaf-index} starts at 0 for the
1573 first Leaf in the dimension and increments by 1 with each successive
1574 Leaf.  If the user does sorts or rearrange the categories, then the
1575 order of categories in the file reflects that change and
1576 @code{leaf-index} reflects the original order.
1577
1578 Occasionally a dimension has no leaf categories at all.  A table that
1579 contains such a dimension necessarily has no data at all.
1580
1581 A Group is a group of nested categories.  Usually a Group contains at
1582 least one Category, so that @code{n-subcategories} is positive, but a
1583 few Groups with @code{n-subcategories} 0 has been observed.
1584
1585 If a Group's @code{merge} is 00, the most common value, then the group
1586 is really a distinct group that should be represented as such in the
1587 visual representation and user interface.  If @code{merge} is 01, the
1588 categories in this group should be shown and treated as if they were
1589 direct children of the group's containing group (or if it has no
1590 parent group, then direct children of the dimension), and this group's
1591 name is irrelevant and should not be displayed.  (Merged groups can be
1592 nested!)
1593
1594 (For writing an SPV file, there is no need to use the @code{merge}
1595 feature unless it is convenient.)
1596
1597 A Group's @code{x23} appears to be i2 when all of the categories
1598 within a group are leaf categories that directly represent data values
1599 for a variable (e.g.@: in a frequency table or crosstabulation, a group
1600 of values in a variable being tabulated) and i0 otherwise.  A writer
1601 may safely write a constant 0 in this field.
1602
1603 @node SPV Light Member Axes
1604 @subsection Axes
1605
1606 After the dimensions come assignment of each dimension to one of the
1607 axes: layers, rows, and columns.
1608
1609 @example
1610 Axes =>
1611     int32[n-layers] int32[n-rows] int32[n-columns]
1612     int32*[n-layers] int32*[n-rows] int32*[n-columns]
1613 @end example
1614
1615 The values of @code{n-layers}, @code{n-rows}, and @code{n-columns}
1616 each specifies the number of dimensions displayed in layers, rows, and
1617 columns, respectively.  Any of them may be zero.  Their values sum to
1618 @code{n-dimensions} from Dimensions (@pxref{SPV Light Member
1619 Dimensions}).
1620
1621 The following @code{n-dimensions} integers, in three groups, are a
1622 permutation of the 0-based dimension numbers.  The first
1623 @code{n-layers} integers specify each of the dimensions represented by
1624 layers, the next @code{n-rows} integers specify the dimensions
1625 represented by rows, and the final @code{n-columns} integers specify
1626 the dimensions represented by columns.  When there is more than one
1627 dimension of a given kind, the inner dimensions are given first.
1628
1629 @node SPV Light Member Cells
1630 @subsection Cells
1631
1632 The final part of an SPV light member contains the actual data.
1633
1634 @example
1635 Cells => int32[n-cells] Cell*[n-cells]
1636 Cell => int64[index] v1(00?) Value
1637 @end example
1638
1639 A Cell consists of an @code{index} and a Value.  Suppose there are
1640 @math{d} dimensions, numbered 1 through @math{d} in the order given in
1641 the Dimensions previously, and that dimension @math{i}, has @math{n_i}
1642 categories.  Consider the cell at coordinates @math{x_i}, @math{1 \le
1643 i \le d}, and note that @math{0 \le x_i < n_i}.  Then the index is
1644 calculated by the following algorithm:
1645
1646 @display
1647 let @i{index} = 0
1648 for each @math{i} from 1 to @math{d}:
1649     @i{index} = (@math{n_i \times} @i{index}) @math{+} @math{x_i}
1650 @end display
1651
1652 For example, suppose there are 3 dimensions with 3, 4, and 5
1653 categories, respectively.  The cell at coordinates (1, 2, 3) has
1654 index @math{5 \times (4 \times (3 \times 0 + 1) + 2) + 3 = 33}.
1655 Within a given dimension, the index is the @code{leaf-index} in a Leaf.
1656
1657 @node SPV Light Member Value
1658 @subsection Value
1659
1660 Value is used throughout the SPV light member format.  It boils down
1661 to a number or a string.
1662
1663 @example
1664 Value => 00? 00? 00? 00? RawValue
1665 RawValue =>
1666     01 ValueMod int32[format] double[x]
1667   @math{|} 02 ValueMod int32[format] double[x]
1668     string[var-name] string[value-label] byte[show]
1669   @math{|} 03 string[local] ValueMod string[id] string[c] bool[fixed]
1670   @math{|} 04 ValueMod int32[format] string[value-label] string[var-name]
1671     byte[show] string[s]
1672   @math{|} 05 ValueMod string[var-name] string[var-label] byte[show]
1673   @math{|} ValueMod string[template] int32[n-args] Argument*[n-args]
1674 Argument =>
1675     i0 Value
1676   @math{|} int32[x] i0 Value*[x]      /* x > 0 */
1677 @end example
1678
1679 There are several possible encodings, which one can distinguish by the
1680 first nonzero byte in the encoding.
1681
1682 @table @asis
1683 @item 01
1684 The numeric value @code{x}, intended to be presented to the user
1685 formatted according to @code{format}, which is in the format described
1686 for system files, except that format 40 is a synonym for F format
1687 instead of MTIME.  @xref{System File Output Formats}, for details.
1688 Most commonly, @code{format} has width 40 (the maximum).
1689
1690 An @code{x} with the maximum negative double value @code{-DBL_MAX}
1691 represents the system-missing value SYSMIS.  (HIGHEST and LOWEST have
1692 not been observed.)  @xref{System File Format}, for more about these
1693 special values.
1694
1695 @item 02
1696 Similar to @code{01}, with the additional information that @code{x} is
1697 a value of variable @code{var-name} and has value label
1698 @code{value-label}.  Both @code{var-name} and @code{value-label} can
1699 be the empty string, the latter very commonly.
1700
1701 @code{show} determines whether to show the numeric value or the value
1702 label.  A value of 1 means to show the value, 2 to show the label, 3
1703 to show both, and 0 means to use the default specified in
1704 @code{show-values} (@pxref{SPV Light Member Formats}).
1705
1706 @item 03
1707 A text string, in two forms: @code{c} is in English, and sometimes
1708 abbreviated or obscure, and @code{local} is localized to the user's
1709 locale.  In an English-language locale, the two strings are often the
1710 same, and in the cases where they differ, @code{local} is more
1711 appropriate for a user interface, e.g.@: @code{c} of ``Not a PxP table
1712 for MCN...'' versus @code{local} of ``Computed only for a PxP table,
1713 where P must be greater than 1.''
1714
1715 @code{c} and @code{local} are always either both empty or both
1716 nonempty.
1717
1718 @code{id} is a brief identifying string whose form seems to resemble a
1719 programming language identifier, e.g.@: @code{cumulative_percent} or
1720 @code{factor_14}.  It is not unique.
1721
1722 @code{fixed} is 00 for text taken from user input, such as syntax
1723 fragment, expressions, file names, data set names, and 01 for fixed
1724 text strings such as names of procedures or statistics.  In the former
1725 case, @code{id} is always the empty string; in the latter case,
1726 @code{id} is still sometimes empty.
1727
1728 @item 04
1729 The string value @code{s}, intended to be presented to the user
1730 formatted according to @code{format}.  The format for a string is not
1731 too interesting, and the corpus contains many clearly invalid formats
1732 like A16.39 or A255.127 or A134.1, so readers should probably ignore
1733 the format entirely.
1734
1735 @code{s} is a value of variable @code{var-name} and has value label
1736 @code{value-label}.  @code{var-name} is never empty but
1737 @code{value-label} is commonly empty.
1738
1739 @code{show} has the same meaning as in the encoding for 02.
1740
1741 @item 05
1742 Variable @code{var-name}, which is rarely observed as empty in the
1743 corpus, with variable label @code{var-label}, which is often empty.
1744
1745 @code{show} determines whether to show the variable name or the
1746 variable label.  A value of 1 means to show the name, 2 to show the
1747 label, 3 to show both, and 0 means to use the default specified in
1748 @code{show-variables} (@pxref{SPV Light Member Formats}).
1749
1750 @item otherwise
1751 When the first byte of a RawValue is not one of the above, the
1752 RawValue starts with a ValueMod, whose syntax is described in the next
1753 section.  (A ValueMod always begins with byte 31 or 58.)
1754
1755 This case is a template string, analogous to @code{printf}, followed
1756 by one or more Arguments, each of which has one or more values.  The
1757 template string is copied directly into the output except for the
1758 following special syntax,
1759
1760 @table @code
1761 @item \%
1762 @itemx \:
1763 @itemx \[
1764 @itemx \]
1765 Each of these expands to the character following @samp{\\}, to escape
1766 characters that have special meaning in template strings.  These are
1767 effective inside and outside the @code{[@dots{}]}  syntax forms
1768 described below.
1769
1770 @item \n
1771 Expands to a new-line, inside or outside the @code{[@dots{}]} forms
1772 described below.
1773
1774 @item ^@var{i}
1775 Expands to a formatted version of argument @var{i}, which must have
1776 only a single value.  For example, @code{^1} expands to the first
1777 argument's @code{value}.
1778
1779 @item [:@var{a}:]@var{i}
1780 Expands @var{a} for each of the values in @var{i}.  @var{a}
1781 should contain one or more @code{^@var{j}} conversions, which are
1782 drawn from the values for argument @var{i} in order.  Some examples
1783 from the corpus:
1784
1785 @table @code
1786 @item [:^1:]1
1787 All of the values for the first argument, concatenated.
1788
1789 @item [:^1\n:]1
1790 Expands to the values for the first argument, each followed by
1791 a new-line.
1792
1793 @item [:^1 = ^2:]2
1794 Expands to @code{@var{x} = @var{y}} where @var{x} is the second
1795 argument's first value and @var{y} is its second value.  (This would
1796 be used only if the argument has two values.  If there were more
1797 values, the second and third values would be directly concatenated,
1798 which would look funny.)
1799 @end table
1800
1801 @item [@var{a}:@var{b}:]@var{i}
1802 This extends the previous form so that the first values are expanded
1803 using @var{a} and later values are expanded using @var{b}.  For an
1804 unknown reason, within @var{a} the @code{^@var{j}} conversions are
1805 instead written as @code{%@var{j}}.  Some examples from the corpus:
1806
1807 @table @code
1808 @item [%1:*^1:]1
1809 Expands to all of the values for the first argument, separated by
1810 @samp{*}.
1811
1812 @item [%1 = %2:, ^1 = ^2:]1
1813 Given appropriate values for the first argument, expands to @code{X =
1814 1, Y = 2, Z = 3}.
1815
1816 @item [%1:, ^1:]1
1817 Given appropriate values, expands to @code{1, 2, 3}.
1818 @end table
1819 @end table
1820
1821 The template string is localized to the user's locale.
1822 @end table
1823
1824 A writer may safely omit all of the optional 00 bytes at the beginning
1825 of a Value, except that it should write a single 00 byte before a
1826 templated Value.
1827
1828 @node SPV Light Member ValueMod
1829 @subsection ValueMod
1830
1831 A ValueMod can specify special modifications to a Value.
1832
1833 @example
1834 ValueMod =>
1835     58
1836   @math{|} 31
1837     int32[n-refs] int16*[n-refs]
1838     int32[n-subscripts] string*[n-subscripts]
1839     v1(00 (i1 | i2) 00? 00? int32 00? 00?)
1840     v3(count(TemplateString StylePair))
1841
1842 TemplateString => count((count((i0 (58 @math{|} 31 55))?) (58 @math{|} 31 string[id]))?)
1843
1844 StylePair =>
1845     (31 FontStyle | 58)
1846     (31 CellStyle | 58)
1847
1848 FontStyle =>
1849     bool[bold] bool[italic] bool[underline] bool[show]
1850     string[fg-color] string[bg-color]
1851     string[typeface] byte[size]
1852
1853 CellStyle =>
1854     int32[halign] int32[valign] double[decimal-offset]
1855     int16[left-margin] int16[right-margin]
1856     int16[top-margin] int16[bottom-margin]
1857 @end example
1858
1859 A ValueMod that begins with ``31'' specifies special modifications to
1860 a Value.
1861
1862 Each of the @code{n-refs} integers is a reference to a Footnote
1863 (@pxref{SPV Light Member Footnotes}) by 0-based index.  Footnote
1864 markers are shown appended to the main text of the Value, as
1865 superscripts.
1866
1867 The @code{subscripts}, if present, are strings to append to the main
1868 text of the Value, as subscripts.  Each subscript text is a brief
1869 indicator, e.g.@: @samp{a} or @samp{b}, with its meaning indicated by
1870 the table caption.  When multiple subscripts are present, they are
1871 displayed separated by commas.
1872
1873 The @code{id} inside the TemplateString, if present, is a template
1874 string for substitutions using the syntax explained previously.  It
1875 appears to be an English-language version of the localized template
1876 string in the Value in which the Template is nested.  A writer may
1877 safely omit the optional fixed data in TemplateString.
1878
1879 FontStyle and CellStyle, if present, change the style for this
1880 individual Value.  In FontStyle, @code{bold}, @code{italic}, and
1881 @code{underline} control the particular style.  @code{show} is
1882 ordinarily 1; if it is 0, then the cell data is not shown.
1883 @code{fg-color} and @code{bg-color} are strings in the format
1884 @code{#rrggbb}, e.g.@: @code{#ff0000} for red or @code{#ffffff} for
1885 white.  The empty string is occasionally observed also.  The
1886 @code{size} is a font size in units of 1/128 inch.
1887
1888 In CellStyle, @code{halign} is 0 for center, 2 for left, 4 for right,
1889 6 for decimal, 0xffffffad for mixed.  For decimal alignment,
1890 @code{decimal-offset} is the decimal point's offset from the right
1891 side of the cell, in pt (@pxref{SPV Light Detail Member Format}).
1892 @code{valign} specifies vertical alignment: 0 for center, 1 for top, 3
1893 for bottom.  @code{left-margin}, @code{right-margin},
1894 @code{top-margin}, and @code{bottom-margin} are in pt.
1895
1896 @node SPV Legacy Detail Member Binary Format
1897 @section Legacy Detail Member Binary Format
1898
1899 Whereas the light binary format represents everything about a given
1900 pivot table, the legacy binary format conceptually consists of a
1901 number of named sources, each of which consists of a number of named
1902 variables, each of which is a 1-dimensional array of numbers or
1903 strings or a mix.  Thus, the legacy binary member format is quite
1904 simple.
1905
1906 This section uses the same context-free grammar notation as in the
1907 previous section, with the following additions:
1908
1909 @table @asis
1910 @item vAF(@var{x})
1911 In a version 0xaf legacy member, @var{x}; in other versions, nothing.
1912 (The legacy member header indicates the version; see below.)
1913
1914 @item vB0(@var{x})
1915 In a version 0xb0 legacy member, @var{x}; in other versions, nothing.
1916 @end table
1917
1918 A legacy detail member @file{.bin} has the following overall format:
1919
1920 @example
1921 LegacyBinary =>
1922     00 byte[version] int16[n-sources] int32[member-size]
1923     Metadata*[n-sources]
1924     #Data*[n-sources]
1925     #Strings?
1926 @end example
1927
1928 @code{version} is a version number that affects the interpretation of
1929 some of the other data in the member.  Versions 0xaf and 0xb0 are
1930 known.  We will refer to ``version 0xaf'' and ``version 0xb0'' members
1931 later on.
1932
1933 A legacy member consists of @code{n-sources} data sources, each of
1934 which has Metadata and Data.
1935
1936 @code{member-size} is the size of the legacy binary member, in bytes.
1937
1938 The Data and Strings above are commented out because the Metadata has
1939 some oddities that mean that the Data sometimes seems to start at
1940 an unexpected place.  The following section goes into detail.
1941
1942 @menu
1943 * SPV Legacy Member Metadata::
1944 * SPV Legacy Member Numeric Data::
1945 * SPV Legacy Member String Data::
1946 @end menu
1947
1948 @node SPV Legacy Member Metadata
1949 @subsection Metadata
1950
1951 @example
1952 Metadata =>
1953     int32[n-values] int32[n-variables] int32[data-offset]
1954     vAF(byte*28[source-name])
1955     vB0(byte*64[source-name] int32[x])
1956 @end example
1957
1958 A data source has @code{n-variables} variables, each with
1959 @code{n-values} data values.
1960
1961 @code{source-name} is a 28- or 64-byte string padded on the right with
1962 0-bytes.  The names that appear in the corpus are very generic:
1963 usually @code{tableData} for pivot table data or @code{source0} for
1964 chart data.
1965
1966 A given Metadata's @code{data-offset} is the offset, in bytes, from
1967 the beginning of the member to the start of the corresponding Data.
1968 This allows programs to skip to the beginning of the data for a
1969 particular source.  In every case in the corpus, the Data follow the
1970 Metadata in the same order, but it is important to use
1971 @code{data-offset} instead of reading sequentially through the file
1972 because of the exception described below.
1973
1974 One SPV file in the corpus has legacy binary members with version 0xb0
1975 but a 28-byte @code{source-name} field (and only a single source).  In
1976 practice, this means that the 64-byte @code{source-name} used in
1977 version 0xb0 has a lot of 0-bytes in the middle followed by the
1978 @code{variable-name} of the following Data.  As long as a reader
1979 treats the first 0-byte in the @code{source-name} as terminating the
1980 string, it can properly interpret these members.
1981
1982 The meaning of @code{x} in version 0xb0 is unknown.
1983
1984 @node SPV Legacy Member Numeric Data
1985 @subsection Numeric Data
1986
1987 @example
1988 Data => Variable*[n-variables]
1989 Variable => byte*288[variable-name] double*[n-values]
1990 @end example
1991
1992 Data follow the Metadata in the legacy binary format, with sources in
1993 the same order (but readers should use the @code{data-offset} in
1994 Metadata records, rather than reading sequentially).  Each Variable
1995 begins with a @code{variable-name} that generally indicates its role
1996 in the pivot table, e.g.@: ``cell'', ``cellFormat'',
1997 ``dimension0categories'', ``dimension0group0'', followed by the
1998 numeric data, one double per datum.  A double with the maximum
1999 negative double @code{-DBL_MAX} represents the system-missing value
2000 SYSMIS.
2001
2002 @node SPV Legacy Member String Data
2003 @subsection String Data
2004
2005 @example
2006 Strings => SourceMaps[maps] Labels
2007
2008 SourceMaps => int32[n-maps] SourceMap*[n-maps]
2009
2010 SourceMap => string[source-name] int32[n-variables] VariableMap*[n-variables]
2011 VariableMap => string[variable-name] int32[n-data] DatumMap*[n-data]
2012 DatumMap => int32[value-idx] int32[label-idx]
2013
2014 Labels => int32[n-labels] Label*[n-labels]
2015 Label => int32[frequency] string[label]
2016 @end example
2017
2018 Each variable may include a mix of numeric and string data values.  If
2019 a legacy binary member contains any string data, Strings is present;
2020 otherwise, it ends just after the last Data element.
2021
2022 The string data overlays the numeric data.  When a variable includes
2023 any string data, its Variable represents the string values with a
2024 SYSMIS or NaN placeholder.  (Not all such values need be
2025 placeholders.)
2026
2027 Each SourceMap provides a mapping between SYSMIS or NaN values in source
2028 @code{source-name} and the string data that they represent.
2029 @code{n-variables} is the number of variables in the source that
2030 include string data.  More precisely, it is the 1-based index of the
2031 last variable in the source that includes any string data; thus, it
2032 would be 4 if there are 5 variables and only the fourth one includes
2033 string data.
2034
2035 A VariableMap repeats its variable's name, but variables are always
2036 present in the same order as the source, starting from the first
2037 variable, without skipping any even if they have no string values.
2038 Each VariableMap contains DatumMap nonterminals, each of which maps
2039 from a 0-based index within its variable's data to a 0-based label
2040 index, e.g.@: pair @code{value-idx} = 2, @code{label-idx} = 3, means
2041 that the third data value (which must be SYSMIS or NaN) is to be
2042 replaced by the string of the fourth Label.
2043
2044 The labels themselves follow the pairs.  The valuable part of each
2045 label is the string @code{label}.  Each label also includes a
2046 @code{frequency} that reports the number of DatumMaps that reference
2047 it (although this is not useful).
2048
2049 @node SPV Legacy Detail Member XML Format
2050 @section Legacy Detail Member XML Format
2051
2052 The design of the detail XML format is not what one would end up with
2053 for describing pivot tables.  This is because it is a special case
2054 of a much more general format (``visualization XML'' or ``VizML'')
2055 that can describe a wide range of visualizations.  Most of this
2056 generality is overkill for tables, and so we end up with a funny
2057 subset of a general-purpose format.
2058
2059 An XML Schema for VizML is available, distributed with SPSS binaries,
2060 under a nonfree license.  It contains documentation that is
2061 occasionally helpful.
2062
2063 This section describes the detail XML format using the same notation
2064 already used for the structure XML format (@pxref{SPV Structure Member
2065 Format}).  See @file{src/output/spv/detail-xml.grammar} in the PSPP
2066 source tree for the full grammar that it uses for parsing.
2067
2068 The important elements of the detail XML format are:
2069
2070 @itemize @bullet
2071 @item
2072 Variables.  @xref{SPV Detail Variable Elements}.
2073
2074 @item
2075 Assignment of variables to axes.  A variable can appear as columns, or
2076 rows, or layers.  The @code{faceting} element and its sub-elements
2077 describe this assignment.
2078
2079 @item
2080 Styles and other annotations.
2081 @end itemize
2082
2083 This description is not detailed enough to write legacy tables.
2084 Instead, write tables in the light binary format.
2085
2086 @menu
2087 * SPV Detail visualization Element::
2088 * SPV Detail Variable Elements::
2089 * SPV Detail extension Element::
2090 * SPV Detail graph Element::
2091 * SPV Detail location Element::
2092 * SPV Detail faceting Element::
2093 * SPV Detail facetLayout Element::
2094 * SPV Detail label Element::
2095 * SPV Detail setCellProperties Element::
2096 * SPV Detail setFormat Element::
2097 * SPV Detail interval Element::
2098 * SPV Detail style Element::
2099 * SPV Detail labelFrame Element::
2100 * SPV Detail Legacy Properties::
2101 @end menu
2102
2103 @node SPV Detail visualization Element
2104 @subsection The @code{visualization} Element
2105
2106 @example
2107 visualization
2108    :creator
2109    :date
2110    :lang
2111    :name
2112    :style[style_ref]=ref style
2113    :type
2114    :version
2115    :schemaLocation?
2116 => visualization_extension?
2117    userSource
2118    (sourceVariable | derivedVariable)+
2119    categoricalDomain?
2120    graph
2121    labelFrame[lf1]*
2122    container?
2123    labelFrame[lf2]*
2124    style+
2125    layerController?
2126
2127 extension[visualization_extension]
2128    :numRows=int?
2129    :showGridline=bool?
2130    :minWidthSet=(true)?
2131    :maxWidthSet=(true)?
2132 => EMPTY
2133
2134 userSource :missing=(listwise | pairwise)? => EMPTY
2135
2136 categoricalDomain => variableReference simpleSort
2137
2138 simpleSort :method[sort_method]=(custom) => categoryOrder
2139
2140 container :style=ref style => container_extension? location+ labelFrame*
2141
2142 extension[container_extension] :combinedFootnotes=(true) => EMPTY
2143
2144 layerController
2145    :source=(tableData)
2146    :target=ref label?
2147 => EMPTY
2148 @end example
2149
2150 The @code{visualization} element is the root of detail XML member.  It
2151 has the following attributes:
2152
2153 @defvr {Attribute} creator
2154 The version of the software that created this SPV file, as a string of
2155 the form @code{xxyyzz}, which represents software version xx.yy.zz,
2156 e.g.@: @code{160001} is version 16.0.1.  The corpus includes major
2157 versions 16 through 19.
2158 @end defvr
2159
2160 @defvr {Attribute} date
2161 The date on the which the file was created, as a string of the form
2162 @code{YYYY-MM-DD}.
2163 @end defvr
2164
2165 @defvr {Attribute} lang
2166 The locale used for output, in Windows format, which is similar to the
2167 format used in Unix with the underscore replaced by a hyphen, e.g.@:
2168 @code{en-US}, @code{en-GB}, @code{el-GR}, @code{sr-Cryl-RS}.
2169 @end defvr
2170
2171 @defvr {Attribute} name
2172 The title of the pivot table, localized to the output language.
2173 @end defvr
2174
2175 @defvr {Attribute} style
2176 The base style for the pivot table.  In every example in the corpus,
2177 the @code{style} element has no attributes other than @code{id}.
2178 @end defvr
2179
2180 @defvr {Attribute} type
2181 A floating-point number.  The meaning is unknown.
2182 @end defvr
2183
2184 @defvr {Attribute} version
2185 The visualization schema version number.  In the corpus, the value is
2186 one of 2.4, 2.5, 2.7, and 2.8.
2187 @end defvr
2188
2189 The @code{userSource} element has no visible effect.
2190
2191 The @code{extension} element as a child of @code{visualization} has
2192 the following attributes.
2193
2194 @defvr {Attribute} numRows
2195 An integer that presumably defines the number of rows in the displayed
2196 pivot table.
2197 @end defvr
2198
2199 @defvr {Attribute} showGridline
2200 Always set to @code{false} in the corpus.
2201 @end defvr
2202
2203 @defvr {Attribute} minWidthSet
2204 @defvrx {Attribute} maxWidthSet
2205 Always set to @code{true} in the corpus.
2206 @end defvr
2207
2208 The @code{extension} element as a child of @code{container} has the
2209 following attribute
2210
2211 @defvr {Attribute} combinedFootnotes
2212 Meaning unknown.
2213 @end defvr
2214
2215 The @code{categoricalDomain} and @code{simpleSort} elements have no
2216 visible effect.
2217
2218 The @code{layerController} element has no visible effect.
2219
2220 @node SPV Detail Variable Elements
2221 @subsection Variable Elements
2222
2223 A ``variable'' in detail XML is a 1-dimensional array of data.  Each
2224 element of the array may, independently, have string or numeric
2225 content.  All of the variables in a given detail XML member either
2226 have the same number of elements or have zero elements.
2227
2228 Two different elements define variables and their content:
2229
2230 @table @code
2231 @item sourceVariable
2232 These variables' data comes from the associated @code{tableData.bin}
2233 member.
2234
2235 @item derivedVariable
2236 These variables are defined in terms of a mapping function from a
2237 source variable, or they are empty.
2238 @end table
2239
2240 A variable named @code{cell} always exists.  This variable holds the
2241 data displayed in the table.
2242
2243 Variables in detail XML roughly correspond to the dimensions in a
2244 light detail member.  Each dimension has the following variables with
2245 stylized names, where @var{n} is a number for the dimension starting
2246 from 0:
2247
2248 @table @code
2249 @item dimension@var{n}categories
2250 The dimension's leaf categories (@pxref{SPV Light Member Categories}).
2251
2252 @item dimension@var{n}group0
2253 Present only if the dimension's categories are grouped, this variable
2254 holds the group labels for the categories.  Grouping is inferred
2255 through adjacent identical labels.  Categories that are not part of a
2256 group have empty-string data in this variable.
2257
2258 @item dimension@var{n}group1
2259 Present only if the first-level groups are further grouped, this
2260 variable holds the labels for the second-level groups.  There can be
2261 additional variables with further levels of grouping.
2262
2263 @item dimension@var{n}
2264 An empty variable.
2265 @end table
2266
2267 Determining the data for a (non-empty) variable is a multi-step
2268 process:
2269
2270 @enumerate
2271 @item
2272 Draw initial data from its source, for a @code{sourceVariable}, or
2273 from another named variable, for a @code{derivedVariable}.
2274
2275 @item
2276 Apply mappings from @code{valueMapEntry} elements within the
2277 @code{derivedVariable} element, if any.
2278
2279 @item
2280 Apply mappings from @code{relabel} elements within a @code{format} or
2281 @code{stringFormat} element in the @code{sourceVariable} or
2282 @code{derivedVariable} element, if any.
2283
2284 @item
2285 If the variable is a @code{sourceVariable} with a @code{labelVariable}
2286 attribute, and there were no mappings to apply in previous steps, then
2287 replace each element of the variable by the corresponding value in the
2288 label variable.
2289 @end enumerate
2290
2291 A single variable's data can be modified in two of the steps, if both
2292 @code{valueMapEntry} and @code{relabel} are used.  The following
2293 example from the corpus maps several integers to 2, then maps 2 in
2294 turn to the string ``Input'':
2295
2296 @example
2297 <derivedVariable categorical="true" dependsOn="dimension0categories"
2298                  id="dimension0group0map" value="map(dimension0group0)">
2299   <stringFormat>
2300     <relabel from="2" to="Input"/>
2301     <relabel from="10" to="Missing Value Handling"/>
2302     <relabel from="14" to="Resources"/>
2303     <relabel from="0" to=""/>
2304     <relabel from="1" to=""/>
2305     <relabel from="13" to=""/>
2306   </stringFormat>
2307   <valueMapEntry from="2;3;5;6;7;8;9" to="2"/>
2308   <valueMapEntry from="10;11" to="10"/>
2309   <valueMapEntry from="14;15" to="14"/>
2310   <valueMapEntry from="0" to="0"/>
2311   <valueMapEntry from="1" to="1"/>
2312   <valueMapEntry from="13" to="13"/>
2313 </derivedVariable>
2314 @end example
2315
2316 @menu
2317 * SPV Detail sourceVariable Element::
2318 * SPV Detail derivedVariable Element::
2319 * SPV Detail valueMapEntry Element::
2320 @end menu
2321
2322 @node SPV Detail sourceVariable Element
2323 @subsubsection The @code{sourceVariable} Element
2324
2325 @example
2326 sourceVariable
2327    :id
2328    :categorical=(true)
2329    :source
2330    :domain=ref categoricalDomain?
2331    :sourceName
2332    :dependsOn=ref sourceVariable?
2333    :label?
2334    :labelVariable=ref sourceVariable?
2335 => variable_extension* (format | stringFormat)?
2336 @end example
2337
2338 This element defines a variable whose data comes from the
2339 @file{tableData.bin} member that corresponds to this @file{.xml}.
2340
2341 This element has the following attributes.
2342
2343 @defvr {Attribute} id
2344 An @code{id} is always present because this element exists to be
2345 referenced from other elements.
2346 @end defvr
2347
2348 @defvr {Attribute} categorical
2349 Always set to @code{true}.
2350 @end defvr
2351
2352 @defvr {Attribute} source
2353 Always set to @code{tableData}, the @code{source-name} in the
2354 corresponding @file{tableData.bin} member (@pxref{SPV Legacy Member
2355 Metadata}).
2356 @end defvr
2357
2358 @defvr {Attribute} sourceName
2359 The name of a variable within the source, corresponding to the
2360 @code{variable-name} in the @file{tableData.bin} member (@pxref{SPV
2361 Legacy Member Numeric Data}).
2362 @end defvr
2363
2364 @defvr {Attribute} label
2365 The variable label, if any.
2366 @end defvr
2367
2368 @defvr {Attribute} labelVariable
2369 The @code{variable-name} of a variable whose string values correspond
2370 one-to-one with the values of this variable and are suitable for use
2371 as value labels.
2372 @end defvr
2373
2374 @defvr {Attribute} dependsOn
2375 This attribute doesn't affect the display of a table.
2376 @end defvr
2377
2378 @node SPV Detail derivedVariable Element
2379 @subsubsection The @code{derivedVariable} Element
2380
2381 @example
2382 derivedVariable
2383    :id
2384    :categorical=(true)
2385    :value
2386    :dependsOn=ref sourceVariable?
2387 => variable_extension* (format | stringFormat)? valueMapEntry*
2388 @end example
2389
2390 Like @code{sourceVariable}, this element defines a variable whose
2391 values can be used elsewhere in the visualization.  Instead of being
2392 read from a data source, the variable's data are defined by a
2393 mathematical expression.
2394
2395 This element has the following attributes.
2396
2397 @defvr {Attribute} id
2398 An @code{id} is always present because this element exists to be
2399 referenced from other elements.
2400 @end defvr
2401
2402 @defvr {Attribute} categorical
2403 Always set to @code{true}.
2404 @end defvr
2405
2406 @defvr {Attribute} value
2407 An expression that defines the variable's value.  In theory this could
2408 be an arbitrary expression in terms of constants, functions, and other
2409 variables, e.g.@: @math{(@var{var1} + @var{var2}) / 2}.  In practice,
2410 the corpus contains only the following forms of expressions:
2411
2412 @table @code
2413 @item constant(0)
2414 @itemx constant(@var{variable})
2415 All zeros.  The reason why a variable is sometimes named is unknown.
2416 Sometimes the ``variable name'' has spaces in it.
2417
2418 @item map(@var{variable})
2419 Transforms the values in the named @var{variable} using the
2420 @code{valueMapEntry}s contained within the element.
2421 @end table
2422 @end defvr
2423
2424 @defvr {Attribute} dependsOn
2425 This attribute doesn't affect the display of a table.
2426 @end defvr
2427
2428 @node SPV Detail valueMapEntry Element
2429 @subsubsection The @code{valueMapEntry} Element
2430
2431 @example
2432 valueMapEntry :from :to => EMPTY
2433 @end example
2434
2435 A @code{valueMapEntry} element defines a mapping from one or more
2436 values of a source expression to a target value.  (In the corpus, the
2437 source expression is always just the name of a variable.)  Each target
2438 value requires a separate @code{valueMapEntry}.  If multiple source
2439 values map to the same target value, they can be combined or separate.
2440
2441 In the corpus, all of the source and target values are integers.
2442
2443 @code{valueMapEntry} has the following attributes.
2444
2445 @defvr {Attribute} from
2446 A source value, or multiple source values separated by semicolons,
2447 e.g.@: @code{0} or @code{13;14;15;16}.
2448 @end defvr
2449
2450 @defvr {Attribute} to
2451 The target value, e.g.@: @code{0}.
2452 @end defvr
2453
2454 @node SPV Detail extension Element
2455 @subsection The @code{extension} Element
2456
2457 This is a general-purpose ``extension'' element.  Readers that don't
2458 understand a given extension should be able to safely ignore it.  The
2459 attributes on this element, and their meanings, vary based on the
2460 context.  Each known usage is described separately below.  The current
2461 extensions use attributes exclusively, without any nested elements.
2462
2463 @subsubheading @code{container} Parent Element
2464
2465 @example
2466 extension[container_extension] :combinedFootnotes=(true) => EMPTY
2467 @end example
2468
2469 With @code{container} as its parent element, @code{extension} has the
2470 following attributes.
2471
2472 @defvr {Attribute} combinedFootnotes
2473 Always set to @code{true} in the corpus.
2474 @end defvr
2475
2476 @subsubheading @code{sourceVariable} and @code{derivedVariable} Parent Element
2477
2478 @example
2479 extension[variable_extension] :from :helpId => EMPTY
2480 @end example
2481
2482 With @code{sourceVariable} or @code{derivedVariable} as its parent
2483 element, @code{extension} has the following attributes.  A given
2484 parent element often contains several @code{extension} elements that
2485 specify the meaning of the source data's variables or sources, e.g.@:
2486
2487 @example
2488 <extension from="0" helpId="corrected_model"/>
2489 <extension from="3" helpId="error"/>
2490 <extension from="4" helpId="total_9"/>
2491 <extension from="5" helpId="corrected_total"/>
2492 @end example
2493
2494 More commonly they are less helpful, e.g.@:
2495
2496 @example
2497 <extension from="0" helpId="notes"/>
2498 <extension from="1" helpId="notes"/>
2499 <extension from="2" helpId="notes"/>
2500 <extension from="5" helpId="notes"/>
2501 <extension from="6" helpId="notes"/>
2502 <extension from="7" helpId="notes"/>
2503 <extension from="8" helpId="notes"/>
2504 <extension from="12" helpId="notes"/>
2505 <extension from="13" helpId="no_help"/>
2506 <extension from="14" helpId="notes"/>
2507 @end example
2508
2509 @defvr {Attribute} from
2510 An integer or a name like ``dimension0''.
2511 @end defvr
2512
2513 @defvr {Attribute} helpId
2514 An identifier.
2515 @end defvr
2516
2517 @node SPV Detail graph Element
2518 @subsection The @code{graph} Element
2519
2520 @example
2521 graph
2522    :cellStyle=ref style
2523    :style=ref style
2524 => location+ coordinates faceting facetLayout interval
2525
2526 coordinates => EMPTY
2527 @end example
2528
2529 @code{graph} has the following attributes.
2530
2531 @defvr {Attribute} cellStyle
2532 @defvrx {Attribute} style
2533 Each of these is the @code{id} of a @code{style} element (@pxref{SPV
2534 Detail style Element}).  The former is the default style for
2535 individual cells, the latter for the entire table.
2536 @end defvr
2537
2538 @node SPV Detail location Element
2539 @subsection The @code{location} Element
2540
2541 @example
2542 location
2543    :part=(height | width | top | bottom | left | right)
2544    :method=(sizeToContent | attach | fixed | same)
2545    :min=dimension?
2546    :max=dimension?
2547    :target=ref (labelFrame | graph | container)?
2548    :value?
2549 => EMPTY
2550 @end example
2551
2552 Each instance of this element specifies where some part of the table
2553 frame is located.  All the examples in the corpus have four instances
2554 of this element, one for each of the parts @code{height},
2555 @code{width}, @code{left}, and @code{top}.  Some examples in the
2556 corpus add a fifth for part @code{bottom}, even though it is not clear
2557 how all of @code{top}, @code{bottom}, and @code{height} can be honored
2558 at the same time.  In any case, @code{location} seems to have little
2559 importance in representing tables; a reader can safely ignore it.
2560
2561 @defvr {Attribute} part
2562 The part of the table being located.
2563 @end defvr
2564
2565 @defvr {Attribute} method
2566 How the location is determined:
2567
2568 @table @code
2569 @item sizeToContent
2570 Based on the natural size of the table.  Observed only for
2571 parts @code{height} and @code{width}.
2572
2573 @item attach
2574 Based on the location specified in @code{target}.  Observed only for
2575 parts @code{top} and @code{bottom}.
2576
2577 @item fixed
2578 Using the value in @code{value}.  Observed only for parts @code{top},
2579 @code{bottom}, and @code{left}.
2580
2581 @item same
2582 Same as the specified @code{target}.  Observed only for part
2583 @code{left}.
2584 @end table
2585 @end defvr
2586
2587 @defvr {Attribute} min
2588 Minimum size.  Only observed with value @code{100pt}.  Only observed
2589 for part @code{width}.
2590 @end defvr
2591
2592 @defvr {Dependent} target
2593 Required when @code{method} is @code{attach} or @code{same}, not
2594 observed otherwise.  This identifies an element to attach to.
2595 Observed with the ID of @code{title}, @code{footnote}, @code{graph},
2596 and other elements.
2597 @end defvr
2598
2599 @defvr {Dependent} value
2600 Required when @code{method} is @code{fixed}, not observed otherwise.
2601 Observed values are @code{0%}, @code{0px}, @code{1px}, and @code{3px}
2602 on parts @code{top} and @code{left}, and @code{100%} on part
2603 @code{bottom}.
2604 @end defvr
2605
2606 @node SPV Detail faceting Element
2607 @subsection The @code{faceting} Element
2608
2609 @example
2610 faceting => layer[layers1]* cross layer[layers2]*
2611
2612 cross => (unity | nest) (unity | nest)
2613
2614 unity => EMPTY
2615
2616 nest => variableReference[vars]+
2617
2618 variableReference :ref=ref (sourceVariable | derivedVariable) => EMPTY
2619
2620 layer
2621    :variable=ref (sourceVariable | derivedVariable)
2622    :value
2623    :visible=bool?
2624    :method[layer_method]=(nest)?
2625    :titleVisible=bool?
2626 => EMPTY
2627 @end example
2628
2629 The @code{faceting} element describes the row, column, and layer
2630 structure of the table.  Its @code{cross} child determines the row and
2631 column structure, and each @code{layer} child (if any) represents a
2632 layer.  Layers may appear before or after @code{cross}.
2633
2634 The @code{cross} element describes the row and column structure of the
2635 table.  It has exactly two children, the first of which describes the
2636 table's columns and the second the table's rows.  Each child is a
2637 @code{nest} element if the table has any dimensions along the axis in
2638 question, otherwise a @code{unity} element.
2639
2640 A @code{nest} element contains of one or more dimensions listed from
2641 innermost to outermost, each represented by @code{variableReference}
2642 child elements.  Each variable in a dimension is listed in order.
2643 @xref{SPV Detail Variable Elements}, for information on the variables
2644 that comprise a dimension.
2645
2646 A @code{nest} can contain a single dimension, e.g.:
2647
2648 @example
2649 <nest>
2650   <variableReference ref="dimension0categories"/>
2651   <variableReference ref="dimension0group0"/>
2652   <variableReference ref="dimension0"/>
2653 </nest>
2654 @end example
2655
2656 @noindent
2657 A @code{nest} can contain multiple dimensions, e.g.:
2658
2659 @example
2660 <nest>
2661   <variableReference ref="dimension1categories"/>
2662   <variableReference ref="dimension1group0"/>
2663   <variableReference ref="dimension1"/>
2664   <variableReference ref="dimension0categories"/>
2665   <variableReference ref="dimension0"/>
2666 </nest>
2667 @end example
2668
2669 A @code{nest} may have no dimensions, in which case it still has one
2670 @code{variableReference} child, which references a
2671 @code{derivedVariable} whose @code{value} attribute is
2672 @code{constant(0)}.  In the corpus, such a @code{derivedVariable} has
2673 @code{row} or @code{column}, respectively, as its @code{id}.  This is
2674 equivalent to using a @code{unity} element in place of @code{nest}.
2675
2676 A @code{variableReference} element refers to a variable through its
2677 @code{ref} attribute.
2678
2679 Each @code{layer} element represents a dimension, e.g.:
2680
2681 @example
2682 <layer value="0" variable="dimension0categories" visible="true"/>
2683 <layer value="dimension0" variable="dimension0" visible="false"/>
2684 @end example
2685
2686 @noindent
2687 @code{layer} has the following attributes.
2688
2689 @defvr {Attribute} variable
2690 Refers to a @code{sourceVariable} or @code{derivedVariable} element.
2691 @end defvr
2692
2693 @defvr {Attribute} value
2694 The value to select.  For a category variable, this is always
2695 @code{0}; for a data variable, it is the same as the @code{variable}
2696 attribute.
2697 @end defvr
2698
2699 @defvr {Attribute} visible
2700 Whether the layer is visible.  Generally, category layers are visible
2701 and data layers are not, but sometimes this attribute is omitted.
2702 @end defvr
2703
2704 @defvr {Attribute} method
2705 When present, this is always @code{nest}.
2706 @end defvr
2707
2708 @node SPV Detail facetLayout Element
2709 @subsection The @code{facetLayout} Element
2710
2711 @example
2712 facetLayout => tableLayout setCellProperties[scp1]*
2713                facetLevel+ setCellProperties[scp2]*
2714
2715 tableLayout
2716    :verticalTitlesInCorner=bool
2717    :style=ref style?
2718    :fitCells=(ticks both)?
2719 => EMPTY
2720 @end example
2721
2722 The @code{facetLayout} element and its descendants control styling for
2723 the table.
2724
2725 Its @code{tableLayout} child has the following attributes
2726
2727 @defvr {Attribute} verticalTitlesInCorner
2728 If true, in the absence of corner text, row headings will be displayed
2729 in the corner.
2730 @end defvr
2731
2732 @defvr {Attribute} style
2733 Refers to a @code{style} element.
2734 @end defvr
2735
2736 @defvr {Attribute} fitCells
2737 Meaning unknown.
2738 @end defvr
2739
2740 @subsubheading The @code{facetLevel} Element
2741
2742 @example
2743 facetLevel :level=int :gap=dimension? => axis
2744
2745 axis :style=ref style => label? majorTicks
2746
2747 majorTicks
2748    :labelAngle=int
2749    :length=dimension
2750    :style=ref style
2751    :tickFrameStyle=ref style
2752    :labelFrequency=int?
2753    :stagger=bool?
2754 => gridline?
2755
2756 gridline
2757    :style=ref style
2758    :zOrder=int
2759 => EMPTY
2760 @end example
2761
2762 Each @code{facetLevel} describes a @code{variableReference} or
2763 @code{layer}, and a table has one @code{facetLevel} element for
2764 each such element.  For example, an SPV detail member that contains
2765 four @code{variableReference} elements and two @code{layer} elements
2766 will contain six @code{facetLevel} elements.
2767
2768 In the corpus, @code{facetLevel} elements and the elements that they
2769 describe are always in the same order.  The correspondence may also be
2770 observed in two other ways.  First, one may use the @code{level}
2771 attribute, described below.  Second, in the corpus, a
2772 @code{facetLevel} always has an @code{id} that is the same as the
2773 @code{id} of the element it describes with @code{_facetLevel}
2774 appended.  One should not formally rely on this, of course, but it is
2775 usefully indicative.
2776
2777 @defvr {Attribute} level
2778 A 1-based index into the @code{variableReference} and @code{layer}
2779 elements, e.g.@: a @code{facetLayout} with a @code{level} of 1
2780 describes the first @code{variableReference} in the SPV detail member,
2781 and in a member with four @code{variableReference} elements, a
2782 @code{facetLayout} with a @code{level} of 5 describes the first
2783 @code{layer} in the member.
2784 @end defvr
2785
2786 @defvr {Attribute} gap
2787 Always observed as @code{0pt}.
2788 @end defvr
2789
2790 Each @code{facetLevel} contains an @code{axis}, which in turn may
2791 contain a @code{label} for the @code{facetLevel} (@pxref{SPV Detail
2792 label Element}) and does contain a @code{majorTicks} element.
2793
2794 @defvr {Attribute} labelAngle
2795 Normally 0.  The value -90 causes inner column or outer row labels to
2796 be rotated vertically.
2797 @end defvr
2798
2799 @defvr {Attribute} style
2800 @defvrx {Attribute} tickFrameStyle
2801 Each refers to a @code{style} element.  @code{style} is the style of
2802 the tick labels, @code{tickFrameStyle} the style for the frames around
2803 the labels.
2804 @end defvr
2805
2806 @node SPV Detail label Element
2807 @subsection The @code{label} Element
2808
2809 @example
2810 label
2811    :style=ref style
2812    :textFrameStyle=ref style?
2813    :purpose=(title | subTitle | subSubTitle | layer | footnote)?
2814 => text+ | descriptionGroup
2815
2816 descriptionGroup
2817    :target=ref faceting
2818    :separator?
2819 => (description | text)+
2820
2821 description :name=(variable | value) => EMPTY
2822
2823 text
2824    :usesReference=int?
2825    :definesReference=int?
2826    :position=(subscript | superscript)?
2827    :style=ref style
2828 => TEXT
2829 @end example
2830
2831 This element represents a label on some aspect of the table.
2832
2833 @defvr {Attribute} style
2834 @defvrx {Attribute} textFrameStyle
2835 Each of these refers to a @code{style} element.  @code{style} is the
2836 style of the label text, @code{textFrameStyle} the style for the frame
2837 around the label.
2838 @end defvr
2839
2840 @defvr {Attribute} purpose
2841 The kind of entity being labeled.
2842 @end defvr
2843
2844 A @code{descriptionGroup} concatenates one or more elements to form a
2845 label.  Each element can be a @code{text} element, which contains
2846 literal text, or a @code{description} element that substitutes a value
2847 or a variable name.
2848
2849 @defvr {Attribute} target
2850 The @code{id} of an element being described.  In the corpus, this is
2851 always @code{faceting}.
2852 @end defvr
2853
2854 @defvr {Attribute} separator
2855 A string to separate the description of multiple groups, if the
2856 @code{target} has more than one.  In the corpus, this is always a
2857 new-line.
2858 @end defvr
2859
2860 Typical contents for a @code{descriptionGroup} are a value by itself:
2861 @example
2862 <description name="value"/>
2863 @end example
2864 @noindent or a variable and its value, separated by a colon:
2865 @example
2866 <description name="variable"/><text>:</text><description name="value"/>
2867 @end example
2868
2869 A @code{description} is like a macro that expands to some property of
2870 the target of its parent @code{descriptionGroup}.  The @code{name}
2871 attribute specifies the property.
2872
2873 @node SPV Detail setCellProperties Element
2874 @subsection The @code{setCellProperties} Element
2875
2876 @example
2877 setCellProperties
2878    :applyToConverse=bool?
2879 => (setStyle | setFrameStyle | setFormat | setMetaData)* union[union_]?
2880 @end example
2881
2882 The @code{setCellProperties} element sets style properties of cells or
2883 row or column labels.
2884
2885 Interpreting @code{setCellProperties} requires answering two
2886 questions: which cells or labels to style, and what styles to use.
2887
2888 @subsubheading Which Cells?
2889
2890 @example
2891 union => intersect+
2892
2893 intersect => where+ | intersectWhere | alternating | EMPTY
2894
2895 where
2896    :variable=ref (sourceVariable | derivedVariable)
2897    :include
2898 => EMPTY
2899
2900 intersectWhere
2901    :variable=ref (sourceVariable | derivedVariable)
2902    :variable2=ref (sourceVariable | derivedVariable)
2903 => EMPTY
2904
2905 alternating => EMPTY
2906 @end example
2907
2908 When @code{union} is present with @code{intersect} children, each of
2909 those children specifies a group of cells that should be styled, and
2910 the total group is all those cells taken together.  When @code{union}
2911 is absent, every cell is styled.  One attribute on
2912 @code{setCellProperties} affects the choice of cells:
2913
2914 @defvr {Attribute} applyToConverse
2915 If true, this inverts the meaning of the cell selection: the selected
2916 cells are the ones @emph{not} designated.  This is confusing, given
2917 the additional restrictions of @code{union}, but in the corpus
2918 @code{applyToConverse} is never present along with @code{union}.
2919 @end defvr
2920
2921 An @code{intersect} specifies restrictions on the cells to be matched.
2922 Each @code{where} child specifies which values of a given variable to
2923 include.  The attributes of @code{intersect} are:
2924
2925 @defvr {Attribute} variable
2926 Refers to a variable, e.g.@: @code{dimension0categories}.  Only
2927 ``categories'' variables make sense here, but other variables, e.g.@:
2928 @code{dimension0group0map}, are sometimes seen.  The reader may ignore
2929 these.
2930 @end defvr
2931
2932 @defvr {Attribute} include
2933 A value, or multiple values separated by semicolons,
2934 e.g.@: @code{0} or @code{13;14;15;16}.
2935 @end defvr
2936
2937 PSPP ignores @code{setCellProperties} when @code{intersectWhere} is
2938 present.
2939
2940 @subsubheading What Styles?
2941
2942 @example
2943 setStyle
2944    :target=ref (labeling | graph | interval | majorTicks)
2945    :style=ref style
2946 => EMPTY
2947
2948 setMetaData :target=ref graph :key :value => EMPTY
2949
2950 setFormat
2951    :target=ref (majorTicks | labeling)
2952    :reset=bool?
2953 => format | numberFormat | stringFormat+ | dateTimeFormat | elapsedTimeFormat
2954
2955 setFrameStyle
2956    :style=ref style
2957    :target=ref majorTicks
2958 => EMPTY
2959 @end example
2960
2961 The @code{set*} children of @code{setCellProperties} determine the
2962 styles to set.
2963
2964 When @code{setCellProperties} contains a @code{setFormat} whose
2965 @code{target} references a @code{labeling} element, or if it contains
2966 a @code{setStyle} that references a @code{labeling} or @code{interval}
2967 element, the @code{setCellProperties} sets the style for table cells.
2968 The format from the @code{setFormat}, if present, replaces the cells'
2969 format.  The style from the @code{setStyle} that references
2970 @code{labeling}, if present, replaces the label's font and cell
2971 styles, except that the background color is taken instead from the
2972 @code{interval}'s style, if present.
2973
2974 When @code{setCellProperties} contains a @code{setFormat} whose
2975 @code{target} references a @code{majorTicks} element, or if it
2976 contains a @code{setStyle} whose @code{target} references a
2977 @code{majorTicks}, or if it contains a @code{setFrameStyle} element,
2978 the @code{setCellProperties} sets the style for row or column labels.
2979 In this case, the @code{setCellProperties} always contains a single
2980 @code{where} element whose @code{variable} designates the variable
2981 whose labels are to be styled.  The format from the @code{setFormat},
2982 if present, replaces the labels' format.  The style from the
2983 @code{setStyle} that references @code{majorTicks}, if present,
2984 replaces the labels' font and cell styles, except that the background
2985 color is taken instead from the @code{setFrameStyle}'s style, if
2986 present.
2987
2988 When @code{setCellProperties} contains a @code{setStyle} whose
2989 @code{target} references a @code{graph} element, and one that
2990 references a @code{labeling} element, and the @code{union} element
2991 contains @code{alternating}, the @code{setCellProperties} sets the
2992 alternate foreground and background colors for the data area.  The
2993 foreground color is taken from the style referenced by the
2994 @code{setStyle} that targets the @code{graph}, the background color
2995 from the @code{setStyle} for @code{labeling}.
2996
2997 A reader may ignore a @code{setCellProperties} that only contains
2998 @code{setMetaData}, as well as @code{setMetaData} within other
2999 @code{setCellProperties}.
3000
3001 A reader may ignore a @code{setCellProperties} whose only @code{set*}
3002 child is a @code{setStyle} that targets the @code{graph} element.
3003
3004 @subsubheading The @code{setStyle} Element
3005
3006 @example
3007 setStyle
3008    :target=ref (labeling | graph | interval | majorTicks)
3009    :style=ref style
3010 => EMPTY
3011 @end example
3012
3013 This element associates a style with the target.
3014
3015 @defvr {Attribute} target
3016 The @code{id} of an element whose style is to be set.
3017 @end defvr
3018
3019 @defvr {Attribute} style
3020 The @code{id} of a @code{style} element that identifies the style to
3021 set on the target.
3022 @end defvr
3023
3024 @node SPV Detail setFormat Element
3025 @subsection The @code{setFormat} Element
3026
3027 @example
3028 setFormat
3029    :target=ref (majorTicks | labeling)
3030    :reset=bool?
3031 => format | numberFormat | stringFormat+ | dateTimeFormat | elapsedTimeFormat
3032 @end example
3033
3034 This element sets the format of the target, ``format'' in this case
3035 meaning the SPSS print format for a variable.
3036
3037 The details of this element vary depending on the schema version, as
3038 declared in the root @code{visualization} element's @code{version}
3039 attribute (@pxref{SPV Detail visualization Element}).  A reader can
3040 interpret the content without knowing the schema version.
3041
3042 The @code{setFormat} element itself has the following attributes.
3043
3044 @defvr {Attribute} target
3045 Refers to an element whose style is to be set.
3046 @end defvr
3047
3048 @defvr {Attribute} reset
3049 If this is @code{true}, this format replaces the target's previous
3050 format.  If it is @code{false}, the modifies the previous format.
3051 @end defvr
3052
3053 @menu
3054 * SPV Detail numberFormat Element::
3055 * SPV Detail stringFormat Element::
3056 * SPV Detail dateTimeFormat Element::
3057 * SPV Detail elapsedTimeFormat Element::
3058 * SPV Detail format Element::
3059 * SPV Detail affix Element::
3060 @end menu
3061
3062 @node SPV Detail numberFormat Element
3063 @subsubsection The @code{numberFormat} Element
3064
3065 @example
3066 numberFormat
3067    :minimumIntegerDigits=int?
3068    :maximumFractionDigits=int?
3069    :minimumFractionDigits=int?
3070    :useGrouping=bool?
3071    :scientific=(onlyForSmall | whenNeeded | true | false)?
3072    :small=real?
3073    :prefix?
3074    :suffix?
3075 => affix*
3076 @end example
3077
3078 Specifies a format for displaying a number.  The available options are
3079 a superset of those available from PSPP print formats.  PSPP chooses a
3080 print format type for a @code{numberFormat} as follows:
3081
3082 @enumerate
3083 @item
3084 If @code{scientific} is @code{true}, uses @code{E} format.
3085
3086 @item
3087 If @code{prefix} is @code{$}, uses @code{DOLLAR} format.
3088
3089 @item
3090 If @code{suffix} is @code{%}, uses @code{PCT} format.
3091
3092 @item
3093 If @code{useGrouping} is @code{true}, uses @code{COMMA} format.
3094
3095 @item
3096 Otherwise, uses @code{F} format.
3097 @end enumerate
3098
3099 For translating to a print format, PSPP uses
3100 @code{maximumFractionDigits} as the number of decimals, unless that
3101 attribute is missing or out of the range [0,15], in which case it uses
3102 2 decimals.
3103
3104 @defvr {Attribute} minimumIntegerDigits
3105 Minimum number of digits to display before the decimal point.  Always
3106 observed as @code{0}.
3107 @end defvr
3108
3109 @defvr {Attribute} maximumFractionDigits
3110 @defvrx {Attribute} minimumFractionDigits
3111 Maximum or minimum, respectively, number of digits to display after
3112 the decimal point.  The observed values of each attribute range from 0
3113 to 9.
3114 @end defvr
3115
3116 @defvr {Attribute} useGrouping
3117 Whether to use the grouping character to group digits in large
3118 numbers.
3119 @end defvr
3120
3121 @defvr {Attribute} scientific
3122 This attribute controls when and whether the number is formatted in
3123 scientific notation.  It takes the following values:
3124
3125 @table @code
3126 @item onlyForSmall
3127 Use scientific notation only when the number's magnitude is smaller
3128 than the value of the @code{small} attribute.
3129
3130 @item whenNeeded
3131 Use scientific notation when the number will not otherwise fit in the
3132 available space.
3133
3134 @item true
3135 Always use scientific notation.  Not observed in the corpus.
3136
3137 @item false
3138 Never use scientific notation.  A number that won't otherwise fit will
3139 be replaced by an error indication (see the @code{errorCharacter}
3140 attribute).  Not observed in the corpus.
3141 @end table
3142 @end defvr
3143
3144 @defvr {Attribute} small
3145 Only present when the @code{scientific} attribute is
3146 @code{onlyForSmall}, this is a numeric magnitude below which the
3147 number will be formatted in scientific notation.  The values @code{0}
3148 and @code{0.0001} have been observed.  The value @code{0} seems like a
3149 pathological choice, since no real number has a magnitude less than 0;
3150 perhaps in practice such a choice is equivalent to setting
3151 @code{scientific} to @code{false}.
3152 @end defvr
3153
3154 @defvr {Attribute} prefix
3155 @defvrx {Attribute} suffix
3156 Specifies a prefix or a suffix to apply to the formatted number.  Only
3157 @code{suffix} has been observed, with value @samp{%}.
3158 @end defvr
3159
3160 @node SPV Detail stringFormat Element
3161 @subsubsection The @code{stringFormat} Element
3162
3163 @example
3164 stringFormat => relabel* affix*
3165
3166 relabel :from=real :to => EMPTY
3167 @end example
3168
3169 The @code{stringFormat} element specifies how to display a string.  By
3170 default, a string is displayed verbatim, but @code{relabel} can change
3171 it.
3172
3173 The @code{relabel} element appears as a child of @code{stringFormat}
3174 (and of @code{format}, when it is used to format strings).  It
3175 specifies how to display a given value.  It is used to implement value
3176 labels and to display the system-missing value in a human-readable
3177 way.  It has the following attributes:
3178
3179 @defvr {Attribute} from
3180 The value to map.  In the corpus this is an integer or the
3181 system-missing value @code{-1.797693134862316E300}.
3182 @end defvr
3183
3184 @defvr {Attribute} to
3185 The string to display in place of the value of @code{from}.  In the
3186 corpus this is a wide variety of value labels; the system-missing
3187 value is mapped to @samp{.}.
3188 @end defvr
3189
3190 @node SPV Detail dateTimeFormat Element
3191 @subsubsection The @code{dateTimeFormat} Element
3192
3193 @example
3194 dateTimeFormat
3195    :baseFormat[dt_base_format]=(date | time | dateTime)
3196    :separatorChars?
3197    :mdyOrder=(dayMonthYear | monthDayYear | yearMonthDay)?
3198    :showYear=bool?
3199    :yearAbbreviation=bool?
3200    :showQuarter=bool?
3201    :quarterPrefix?
3202    :quarterSuffix?
3203    :showMonth=bool?
3204    :monthFormat=(long | short | number | paddedNumber)?
3205    :showWeek=bool?
3206    :weekPadding=bool?
3207    :weekSuffix?
3208    :showDayOfWeek=bool?
3209    :dayOfWeekAbbreviation=bool?
3210    :dayPadding=bool?
3211    :dayOfMonthPadding=bool?
3212    :hourPadding=bool?
3213    :minutePadding=bool?
3214    :secondPadding=bool?
3215    :showDay=bool?
3216    :showHour=bool?
3217    :showMinute=bool?
3218    :showSecond=bool?
3219    :showMillis=bool?
3220    :dayType=(month | year)?
3221    :hourFormat=(AMPM | AS_24 | AS_12)?
3222 => affix*
3223 @end example
3224
3225 This element appears only in schema version 2.5 and earlier
3226 (@pxref{SPV Detail visualization Element}).
3227
3228 Data to be formatted in date formats is stored as strings in legacy
3229 data, in the format @code{yyyy-mm-ddTHH:MM:SS.SSS} and must be parsed
3230 and reformatted by the reader.
3231
3232 The following attribute is required.
3233
3234 @defvr {Attribute} baseFormat
3235 Specifies whether a date and time are both to be displayed, or just
3236 one of them.
3237 @end defvr
3238
3239 Many of the attributes' meanings are obvious.  The following seem to
3240 be worth documenting.
3241
3242 @defvr {Attribute} separatorChars
3243 Exactly four characters.  In order, these are used for: decimal point,
3244 grouping, date separator, time separator.  Always @samp{.,-:}.
3245 @end defvr
3246
3247 @defvr {Attribute} mdyOrder
3248 Within a date, the order of the days, months, and years.
3249 @code{dayMonthYear} is the only observed value, but one would expect
3250 that @code{monthDayYear} and @code{yearMonthDay} to be reasonable as
3251 well.
3252 @end defvr
3253
3254 @defvr {Attribute} showYear
3255 @defvrx {Attribute} yearAbbreviation
3256 Whether to include the year and, if so, whether the year should be
3257 shown abbreviated, that is, with only 2 digits.  Each is @code{true}
3258 or @code{false}; only values of @code{true} and @code{false},
3259 respectively, have been observed.
3260 @end defvr
3261
3262 @defvr {Attribute} showMonth
3263 @defvrx {Attribute} monthFormat
3264 Whether to include the month (@code{true} or @code{false}) and, if so,
3265 how to format it.  @code{monthFormat} is one of the following:
3266
3267 @table @code
3268 @item long
3269 The full name of the month, e.g.@: in an English locale,
3270 @code{September}.
3271
3272 @item short
3273 The abbreviated name of the month, e.g.@: in an English locale,
3274 @code{Sep}.
3275
3276 @item number
3277 The number representing the month, e.g.@: 9 for September.
3278
3279 @item paddedNumber
3280 A two-digit number representing the month, e.g.@: 09 for September.
3281 @end table
3282
3283 Only values of @code{true} and @code{short}, respectively, have been
3284 observed.
3285 @end defvr
3286
3287 @defvr {Attribute} dayType
3288 This attribute is always @code{month} in the corpus, specifying that
3289 the day of the month is to be displayed; a value of @code{year} is
3290 supposed to indicate that the day of the year, where 1 is January 1,
3291 is to be displayed instead.
3292 @end defvr
3293
3294 @defvr {Attribute} hourFormat
3295 @code{hourFormat}, if present, is one of:
3296
3297 @table @code
3298 @item AMPM
3299 The time is displayed with an @code{am} or @code{pm} suffix, e.g.@:
3300 @code{10:15pm}.
3301
3302 @item AS_24
3303 The time is displayed in a 24-hour format, e.g.@: @code{22:15}.
3304
3305 This is the only value observed in the corpus.
3306
3307 @item AS_12
3308 The time is displayed in a 12-hour format, without distinguishing
3309 morning or evening, e.g.@: @code{10;15}.
3310 @end table
3311
3312 @code{hourFormat} is sometimes present for @code{elapsedTime} formats,
3313 which is confusing since a time duration does not have a concept of AM
3314 or PM.  This might indicate a bug in the code that generated the XML
3315 in the corpus, or it might indicate that @code{elapsedTime} is
3316 sometimes used to format a time of day.
3317 @end defvr
3318
3319 For a @code{baseFormat} of @code{date}, PSPP chooses a print format
3320 type based on the following rules:
3321
3322 @enumerate
3323 @item
3324 If @code{showQuarter} is true: @code{QYR}.
3325
3326 @item
3327 Otherwise, if @code{showWeek} is true: @code{WKYR}.
3328
3329 @item
3330 Otherwise, if @code{mdyOrder} is @code{dayMonthYear}:
3331
3332 @enumerate a
3333 @item
3334 If @code{monthFormat} is @code{number} or @code{paddedNumber}: @code{EDATE}.
3335
3336 @item
3337 Otherwise: @code{DATE}.
3338 @end enumerate
3339
3340 @item
3341 Otherwise, if @code{mdyOrder} is @code{yearMonthDay}: @code{SDATE}.
3342
3343 @item
3344 Otherwise, @code{ADATE}.
3345 @end enumerate
3346
3347 For a @code{baseFormat} of @code{dateTime}, PSPP uses @code{YMDHMS} if
3348 @code{mdyOrder} is @code{yearMonthDay} and @code{DATETIME} otherwise.
3349 For a @code{baseFormat} of @code{time}, PSPP uses @code{DTIME} if
3350 @code{showDay} is true, otherwise @code{TIME} if @code{showHour} is
3351 true, otherwise @code{MTIME}.
3352
3353 For a @code{baseFormat} of @code{date}, the chosen width is the
3354 minimum for the format type, adding 2 if @code{yearAbbreviation} is
3355 false or omitted.  For other base formats, the chosen width is the
3356 minimum for its type, plus 3 if @code{showSecond} is true, plus 4 more
3357 if @code{showMillis} is also true.  Decimals are 0 by default, or 3
3358 if @code{showMillis} is true.
3359
3360 @node SPV Detail elapsedTimeFormat Element
3361 @subsubsection The @code{elapsedTimeFormat} Element
3362
3363 @example
3364 elapsedTimeFormat
3365    :baseFormat[dt_base_format]=(date | time | dateTime)
3366    :dayPadding=bool?
3367    :hourPadding=bool?
3368    :minutePadding=bool?
3369    :secondPadding=bool?
3370    :showYear=bool?
3371    :showDay=bool?
3372    :showHour=bool?
3373    :showMinute=bool?
3374    :showSecond=bool?
3375    :showMillis=bool?
3376 => affix*
3377 @end example
3378
3379 This element specifies the way to display a time duration.
3380
3381 Data to be formatted in elapsed time formats is stored as strings in
3382 legacy data, in the format @code{H:MM:SS.SSS}, with additional hour
3383 digits as needed for long durations, and must be parsed and
3384 reformatted by the reader.
3385
3386 The following attribute is required.
3387
3388 @defvr {Attribute} baseFormat
3389 Specifies whether a day and a time are both to be displayed, or just
3390 one of them.
3391 @end defvr
3392
3393 The remaining attributes specify exactly how to display the elapsed
3394 time.
3395
3396 For @code{baseFormat} of @code{time}, PSPP converts this element to
3397 print format type @code{DTIME}; otherwise, if @code{showHour} is true,
3398 to @code{TIME}; otherwise, to @code{MTIME}.  The chosen width is the
3399 minimum for the chosen type, adding 3 if @code{showSecond} is true,
3400 adding 4 more if @code{showMillis} is also true.  Decimals are 0 by
3401 default, or 3 if @code{showMillis} is true.
3402
3403 @node SPV Detail format Element
3404 @subsubsection The @code{format} Element
3405
3406 @example
3407 format
3408    :baseFormat[f_base_format]=(date | time | dateTime | elapsedTime)?
3409    :errorCharacter?
3410    :separatorChars?
3411    :mdyOrder=(dayMonthYear | monthDayYear | yearMonthDay)?
3412    :showYear=bool?
3413    :showQuarter=bool?
3414    :quarterPrefix?
3415    :quarterSuffix?
3416    :yearAbbreviation=bool?
3417    :showMonth=bool?
3418    :monthFormat=(long | short | number | paddedNumber)?
3419    :dayPadding=bool?
3420    :dayOfMonthPadding=bool?
3421    :showWeek=bool?
3422    :weekPadding=bool?
3423    :weekSuffix?
3424    :showDayOfWeek=bool?
3425    :dayOfWeekAbbreviation=bool?
3426    :hourPadding=bool?
3427    :minutePadding=bool?
3428    :secondPadding=bool?
3429    :showDay=bool?
3430    :showHour=bool?
3431    :showMinute=bool?
3432    :showSecond=bool?
3433    :showMillis=bool?
3434    :dayType=(month | year)?
3435    :hourFormat=(AMPM | AS_24 | AS_12)?
3436    :minimumIntegerDigits=int?
3437    :maximumFractionDigits=int?
3438    :minimumFractionDigits=int?
3439    :useGrouping=bool?
3440    :scientific=(onlyForSmall | whenNeeded | true | false)?
3441    :small=real?
3442    :prefix?
3443    :suffix?
3444    :tryStringsAsNumbers=bool?
3445    :negativesOutside=bool?
3446 => relabel* affix*
3447 @end example
3448
3449 This element is the union of all of the more-specific format elements.
3450 It is interpreted in the same way as one of those format elements,
3451 using @code{baseFormat} to determine which kind of format to use.
3452
3453 There are a few attributes not present in the more specific formats:
3454
3455 @defvr {Attribute} tryStringsAsNumbers
3456 When this is @code{true}, it is supposed to indicate that string
3457 values should be parsed as numbers and then displayed according to
3458 numeric formatting rules.  However, in the corpus it is always
3459 @code{false}.
3460 @end defvr
3461
3462 @defvr {Attribute} negativesOutside
3463 If true, the negative sign should be shown before the prefix; if
3464 false, it should be shown after.
3465 @end defvr
3466
3467 @node SPV Detail affix Element
3468 @subsubsection The @code{affix} Element
3469
3470 @example
3471 affix
3472    :definesReference=int
3473    :position=(subscript | superscript)
3474    :suffix=bool
3475    :value
3476 => EMPTY
3477 @end example
3478
3479 This defines a suffix (or, theoretically, a prefix) for a formatted
3480 value.  It is used to insert a reference to a footnote.  It has the
3481 following attributes:
3482
3483 @defvr {Attribute} definesReference
3484 This specifies the footnote number as a natural number: 1 for the
3485 first footnote, 2 for the second, and so on.
3486 @end defvr
3487
3488 @defvr {Attribute} position
3489 Position for the footnote label.  Always @code{superscript}.
3490 @end defvr
3491
3492 @defvr {Attribute} suffix
3493 Whether the affix is a suffix (@code{true}) or a prefix
3494 (@code{false}).  Always @code{true}.
3495 @end defvr
3496
3497 @defvr {Attribute} value
3498 The text of the suffix or prefix.  Typically a letter, e.g.@: @code{a}
3499 for footnote 1, @code{b} for footnote 2, @enddots{}  The corpus
3500 contains other values: @code{*}, @code{**}, and a few that begin with
3501 at least one comma: @code{,b}, @code{,c}, @code{,,b}, and @code{,,c}.
3502 @end defvr
3503
3504 @node SPV Detail interval Element
3505 @subsection The @code{interval} Element
3506
3507 @example
3508 interval :style=ref style => labeling footnotes?
3509
3510 labeling
3511    :style=ref style?
3512    :variable=ref (sourceVariable | derivedVariable)
3513 => (formatting | format | footnotes)*
3514
3515 formatting :variable=ref (sourceVariable | derivedVariable) => formatMapping*
3516
3517 formatMapping :from=int => format?
3518
3519 footnotes
3520    :superscript=bool?
3521    :variable=ref (sourceVariable | derivedVariable)
3522 => footnoteMapping*
3523
3524 footnoteMapping :definesReference=int :from=int :to => EMPTY
3525 @end example
3526
3527 The @code{interval} element and its descendants determine the basic
3528 formatting and labeling for the table's cells.  These basic styles are
3529 overridden by more specific styles set using @code{setCellProperties}
3530 (@pxref{SPV Detail setCellProperties Element}).
3531
3532 The @code{style} attribute of @code{interval} itself may be ignored.
3533
3534 The @code{labeling} element may have a single @code{formatting} child.
3535 If present, its @code{variable} attribute refers to a variable whose
3536 values are format specifiers as numbers, e.g. value 0x050802 for F8.2.
3537 However, the numbers are not actually interpreted that way.  Instead,
3538 each number actually present in the variable's data is mapped by a
3539 @code{formatMapping} child of @code{formatting} to a @code{format}
3540 that specifies how to display it.
3541
3542 The @code{labeling} element may also have a @code{footnotes} child
3543 element.  The @code{variable} attribute of this element refers to a
3544 variable whose values are comma-delimited strings that list the
3545 1-based indexes of footnote references.  (Cells without any footnote
3546 references are numeric 0 instead of strings.)
3547
3548 Each @code{footnoteMapping} child of the @code{footnotes} element
3549 defines the footnote marker to be its @code{to} attribute text for the
3550 footnote whose 1-based index is given in its @code{definesReference}
3551 attribute.
3552
3553 @node SPV Detail style Element
3554 @subsection The @code{style} Element
3555
3556 @example
3557 style
3558    :color=color?
3559    :color2=color?
3560    :labelAngle=real?
3561    :border-bottom=(solid | thick | thin | double | none)?
3562    :border-top=(solid | thick | thin | double | none)?
3563    :border-left=(solid | thick | thin | double | none)?
3564    :border-right=(solid | thick | thin | double | none)?
3565    :border-bottom-color?
3566    :border-top-color?
3567    :border-left-color?
3568    :border-right-color?
3569    :font-family?
3570    :font-size?
3571    :font-weight=(regular | bold)?
3572    :font-style=(regular | italic)?
3573    :font-underline=(none | underline)?
3574    :margin-bottom=dimension?
3575    :margin-left=dimension?
3576    :margin-right=dimension?
3577    :margin-top=dimension?
3578    :textAlignment=(left | right | center | decimal | mixed)?
3579    :labelLocationHorizontal=(positive | negative | center)?
3580    :labelLocationVertical=(positive | negative | center)?
3581    :decimal-offset=dimension?
3582    :size?
3583    :width?
3584    :visible=bool?
3585 => EMPTY
3586 @end example
3587
3588 A @code{style} element has an effect only when it is referenced by
3589 another element to set some aspect of the table's style.  Most of the
3590 attributes are self-explanatory.  The rest are described below.
3591
3592 @defvr {Attribute} {color}
3593 In some cases, the text color; in others, the background color.
3594 @end defvr
3595
3596 @defvr {Attribute} {color2}
3597 Not used.
3598 @end defvr
3599
3600 @defvr {Attribute} {labelAngle}
3601 Normally 0.  The value -90 causes inner column or outer row labels to
3602 be rotated vertically.
3603 @end defvr
3604
3605 @defvr {Attribute} {labelLocationHorizontal}
3606 Not used.
3607 @end defvr
3608
3609 @defvr {Attribute} {labelLocationVertical}
3610 The value @code{positive} corresponds to vertically aligning text to
3611 the top of a cell, @code{negative} to the bottom, @code{center} to the
3612 middle.
3613 @end defvr
3614
3615 @node SPV Detail labelFrame Element
3616 @subsection The @code{labelFrame} Element
3617
3618 @example
3619 labelFrame :style=ref style => location+ label? paragraph?
3620
3621 paragraph :hangingIndent=dimension? => EMPTY
3622 @end example
3623
3624 A @code{labelFrame} element specifies content and style for some
3625 aspect of a table.  Only @code{labelFrame} elements that have a
3626 @code{label} child are important.  The @code{purpose} attribute in the
3627 @code{label} determines what the @code{labelFrame} affects:
3628
3629 @table @code
3630 @item title
3631 The table's title and its style.
3632
3633 @item subTitle
3634 The table's caption and its style.
3635
3636 @item footnote
3637 The table's footnotes and the style for the footer area.
3638
3639 @item layer
3640 The style for the layer area.
3641
3642 @item subSubTitle
3643 Ignored.
3644 @end table
3645
3646 The @code{style} attribute references the style to use for the area.
3647
3648 The @code{label}, if present, specifies the text to put into the title
3649 or caption or footnotes.  For footnotes, the label has two @code{text}
3650 children for every footnote, each of which has a @code{usesReference}
3651 attribute identifying the 1-based index of a footnote.  The first,
3652 third, fifth, @dots{} @code{text} child specifies the content for a
3653 footnote; the second, fourth, sixth, @dots{} child specifies the
3654 marker.  Content tends to end in a new-line, which the reader may wish
3655 to trim; similarly, markers tend to end in @samp{.}.
3656
3657 The @code{paragraph}, if present, may be ignored, since it is always
3658 empty.
3659
3660 @node SPV Detail Legacy Properties
3661 @subsection Legacy Properties
3662
3663 The detail XML format has features for styling most of the aspects of
3664 a table.  It also inherits defaults for many aspects from structure
3665 XML, which has the following @code{tableProperties} element:
3666
3667 @example
3668 tableProperties
3669    :name?
3670 => generalProperties footnoteProperties cellFormatProperties borderProperties printingProperties
3671
3672 generalProperties
3673    :hideEmptyRows=bool?
3674    :maximumColumnWidth=dimension?
3675    :maximumRowWidth=dimension?
3676    :minimumColumnWidth=dimension?
3677    :minimumRowWidth=dimension?
3678    :rowDimensionLabels=(inCorner | nested)?
3679 => EMPTY
3680
3681 footnoteProperties
3682    :markerPosition=(superscript | subscript)?
3683    :numberFormat=(alphabetic | numeric)?
3684 => EMPTY
3685
3686 cellFormatProperties => cell_style+
3687
3688 any[cell_style]
3689    :alternatingColor=color?
3690    :alternatingTextColor=color?
3691 => style
3692
3693 style
3694    :color=color?
3695    :color2=color?
3696    :font-family?
3697    :font-size?
3698    :font-style=(regular | italic)?
3699    :font-weight=(regular | bold)?
3700    :font-underline=(none | underline)?
3701    :labelLocationVertical=(positive | negative | center)?
3702    :margin-bottom=dimension?
3703    :margin-left=dimension?
3704    :margin-right=dimension?
3705    :margin-top=dimension?
3706    :textAlignment=(left | right | center | decimal | mixed)?
3707    :decimal-offset=dimension?
3708 => EMPTY
3709
3710 borderProperties => border_style+
3711
3712 any[border_style]
3713    :borderStyleType=(none | solid | dashed | thick | thin | double)?
3714    :color=color?
3715 => EMPTY
3716
3717 printingProperties
3718    :printAllLayers=bool?
3719    :rescaleLongTableToFitPage=bool?
3720    :rescaleWideTableToFitPage=bool?
3721    :windowOrphanLines=int?
3722    :continuationText?
3723    :continuationTextAtBottom=bool?
3724    :continuationTextAtTop=bool?
3725    :printEachLayerOnSeparatePage=bool?
3726 => EMPTY
3727 @end example
3728
3729 The @code{name} attribute appears only in standalone @file{.stt} files
3730 (@pxref{SPSS TableLook STT Format}).