html: Step toward better handling of text_items.
[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 @code{show} is a 32-bit signed integer.  It is positive to show the
1071 footnote or negative to hide it.  Its magnitude is often 1, and in
1072 other cases tends to be the number of references to the footnote.
1073
1074 @node SPV Light Member Areas
1075 @subsection Areas
1076
1077 @example
1078 Areas => 00? Area*8
1079 Area =>
1080     byte[index] 31
1081     string[typeface] float[size] int32[style] bool[underline]
1082     int32[halign] int32[valign]
1083     string[fg-color] string[bg-color]
1084     bool[alternate] string[alt-fg-color] string[alt-bg-color]
1085     v3(int32[left-margin] int32[right-margin] int32[top-margin] int32[bottom-margin])
1086 @end example
1087
1088 Each Area represents the style for a different area of the table, in
1089 the following order: title, caption, footer, corner, column labels,
1090 row labels, data, and layers.
1091
1092 @code{index} is the 1-based index of the Area, i.e. 1 for the first
1093 Area, through 8 for the final Area.
1094
1095 @code{typeface} is the string name of the font used in the area.  In
1096 the corpus, this is @code{SansSerif} in over 99% of instances and
1097 @code{Times New Roman} in the rest.
1098
1099 @code{size} is the size of the font, in px (@pxref{SPV Light Detail
1100 Member Format}) The most common size in the corpus is 12 px.  Even
1101 though @code{size} has a floating-point type, in the corpus its values
1102 are always integers.
1103
1104 @code{style} is a bit mask.  Bit 0 (with value 1) is set for bold, bit
1105 1 (with value 2) is set for italic.
1106
1107 @code{underline} is 1 if the font is underlined, 0 otherwise.
1108
1109 @code{halign} specifies horizontal alignment: 0 for center, 2 for
1110 left, 4 for right, 61453 for decimal, 64173 for mixed.  Mixed
1111 alignment varies according to type: string data is left-justified,
1112 numbers and most other formats are right-justified.
1113
1114 @code{valign} specifies vertical alignment: 0 for center, 1 for top, 3
1115 for bottom.
1116
1117 @code{fg-color} and @code{bg-color} are the foreground color and
1118 background color, respectively.  In the corpus, these are always
1119 @code{#000000} and @code{#ffffff}, respectively.
1120
1121 @code{alternate} is 1 if rows should alternate colors, 0 if all rows
1122 should be the same color.  When @code{alternate} is 1,
1123 @code{alt-fg-color} and @code{alt-bg-color} specify the colors for the
1124 alternate rows; otherwise they are empty strings.
1125
1126 @code{left-margin}, @code{right-margin}, @code{top-margin}, and
1127 @code{bottom-margin} are measured in px.
1128
1129 @node SPV Light Member Borders
1130 @subsection Borders
1131
1132 @example
1133 Borders =>
1134     count(
1135         ib1[endian]
1136         be32[n-borders] Border*[n-borders]
1137         bool[show-grid-lines]
1138         00 00 00)
1139
1140 Border =>
1141     be32[border-type]
1142     be32[stroke-type]
1143     be32[color]
1144 @end example
1145
1146 The Borders reflect how borders between regions are drawn.
1147
1148 The fixed value of @code{endian} can be used to validate the
1149 endianness.
1150
1151 @code{show-grid-lines} is 1 to draw grid lines, otherwise 0.
1152
1153 Each Border describes one kind of border.  @code{n-borders} seems to
1154 always be 19.  Each @code{border-type} appears once (although in an
1155 unpredictable order) and correspond to the following borders:
1156
1157 @table @asis
1158 @item 0
1159 Title.
1160 @item 1@dots{}4
1161 Left, top, right, and bottom outer frame.
1162 @item 5@dots{}8
1163 Left, top, right, and bottom inner frame.
1164 @item 9, 10
1165 Left and top of data area.
1166 @item 11, 12
1167 Horizontal and vertical dimension rows.
1168 @item 13, 14
1169 Horizontal and vertical dimension columns.
1170 @item 15, 16
1171 Horizontal and vertical category rows.
1172 @item 17, 18
1173 Horizontal and vertical category columns.
1174 @end table
1175
1176 @code{stroke-type} describes how a border is drawn, as one of:
1177
1178 @table @asis
1179 @item 0
1180 No line.
1181 @item 1
1182 Solid line.
1183 @item 2
1184 Dashed line.
1185 @item 3
1186 Thick line.
1187 @item 4
1188 Thin line.
1189 @item 5
1190 Double line.
1191 @end table
1192
1193 @code{color} is an RGB color.  Bits 24--31 are alpha, bits 16--23 are
1194 red, 8--15 are green, 0--7 are blue.  An alpha of 255 indicates an
1195 opaque color, therefore opaque black is 0xff000000.
1196
1197 @node SPV Light Member Print Settings
1198 @subsection Print Settings
1199
1200 @example
1201 PrintSettings =>
1202     count(
1203         ib1[endian]
1204         bool[all-layers]
1205         bool[paginate-layers]
1206         bool[fit-width]
1207         bool[fit-length]
1208         bool[top-continuation]
1209         bool[bottom-continuation]
1210         be32[n-orphan-lines]
1211         bestring[continuation-string])
1212 @end example
1213
1214 The PrintSettings reflect settings for printing.  The fixed value of
1215 @code{endian} can be used to validate the endianness.
1216
1217 @code{all-layers} is 1 to print all layers, 0 to print only the
1218 visible layers.
1219
1220 @code{paginate-layers} is 1 to print each layer at the start of a new
1221 page, 0 otherwise.  (This setting is honored only @code{all-layers} is
1222 1, since otherwise only one layer is printed.)
1223
1224 @code{fit-width} and @code{fit-length} control whether the table is
1225 shrunk to fit within a page's width or length, respectively.
1226
1227 @code{n-orphan-lines} is the minimum number of rows or columns to put
1228 in one part of a table that is broken across pages.
1229
1230 If @code{top-continuation} is 1, then @code{continuation-string} is
1231 printed at the top of a page when a table is broken across pages for
1232 printing; similarly for @code{bottom-continuation} and the bottom of a
1233 page.  Usually, @code{continuation-string} is empty.
1234
1235 @node SPV Light Member Table Settings
1236 @subsection Table Settings
1237
1238 @example
1239 TableSettings =>
1240     count(
1241       v3(
1242         ib1[endian]
1243         be32[x5]
1244         be32[current-layer]
1245         bool[omit-empty]
1246         bool[show-row-labels-in-corner]
1247         bool[show-alphabetic-markers]
1248         bool[footnote-marker-superscripts]
1249         byte[x6]
1250         becount(
1251           Breakpoints[row-breaks] Breakpoints[column-breaks]
1252           Keeps[row-keeps] Keeps[column-keeps]
1253           PointKeeps[row-point-keeps] PointKeeps[column-point-keeps]
1254         )
1255         bestring[notes]
1256         bestring[table-look]
1257         00...))
1258
1259 Breakpoints => be32[n-breaks] be32*[n-breaks]
1260
1261 Keeps => be32[n-keeps] Keep*[n-keeps]
1262 Keep => be32[offset] be32[n]
1263
1264 PointKeeps => be32[n-point-keeps] PointKeep*[n-point-keeps]
1265 PointKeep => be32[offset] be32 be32
1266 @end example
1267
1268 The TableSettings reflect display settings.  The fixed value of
1269 @code{endian} can be used to validate the endianness.
1270
1271 @code{current-layer} is the displayed layer.  The interpretation when
1272 there is more than one layer dimension is not yet known.
1273
1274 If @code{omit-empty} is 1, empty rows or columns (ones with nothing in
1275 any cell) are hidden; otherwise, they are shown.
1276
1277 If @code{show-row-labels-in-corner} is 1, then row labels are shown in
1278 the upper left corner; otherwise, they are shown nested.
1279
1280 If @code{show-alphabetic-markers} is 1, markers are shown as letters
1281 (e.g.@: @samp{a}, @samp{b}, @samp{c}, @dots{}); otherwise, they are
1282 shown as numbers starting from 1.
1283
1284 When @code{footnote-marker-superscripts} is 1, footnote markers are shown
1285 as superscripts, otherwise as subscripts.
1286
1287 The Breakpoints are rows or columns after which there is a page break;
1288 for example, a row break of 1 requests a page break after the second
1289 row.  Usually no breakpoints are specified, indicating that page
1290 breaks should be selected automatically.
1291
1292 The Keeps are ranges of rows or columns to be kept together without a
1293 page break; for example, a row Keep with @code{offset} 1 and @code{n}
1294 10 requests that the 10 rows starting with the second row be kept
1295 together.  Usually no Keeps are specified.
1296
1297 The PointKeeps seem to be generated automatically based on
1298 user-specified Keeps.  They seems to indicate a conversion from rows
1299 or columns to pixel or point offsets.
1300
1301 @code{notes} is a text string that contains user-specified notes.  It
1302 is displayed when the user hovers the cursor over the table, like text
1303 in the @code{title} attribute in HTML.  It is not printed.  It is
1304 usually empty.
1305
1306 @code{table-look} is the name of a SPSS ``TableLook'' table style,
1307 such as ``Default'' or ``Academic''; it is often empty.
1308
1309 TableSettings ends with an arbitrary number of null bytes.  A writer
1310 may safely write 82 null bytes.
1311
1312 A writer may safely use 4 for @code{x5} and 0 for @code{x6}.
1313
1314 @node SPV Light Member Formats
1315 @subsection Formats
1316
1317 @example
1318 Formats =>
1319     int32[n-widths] int32*[n-widths]
1320     string[locale]
1321     int32[current-layer]
1322     bool bool bool
1323     Y0
1324     CustomCurrency
1325     count(
1326       v1(X0?)
1327       v3(count(X1 count(X2)) count(X3)))
1328 Y0 => int32[epoch] byte[decimal] byte[grouping]
1329 CustomCurrency => int32[n-ccs] string*[n-ccs]
1330 @end example
1331
1332 If @code{n-widths} is nonzero, then the accompanying integers are
1333 column widths as manually adjusted by the user.
1334
1335 @code{locale} is a locale including an encoding, such as
1336 @code{en_US.windows-1252} or @code{it_IT.windows-1252}.  The rest of
1337 the character strings in the member use this encoding.  The encoding
1338 string is itself encoded in US-ASCII.
1339
1340 @code{epoch} is the year that starts the epoch.  A 2-digit year is
1341 interpreted as belonging to the 100 years beginning at the epoch.  The
1342 default epoch year is 69 years prior to the current year; thus, in
1343 2017 this field by default contains 1948.  In the corpus, @code{epoch}
1344 ranges from 1943 to 1948, plus some contain -1.
1345
1346 @code{decimal} is the decimal point character.  The observed values
1347 are @samp{.} and @samp{,}.
1348
1349 @code{grouping} is the grouping character.  Usually, it is @samp{,} if
1350 @code{decimal} is @samp{.}, and vice versa.  Other observed values are
1351 @samp{'} (apostrophe), @samp{ } (space), and zero (presumably
1352 indicating that digits should not be grouped).
1353
1354 @code{n-ccs} is observed as either 0 or 5.  When it is 5, the
1355 following strings are CCA through CCE format strings.  @xref{Custom
1356 Currency Formats,,, pspp, PSPP}.  Most commonly these are all
1357 @code{-,,,} but other strings occur.
1358
1359 @subsubheading X0
1360
1361 X0 only appears, optionally, in version 1 members.
1362
1363 @example
1364 X0 => byte*14 Y1 Y2
1365 Y1 =>
1366     string[command] string[command-local]
1367     string[language] string[charset] string[locale]
1368     bool bool bool bool
1369     Y0
1370 Y2 => CustomCurrency byte[missing] bool[x17]
1371 @end example
1372
1373 @code{command} describes the statistical procedure that generated the
1374 output, in English.  It is not necessarily the literal syntax name of
1375 the procedure: for example, NPAR TESTS becomes ``Nonparametric
1376 Tests.''  @code{command-local} is the procedure's name, translated
1377 into the output language; it is often empty and, when it is not,
1378 sometimes the same as @code{command}.
1379
1380 @code{dataset} is the name of the dataset analyzed to produce the
1381 output, e.g.@: @code{DataSet1}, and @code{datafile} the name of the
1382 file it was read from, e.g.@: @file{C:\Users\foo\bar.sav}.  The latter
1383 is sometimes the empty string.
1384
1385 @code{missing} is the character used to indicate that a cell contains
1386 a missing value.  It is always observed as @samp{.}.
1387
1388 X0 repeats @code{decimal}, @code{grouping}, CustomCurrency, and
1389 @code{missing} already included in Formats.
1390
1391 A writer may safely use false for @code{x17}.
1392
1393 @subsubheading X1
1394
1395 X1 only appears in version 3 members.
1396
1397 @example
1398 X1 =>
1399     bool
1400     byte[show-title]
1401     bool[x16]
1402     byte[lang]
1403     byte[show-variables]
1404     byte[show-values]
1405     int32[x18] int32[x19]
1406     00*17
1407     bool[x20]
1408     bool[show-caption]
1409 @end example
1410
1411 @code{lang} may indicate the language in use.  Some values seem to be
1412 0: @t{en}, 1: @t{de}, 2: @t{es}, 3: @t{it}, 5: @t{ko}, 6: @t{pl}, 8:
1413 @t{zh-tw}, 10: @t{pt_BR}, 11: @t{fr}.  The @code{locale} in Formats
1414 and the @code{language}, @code{charset}, and @code{locale} in X0 are
1415 more likely to be useful in practice.
1416
1417 @code{show-variables} determines how variables are displayed by
1418 default.  A value of 1 means to display variable names, 2 to display
1419 variable labels when available, 3 to display both (name followed by
1420 label, separated by a space).  The most common value is 0, which
1421 probably means to use a global default.
1422
1423 @code{show-values} is a similar setting for values.  A value of 1
1424 means to display the value, 2 to display the value label when
1425 available, 3 to display both.  Again, the most common value is 0,
1426 which probably means to use a global default.
1427
1428 @code{show-title} is 1 to show the caption, 10 to hide it.
1429
1430 @code{show-caption} is true to show the caption, false to hide it.
1431
1432 A writer may safely use false for @code{x14}, false
1433 for @code{x16}, -1 for @code{x18} and @code{x19}, and false for
1434 @code{x20}.
1435
1436 @subsubheading X2
1437
1438 X2 only appears in version 3 members.
1439
1440 @example
1441 X2 =>
1442     int32[n-row-heights] int32*[n-row-heights]
1443     int32[n-style-map] StyleMap*[n-style-map]
1444     int32[n-styles] StylePair*[n-styles]
1445     count((i0 i0)?)
1446 StyleMap => int64[cell-index] int16[style-index]
1447 @end example
1448
1449 If present, @code{n-row-heights} and the accompanying integers are row
1450 heights as manually adjusted by the user.
1451
1452 The rest of X2 specifies styles for data cells.  At first glance this
1453 is odd, because each data cell can have its own style embedded as part
1454 of the data, but in practice X2 specifies a style for a cell only if
1455 that cell is empty (and thus does not appear in the data at all).
1456 Each StyleMap specifies the index of a blank cell, calculated the same
1457 was as in the Cells (@pxref{SPV Light Member Cells}), along with a
1458 0-based index into the accompanying StylePair array.
1459
1460 A writer may safely omit the optional @code{i0 i0} inside the
1461 @code{count(@dots{})}.
1462
1463 @subsubheading X3
1464
1465 X3 only appears in version 3 members.
1466
1467 @example
1468 X3 =>
1469     01 00 byte[x21] 00 00 00
1470     Y1
1471     double[small] 01
1472     (string[dataset] string[datafile] i0 int32[date] i0)?
1473     Y2
1474     (int32[x22] i0)?
1475 @end example
1476
1477 @code{date} is a date, as seconds since the epoch, i.e.@: since
1478 January 1, 1970.  Pivot tables within an SPV file often have dates a
1479 few minutes apart, so this is probably a creation date for the table
1480 rather than for the file.
1481
1482 X3 repeats @code{decimal}, @code{grouping}, CustomCurrency, and
1483 @code{missing} already included in Formats.  @code{command},
1484 @code{command-local}, @code{language}, @code{charset}, and
1485 @code{locale} have the same meaning as in X0.
1486
1487 @code{small} is a small real number, e.g.@: .001.  Numbers smaller
1488 than this in absolute value are displayed in scientific notation.
1489
1490 Sometimes @code{dataset}, @code{datafile}, and @code{date} are present
1491 and other times they are absent.  The reader can distinguish by
1492 assuming that they are present and then checking whether the
1493 presumptive @code{dataset} contains a null byte (a valid string never
1494 will).
1495
1496 @code{x22} is usually 0 or 2000000.
1497
1498 A writer may safely use 4 for @code{x21} and omit @code{x22} and the
1499 other optional bytes at the end.
1500
1501 @node SPV Light Member Dimensions
1502 @subsection Dimensions
1503
1504 A pivot table presents multidimensional data.  A Dimension identifies
1505 the categories associated with each dimension.
1506
1507 @example
1508 Dimensions => int32[n-dims] Dimension*[n-dims]
1509 Dimension =>
1510     Value[name] DimProperties
1511     int32[n-categories] Category*[n-categories]
1512 DimProperties =>
1513     byte[x1]
1514     byte[x2]
1515     int32[x3]
1516     bool[hide-dim-label]
1517     bool[hide-all-labels]
1518     01 int32[dim-index]
1519 @end example
1520
1521 @code{name} is the name of the dimension, e.g.@: @code{Variables},
1522 @code{Statistics}, or a variable name.
1523
1524 The meanings of @code{x1} and @code{x3} are unknown.  @code{x1} is
1525 usually 0 but many other values have been observed.  A writer may
1526 safely use 0 for @code{x1} and 2 for @code{x3}.
1527
1528 @code{x2} is 0, 1, or 2.  For a pivot table with @var{L} layer
1529 dimensions, @var{R} row dimensions, and @var{C} column dimensions,
1530 @code{x2} is 2 for the first @var{L} dimensions, 0 for the next
1531 @var{R} dimensions, and 1 for the remaining @var{C} dimensions.  This
1532 does not mean that the layer dimensions must be presented first,
1533 followed by the row dimensions, followed by the column dimensions---on
1534 the contrary, they are frequently in a different order---but @code{x2}
1535 must follow this pattern to prevent the pivot table from being
1536 misinterpreted.
1537
1538 If @code{hide-dim-label} is 00, the pivot table displays a label for
1539 the dimension itself.  Because usually the group and category labels
1540 are enough explanation, it is usually 01.
1541
1542 If @code{hide-all-labels} is 01, the pivot table omits all labels for
1543 the dimension, including group and category labels.  It is usually 00.
1544 When @code{hide-all-labels} is 01, @code{show-dim-label} is ignored.
1545
1546 @code{dim-index} is usually the 0-based index of the dimension, e.g.@:
1547 0 for the first dimension, 1 for the second, and so on.  Sometimes it
1548 is -1.  There is no visible difference.
1549
1550 @node SPV Light Member Categories
1551 @subsection Categories
1552
1553 Categories are arranged in a tree.  Only the leaf nodes in the tree
1554 are really categories; the others just serve as grouping constructs.
1555
1556 @example
1557 Category => Value[name] (Leaf @math{|} Group)
1558 Leaf => 00 00 00 i2 int32[leaf-index] i0
1559 Group =>
1560     bool[merge] 00 01 int32[x23]
1561     i-1 int32[n-subcategories] Category*[n-subcategories]
1562 @end example
1563
1564 @code{name} is the name of the category (or group).
1565
1566 A Leaf represents a leaf category.  The Leaf's @code{leaf-index} is a
1567 nonnegative integer unique within the Dimension and less than
1568 @code{n-categories} in the Dimension.  If the user does not sort or
1569 rearrange the categories, then @code{leaf-index} starts at 0 for the
1570 first Leaf in the dimension and increments by 1 with each successive
1571 Leaf.  If the user does sorts or rearrange the categories, then the
1572 order of categories in the file reflects that change and
1573 @code{leaf-index} reflects the original order.
1574
1575 Occasionally a dimension has no leaf categories at all.  A table that
1576 contains such a dimension necessarily has no data at all.
1577
1578 A Group is a group of nested categories.  Usually a Group contains at
1579 least one Category, so that @code{n-subcategories} is positive, but a
1580 few Groups with @code{n-subcategories} 0 has been observed.
1581
1582 If a Group's @code{merge} is 00, the most common value, then the group
1583 is really a distinct group that should be represented as such in the
1584 visual representation and user interface.  If @code{merge} is 01, the
1585 categories in this group should be shown and treated as if they were
1586 direct children of the group's containing group (or if it has no
1587 parent group, then direct children of the dimension), and this group's
1588 name is irrelevant and should not be displayed.  (Merged groups can be
1589 nested!)
1590
1591 (For writing an SPV file, there is no need to use the @code{merge}
1592 feature unless it is convenient.)
1593
1594 A Group's @code{x23} appears to be i2 when all of the categories
1595 within a group are leaf categories that directly represent data values
1596 for a variable (e.g.@: in a frequency table or crosstabulation, a group
1597 of values in a variable being tabulated) and i0 otherwise.  A writer
1598 may safely write a constant 0 in this field.
1599
1600 @node SPV Light Member Axes
1601 @subsection Axes
1602
1603 After the dimensions come assignment of each dimension to one of the
1604 axes: layers, rows, and columns.
1605
1606 @example
1607 Axes =>
1608     int32[n-layers] int32[n-rows] int32[n-columns]
1609     int32*[n-layers] int32*[n-rows] int32*[n-columns]
1610 @end example
1611
1612 The values of @code{n-layers}, @code{n-rows}, and @code{n-columns}
1613 each specifies the number of dimensions displayed in layers, rows, and
1614 columns, respectively.  Any of them may be zero.  Their values sum to
1615 @code{n-dimensions} from Dimensions (@pxref{SPV Light Member
1616 Dimensions}).
1617
1618 The following @code{n-dimensions} integers, in three groups, are a
1619 permutation of the 0-based dimension numbers.  The first
1620 @code{n-layers} integers specify each of the dimensions represented by
1621 layers, the next @code{n-rows} integers specify the dimensions
1622 represented by rows, and the final @code{n-columns} integers specify
1623 the dimensions represented by columns.  When there is more than one
1624 dimension of a given kind, the inner dimensions are given first.
1625
1626 @node SPV Light Member Cells
1627 @subsection Cells
1628
1629 The final part of an SPV light member contains the actual data.
1630
1631 @example
1632 Cells => int32[n-cells] Cell*[n-cells]
1633 Cell => int64[index] v1(00?) Value
1634 @end example
1635
1636 A Cell consists of an @code{index} and a Value.  Suppose there are
1637 @math{d} dimensions, numbered 1 through @math{d} in the order given in
1638 the Dimensions previously, and that dimension @math{i}, has @math{n_i}
1639 categories.  Consider the cell at coordinates @math{x_i}, @math{1 \le
1640 i \le d}, and note that @math{0 \le x_i < n_i}.  Then the index is
1641 calculated by the following algorithm:
1642
1643 @display
1644 let @i{index} = 0
1645 for each @math{i} from 1 to @math{d}:
1646     @i{index} = (@math{n_i \times} @i{index}) @math{+} @math{x_i}
1647 @end display
1648
1649 For example, suppose there are 3 dimensions with 3, 4, and 5
1650 categories, respectively.  The cell at coordinates (1, 2, 3) has
1651 index @math{5 \times (4 \times (3 \times 0 + 1) + 2) + 3 = 33}.
1652 Within a given dimension, the index is the @code{leaf-index} in a Leaf.
1653
1654 @node SPV Light Member Value
1655 @subsection Value
1656
1657 Value is used throughout the SPV light member format.  It boils down
1658 to a number or a string.
1659
1660 @example
1661 Value => 00? 00? 00? 00? RawValue
1662 RawValue =>
1663     01 ValueMod int32[format] double[x]
1664   @math{|} 02 ValueMod int32[format] double[x]
1665     string[var-name] string[value-label] byte[show]
1666   @math{|} 03 string[local] ValueMod string[id] string[c] bool[fixed]
1667   @math{|} 04 ValueMod int32[format] string[value-label] string[var-name]
1668     byte[show] string[s]
1669   @math{|} 05 ValueMod string[var-name] string[var-label] byte[show]
1670   @math{|} ValueMod string[template] int32[n-args] Argument*[n-args]
1671 Argument =>
1672     i0 Value
1673   @math{|} int32[x] i0 Value*[x]      /* x > 0 */
1674 @end example
1675
1676 There are several possible encodings, which one can distinguish by the
1677 first nonzero byte in the encoding.
1678
1679 @table @asis
1680 @item 01
1681 The numeric value @code{x}, intended to be presented to the user
1682 formatted according to @code{format}, which is in the format described
1683 for system files, except that format 40 is a synonym for F format
1684 instead of MTIME.  @xref{System File Output Formats}, for details.
1685 Most commonly, @code{format} has width 40 (the maximum).
1686
1687 An @code{x} with the maximum negative double value @code{-DBL_MAX}
1688 represents the system-missing value SYSMIS.  (HIGHEST and LOWEST have
1689 not been observed.)  @xref{System File Format}, for more about these
1690 special values.
1691
1692 @item 02
1693 Similar to @code{01}, with the additional information that @code{x} is
1694 a value of variable @code{var-name} and has value label
1695 @code{value-label}.  Both @code{var-name} and @code{value-label} can
1696 be the empty string, the latter very commonly.
1697
1698 @code{show} determines whether to show the numeric value or the value
1699 label.  A value of 1 means to show the value, 2 to show the label, 3
1700 to show both, and 0 means to use the default specified in
1701 @code{show-values} (@pxref{SPV Light Member Formats}).
1702
1703 @item 03
1704 A text string, in two forms: @code{c} is in English, and sometimes
1705 abbreviated or obscure, and @code{local} is localized to the user's
1706 locale.  In an English-language locale, the two strings are often the
1707 same, and in the cases where they differ, @code{local} is more
1708 appropriate for a user interface, e.g.@: @code{c} of ``Not a PxP table
1709 for MCN...'' versus @code{local} of ``Computed only for a PxP table,
1710 where P must be greater than 1.''
1711
1712 @code{c} and @code{local} are always either both empty or both
1713 nonempty.
1714
1715 @code{id} is a brief identifying string whose form seems to resemble a
1716 programming language identifier, e.g.@: @code{cumulative_percent} or
1717 @code{factor_14}.  It is not unique.
1718
1719 @code{fixed} is 00 for text taken from user input, such as syntax
1720 fragment, expressions, file names, data set names, and 01 for fixed
1721 text strings such as names of procedures or statistics.  In the former
1722 case, @code{id} is always the empty string; in the latter case,
1723 @code{id} is still sometimes empty.
1724
1725 @item 04
1726 The string value @code{s}, intended to be presented to the user
1727 formatted according to @code{format}.  The format for a string is not
1728 too interesting, and the corpus contains many clearly invalid formats
1729 like A16.39 or A255.127 or A134.1, so readers should probably ignore
1730 the format entirely.
1731
1732 @code{s} is a value of variable @code{var-name} and has value label
1733 @code{value-label}.  @code{var-name} is never empty but
1734 @code{value-label} is commonly empty.
1735
1736 @code{show} has the same meaning as in the encoding for 02.
1737
1738 @item 05
1739 Variable @code{var-name}, which is rarely observed as empty in the
1740 corpus, with variable label @code{var-label}, which is often empty.
1741
1742 @code{show} determines whether to show the variable name or the
1743 variable label.  A value of 1 means to show the name, 2 to show the
1744 label, 3 to show both, and 0 means to use the default specified in
1745 @code{show-variables} (@pxref{SPV Light Member Formats}).
1746
1747 @item otherwise
1748 When the first byte of a RawValue is not one of the above, the
1749 RawValue starts with a ValueMod, whose syntax is described in the next
1750 section.  (A ValueMod always begins with byte 31 or 58.)
1751
1752 This case is a template string, analogous to @code{printf}, followed
1753 by one or more Arguments, each of which has one or more values.  The
1754 template string is copied directly into the output except for the
1755 following special syntax,
1756
1757 @table @code
1758 @item \%
1759 @itemx \:
1760 @itemx \[
1761 @itemx \]
1762 Each of these expands to the character following @samp{\\}, to escape
1763 characters that have special meaning in template strings.  These are
1764 effective inside and outside the @code{[@dots{}]}  syntax forms
1765 described below.
1766
1767 @item \n
1768 Expands to a new-line, inside or outside the @code{[@dots{}]} forms
1769 described below.
1770
1771 @item ^@var{i}
1772 Expands to a formatted version of argument @var{i}, which must have
1773 only a single value.  For example, @code{^1} expands to the first
1774 argument's @code{value}.
1775
1776 @item [:@var{a}:]@var{i}
1777 Expands @var{a} for each of the values in @var{i}.  @var{a}
1778 should contain one or more @code{^@var{j}} conversions, which are
1779 drawn from the values for argument @var{i} in order.  Some examples
1780 from the corpus:
1781
1782 @table @code
1783 @item [:^1:]1
1784 All of the values for the first argument, concatenated.
1785
1786 @item [:^1\n:]1
1787 Expands to the values for the first argument, each followed by
1788 a new-line.
1789
1790 @item [:^1 = ^2:]2
1791 Expands to @code{@var{x} = @var{y}} where @var{x} is the second
1792 argument's first value and @var{y} is its second value.  (This would
1793 be used only if the argument has two values.  If there were more
1794 values, the second and third values would be directly concatenated,
1795 which would look funny.)
1796 @end table
1797
1798 @item [@var{a}:@var{b}:]@var{i}
1799 This extends the previous form so that the first values are expanded
1800 using @var{a} and later values are expanded using @var{b}.  For an
1801 unknown reason, within @var{a} the @code{^@var{j}} conversions are
1802 instead written as @code{%@var{j}}.  Some examples from the corpus:
1803
1804 @table @code
1805 @item [%1:*^1:]1
1806 Expands to all of the values for the first argument, separated by
1807 @samp{*}.
1808
1809 @item [%1 = %2:, ^1 = ^2:]1
1810 Given appropriate values for the first argument, expands to @code{X =
1811 1, Y = 2, Z = 3}.
1812
1813 @item [%1:, ^1:]1
1814 Given appropriate values, expands to @code{1, 2, 3}.
1815 @end table
1816 @end table
1817
1818 The template string is localized to the user's locale.
1819 @end table
1820
1821 A writer may safely omit all of the optional 00 bytes at the beginning
1822 of a Value, except that it should write a single 00 byte before a
1823 templated Value.
1824
1825 @node SPV Light Member ValueMod
1826 @subsection ValueMod
1827
1828 A ValueMod can specify special modifications to a Value.
1829
1830 @example
1831 ValueMod =>
1832     58
1833   @math{|} 31
1834     int32[n-refs] int16*[n-refs]
1835     int32[n-subscripts] string*[n-subscripts]
1836     v1(00 (i1 | i2) 00? 00? int32 00? 00?)
1837     v3(count(TemplateString StylePair))
1838
1839 TemplateString => count((count((i0 (58 @math{|} 31 55))?) (58 @math{|} 31 string[id]))?)
1840
1841 StylePair =>
1842     (31 FontStyle | 58)
1843     (31 CellStyle | 58)
1844
1845 FontStyle =>
1846     bool[bold] bool[italic] bool[underline] bool[show]
1847     string[fg-color] string[bg-color]
1848     string[typeface] byte[size]
1849
1850 CellStyle =>
1851     int32[halign] int32[valign] double[decimal-offset]
1852     int16[left-margin] int16[right-margin]
1853     int16[top-margin] int16[bottom-margin]
1854 @end example
1855
1856 A ValueMod that begins with ``31'' specifies special modifications to
1857 a Value.
1858
1859 Each of the @code{n-refs} integers is a reference to a Footnote
1860 (@pxref{SPV Light Member Footnotes}) by 0-based index.  Footnote
1861 markers are shown appended to the main text of the Value, as
1862 superscripts.
1863
1864 The @code{subscripts}, if present, are strings to append to the main
1865 text of the Value, as subscripts.  Each subscript text is a brief
1866 indicator, e.g.@: @samp{a} or @samp{b}, with its meaning indicated by
1867 the table caption.  When multiple subscripts are present, they are
1868 displayed separated by commas.
1869
1870 The @code{id} inside the TemplateString, if present, is a template
1871 string for substitutions using the syntax explained previously.  It
1872 appears to be an English-language version of the localized template
1873 string in the Value in which the Template is nested.  A writer may
1874 safely omit the optional fixed data in TemplateString.
1875
1876 FontStyle and CellStyle, if present, change the style for this
1877 individual Value.  In FontStyle, @code{bold}, @code{italic}, and
1878 @code{underline} control the particular style.  @code{show} is
1879 ordinarily 1; if it is 0, then the cell data is not shown.
1880 @code{fg-color} and @code{bg-color} are strings in the format
1881 @code{#rrggbb}, e.g.@: @code{#ff0000} for red or @code{#ffffff} for
1882 white.  The empty string is occasionally observed also.  The
1883 @code{size} is a font size in units of 1/128 inch.
1884
1885 In CellStyle, @code{halign} is 0 for center, 2 for left, 4 for right,
1886 6 for decimal, 0xffffffad for mixed.  For decimal alignment,
1887 @code{decimal-offset} is the decimal point's offset from the right
1888 side of the cell, in pt (@pxref{SPV Light Detail Member Format}).
1889 @code{valign} specifies vertical alignment: 0 for center, 1 for top, 3
1890 for bottom.  @code{left-margin}, @code{right-margin},
1891 @code{top-margin}, and @code{bottom-margin} are in pt.
1892
1893 @node SPV Legacy Detail Member Binary Format
1894 @section Legacy Detail Member Binary Format
1895
1896 Whereas the light binary format represents everything about a given
1897 pivot table, the legacy binary format conceptually consists of a
1898 number of named sources, each of which consists of a number of named
1899 variables, each of which is a 1-dimensional array of numbers or
1900 strings or a mix.  Thus, the legacy binary member format is quite
1901 simple.
1902
1903 This section uses the same context-free grammar notation as in the
1904 previous section, with the following additions:
1905
1906 @table @asis
1907 @item vAF(@var{x})
1908 In a version 0xaf legacy member, @var{x}; in other versions, nothing.
1909 (The legacy member header indicates the version; see below.)
1910
1911 @item vB0(@var{x})
1912 In a version 0xb0 legacy member, @var{x}; in other versions, nothing.
1913 @end table
1914
1915 A legacy detail member @file{.bin} has the following overall format:
1916
1917 @example
1918 LegacyBinary =>
1919     00 byte[version] int16[n-sources] int32[member-size]
1920     Metadata*[n-sources]
1921     #Data*[n-sources]
1922     #Strings?
1923 @end example
1924
1925 @code{version} is a version number that affects the interpretation of
1926 some of the other data in the member.  Versions 0xaf and 0xb0 are
1927 known.  We will refer to ``version 0xaf'' and ``version 0xb0'' members
1928 later on.
1929
1930 A legacy member consists of @code{n-sources} data sources, each of
1931 which has Metadata and Data.
1932
1933 @code{member-size} is the size of the legacy binary member, in bytes.
1934
1935 The Data and Strings above are commented out because the Metadata has
1936 some oddities that mean that the Data sometimes seems to start at
1937 an unexpected place.  The following section goes into detail.
1938
1939 @menu
1940 * SPV Legacy Member Metadata::
1941 * SPV Legacy Member Numeric Data::
1942 * SPV Legacy Member String Data::
1943 @end menu
1944
1945 @node SPV Legacy Member Metadata
1946 @subsection Metadata
1947
1948 @example
1949 Metadata =>
1950     int32[n-values] int32[n-variables] int32[data-offset]
1951     vAF(byte*28[source-name])
1952     vB0(byte*64[source-name] int32[x])
1953 @end example
1954
1955 A data source has @code{n-variables} variables, each with
1956 @code{n-values} data values.
1957
1958 @code{source-name} is a 28- or 64-byte string padded on the right with
1959 0-bytes.  The names that appear in the corpus are very generic:
1960 usually @code{tableData} for pivot table data or @code{source0} for
1961 chart data.
1962
1963 A given Metadata's @code{data-offset} is the offset, in bytes, from
1964 the beginning of the member to the start of the corresponding Data.
1965 This allows programs to skip to the beginning of the data for a
1966 particular source.  In every case in the corpus, the Data follow the
1967 Metadata in the same order, but it is important to use
1968 @code{data-offset} instead of reading sequentially through the file
1969 because of the exception described below.
1970
1971 One SPV file in the corpus has legacy binary members with version 0xb0
1972 but a 28-byte @code{source-name} field (and only a single source).  In
1973 practice, this means that the 64-byte @code{source-name} used in
1974 version 0xb0 has a lot of 0-bytes in the middle followed by the
1975 @code{variable-name} of the following Data.  As long as a reader
1976 treats the first 0-byte in the @code{source-name} as terminating the
1977 string, it can properly interpret these members.
1978
1979 The meaning of @code{x} in version 0xb0 is unknown.
1980
1981 @node SPV Legacy Member Numeric Data
1982 @subsection Numeric Data
1983
1984 @example
1985 Data => Variable*[n-variables]
1986 Variable => byte*288[variable-name] double*[n-values]
1987 @end example
1988
1989 Data follow the Metadata in the legacy binary format, with sources in
1990 the same order (but readers should use the @code{data-offset} in
1991 Metadata records, rather than reading sequentially).  Each Variable
1992 begins with a @code{variable-name} that generally indicates its role
1993 in the pivot table, e.g.@: ``cell'', ``cellFormat'',
1994 ``dimension0categories'', ``dimension0group0'', followed by the
1995 numeric data, one double per datum.  A double with the maximum
1996 negative double @code{-DBL_MAX} represents the system-missing value
1997 SYSMIS.
1998
1999 @node SPV Legacy Member String Data
2000 @subsection String Data
2001
2002 @example
2003 Strings => SourceMaps[maps] Labels
2004
2005 SourceMaps => int32[n-maps] SourceMap*[n-maps]
2006
2007 SourceMap => string[source-name] int32[n-variables] VariableMap*[n-variables]
2008 VariableMap => string[variable-name] int32[n-data] DatumMap*[n-data]
2009 DatumMap => int32[value-idx] int32[label-idx]
2010
2011 Labels => int32[n-labels] Label*[n-labels]
2012 Label => int32[frequency] string[label]
2013 @end example
2014
2015 Each variable may include a mix of numeric and string data values.  If
2016 a legacy binary member contains any string data, Strings is present;
2017 otherwise, it ends just after the last Data element.
2018
2019 The string data overlays the numeric data.  When a variable includes
2020 any string data, its Variable represents the string values with a
2021 SYSMIS or NaN placeholder.  (Not all such values need be
2022 placeholders.)
2023
2024 Each SourceMap provides a mapping between SYSMIS or NaN values in source
2025 @code{source-name} and the string data that they represent.
2026 @code{n-variables} is the number of variables in the source that
2027 include string data.  More precisely, it is the 1-based index of the
2028 last variable in the source that includes any string data; thus, it
2029 would be 4 if there are 5 variables and only the fourth one includes
2030 string data.
2031
2032 A VariableMap repeats its variable's name, but variables are always
2033 present in the same order as the source, starting from the first
2034 variable, without skipping any even if they have no string values.
2035 Each VariableMap contains DatumMap nonterminals, each of which maps
2036 from a 0-based index within its variable's data to a 0-based label
2037 index, e.g.@: pair @code{value-idx} = 2, @code{label-idx} = 3, means
2038 that the third data value (which must be SYSMIS or NaN) is to be
2039 replaced by the string of the fourth Label.
2040
2041 The labels themselves follow the pairs.  The valuable part of each
2042 label is the string @code{label}.  Each label also includes a
2043 @code{frequency} that reports the number of DatumMaps that reference
2044 it (although this is not useful).
2045
2046 @node SPV Legacy Detail Member XML Format
2047 @section Legacy Detail Member XML Format
2048
2049 The design of the detail XML format is not what one would end up with
2050 for describing pivot tables.  This is because it is a special case
2051 of a much more general format (``visualization XML'' or ``VizML'')
2052 that can describe a wide range of visualizations.  Most of this
2053 generality is overkill for tables, and so we end up with a funny
2054 subset of a general-purpose format.
2055
2056 An XML Schema for VizML is available, distributed with SPSS binaries,
2057 under a nonfree license.  It contains documentation that is
2058 occasionally helpful.
2059
2060 This section describes the detail XML format using the same notation
2061 already used for the structure XML format (@pxref{SPV Structure Member
2062 Format}).  See @file{src/output/spv/detail-xml.grammar} in the PSPP
2063 source tree for the full grammar that it uses for parsing.
2064
2065 The important elements of the detail XML format are:
2066
2067 @itemize @bullet
2068 @item
2069 Variables.  @xref{SPV Detail Variable Elements}.
2070
2071 @item
2072 Assignment of variables to axes.  A variable can appear as columns, or
2073 rows, or layers.  The @code{faceting} element and its sub-elements
2074 describe this assignment.
2075
2076 @item
2077 Styles and other annotations.
2078 @end itemize
2079
2080 This description is not detailed enough to write legacy tables.
2081 Instead, write tables in the light binary format.
2082
2083 @menu
2084 * SPV Detail visualization Element::
2085 * SPV Detail Variable Elements::
2086 * SPV Detail extension Element::
2087 * SPV Detail graph Element::
2088 * SPV Detail location Element::
2089 * SPV Detail faceting Element::
2090 * SPV Detail facetLayout Element::
2091 * SPV Detail label Element::
2092 * SPV Detail setCellProperties Element::
2093 * SPV Detail setFormat Element::
2094 * SPV Detail interval Element::
2095 * SPV Detail style Element::
2096 * SPV Detail labelFrame Element::
2097 * SPV Detail Legacy Properties::
2098 @end menu
2099
2100 @node SPV Detail visualization Element
2101 @subsection The @code{visualization} Element
2102
2103 @example
2104 visualization
2105    :creator
2106    :date
2107    :lang
2108    :name
2109    :style[style_ref]=ref style
2110    :type
2111    :version
2112    :schemaLocation?
2113 => visualization_extension?
2114    userSource
2115    (sourceVariable | derivedVariable)+
2116    categoricalDomain?
2117    graph
2118    labelFrame[lf1]*
2119    container?
2120    labelFrame[lf2]*
2121    style+
2122    layerController?
2123
2124 extension[visualization_extension]
2125    :numRows=int?
2126    :showGridline=bool?
2127    :minWidthSet=(true)?
2128    :maxWidthSet=(true)?
2129 => EMPTY
2130
2131 userSource :missing=(listwise | pairwise)? => EMPTY
2132
2133 categoricalDomain => variableReference simpleSort
2134
2135 simpleSort :method[sort_method]=(custom) => categoryOrder
2136
2137 container :style=ref style => container_extension? location+ labelFrame*
2138
2139 extension[container_extension] :combinedFootnotes=(true) => EMPTY
2140
2141 layerController
2142    :source=(tableData)
2143    :target=ref label?
2144 => EMPTY
2145 @end example
2146
2147 The @code{visualization} element is the root of detail XML member.  It
2148 has the following attributes:
2149
2150 @defvr {Attribute} creator
2151 The version of the software that created this SPV file, as a string of
2152 the form @code{xxyyzz}, which represents software version xx.yy.zz,
2153 e.g.@: @code{160001} is version 16.0.1.  The corpus includes major
2154 versions 16 through 19.
2155 @end defvr
2156
2157 @defvr {Attribute} date
2158 The date on the which the file was created, as a string of the form
2159 @code{YYYY-MM-DD}.
2160 @end defvr
2161
2162 @defvr {Attribute} lang
2163 The locale used for output, in Windows format, which is similar to the
2164 format used in Unix with the underscore replaced by a hyphen, e.g.@:
2165 @code{en-US}, @code{en-GB}, @code{el-GR}, @code{sr-Cryl-RS}.
2166 @end defvr
2167
2168 @defvr {Attribute} name
2169 The title of the pivot table, localized to the output language.
2170 @end defvr
2171
2172 @defvr {Attribute} style
2173 The base style for the pivot table.  In every example in the corpus,
2174 the @code{style} element has no attributes other than @code{id}.
2175 @end defvr
2176
2177 @defvr {Attribute} type
2178 A floating-point number.  The meaning is unknown.
2179 @end defvr
2180
2181 @defvr {Attribute} version
2182 The visualization schema version number.  In the corpus, the value is
2183 one of 2.4, 2.5, 2.7, and 2.8.
2184 @end defvr
2185
2186 The @code{userSource} element has no visible effect.
2187
2188 The @code{extension} element as a child of @code{visualization} has
2189 the following attributes.
2190
2191 @defvr {Attribute} numRows
2192 An integer that presumably defines the number of rows in the displayed
2193 pivot table.
2194 @end defvr
2195
2196 @defvr {Attribute} showGridline
2197 Always set to @code{false} in the corpus.
2198 @end defvr
2199
2200 @defvr {Attribute} minWidthSet
2201 @defvrx {Attribute} maxWidthSet
2202 Always set to @code{true} in the corpus.
2203 @end defvr
2204
2205 The @code{extension} element as a child of @code{container} has the
2206 following attribute
2207
2208 @defvr {Attribute} combinedFootnotes
2209 Meaning unknown.
2210 @end defvr
2211
2212 The @code{categoricalDomain} and @code{simpleSort} elements have no
2213 visible effect.
2214
2215 The @code{layerController} element has no visible effect.
2216
2217 @node SPV Detail Variable Elements
2218 @subsection Variable Elements
2219
2220 A ``variable'' in detail XML is a 1-dimensional array of data.  Each
2221 element of the array may, independently, have string or numeric
2222 content.  All of the variables in a given detail XML member either
2223 have the same number of elements or have zero elements.
2224
2225 Two different elements define variables and their content:
2226
2227 @table @code
2228 @item sourceVariable
2229 These variables' data comes from the associated @code{tableData.bin}
2230 member.
2231
2232 @item derivedVariable
2233 These variables are defined in terms of a mapping function from a
2234 source variable, or they are empty.
2235 @end table
2236
2237 A variable named @code{cell} always exists.  This variable holds the
2238 data displayed in the table.
2239
2240 Variables in detail XML roughly correspond to the dimensions in a
2241 light detail member.  Each dimension has the following variables with
2242 stylized names, where @var{n} is a number for the dimension starting
2243 from 0:
2244
2245 @table @code
2246 @item dimension@var{n}categories
2247 The dimension's leaf categories (@pxref{SPV Light Member Categories}).
2248
2249 @item dimension@var{n}group0
2250 Present only if the dimension's categories are grouped, this variable
2251 holds the group labels for the categories.  Grouping is inferred
2252 through adjacent identical labels.  Categories that are not part of a
2253 group have empty-string data in this variable.
2254
2255 @item dimension@var{n}group1
2256 Present only if the first-level groups are further grouped, this
2257 variable holds the labels for the second-level groups.  There can be
2258 additional variables with further levels of grouping.
2259
2260 @item dimension@var{n}
2261 An empty variable.
2262 @end table
2263
2264 Determining the data for a (non-empty) variable is a multi-step
2265 process:
2266
2267 @enumerate
2268 @item
2269 Draw initial data from its source, for a @code{sourceVariable}, or
2270 from another named variable, for a @code{derivedVariable}.
2271
2272 @item
2273 Apply mappings from @code{valueMapEntry} elements within the
2274 @code{derivedVariable} element, if any.
2275
2276 @item
2277 Apply mappings from @code{relabel} elements within a @code{format} or
2278 @code{stringFormat} element in the @code{sourceVariable} or
2279 @code{derivedVariable} element, if any.
2280
2281 @item
2282 If the variable is a @code{sourceVariable} with a @code{labelVariable}
2283 attribute, and there were no mappings to apply in previous steps, then
2284 replace each element of the variable by the corresponding value in the
2285 label variable.
2286 @end enumerate
2287
2288 A single variable's data can be modified in two of the steps, if both
2289 @code{valueMapEntry} and @code{relabel} are used.  The following
2290 example from the corpus maps several integers to 2, then maps 2 in
2291 turn to the string ``Input'':
2292
2293 @example
2294 <derivedVariable categorical="true" dependsOn="dimension0categories"
2295                  id="dimension0group0map" value="map(dimension0group0)">
2296   <stringFormat>
2297     <relabel from="2" to="Input"/>
2298     <relabel from="10" to="Missing Value Handling"/>
2299     <relabel from="14" to="Resources"/>
2300     <relabel from="0" to=""/>
2301     <relabel from="1" to=""/>
2302     <relabel from="13" to=""/>
2303   </stringFormat>
2304   <valueMapEntry from="2;3;5;6;7;8;9" to="2"/>
2305   <valueMapEntry from="10;11" to="10"/>
2306   <valueMapEntry from="14;15" to="14"/>
2307   <valueMapEntry from="0" to="0"/>
2308   <valueMapEntry from="1" to="1"/>
2309   <valueMapEntry from="13" to="13"/>
2310 </derivedVariable>
2311 @end example
2312
2313 @menu
2314 * SPV Detail sourceVariable Element::
2315 * SPV Detail derivedVariable Element::
2316 * SPV Detail valueMapEntry Element::
2317 @end menu
2318
2319 @node SPV Detail sourceVariable Element
2320 @subsubsection The @code{sourceVariable} Element
2321
2322 @example
2323 sourceVariable
2324    :id
2325    :categorical=(true)
2326    :source
2327    :domain=ref categoricalDomain?
2328    :sourceName
2329    :dependsOn=ref sourceVariable?
2330    :label?
2331    :labelVariable=ref sourceVariable?
2332 => variable_extension* (format | stringFormat)?
2333 @end example
2334
2335 This element defines a variable whose data comes from the
2336 @file{tableData.bin} member that corresponds to this @file{.xml}.
2337
2338 This element has the following attributes.
2339
2340 @defvr {Attribute} id
2341 An @code{id} is always present because this element exists to be
2342 referenced from other elements.
2343 @end defvr
2344
2345 @defvr {Attribute} categorical
2346 Always set to @code{true}.
2347 @end defvr
2348
2349 @defvr {Attribute} source
2350 Always set to @code{tableData}, the @code{source-name} in the
2351 corresponding @file{tableData.bin} member (@pxref{SPV Legacy Member
2352 Metadata}).
2353 @end defvr
2354
2355 @defvr {Attribute} sourceName
2356 The name of a variable within the source, corresponding to the
2357 @code{variable-name} in the @file{tableData.bin} member (@pxref{SPV
2358 Legacy Member Numeric Data}).
2359 @end defvr
2360
2361 @defvr {Attribute} label
2362 The variable label, if any.
2363 @end defvr
2364
2365 @defvr {Attribute} labelVariable
2366 The @code{variable-name} of a variable whose string values correspond
2367 one-to-one with the values of this variable and are suitable for use
2368 as value labels.
2369 @end defvr
2370
2371 @defvr {Attribute} dependsOn
2372 This attribute doesn't affect the display of a table.
2373 @end defvr
2374
2375 @node SPV Detail derivedVariable Element
2376 @subsubsection The @code{derivedVariable} Element
2377
2378 @example
2379 derivedVariable
2380    :id
2381    :categorical=(true)
2382    :value
2383    :dependsOn=ref sourceVariable?
2384 => variable_extension* (format | stringFormat)? valueMapEntry*
2385 @end example
2386
2387 Like @code{sourceVariable}, this element defines a variable whose
2388 values can be used elsewhere in the visualization.  Instead of being
2389 read from a data source, the variable's data are defined by a
2390 mathematical expression.
2391
2392 This element has the following attributes.
2393
2394 @defvr {Attribute} id
2395 An @code{id} is always present because this element exists to be
2396 referenced from other elements.
2397 @end defvr
2398
2399 @defvr {Attribute} categorical
2400 Always set to @code{true}.
2401 @end defvr
2402
2403 @defvr {Attribute} value
2404 An expression that defines the variable's value.  In theory this could
2405 be an arbitrary expression in terms of constants, functions, and other
2406 variables, e.g.@: @math{(@var{var1} + @var{var2}) / 2}.  In practice,
2407 the corpus contains only the following forms of expressions:
2408
2409 @table @code
2410 @item constant(0)
2411 @itemx constant(@var{variable})
2412 All zeros.  The reason why a variable is sometimes named is unknown.
2413 Sometimes the ``variable name'' has spaces in it.
2414
2415 @item map(@var{variable})
2416 Transforms the values in the named @var{variable} using the
2417 @code{valueMapEntry}s contained within the element.
2418 @end table
2419 @end defvr
2420
2421 @defvr {Attribute} dependsOn
2422 This attribute doesn't affect the display of a table.
2423 @end defvr
2424
2425 @node SPV Detail valueMapEntry Element
2426 @subsubsection The @code{valueMapEntry} Element
2427
2428 @example
2429 valueMapEntry :from :to => EMPTY
2430 @end example
2431
2432 A @code{valueMapEntry} element defines a mapping from one or more
2433 values of a source expression to a target value.  (In the corpus, the
2434 source expression is always just the name of a variable.)  Each target
2435 value requires a separate @code{valueMapEntry}.  If multiple source
2436 values map to the same target value, they can be combined or separate.
2437
2438 In the corpus, all of the source and target values are integers.
2439
2440 @code{valueMapEntry} has the following attributes.
2441
2442 @defvr {Attribute} from
2443 A source value, or multiple source values separated by semicolons,
2444 e.g.@: @code{0} or @code{13;14;15;16}.
2445 @end defvr
2446
2447 @defvr {Attribute} to
2448 The target value, e.g.@: @code{0}.
2449 @end defvr
2450
2451 @node SPV Detail extension Element
2452 @subsection The @code{extension} Element
2453
2454 This is a general-purpose ``extension'' element.  Readers that don't
2455 understand a given extension should be able to safely ignore it.  The
2456 attributes on this element, and their meanings, vary based on the
2457 context.  Each known usage is described separately below.  The current
2458 extensions use attributes exclusively, without any nested elements.
2459
2460 @subsubheading @code{container} Parent Element
2461
2462 @example
2463 extension[container_extension] :combinedFootnotes=(true) => EMPTY
2464 @end example
2465
2466 With @code{container} as its parent element, @code{extension} has the
2467 following attributes.
2468
2469 @defvr {Attribute} combinedFootnotes
2470 Always set to @code{true} in the corpus.
2471 @end defvr
2472
2473 @subsubheading @code{sourceVariable} and @code{derivedVariable} Parent Element
2474
2475 @example
2476 extension[variable_extension] :from :helpId => EMPTY
2477 @end example
2478
2479 With @code{sourceVariable} or @code{derivedVariable} as its parent
2480 element, @code{extension} has the following attributes.  A given
2481 parent element often contains several @code{extension} elements that
2482 specify the meaning of the source data's variables or sources, e.g.@:
2483
2484 @example
2485 <extension from="0" helpId="corrected_model"/>
2486 <extension from="3" helpId="error"/>
2487 <extension from="4" helpId="total_9"/>
2488 <extension from="5" helpId="corrected_total"/>
2489 @end example
2490
2491 More commonly they are less helpful, e.g.@:
2492
2493 @example
2494 <extension from="0" helpId="notes"/>
2495 <extension from="1" helpId="notes"/>
2496 <extension from="2" helpId="notes"/>
2497 <extension from="5" helpId="notes"/>
2498 <extension from="6" helpId="notes"/>
2499 <extension from="7" helpId="notes"/>
2500 <extension from="8" helpId="notes"/>
2501 <extension from="12" helpId="notes"/>
2502 <extension from="13" helpId="no_help"/>
2503 <extension from="14" helpId="notes"/>
2504 @end example
2505
2506 @defvr {Attribute} from
2507 An integer or a name like ``dimension0''.
2508 @end defvr
2509
2510 @defvr {Attribute} helpId
2511 An identifier.
2512 @end defvr
2513
2514 @node SPV Detail graph Element
2515 @subsection The @code{graph} Element
2516
2517 @example
2518 graph
2519    :cellStyle=ref style
2520    :style=ref style
2521 => location+ coordinates faceting facetLayout interval
2522
2523 coordinates => EMPTY
2524 @end example
2525
2526 @code{graph} has the following attributes.
2527
2528 @defvr {Attribute} cellStyle
2529 @defvrx {Attribute} style
2530 Each of these is the @code{id} of a @code{style} element (@pxref{SPV
2531 Detail style Element}).  The former is the default style for
2532 individual cells, the latter for the entire table.
2533 @end defvr
2534
2535 @node SPV Detail location Element
2536 @subsection The @code{location} Element
2537
2538 @example
2539 location
2540    :part=(height | width | top | bottom | left | right)
2541    :method=(sizeToContent | attach | fixed | same)
2542    :min=dimension?
2543    :max=dimension?
2544    :target=ref (labelFrame | graph | container)?
2545    :value?
2546 => EMPTY
2547 @end example
2548
2549 Each instance of this element specifies where some part of the table
2550 frame is located.  All the examples in the corpus have four instances
2551 of this element, one for each of the parts @code{height},
2552 @code{width}, @code{left}, and @code{top}.  Some examples in the
2553 corpus add a fifth for part @code{bottom}, even though it is not clear
2554 how all of @code{top}, @code{bottom}, and @code{height} can be honored
2555 at the same time.  In any case, @code{location} seems to have little
2556 importance in representing tables; a reader can safely ignore it.
2557
2558 @defvr {Attribute} part
2559 The part of the table being located.
2560 @end defvr
2561
2562 @defvr {Attribute} method
2563 How the location is determined:
2564
2565 @table @code
2566 @item sizeToContent
2567 Based on the natural size of the table.  Observed only for
2568 parts @code{height} and @code{width}.
2569
2570 @item attach
2571 Based on the location specified in @code{target}.  Observed only for
2572 parts @code{top} and @code{bottom}.
2573
2574 @item fixed
2575 Using the value in @code{value}.  Observed only for parts @code{top},
2576 @code{bottom}, and @code{left}.
2577
2578 @item same
2579 Same as the specified @code{target}.  Observed only for part
2580 @code{left}.
2581 @end table
2582 @end defvr
2583
2584 @defvr {Attribute} min
2585 Minimum size.  Only observed with value @code{100pt}.  Only observed
2586 for part @code{width}.
2587 @end defvr
2588
2589 @defvr {Dependent} target
2590 Required when @code{method} is @code{attach} or @code{same}, not
2591 observed otherwise.  This identifies an element to attach to.
2592 Observed with the ID of @code{title}, @code{footnote}, @code{graph},
2593 and other elements.
2594 @end defvr
2595
2596 @defvr {Dependent} value
2597 Required when @code{method} is @code{fixed}, not observed otherwise.
2598 Observed values are @code{0%}, @code{0px}, @code{1px}, and @code{3px}
2599 on parts @code{top} and @code{left}, and @code{100%} on part
2600 @code{bottom}.
2601 @end defvr
2602
2603 @node SPV Detail faceting Element
2604 @subsection The @code{faceting} Element
2605
2606 @example
2607 faceting => layer[layers1]* cross layer[layers2]*
2608
2609 cross => (unity | nest) (unity | nest)
2610
2611 unity => EMPTY
2612
2613 nest => variableReference[vars]+
2614
2615 variableReference :ref=ref (sourceVariable | derivedVariable) => EMPTY
2616
2617 layer
2618    :variable=ref (sourceVariable | derivedVariable)
2619    :value
2620    :visible=bool?
2621    :method[layer_method]=(nest)?
2622    :titleVisible=bool?
2623 => EMPTY
2624 @end example
2625
2626 The @code{faceting} element describes the row, column, and layer
2627 structure of the table.  Its @code{cross} child determines the row and
2628 column structure, and each @code{layer} child (if any) represents a
2629 layer.  Layers may appear before or after @code{cross}.
2630
2631 The @code{cross} element describes the row and column structure of the
2632 table.  It has exactly two children, the first of which describes the
2633 table's columns and the second the table's rows.  Each child is a
2634 @code{nest} element if the table has any dimensions along the axis in
2635 question, otherwise a @code{unity} element.
2636
2637 A @code{nest} element contains of one or more dimensions listed from
2638 innermost to outermost, each represented by @code{variableReference}
2639 child elements.  Each variable in a dimension is listed in order.
2640 @xref{SPV Detail Variable Elements}, for information on the variables
2641 that comprise a dimension.
2642
2643 A @code{nest} can contain a single dimension, e.g.:
2644
2645 @example
2646 <nest>
2647   <variableReference ref="dimension0categories"/>
2648   <variableReference ref="dimension0group0"/>
2649   <variableReference ref="dimension0"/>
2650 </nest>
2651 @end example
2652
2653 @noindent
2654 A @code{nest} can contain multiple dimensions, e.g.:
2655
2656 @example
2657 <nest>
2658   <variableReference ref="dimension1categories"/>
2659   <variableReference ref="dimension1group0"/>
2660   <variableReference ref="dimension1"/>
2661   <variableReference ref="dimension0categories"/>
2662   <variableReference ref="dimension0"/>
2663 </nest>
2664 @end example
2665
2666 A @code{nest} may have no dimensions, in which case it still has one
2667 @code{variableReference} child, which references a
2668 @code{derivedVariable} whose @code{value} attribute is
2669 @code{constant(0)}.  In the corpus, such a @code{derivedVariable} has
2670 @code{row} or @code{column}, respectively, as its @code{id}.  This is
2671 equivalent to using a @code{unity} element in place of @code{nest}.
2672
2673 A @code{variableReference} element refers to a variable through its
2674 @code{ref} attribute.
2675
2676 Each @code{layer} element represents a dimension, e.g.:
2677
2678 @example
2679 <layer value="0" variable="dimension0categories" visible="true"/>
2680 <layer value="dimension0" variable="dimension0" visible="false"/>
2681 @end example
2682
2683 @noindent
2684 @code{layer} has the following attributes.
2685
2686 @defvr {Attribute} variable
2687 Refers to a @code{sourceVariable} or @code{derivedVariable} element.
2688 @end defvr
2689
2690 @defvr {Attribute} value
2691 The value to select.  For a category variable, this is always
2692 @code{0}; for a data variable, it is the same as the @code{variable}
2693 attribute.
2694 @end defvr
2695
2696 @defvr {Attribute} visible
2697 Whether the layer is visible.  Generally, category layers are visible
2698 and data layers are not, but sometimes this attribute is omitted.
2699 @end defvr
2700
2701 @defvr {Attribute} method
2702 When present, this is always @code{nest}.
2703 @end defvr
2704
2705 @node SPV Detail facetLayout Element
2706 @subsection The @code{facetLayout} Element
2707
2708 @example
2709 facetLayout => tableLayout setCellProperties[scp1]*
2710                facetLevel+ setCellProperties[scp2]*
2711
2712 tableLayout
2713    :verticalTitlesInCorner=bool
2714    :style=ref style?
2715    :fitCells=(ticks both)?
2716 => EMPTY
2717 @end example
2718
2719 The @code{facetLayout} element and its descendants control styling for
2720 the table.
2721
2722 Its @code{tableLayout} child has the following attributes
2723
2724 @defvr {Attribute} verticalTitlesInCorner
2725 If true, in the absence of corner text, row headings will be displayed
2726 in the corner.
2727 @end defvr
2728
2729 @defvr {Attribute} style
2730 Refers to a @code{style} element.
2731 @end defvr
2732
2733 @defvr {Attribute} fitCells
2734 Meaning unknown.
2735 @end defvr
2736
2737 @subsubheading The @code{facetLevel} Element
2738
2739 @example
2740 facetLevel :level=int :gap=dimension? => axis
2741
2742 axis :style=ref style => label? majorTicks
2743
2744 majorTicks
2745    :labelAngle=int
2746    :length=dimension
2747    :style=ref style
2748    :tickFrameStyle=ref style
2749    :labelFrequency=int?
2750    :stagger=bool?
2751 => gridline?
2752
2753 gridline
2754    :style=ref style
2755    :zOrder=int
2756 => EMPTY
2757 @end example
2758
2759 Each @code{facetLevel} describes a @code{variableReference} or
2760 @code{layer}, and a table has one @code{facetLevel} element for
2761 each such element.  For example, an SPV detail member that contains
2762 four @code{variableReference} elements and two @code{layer} elements
2763 will contain six @code{facetLevel} elements.
2764
2765 In the corpus, @code{facetLevel} elements and the elements that they
2766 describe are always in the same order.  The correspondence may also be
2767 observed in two other ways.  First, one may use the @code{level}
2768 attribute, described below.  Second, in the corpus, a
2769 @code{facetLevel} always has an @code{id} that is the same as the
2770 @code{id} of the element it describes with @code{_facetLevel}
2771 appended.  One should not formally rely on this, of course, but it is
2772 usefully indicative.
2773
2774 @defvr {Attribute} level
2775 A 1-based index into the @code{variableReference} and @code{layer}
2776 elements, e.g.@: a @code{facetLayout} with a @code{level} of 1
2777 describes the first @code{variableReference} in the SPV detail member,
2778 and in a member with four @code{variableReference} elements, a
2779 @code{facetLayout} with a @code{level} of 5 describes the first
2780 @code{layer} in the member.
2781 @end defvr
2782
2783 @defvr {Attribute} gap
2784 Always observed as @code{0pt}.
2785 @end defvr
2786
2787 Each @code{facetLevel} contains an @code{axis}, which in turn may
2788 contain a @code{label} for the @code{facetLevel} (@pxref{SPV Detail
2789 label Element}) and does contain a @code{majorTicks} element.
2790
2791 @defvr {Attribute} labelAngle
2792 Normally 0.  The value -90 causes inner column or outer row labels to
2793 be rotated vertically.
2794 @end defvr
2795
2796 @defvr {Attribute} style
2797 @defvrx {Attribute} tickFrameStyle
2798 Each refers to a @code{style} element.  @code{style} is the style of
2799 the tick labels, @code{tickFrameStyle} the style for the frames around
2800 the labels.
2801 @end defvr
2802
2803 @node SPV Detail label Element
2804 @subsection The @code{label} Element
2805
2806 @example
2807 label
2808    :style=ref style
2809    :textFrameStyle=ref style?
2810    :purpose=(title | subTitle | subSubTitle | layer | footnote)?
2811 => text+ | descriptionGroup
2812
2813 descriptionGroup
2814    :target=ref faceting
2815    :separator?
2816 => (description | text)+
2817
2818 description :name=(variable | value) => EMPTY
2819
2820 text
2821    :usesReference=int?
2822    :definesReference=int?
2823    :position=(subscript | superscript)?
2824    :style=ref style
2825 => TEXT
2826 @end example
2827
2828 This element represents a label on some aspect of the table.
2829
2830 @defvr {Attribute} style
2831 @defvrx {Attribute} textFrameStyle
2832 Each of these refers to a @code{style} element.  @code{style} is the
2833 style of the label text, @code{textFrameStyle} the style for the frame
2834 around the label.
2835 @end defvr
2836
2837 @defvr {Attribute} purpose
2838 The kind of entity being labeled.
2839 @end defvr
2840
2841 A @code{descriptionGroup} concatenates one or more elements to form a
2842 label.  Each element can be a @code{text} element, which contains
2843 literal text, or a @code{description} element that substitutes a value
2844 or a variable name.
2845
2846 @defvr {Attribute} target
2847 The @code{id} of an element being described.  In the corpus, this is
2848 always @code{faceting}.
2849 @end defvr
2850
2851 @defvr {Attribute} separator
2852 A string to separate the description of multiple groups, if the
2853 @code{target} has more than one.  In the corpus, this is always a
2854 new-line.
2855 @end defvr
2856
2857 Typical contents for a @code{descriptionGroup} are a value by itself:
2858 @example
2859 <description name="value"/>
2860 @end example
2861 @noindent or a variable and its value, separated by a colon:
2862 @example
2863 <description name="variable"/><text>:</text><description name="value"/>
2864 @end example
2865
2866 A @code{description} is like a macro that expands to some property of
2867 the target of its parent @code{descriptionGroup}.  The @code{name}
2868 attribute specifies the property.
2869
2870 @node SPV Detail setCellProperties Element
2871 @subsection The @code{setCellProperties} Element
2872
2873 @example
2874 setCellProperties
2875    :applyToConverse=bool?
2876 => (setStyle | setFrameStyle | setFormat | setMetaData)* union[union_]?
2877 @end example
2878
2879 The @code{setCellProperties} element sets style properties of cells or
2880 row or column labels.
2881
2882 Interpreting @code{setCellProperties} requires answering two
2883 questions: which cells or labels to style, and what styles to use.
2884
2885 @subsubheading Which Cells?
2886
2887 @example
2888 union => intersect+
2889
2890 intersect => where+ | intersectWhere | alternating | EMPTY
2891
2892 where
2893    :variable=ref (sourceVariable | derivedVariable)
2894    :include
2895 => EMPTY
2896
2897 intersectWhere
2898    :variable=ref (sourceVariable | derivedVariable)
2899    :variable2=ref (sourceVariable | derivedVariable)
2900 => EMPTY
2901
2902 alternating => EMPTY
2903 @end example
2904
2905 When @code{union} is present with @code{intersect} children, each of
2906 those children specifies a group of cells that should be styled, and
2907 the total group is all those cells taken together.  When @code{union}
2908 is absent, every cell is styled.  One attribute on
2909 @code{setCellProperties} affects the choice of cells:
2910
2911 @defvr {Attribute} applyToConverse
2912 If true, this inverts the meaning of the cell selection: the selected
2913 cells are the ones @emph{not} designated.  This is confusing, given
2914 the additional restrictions of @code{union}, but in the corpus
2915 @code{applyToConverse} is never present along with @code{union}.
2916 @end defvr
2917
2918 An @code{intersect} specifies restrictions on the cells to be matched.
2919 Each @code{where} child specifies which values of a given variable to
2920 include.  The attributes of @code{intersect} are:
2921
2922 @defvr {Attribute} variable
2923 Refers to a variable, e.g.@: @code{dimension0categories}.  Only
2924 ``categories'' variables make sense here, but other variables, e.g.@:
2925 @code{dimension0group0map}, are sometimes seen.  The reader may ignore
2926 these.
2927 @end defvr
2928
2929 @defvr {Attribute} include
2930 A value, or multiple values separated by semicolons,
2931 e.g.@: @code{0} or @code{13;14;15;16}.
2932 @end defvr
2933
2934 PSPP ignores @code{setCellProperties} when @code{intersectWhere} is
2935 present.
2936
2937 @subsubheading What Styles?
2938
2939 @example
2940 setStyle
2941    :target=ref (labeling | graph | interval | majorTicks)
2942    :style=ref style
2943 => EMPTY
2944
2945 setMetaData :target=ref graph :key :value => EMPTY
2946
2947 setFormat
2948    :target=ref (majorTicks | labeling)
2949    :reset=bool?
2950 => format | numberFormat | stringFormat+ | dateTimeFormat | elapsedTimeFormat
2951
2952 setFrameStyle
2953    :style=ref style
2954    :target=ref majorTicks
2955 => EMPTY
2956 @end example
2957
2958 The @code{set*} children of @code{setCellProperties} determine the
2959 styles to set.
2960
2961 When @code{setCellProperties} contains a @code{setFormat} whose
2962 @code{target} references a @code{labeling} element, or if it contains
2963 a @code{setStyle} that references a @code{labeling} or @code{interval}
2964 element, the @code{setCellProperties} sets the style for table cells.
2965 The format from the @code{setFormat}, if present, replaces the cells'
2966 format.  The style from the @code{setStyle} that references
2967 @code{labeling}, if present, replaces the label's font and cell
2968 styles, except that the background color is taken instead from the
2969 @code{interval}'s style, if present.
2970
2971 When @code{setCellProperties} contains a @code{setFormat} whose
2972 @code{target} references a @code{majorTicks} element, or if it
2973 contains a @code{setStyle} whose @code{target} references a
2974 @code{majorTicks}, or if it contains a @code{setFrameStyle} element,
2975 the @code{setCellProperties} sets the style for row or column labels.
2976 In this case, the @code{setCellProperties} always contains a single
2977 @code{where} element whose @code{variable} designates the variable
2978 whose labels are to be styled.  The format from the @code{setFormat},
2979 if present, replaces the labels' format.  The style from the
2980 @code{setStyle} that references @code{majorTicks}, if present,
2981 replaces the labels' font and cell styles, except that the background
2982 color is taken instead from the @code{setFrameStyle}'s style, if
2983 present.
2984
2985 When @code{setCellProperties} contains a @code{setStyle} whose
2986 @code{target} references a @code{graph} element, and one that
2987 references a @code{labeling} element, and the @code{union} element
2988 contains @code{alternating}, the @code{setCellProperties} sets the
2989 alternate foreground and background colors for the data area.  The
2990 foreground color is taken from the style referenced by the
2991 @code{setStyle} that targets the @code{graph}, the background color
2992 from the @code{setStyle} for @code{labeling}.
2993
2994 A reader may ignore a @code{setCellProperties} that only contains
2995 @code{setMetaData}, as well as @code{setMetaData} within other
2996 @code{setCellProperties}.
2997
2998 A reader may ignore a @code{setCellProperties} whose only @code{set*}
2999 child is a @code{setStyle} that targets the @code{graph} element.
3000
3001 @subsubheading The @code{setStyle} Element
3002
3003 @example
3004 setStyle
3005    :target=ref (labeling | graph | interval | majorTicks)
3006    :style=ref style
3007 => EMPTY
3008 @end example
3009
3010 This element associates a style with the target.
3011
3012 @defvr {Attribute} target
3013 The @code{id} of an element whose style is to be set.
3014 @end defvr
3015
3016 @defvr {Attribute} style
3017 The @code{id} of a @code{style} element that identifies the style to
3018 set on the target.
3019 @end defvr
3020
3021 @node SPV Detail setFormat Element
3022 @subsection The @code{setFormat} Element
3023
3024 @example
3025 setFormat
3026    :target=ref (majorTicks | labeling)
3027    :reset=bool?
3028 => format | numberFormat | stringFormat+ | dateTimeFormat | elapsedTimeFormat
3029 @end example
3030
3031 This element sets the format of the target, ``format'' in this case
3032 meaning the SPSS print format for a variable.
3033
3034 The details of this element vary depending on the schema version, as
3035 declared in the root @code{visualization} element's @code{version}
3036 attribute (@pxref{SPV Detail visualization Element}).  A reader can
3037 interpret the content without knowing the schema version.
3038
3039 The @code{setFormat} element itself has the following attributes.
3040
3041 @defvr {Attribute} target
3042 Refers to an element whose style is to be set.
3043 @end defvr
3044
3045 @defvr {Attribute} reset
3046 If this is @code{true}, this format replaces the target's previous
3047 format.  If it is @code{false}, the modifies the previous format.
3048 @end defvr
3049
3050 @menu
3051 * SPV Detail numberFormat Element::
3052 * SPV Detail stringFormat Element::
3053 * SPV Detail dateTimeFormat Element::
3054 * SPV Detail elapsedTimeFormat Element::
3055 * SPV Detail format Element::
3056 * SPV Detail affix Element::
3057 @end menu
3058
3059 @node SPV Detail numberFormat Element
3060 @subsubsection The @code{numberFormat} Element
3061
3062 @example
3063 numberFormat
3064    :minimumIntegerDigits=int?
3065    :maximumFractionDigits=int?
3066    :minimumFractionDigits=int?
3067    :useGrouping=bool?
3068    :scientific=(onlyForSmall | whenNeeded | true | false)?
3069    :small=real?
3070    :prefix?
3071    :suffix?
3072 => affix*
3073 @end example
3074
3075 Specifies a format for displaying a number.  The available options are
3076 a superset of those available from PSPP print formats.  PSPP chooses a
3077 print format type for a @code{numberFormat} as follows:
3078
3079 @enumerate
3080 @item
3081 If @code{scientific} is @code{true}, uses @code{E} format.
3082
3083 @item
3084 If @code{prefix} is @code{$}, uses @code{DOLLAR} format.
3085
3086 @item
3087 If @code{suffix} is @code{%}, uses @code{PCT} format.
3088
3089 @item
3090 If @code{useGrouping} is @code{true}, uses @code{COMMA} format.
3091
3092 @item
3093 Otherwise, uses @code{F} format.
3094 @end enumerate
3095
3096 For translating to a print format, PSPP uses
3097 @code{maximumFractionDigits} as the number of decimals, unless that
3098 attribute is missing or out of the range [0,15], in which case it uses
3099 2 decimals.
3100
3101 @defvr {Attribute} minimumIntegerDigits
3102 Minimum number of digits to display before the decimal point.  Always
3103 observed as @code{0}.
3104 @end defvr
3105
3106 @defvr {Attribute} maximumFractionDigits
3107 @defvrx {Attribute} minimumFractionDigits
3108 Maximum or minimum, respectively, number of digits to display after
3109 the decimal point.  The observed values of each attribute range from 0
3110 to 9.
3111 @end defvr
3112
3113 @defvr {Attribute} useGrouping
3114 Whether to use the grouping character to group digits in large
3115 numbers.
3116 @end defvr
3117
3118 @defvr {Attribute} scientific
3119 This attribute controls when and whether the number is formatted in
3120 scientific notation.  It takes the following values:
3121
3122 @table @code
3123 @item onlyForSmall
3124 Use scientific notation only when the number's magnitude is smaller
3125 than the value of the @code{small} attribute.
3126
3127 @item whenNeeded
3128 Use scientific notation when the number will not otherwise fit in the
3129 available space.
3130
3131 @item true
3132 Always use scientific notation.  Not observed in the corpus.
3133
3134 @item false
3135 Never use scientific notation.  A number that won't otherwise fit will
3136 be replaced by an error indication (see the @code{errorCharacter}
3137 attribute).  Not observed in the corpus.
3138 @end table
3139 @end defvr
3140
3141 @defvr {Attribute} small
3142 Only present when the @code{scientific} attribute is
3143 @code{onlyForSmall}, this is a numeric magnitude below which the
3144 number will be formatted in scientific notation.  The values @code{0}
3145 and @code{0.0001} have been observed.  The value @code{0} seems like a
3146 pathological choice, since no real number has a magnitude less than 0;
3147 perhaps in practice such a choice is equivalent to setting
3148 @code{scientific} to @code{false}.
3149 @end defvr
3150
3151 @defvr {Attribute} prefix
3152 @defvrx {Attribute} suffix
3153 Specifies a prefix or a suffix to apply to the formatted number.  Only
3154 @code{suffix} has been observed, with value @samp{%}.
3155 @end defvr
3156
3157 @node SPV Detail stringFormat Element
3158 @subsubsection The @code{stringFormat} Element
3159
3160 @example
3161 stringFormat => relabel* affix*
3162
3163 relabel :from=real :to => EMPTY
3164 @end example
3165
3166 The @code{stringFormat} element specifies how to display a string.  By
3167 default, a string is displayed verbatim, but @code{relabel} can change
3168 it.
3169
3170 The @code{relabel} element appears as a child of @code{stringFormat}
3171 (and of @code{format}, when it is used to format strings).  It
3172 specifies how to display a given value.  It is used to implement value
3173 labels and to display the system-missing value in a human-readable
3174 way.  It has the following attributes:
3175
3176 @defvr {Attribute} from
3177 The value to map.  In the corpus this is an integer or the
3178 system-missing value @code{-1.797693134862316E300}.
3179 @end defvr
3180
3181 @defvr {Attribute} to
3182 The string to display in place of the value of @code{from}.  In the
3183 corpus this is a wide variety of value labels; the system-missing
3184 value is mapped to @samp{.}.
3185 @end defvr
3186
3187 @node SPV Detail dateTimeFormat Element
3188 @subsubsection The @code{dateTimeFormat} Element
3189
3190 @example
3191 dateTimeFormat
3192    :baseFormat[dt_base_format]=(date | time | dateTime)
3193    :separatorChars?
3194    :mdyOrder=(dayMonthYear | monthDayYear | yearMonthDay)?
3195    :showYear=bool?
3196    :yearAbbreviation=bool?
3197    :showQuarter=bool?
3198    :quarterPrefix?
3199    :quarterSuffix?
3200    :showMonth=bool?
3201    :monthFormat=(long | short | number | paddedNumber)?
3202    :showWeek=bool?
3203    :weekPadding=bool?
3204    :weekSuffix?
3205    :showDayOfWeek=bool?
3206    :dayOfWeekAbbreviation=bool?
3207    :dayPadding=bool?
3208    :dayOfMonthPadding=bool?
3209    :hourPadding=bool?
3210    :minutePadding=bool?
3211    :secondPadding=bool?
3212    :showDay=bool?
3213    :showHour=bool?
3214    :showMinute=bool?
3215    :showSecond=bool?
3216    :showMillis=bool?
3217    :dayType=(month | year)?
3218    :hourFormat=(AMPM | AS_24 | AS_12)?
3219 => affix*
3220 @end example
3221
3222 This element appears only in schema version 2.5 and earlier
3223 (@pxref{SPV Detail visualization Element}).
3224
3225 Data to be formatted in date formats is stored as strings in legacy
3226 data, in the format @code{yyyy-mm-ddTHH:MM:SS.SSS} and must be parsed
3227 and reformatted by the reader.
3228
3229 The following attribute is required.
3230
3231 @defvr {Attribute} baseFormat
3232 Specifies whether a date and time are both to be displayed, or just
3233 one of them.
3234 @end defvr
3235
3236 Many of the attributes' meanings are obvious.  The following seem to
3237 be worth documenting.
3238
3239 @defvr {Attribute} separatorChars
3240 Exactly four characters.  In order, these are used for: decimal point,
3241 grouping, date separator, time separator.  Always @samp{.,-:}.
3242 @end defvr
3243
3244 @defvr {Attribute} mdyOrder
3245 Within a date, the order of the days, months, and years.
3246 @code{dayMonthYear} is the only observed value, but one would expect
3247 that @code{monthDayYear} and @code{yearMonthDay} to be reasonable as
3248 well.
3249 @end defvr
3250
3251 @defvr {Attribute} showYear
3252 @defvrx {Attribute} yearAbbreviation
3253 Whether to include the year and, if so, whether the year should be
3254 shown abbreviated, that is, with only 2 digits.  Each is @code{true}
3255 or @code{false}; only values of @code{true} and @code{false},
3256 respectively, have been observed.
3257 @end defvr
3258
3259 @defvr {Attribute} showMonth
3260 @defvrx {Attribute} monthFormat
3261 Whether to include the month (@code{true} or @code{false}) and, if so,
3262 how to format it.  @code{monthFormat} is one of the following:
3263
3264 @table @code
3265 @item long
3266 The full name of the month, e.g.@: in an English locale,
3267 @code{September}.
3268
3269 @item short
3270 The abbreviated name of the month, e.g.@: in an English locale,
3271 @code{Sep}.
3272
3273 @item number
3274 The number representing the month, e.g.@: 9 for September.
3275
3276 @item paddedNumber
3277 A two-digit number representing the month, e.g.@: 09 for September.
3278 @end table
3279
3280 Only values of @code{true} and @code{short}, respectively, have been
3281 observed.
3282 @end defvr
3283
3284 @defvr {Attribute} dayType
3285 This attribute is always @code{month} in the corpus, specifying that
3286 the day of the month is to be displayed; a value of @code{year} is
3287 supposed to indicate that the day of the year, where 1 is January 1,
3288 is to be displayed instead.
3289 @end defvr
3290
3291 @defvr {Attribute} hourFormat
3292 @code{hourFormat}, if present, is one of:
3293
3294 @table @code
3295 @item AMPM
3296 The time is displayed with an @code{am} or @code{pm} suffix, e.g.@:
3297 @code{10:15pm}.
3298
3299 @item AS_24
3300 The time is displayed in a 24-hour format, e.g.@: @code{22:15}.
3301
3302 This is the only value observed in the corpus.
3303
3304 @item AS_12
3305 The time is displayed in a 12-hour format, without distinguishing
3306 morning or evening, e.g.@: @code{10;15}.
3307 @end table
3308
3309 @code{hourFormat} is sometimes present for @code{elapsedTime} formats,
3310 which is confusing since a time duration does not have a concept of AM
3311 or PM.  This might indicate a bug in the code that generated the XML
3312 in the corpus, or it might indicate that @code{elapsedTime} is
3313 sometimes used to format a time of day.
3314 @end defvr
3315
3316 For a @code{baseFormat} of @code{date}, PSPP chooses a print format
3317 type based on the following rules:
3318
3319 @enumerate
3320 @item
3321 If @code{showQuarter} is true: @code{QYR}.
3322
3323 @item
3324 Otherwise, if @code{showWeek} is true: @code{WKYR}.
3325
3326 @item
3327 Otherwise, if @code{mdyOrder} is @code{dayMonthYear}:
3328
3329 @enumerate a
3330 @item
3331 If @code{monthFormat} is @code{number} or @code{paddedNumber}: @code{EDATE}.
3332
3333 @item
3334 Otherwise: @code{DATE}.
3335 @end enumerate
3336
3337 @item
3338 Otherwise, if @code{mdyOrder} is @code{yearMonthDay}: @code{SDATE}.
3339
3340 @item
3341 Otherwise, @code{ADATE}.
3342 @end enumerate
3343
3344 For a @code{baseFormat} of @code{dateTime}, PSPP uses @code{YMDHMS} if
3345 @code{mdyOrder} is @code{yearMonthDay} and @code{DATETIME} otherwise.
3346 For a @code{baseFormat} of @code{time}, PSPP uses @code{DTIME} if
3347 @code{showDay} is true, otherwise @code{TIME} if @code{showHour} is
3348 true, otherwise @code{MTIME}.
3349
3350 For a @code{baseFormat} of @code{date}, the chosen width is the
3351 minimum for the format type, adding 2 if @code{yearAbbreviation} is
3352 false or omitted.  For other base formats, the chosen width is the
3353 minimum for its type, plus 3 if @code{showSecond} is true, plus 4 more
3354 if @code{showMillis} is also true.  Decimals are 0 by default, or 3
3355 if @code{showMillis} is true.
3356
3357 @node SPV Detail elapsedTimeFormat Element
3358 @subsubsection The @code{elapsedTimeFormat} Element
3359
3360 @example
3361 elapsedTimeFormat
3362    :baseFormat[dt_base_format]=(date | time | dateTime)
3363    :dayPadding=bool?
3364    :hourPadding=bool?
3365    :minutePadding=bool?
3366    :secondPadding=bool?
3367    :showYear=bool?
3368    :showDay=bool?
3369    :showHour=bool?
3370    :showMinute=bool?
3371    :showSecond=bool?
3372    :showMillis=bool?
3373 => affix*
3374 @end example
3375
3376 This element specifies the way to display a time duration.
3377
3378 Data to be formatted in elapsed time formats is stored as strings in
3379 legacy data, in the format @code{H:MM:SS.SSS}, with additional hour
3380 digits as needed for long durations, and must be parsed and
3381 reformatted by the reader.
3382
3383 The following attribute is required.
3384
3385 @defvr {Attribute} baseFormat
3386 Specifies whether a day and a time are both to be displayed, or just
3387 one of them.
3388 @end defvr
3389
3390 The remaining attributes specify exactly how to display the elapsed
3391 time.
3392
3393 For @code{baseFormat} of @code{time}, PSPP converts this element to
3394 print format type @code{DTIME}; otherwise, if @code{showHour} is true,
3395 to @code{TIME}; otherwise, to @code{MTIME}.  The chosen width is the
3396 minimum for the chosen type, adding 3 if @code{showSecond} is true,
3397 adding 4 more if @code{showMillis} is also true.  Decimals are 0 by
3398 default, or 3 if @code{showMillis} is true.
3399
3400 @node SPV Detail format Element
3401 @subsubsection The @code{format} Element
3402
3403 @example
3404 format
3405    :baseFormat[f_base_format]=(date | time | dateTime | elapsedTime)?
3406    :errorCharacter?
3407    :separatorChars?
3408    :mdyOrder=(dayMonthYear | monthDayYear | yearMonthDay)?
3409    :showYear=bool?
3410    :showQuarter=bool?
3411    :quarterPrefix?
3412    :quarterSuffix?
3413    :yearAbbreviation=bool?
3414    :showMonth=bool?
3415    :monthFormat=(long | short | number | paddedNumber)?
3416    :dayPadding=bool?
3417    :dayOfMonthPadding=bool?
3418    :showWeek=bool?
3419    :weekPadding=bool?
3420    :weekSuffix?
3421    :showDayOfWeek=bool?
3422    :dayOfWeekAbbreviation=bool?
3423    :hourPadding=bool?
3424    :minutePadding=bool?
3425    :secondPadding=bool?
3426    :showDay=bool?
3427    :showHour=bool?
3428    :showMinute=bool?
3429    :showSecond=bool?
3430    :showMillis=bool?
3431    :dayType=(month | year)?
3432    :hourFormat=(AMPM | AS_24 | AS_12)?
3433    :minimumIntegerDigits=int?
3434    :maximumFractionDigits=int?
3435    :minimumFractionDigits=int?
3436    :useGrouping=bool?
3437    :scientific=(onlyForSmall | whenNeeded | true | false)?
3438    :small=real?
3439    :prefix?
3440    :suffix?
3441    :tryStringsAsNumbers=bool?
3442    :negativesOutside=bool?
3443 => relabel* affix*
3444 @end example
3445
3446 This element is the union of all of the more-specific format elements.
3447 It is interpreted in the same way as one of those format elements,
3448 using @code{baseFormat} to determine which kind of format to use.
3449
3450 There are a few attributes not present in the more specific formats:
3451
3452 @defvr {Attribute} tryStringsAsNumbers
3453 When this is @code{true}, it is supposed to indicate that string
3454 values should be parsed as numbers and then displayed according to
3455 numeric formatting rules.  However, in the corpus it is always
3456 @code{false}.
3457 @end defvr
3458
3459 @defvr {Attribute} negativesOutside
3460 If true, the negative sign should be shown before the prefix; if
3461 false, it should be shown after.
3462 @end defvr
3463
3464 @node SPV Detail affix Element
3465 @subsubsection The @code{affix} Element
3466
3467 @example
3468 affix
3469    :definesReference=int
3470    :position=(subscript | superscript)
3471    :suffix=bool
3472    :value
3473 => EMPTY
3474 @end example
3475
3476 This defines a suffix (or, theoretically, a prefix) for a formatted
3477 value.  It is used to insert a reference to a footnote.  It has the
3478 following attributes:
3479
3480 @defvr {Attribute} definesReference
3481 This specifies the footnote number as a natural number: 1 for the
3482 first footnote, 2 for the second, and so on.
3483 @end defvr
3484
3485 @defvr {Attribute} position
3486 Position for the footnote label.  Always @code{superscript}.
3487 @end defvr
3488
3489 @defvr {Attribute} suffix
3490 Whether the affix is a suffix (@code{true}) or a prefix
3491 (@code{false}).  Always @code{true}.
3492 @end defvr
3493
3494 @defvr {Attribute} value
3495 The text of the suffix or prefix.  Typically a letter, e.g.@: @code{a}
3496 for footnote 1, @code{b} for footnote 2, @enddots{}  The corpus
3497 contains other values: @code{*}, @code{**}, and a few that begin with
3498 at least one comma: @code{,b}, @code{,c}, @code{,,b}, and @code{,,c}.
3499 @end defvr
3500
3501 @node SPV Detail interval Element
3502 @subsection The @code{interval} Element
3503
3504 @example
3505 interval :style=ref style => labeling footnotes?
3506
3507 labeling
3508    :style=ref style?
3509    :variable=ref (sourceVariable | derivedVariable)
3510 => (formatting | format | footnotes)*
3511
3512 formatting :variable=ref (sourceVariable | derivedVariable) => formatMapping*
3513
3514 formatMapping :from=int => format?
3515
3516 footnotes
3517    :superscript=bool?
3518    :variable=ref (sourceVariable | derivedVariable)
3519 => footnoteMapping*
3520
3521 footnoteMapping :definesReference=int :from=int :to => EMPTY
3522 @end example
3523
3524 The @code{interval} element and its descendants determine the basic
3525 formatting and labeling for the table's cells.  These basic styles are
3526 overridden by more specific styles set using @code{setCellProperties}
3527 (@pxref{SPV Detail setCellProperties Element}).
3528
3529 The @code{style} attribute of @code{interval} itself may be ignored.
3530
3531 The @code{labeling} element may have a single @code{formatting} child.
3532 If present, its @code{variable} attribute refers to a variable whose
3533 values are format specifiers as numbers, e.g. value 0x050802 for F8.2.
3534 However, the numbers are not actually interpreted that way.  Instead,
3535 each number actually present in the variable's data is mapped by a
3536 @code{formatMapping} child of @code{formatting} to a @code{format}
3537 that specifies how to display it.
3538
3539 The @code{labeling} element may also have a @code{footnotes} child
3540 element.  The @code{variable} attribute of this element refers to a
3541 variable whose values are comma-delimited strings that list the
3542 1-based indexes of footnote references.  (Cells without any footnote
3543 references are numeric 0 instead of strings.)
3544
3545 Each @code{footnoteMapping} child of the @code{footnotes} element
3546 defines the footnote marker to be its @code{to} attribute text for the
3547 footnote whose 1-based index is given in its @code{definesReference}
3548 attribute.
3549
3550 @node SPV Detail style Element
3551 @subsection The @code{style} Element
3552
3553 @example
3554 style
3555    :color=color?
3556    :color2=color?
3557    :labelAngle=real?
3558    :border-bottom=(solid | thick | thin | double | none)?
3559    :border-top=(solid | thick | thin | double | none)?
3560    :border-left=(solid | thick | thin | double | none)?
3561    :border-right=(solid | thick | thin | double | none)?
3562    :border-bottom-color?
3563    :border-top-color?
3564    :border-left-color?
3565    :border-right-color?
3566    :font-family?
3567    :font-size?
3568    :font-weight=(regular | bold)?
3569    :font-style=(regular | italic)?
3570    :font-underline=(none | underline)?
3571    :margin-bottom=dimension?
3572    :margin-left=dimension?
3573    :margin-right=dimension?
3574    :margin-top=dimension?
3575    :textAlignment=(left | right | center | decimal | mixed)?
3576    :labelLocationHorizontal=(positive | negative | center)?
3577    :labelLocationVertical=(positive | negative | center)?
3578    :decimal-offset=dimension?
3579    :size?
3580    :width?
3581    :visible=bool?
3582 => EMPTY
3583 @end example
3584
3585 A @code{style} element has an effect only when it is referenced by
3586 another element to set some aspect of the table's style.  Most of the
3587 attributes are self-explanatory.  The rest are described below.
3588
3589 @defvr {Attribute} {color}
3590 In some cases, the text color; in others, the background color.
3591 @end defvr
3592
3593 @defvr {Attribute} {color2}
3594 Not used.
3595 @end defvr
3596
3597 @defvr {Attribute} {labelAngle}
3598 Normally 0.  The value -90 causes inner column or outer row labels to
3599 be rotated vertically.
3600 @end defvr
3601
3602 @defvr {Attribute} {labelLocationHorizontal}
3603 Not used.
3604 @end defvr
3605
3606 @defvr {Attribute} {labelLocationVertical}
3607 The value @code{positive} corresponds to vertically aligning text to
3608 the top of a cell, @code{negative} to the bottom, @code{center} to the
3609 middle.
3610 @end defvr
3611
3612 @node SPV Detail labelFrame Element
3613 @subsection The @code{labelFrame} Element
3614
3615 @example
3616 labelFrame :style=ref style => location+ label? paragraph?
3617
3618 paragraph :hangingIndent=dimension? => EMPTY
3619 @end example
3620
3621 A @code{labelFrame} element specifies content and style for some
3622 aspect of a table.  Only @code{labelFrame} elements that have a
3623 @code{label} child are important.  The @code{purpose} attribute in the
3624 @code{label} determines what the @code{labelFrame} affects:
3625
3626 @table @code
3627 @item title
3628 The table's title and its style.
3629
3630 @item subTitle
3631 The table's caption and its style.
3632
3633 @item footnote
3634 The table's footnotes and the style for the footer area.
3635
3636 @item layer
3637 The style for the layer area.
3638
3639 @item subSubTitle
3640 Ignored.
3641 @end table
3642
3643 The @code{style} attribute references the style to use for the area.
3644
3645 The @code{label}, if present, specifies the text to put into the title
3646 or caption or footnotes.  For footnotes, the label has two @code{text}
3647 children for every footnote, each of which has a @code{usesReference}
3648 attribute identifying the 1-based index of a footnote.  The first,
3649 third, fifth, @dots{} @code{text} child specifies the content for a
3650 footnote; the second, fourth, sixth, @dots{} child specifies the
3651 marker.  Content tends to end in a new-line, which the reader may wish
3652 to trim; similarly, markers tend to end in @samp{.}.
3653
3654 The @code{paragraph}, if present, may be ignored, since it is always
3655 empty.
3656
3657 @node SPV Detail Legacy Properties
3658 @subsection Legacy Properties
3659
3660 The detail XML format has features for styling most of the aspects of
3661 a table.  It also inherits defaults for many aspects from structure
3662 XML, which has the following @code{tableProperties} element:
3663
3664 @example
3665 tableProperties
3666    :name?
3667 => generalProperties footnoteProperties cellFormatProperties borderProperties printingProperties
3668
3669 generalProperties
3670    :hideEmptyRows=bool?
3671    :maximumColumnWidth=dimension?
3672    :maximumRowWidth=dimension?
3673    :minimumColumnWidth=dimension?
3674    :minimumRowWidth=dimension?
3675    :rowDimensionLabels=(inCorner | nested)?
3676 => EMPTY
3677
3678 footnoteProperties
3679    :markerPosition=(superscript | subscript)?
3680    :numberFormat=(alphabetic | numeric)?
3681 => EMPTY
3682
3683 cellFormatProperties => cell_style+
3684
3685 any[cell_style]
3686    :alternatingColor=color?
3687    :alternatingTextColor=color?
3688 => style
3689
3690 style
3691    :color=color?
3692    :color2=color?
3693    :font-family?
3694    :font-size?
3695    :font-style=(regular | italic)?
3696    :font-weight=(regular | bold)?
3697    :font-underline=(none | underline)?
3698    :labelLocationVertical=(positive | negative | center)?
3699    :margin-bottom=dimension?
3700    :margin-left=dimension?
3701    :margin-right=dimension?
3702    :margin-top=dimension?
3703    :textAlignment=(left | right | center | decimal | mixed)?
3704    :decimal-offset=dimension?
3705 => EMPTY
3706
3707 borderProperties => border_style+
3708
3709 any[border_style]
3710    :borderStyleType=(none | solid | dashed | thick | thin | double)?
3711    :color=color?
3712 => EMPTY
3713
3714 printingProperties
3715    :printAllLayers=bool?
3716    :rescaleLongTableToFitPage=bool?
3717    :rescaleWideTableToFitPage=bool?
3718    :windowOrphanLines=int?
3719    :continuationText?
3720    :continuationTextAtBottom=bool?
3721    :continuationTextAtTop=bool?
3722    :printEachLayerOnSeparatePage=bool?
3723 => EMPTY
3724 @end example
3725
3726 The @code{name} attribute appears only in standalone @file{.stt} files
3727 (@pxref{SPSS TableLook STT Format}).