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