Title: CSS Generated Content for Paged Media Module
Status: ED
Work Status: Exploring
Shortname: css-gcpm
Level: 3
Group: csswg
ED: https://drafts.csswg.org/css-gcpm/
TR: https://www.w3.org/TR/css-gcpm-3/
Editor: Dave Cramer, Hachette Livre, dave.cramer@hbgusa.com, w3cid 65283
Former Editor: Håkon Wium Lie, Opera Software
Link defaults: css-content-3 (property) counter-increment, css-content-3 (property) counter-reset, css21 (property) string, css2 (property) max-height
Abstract: Books and other paged media often use special techniques to display information. Content may be moved to or generated for special areas of the page, such as running heads or footnotes. Generated content within pages, such as tab leaders or cross-references, helps readers navigate within and between pages.
Previous Version: https://www.w3.org/TR/2014/WD-css-gcpm-3-20140513/
Previous version: https://hg.csswg.org/drafts/raw-file/6a5c44d11c2b/css-gcpm/Overview.html
Previous version: https://www.w3.org/TR/2011/WD-css3-gcpm-20111129/
Ignored Terms: content-list,
Introduction
Paged media have many special requirements for the display of document content, which have evolved over the long history of printed books. Running headers and footers function as aids to navigation. Notes may appear at the bottom of the page, as footnotes. The properties of pages themselves may change based on their content or position in the document. Leaders visually connect related content. Cross-references may require generated text. Some paged media formats such as PDF use bookmarks for navigation.
This module defines new properties and values, so that authors may bring these techniques to paged media.
Value Definitions
This specification follows the CSS property definition conventions from [[!CSS21]]
using the value definition syntax from [[!CSS-VALUES-3]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Combination with other CSS modules may expand the definitions of these value types.
In addition to the property-specific values listed in their definitions,
all properties defined in this specification
also accept the CSS-wide keywords as their property value.
For readability they have not been repeated explicitly.
Running headers and footers
[[CSS3PAGE]] describes the sixteen page margin boxes which can be used for running headers and footers, but does not describe a mechanism for inserting content in those boxes. This module provides two methods for for doing so. Named strings copy text for reuse in margin boxes. Running elements move elements (complete with style and structure) from the document to margin boxes.
Named strings
The 'string-set' property copies the text content of an element into a ''named string'', which functions as a variable. The text content of this named string can be retrieved using the ''string()'' function. Since these variables may change on a given page, an optional second value for the ''string()'' function allows authors to choose which value on a page is used.
The string-set property
Name: string-set
Value: [[ <> <>] [, <> <>]* ] | none
Initial: none
Applies to: all elements, but not pseudo-elements
Inherited: no
Percentages: N/A
Computed value: specified value
User Agents are expected to support this property on all media, including non-visual ones.
The 'string-set' property contains one or more pairs, each consisting of an custom identifier (the name of the named string) followed by a ''content-list'' describing how to construct the value of the named string.
''content-list'' expands to one or more of the following values, in any order.
Returns the string value of the attribute <identifier>, as defined in [[CSS-VALUES-3]]
The ''content()'' function
content() = content([text | before | after | first-letter ])
How do we define the default value for this function?
text
The string value of the element, determined as if white-space: normal had been set. This is the default value
before
The string value of the ::before pseudo-element, determined as if white-space: normal had been set.
after
The string value of the ::after pseudo-element, determined as if white-space: normal had been set.
first-letter
The first letter of the element, as defined for the ::first-letter pseudo-element
The content values of named strings are assigned at the point when the content box of the element is first created (or would have been created if the element’s display value is none). The entry value for a page is the assignment in effect at the end of the previous page. The exit value for a page is the assignment in effect at the end of the current page.
Whenever the value of the element changes, the value of the named string(s) is updated. User agents must be able to recall many values of the named string, as the ''string()'' function can return past, current, or future values of the assignment.
The value of the named string “header” will be “Chapter 1: Loomings”.
HTML:
<section title="Loomings">
CSS:
section { string-set: header attr(title) }
The value of the “header” string will be “Loomings”.
The ''string()'' function
The ''string()'' function is used to copy the value of a named string to the document, via the 'content' property. This function requires one argument, the name of the named string. Since the value of a named string may change several times on a page (as new instances of the element defining the string appear) an optional second argument indicates which value of the named string should be used.
string() = string( <> [ , [ first | start | last | first-except] ]? )
The second argument of the ''string()'' function is one of the following keywords:
first
The value of the first assignment on the page is used. If there is no assignment on the page, the ''entry value'' is used. first is the default value.
start
If the element is the first element on the page, the value of the first assignment is used. Otherwise the ''entry value'' is used. The ''entry value'' may be empty if the element hasn’t yet appeared.
last
The ''exit value'' of the named string is used.
first-except
This is identical to first, except that the empty string is used on the page where the value is assigned.
The following figures show the first, start, and last assignments of the “heading” string on various pages.
The start value is empty, as the string had not yet been set at the start of the page.Since the page starts with an h2, the start value is the value of that head.Since there’s not an h2 at the top of this page, the start value is the ''exit value'' of the previous page.
Running elements
Many headers and footers cannot be represented only by unformatted text. A book title serving as a running head may contain an italic word, for example. A mechanism is needed to move or copy elements into margin boxes. To do this, we add the ''running()'' value to the position property, and the ''element()'' value to the content property.
In this example, the h1 element is placed in the @top margin box, complete with formatting and any descendant elements. It does not display in the normal document flow.
The ''running()'' value
position: running(custom-ident) removes the element (and associated ::before and ::after pseudo-elements) from the normal flow, and makes it available to place in a page margin box using ''element()''. The element inherits from its original position in the document, but does not display there.
Name: position
New Values: running()
running() = running( <> )
HTML:
<p class="rh"><i>Miranda v. Arizona</i> in Context</p>
<h2><i>Miranda v. Arizona</i> in Context</h2>
The element ''value()'' can only be used in page margin boxes. And it cannot be combined with other possible values for the content property.
This idea would be much more useful if we could also copy (rather than just move) elements. That would avoid the duplication of HTML in the example above.
Bert Bos has proposed an alternative syntax, which allows both moving and copying elements into running heads. In the example below, h2 elements appear in their normal place in the document, but are also copied into running heads.
Name: running
Value: <>
Initial: none
Applies to: elements
Inherited: no
Percentages: N/A
Computed value: specified value
User Agents are expected to support this property on all media, including non-visual ones.
The ''element()'' value
The ''element()'' value of the content property places an element (which has been removed from the normal flow via ''running()'') in a page margin box. Whenever the value of the element changes, the value of ''element()'' is updated.
Just as with ''string()'', ''element()'' takes an optional keyword to describe which value should be used in the case of multiple assignments on a page. User agents must be able to recall many values, as ''element()'' can return past, current, or future values of the assignment.
Name: content
New Values: element()
element() = element( <> [ , [ first | start | last | first-except] ]? )
Footnotes
Ancillary content may be moved to the bottom or side of a page. A footnote is created when such content moves to the bottom of the page, leaving a reference indicator.
Terminology
Footnotes are complex objects (see the footnote section at [[dpub-latinreq]]), so it will be helpful to define some terms before proceeding.
Footnote terminology
footnote element
The element containing the content of the footnote, which will be removed from the flow and displayed as a footnote.
footnote marker (also known as footnote number)
A number or symbol adjacent to the footnote body, identifying the particular footnote. The footnote marker should use the same number or symbol as the corresponding footnote call, although the marker may contain additional punctuation.
footnote body
The footnote marker is placed before the footnote element, and together they represent the footnote body, which will be placed in the footnote area.
footnote call (also known as footnote reference)
A number or symbol, found in the main text, which points to the footnote body.
footnote area
The page area used to display footnotes.
footnote rule (also known as footnote separator)
A horizontal rule is often used to separate the footnote area from the rest of the page. The separator (and the entire footnote area) cannot be rendered on a page with no footnotes.
Creating footnotes
An element becomes a footnote by applying float: footnote to that element. This triggers the following actions:
The footnote element is removed from the flow, and a ::footnote-call pseudo-element is inserted in its place, which serves as a reference to the footnote.
A ::footnote-marker pseudo-element, identifying the footnote, is placed at the beginning of the footnote element. Together this is the footnote body.
The ''footnote counter'' is incremented.
The footnote body is placed in the footnote area at the bottom of the page. Footnote elements from a given page are placed in the footnote area of that page in document order.
HTML:
<p>Though the body was erect, the head was thrown back so that the closed eyes were pointed towards the needle of the tell-tale that swung from a beam in the ceiling.<span class="footnote">The cabin-compass is called the tell-tale, because without going to the compass at the helm, the Captain, while below, can inform himself of the course of the ship.</span></p>
Why is float:bottom used with the footnote area? Floating footnotes to the footnote area, and then floating the footnote area itself, seems overly complex, given that implementations don’t allow the footnote area to float anywhere else. Note that some implementations do allow the footnote area to be absolutely positioned.
Types of footnotes
The following new value of the 'float' property creates a footnote element:
Name: float
New Values: footnote
footnote
each footnote element is placed in the footnote area of the page
The 'footnote-display' property determines whether a footnote is displayed as a block element or inline element.
Name: footnote-display
Value: block | inline | compact
Initial: block
Applies to: elements
Inherited: no
Percentages: N/A
Computed value: specified value
block
The footnote element is placed in the footnote area as a block element
inline
The footnote element is placed in the footnote area as an inline element
compact
The user agent determines whether a given footnote element is placed as a block element or an inline element. If two or more footnotes could fit on the same line in the footnote area, they should be placed inline.
The footnote area
A page area that can be used to display footnotes is described in the page context using an @footnote rule. This rule defines a box that, if used, will contain all the footnote elements that appear on that page.
How would one describe this in the grammar of CSS3-Page?
Positioning of the footnote area
The bottom margin edge of the footnote area is positioned so that it touches the bottom of the page area. The footnote area can only contain footnotes.
How do footnotes work in multi-column text? Prince uses float: prince-column-footnote to create a footnote at the bottom of a column rather than the bottom of a page.
Implementations that support footnotes generally support page floats like float: bottom. Page floats should end up above the footnote area. How might this be specified?
Size of the footnote area
The 'max-height' property on the footnote area limits the size of this area, unless the page contains only footnotes (as may happen on the last page of a document).
Since it is undesirable for a page to consist only of footnotes, user agents may set a default max-height value on the footnote area.
The Footnote Counter
The footnote counter is a predefined counter associated with the footnote element. Its value is the number or symbol used to identify the footnote. This value is used in both the footnote call and the footnote marker. It should be incremented for each footnote.
Values of the footnote counter
The footnote counter, like other counters, may use any counter style. Footnotes often use a sequence of symbols.
Note that the value of the footnote counter should depend on the position of the footnote element in the document tree, not where it is eventually placed. A footnote element may sometimes be placed on the page after the footnote call, but the same counter value must be used for both.
The footnote-call pseudo-element
A ::footnote-call pseudo-element is inserted in place of the footnote element when the latter is removed from the flow. By default, the content of this pseudo-element is the value of the footnote counter, styled as a superscripted number.
The ::footnote-marker pseudo-element represents the footnote element’s marker, the number or symbol that identifies each footnote. This pseudo-element behaves like a ::marker pseudo-element, as defined in [[CSS3LIST]]. It is placed at the beginning of the superior parent’s content, and is inline by default. The ::footnote-marker can be styled just as other ::marker elements can be. The default style should include list-style-position: inside.
Rendering footnotes can be complex. If a footnote falls near the bottom of the page, there may not be enough room on the page for the footnote body. The 'footnote-policy' property allows authors some influence over the rendering of difficult pages.
Name: footnote-policy
Value: auto | line | block
Initial: auto
Applies to: elements
Inherited: no
Percentages: N/A
Computed value: specified value
auto
The user agent chooses how to render footnotes, and may place the footnote body on a later page than the footnote reference. A footnote body must never be placed on a page before the footnote reference.
line
If a given footnote body cannot be placed on the current page due to lack of space, the user agent introduces a forced page break at the start of the line containing the footnote reference, so that both the reference and the footnote body fall on the next page. Note that the user agent must honor widow and orphan settings when doing this, and so may need to insert the page break on an earlier line.
block
As with line, except a forced page break is introduced before the paragraph that contains the footnote.
We need an algorithm for laying out footnotes
Future directions
The next level will include sidenotes, column footnotes, and multiple footnote areas.
Selecting Pages
A paginated document consists of a sequence of pages. [[CSS3PAGE]] defines page selectors, which allow the selection of the first page of the document, left and right pages, and blank pages. Here we extend the idea of page selectors to enable the selection of arbitrary document pages.
Page Selectors
The ''nth()'' page pseudo-class allows the selection of arbitrary document pages. This pseudo-class takes an argument of the form An + B as defined in [[CSS3SYN]]. When applied to the default @page rule, ''nth()'' selects the document page whose index matches the argument.
nth() = ( An+B [of <>]?)
''nth()'' is not related to the page counter, which may reset and use various numbering schemes.
When the ''nth()'' selector is applied to a named page, and that named page is part of a page-group (see below), it selects the nth page in the page group.
@page :nth(1)
This selects the first page of the document.
@page :nth(2n)
This selects all even document pages.
Page groups
Many paginated documents have a repeating structure, consisting of many chapters, sections, or articles. The first page of each subdivision often requires special treatment, but [[CSS3PAGE]] doesn’t define a way to select the first page of each chapter (as distinct from the first page of the entire document).
When the 'page' property is applied to an element that also has a forced break property applied, a ''page group'' is created. The page group is the collection of all pages created by an instance of that element. When a new instance of the element is rendered, a new ''page group'' is started.
A page may be part of several page groups, as a given ''page group'' may have ancestors or descendants that are part of another ''page group''.
A page may be part of several page groups.
Note that page 5 can be selected in three ways:
@page :nth(5 of A) /* will select 5th page of every <div> */
@page :nth(1 of B) /* will select first page of every <child> */
@page :nth(5) /* will select 5th page of document */
In this case, each chapter will form a separate page group. @page:nth(3 of body) will select the third page of each chapter, even if that page happens to use the “broadside” named page. @page:nth(1) will select only the first page of the document, as will @page:first.
Leaders (moved)
Issue: Now described in [[CSS3-CONTENT]]
Cross-references (moved)
Issue: Now described in [[CSS3-CONTENT]]
Bookmarks (moved)
Issue: Now described in [[CSS3-CONTENT]]
Appendix A: Where Are They Now?
Many sections which were in the 29 November 2011 Working Draft have been moved to other specifications. Here are some notes on where things have moved.
A brief mention of selecting columns is found in WHATWG CSS Books.
Appendix B: Default UA Stylesheet
This appendix is informative, and is to help UA developers to implement a default stylesheet for HTML, but UA developers are free to ignore or modify as appropriate.
The relationship between the nth() page pseudo-class and the page-group concept is clarified, which may make the page-group property redundant.
This specification does not redefine the :first page pseudo-selector to select the first page of a page-group.
This specification does not consider:
Named areas
Selecting elements within pages
The range() page pseudo-class
Selecting columns
Baseline rhythms
Extending the box model
Character substitution
Microtypography
Acknowledgments
This work would not be possible without the immense contributions of Håkon Wium Lie.
Chris Lilley, Elika J. Etemad, Alan Stearns, L. David Baron, Bert Bos, Florian Rivoal, [$your_name, ", " ]+ and Liam Quin have provided valuable feedback.