/*
http://lists.w3.org/Archives/Public/www-style/2009Mar/0065.html
- RESOLVED: New syntax is image-resolution: normal | [ || auto ]
RATIONALE: Removes unused combinations and unnecessary comma
- RESOLVED: Replace image-resolution: auto; with image-resolution: from-image;
RATIONALE: 'auto' vs. 'normal' is hard to understand. ('normal' is 1 pixel == 1px)
- RESOLVED: URLs inside functional notation where URL is expected should be able
to take either url() or bare strings (like @import), preference for
examples is bare strings.
- Discussed removing 'background-image-resolution' in favor of various options.
So far idea is that 'image-resolution' applies to all images and we will
introduce functional notation in the future to allow setting resolution on a
per-image basis.
http://lists.w3.org/Archives/Public/www-style/2009Jun/0186.html
targets in pdf documents?
aligning lines vertically?
Another approach would be to extend the height of the block to be a
multiple of the grid height, but then people would probably want to
control where the extra space gets added.
should we deprecate @page {} in favor of @media .. { ?
*/
[If you keep the <!--comment-->, the copyright will be included
here automatically]
Abstract
This module describes features often used in printed publications.
Most of the specified functionality involves some sort of generated
content where content from the document is adorned, replicated, or
moved in the final presentation of the document. Along with two other
CSS3 modules – multi-column layout and paged media – this
module offers advanced functionality for presenting structured
documents on paged media. This specification only applies to the
'print' media type.
Status of this document
[If you keep the <!--comment-->, the status boilerplate will be
included here automatically.]
This WD describes functionality at various levels of maturity. Some
features have been part of other WDs in the past and have already been
implemented. These parts are fairly stable and unlikely to change
much. Other features are still at the sketching stage. In general,
features presented earlier in this draft are more mature that those
presented later in the draft.
[If you keep the <!--comment--> the table of contents will be
included here automatically.]
Dependencies on other modules
This CSS3 module has normative references to the following other CSS3
modules:
[[!CSS3LIST]]
[[!CSS3VAL]]
This CSS3 module has non-normative references to the following other CSS3
modules:
[[CSS3COL]]
[[CSS3PAGE]]
[[CSS3MULTICOL]]
Introduction
(This section is not normative.)
This specification describes features often used in printed
publications. Some of the proposed functionality (e.g., hyphenation,
the new list style types, and border segments) may also
used with other media types. However, this specification is only
concerned with the 'print' media type.
Running headers and footers
To aid navigation in printed material, headers and footers are often
printed in the page margins. [[CSS3PAGE]] describes how to place
headers and footers on a page, but not how to fetch headers and
footers from elements in the document. This specification
describes named strings which copies the text
(without style, structure, or replaced content) from one element for
later reuse in margin boxes.
Named strings
Named strings can be thought of as variables that can hold one
string of text each. Named strings are created with the 'string-set'
property which copies a string of text into the named string. Only
text is copied; not style, structure, or replaced content.
Consider this code:
h1 { string-set: title content() }
Whenever an h1 element is encountered,
its textual content is copied into a named string called
title. Its content can be retrieved in the 'content'
property:
The 'string-set' property accepts a comma-separated list of named
strings. Each named string is followed by a content list that
specifies which text to copy into the named string. Whenever an
element with value of 'string-set' different from ''none'' is
encountered, the named strings are assigned their respective value.
For the 'string-set' property, <content-list> expands to
one or more of these values, in any order:
the ''content()'' function returns the content of elements and pseudo-elements. The functional notation accepts an optional argument:
''content()''
Without any arguments, the function returns the textual content of the element, not including the content of its ::before and ::after pseudo-element. The content of the element's descendants, including their respective ::before and ::after pseudo-elements, are included in the returned content.
''content(before)''
The function returns the textual content of the ::before pseudo-element the content of the element.
''content(after)''
The function returns the textual content of the ::after pseudo-element the content of the element.
''content(first-letter)''
The function returns the first letter of the content of the element. The definition of a letter is the same as for :first-letter pseudo-elements.
The expected use for ''content(first-letter)'' is to create one-letter headers, e.g., in dictionaries.
Named strings can only hold the result of one assignment; whenever
a new assignment is made to a named string, its old value is replaced.
User agents, however, must be able to remember the
result of more than one assignment as the ''string()'' functional value
(described below) can refer to different assignments.
The scope of a named string is the page of the element to which the
'string-set' property is attached and subsequent pages.
The name space of named strings is different from other sets of
names in CSS.
The 'string-set' property copies text as well as white-space into
the named string.
Note that the string called "header" is different from the counter with the same name. The above code may result in header being set to "Chapter 2: Europa".
This example results in the same value being assigned to
header as in the previous example.
The content is copied regardless of other settings on the element. In this example, H1 elements are not displayed, but their content is copied into the named string.
The content of named strings can be recalled by using the
''string()'' value on the 'content' property. The ''string()'' value has
one required argument, namely the name of the string.
If the value of the named string is changed by an element on a certain
page, the named string may have several values on that page. In order to specify
which of these values should be used, an optional argument is accepted
on the ''string()'' value. This argument can have one of four keywords:
''start'': the named string's entry value for that page is used.
''first'': the value of the first assignment is used. If there is no assignment on the page, the start value is used. ''first'' is the default value.
''last'': the named string's exit value for that page is used
''first-except'': similar to ''first'', except on the page where the value was assigned. On that page, the empty string is used.
In this example, the first term on the page will be shown in the top left corner and the last term on the page will be shown in the top right corner. In top center of the page, the first letter of first term will be shown.
In this example, the header in the top center will be blank on pages where 'h1' elements appear. On other pages, the string of the previous 'h1' element will be shown.
If the named string referred to in a 'string()' value has not been
assigned a value, the empty string is used.
Leaders
A leader is a visual pattern that guides the eye.
Typically, leaders are used to visually connect an entry in a list
with a corresponding code. For example, there are often leaders between
titles and page numbers in a table of contents (TOC). Another example is the
phone book where there are leaders between a name and a telephone
number.
In CSS3, a leader is composed of series of glyphs through the
''leader()'' value on the 'content' property. The functional notation
accepts one value which describes the glyph pattern that make up the
leader. These values are allowed:
leader(dotted)
leader(solid)
leader(space)
leader(<string>)
Using the keyword values is equivalent to setting a string value.
The table below shows the equivalents:
Keyword
String
Unicode characters
leader(dotted)
leader('. ')
\002E \0020
leader(solid)
leader('_')
\005F
leader(space)
leader(' ')
\0020
Can leaders also be composed of images or SVG?
The string inside the parenthesis is called the leader string.
In its simplest form, the 'content' property only takes one
''leader()'' value:
heading::after { content: leader(dotted) }
The leader string must be shown in full at least once and this
establishes the minimum length of the leader. To fill the available
space, the leader string is repeated as many times as possible in the
writing direction. At the end of the leader, a partial string pattern
may be shown. White space in leaders is collapsed according to the
values on white-space properties.
These properties influence the appearance of leaders: all font
properties, text properties, 'letter-spacing', white-space properties,
background properties, and 'color'.
User Agents should attempt to align corresponding glyphs from the
leader pattern between consecutive lines.
In a more complex example, the 'leader' value is combined with other
values on the 'content' property:
If the content connected by a leader end up on different lines, the
leader will be present on all lines. Each leader fragment honors the
minimum length of the leader.
If the name and number end up on different lines (e.g., in a narrow column), it may be formatted like this:
John Doe....
...123456789
To determine the length of the leaders, user agents must do the
following for each line:
Lay out the content with leaders of minimum lengths
Determine the empty space left on the line.
Distribute the empty space between the leaders on the line. Glyphs
must not be shown partially. All leaders on the line should, to the
extent possible, have the same length. This may not always be possible
as the minimum leader length must be honored.
Fill the empty space with the specified leader pattern.
Consider this code:
<style>
cite::before { content: leader(' ') }
</style>
<blockquote>
Bla great bla bla world bla bla
empire bla bla color bla bla
history bla bla forever.
<cite>John Johnson</cite>
</blockquote>
Depending on the width of the containing block, this may be rendered as:
Bla great bla bla world bla bla
empire bla bla color bla bla
history bla bla forever. John
Johnson
However, this rendering is preferable:
Bla great bla bla world bla bla
empire bla bla color bla bla
history bla bla forever.
John Johnson
To indicate that John Johnson should be kept on one line,
this rule can be added to the style sheet:
cite { text-wrap: suppress }
Until 'text-wrap' is widely supported, this rule can also be used:
cite { white-space: nowrap }
If the containing element is wider, this may be the resultant presentation:
Bla great bla bla world bla bla empire
bla bla color bla bla history bla bla
forever. John Johnson
Cross-references
It is common to refer to other parts of a document by
way of a section number (e.g., "See section 3.4.1"), a page number
(e.g., "See discussion on page 72"), or a string (e.g., "See the
chapter on Europe"). Being able to resolve these cross-references
automatically saves time and reduces the number of errors.
The ''target-counter'' and ''target-counters'' values
Numerical cross-references are generated by ''target-counter()''
and ''target-counters()'' values that fetch the value of a counter at
the target end of the link. These functions are similar to the
''counter()'' and ''counters()'' functions, except that they fetch
counter values from remote elements. ''target-counter()'' has two
required arguments: the url of the link, and the name of a counter.
''target-counters()'' has three required arguments: the url of the
link, the name of a counter, and a separator string. Both functions
accepts an optional argument at the end that describes which list
style type to use when presenting the resulting number; ''decimal''
being the default.
This style sheet specifies that a string like " (see page 72)"
is added after a link:
Textual cross-references are generated by ''target-text()'' which
fetches the textual content from the target end of the link. Only text
is copied; not style, structure, or replaced content.
''target-text()'' has one required argument: the url of the link. An
optional second argument specifies exactly which content is fetched.
There are four possible values:
''content()''
refers to the textual content of
the element, not including the content of its ::before and ::after
pseudo-element. The content of the element's descendants, including their
respective ::before and ::after pseudo-elements, are included in the returned content.
''content(before)''
refers to the content of the element's ::before pseudo-element. This is the default value.
''content(after)''
refers to the content of the element's ::after pseudo-element
''content(first-letter)''
refers to the first letter of the textual content of the element, not including the content of its ::before and ::after pseudo-element.
To generate this text
See Chapter 3 ("A better way") on page 31 for an in-depth evaluation.
from this markup:
<p>See <a href="#chx">this chapter</a> for an in-depth evaluation.
...
<h2 id="chx">A better way</h2>
A footnote is a note typically placed at the bottom of a page that
comments on or cites a reference. References to footnotes are marked
with a note-call in the main text. The rendering of footnotes
is complex. As far as possible, footnotes try to reuse other parts of
CSS. However, due to the typographic traditions of footnotes, some new
functionality is required to support footnotes in CSS:
In order to support footnotes in CSS, the following functionality is added:
one new value on the 'float' property: ''footnote''
one new page area: ''@footnote''
two new pseudo-elements: ''::footnote-call'' and ''::footnote-marker''
one predefined counter: ''footnote''
one new value on the 'content' property: ''target-pull()''
border segments
two new 'list-style-type' values: ''super-decimal'', and symbol(...)
In its simplest form, making a footnote is simple.
In this example, the text Most often. will be placed in a
footnote. A note-call will be left behind in the main text and a
corresponding marker will be shown next to the footnote. Here is one
possible rendering:
A sentence consists of words. ¹
¹ Most often.
To support legacy browsers, it is often better to make a link to
the note rather than including the text inline. This example shows how
to fetch the content of a note and place it in a footnote.
When shown in a legacy browser, the content of the element will be
shown as a clickable link to an endnote. When printed according to
this specification, there will be a footnote:
A sentence consists of words¹.
¹ Most often.
Consider this markup:
<p>Sorry, <span title="This is, of course, a lie.">we're closing for lunch</span>.
The content of the "title" attribute can be turned into a footnote with this code:
An element with ''float: footnote'' (called a footnote
element) is moved to the footnote area and a footnote-call
pseudo-element is put in its original place.
span.footnote {
float: footnote;
}
For each new footnote element, the ''footnote'' counter is automatically
incremented.
Footnote elements are presented inside the footnote area,
but they inherit through their normal place in the structure of the
document.
The footnote area
All elements with ''float: footnote'' are moved to the footnote
area. The footnote area is described by an @footnote-rule inside
the @page-rule. By default, the footnote area appears at the bottom of
the page, but it can be positioned using page floats (as described
below) and 'position: fixed'.
If figures and footnotes are on the same page, the footnotes will appear below the figures as they are floated to the bottom before the figures.
Potentially, every page has a footnote area. If there
are no footnotes on the page, the footnote area will not take up any
space. If there are footnotes on a page, the layout of the footnote
area will be determined by the properties/values set on it, and by the
footnote elements inside it.
These properties apply to the footnote area: 'content', 'border',
'padding', 'margin', 'height', 'width', 'max-height', 'max-width',
'min-height', 'min-width', the background properties.
This example uses some of the applicable properties on @footnote:
The result of this code is that a footnote area will have
some margin above the border. Unlike normal borders, only part of the
border is visible due to the 'border-length' property. Underneath the
border, there will be padding.
Footnote calls
When an element is moved to the footnote area,
a footnote-call is left behind. By default, User Agents must
behave as if this code is part of the default style sheet:
The resulting note call is a super-script decimal number.
Footnote markers
A ::footnote-marker pseudo-element is added to each footnote
element. User agents must, by default, show the "footnote" counter in
the footnote-marker.
User Agents may display footnote-calls and footnote-markers this way by default:
Marker elements are discussed in more detail in the CSS Lists
module [[!CSS3LIST]]. One suggested change to that module is to honor
the value of 'list-style-position' on the ::footnote-marker
pseudo-element itself rather than the corresponding list-item element.
Further, one clarification to the horizontal placement of the marker
is suggested: the margin box of the marker box is
horizontally aligned with the start of the line box.
Counting footnotes
The "footnote" counter is automatically incremented each time a
footnote is generated. That is, the "footnote" counter is incremented
by one each time an element with ''float: footnote'' appears.
The footnote counter can be reset with the 'counter-reset' property.
This code resets the "footnote" counter on a per-page page basis:
@page { counter-reset: footnote }
Should one also be able to manually increment the "footnote" counter?
Laying out footnotes
Footnotes must appear as early as possible under the following constraints:
A footnote marker may not appear on an earlier page than the
footnote call.
Footnotes may not appear out of document order.
The footnote area is limited in size by 'max-height', unless the
page contains only footnotes. (E.g., if at the end of the document
there are still footnotes unprinted, the User Agent can use the whole page to
display footnotes.)
If there is a footnote call on a page, the footnote area may not
be empty, unless its 'max-height' is too small.
Footnote magic
When rendering footnotes, User Agents may apply certain heuristics
to improve the presentation. For example, the space between a
footnote-call and surrounding text may be adjusted. Another example is
the height of the footnote area; it may be heuristically constrained
to limit the area that is used for footnotes.
The "footnote" counter represents another kind of magic; it is
automatically created and incremented each time an element is turned
into a footnote, and the footnotes and footnote-calls are
automatically labeled with the value of the footnote counter.
Border parts
CSS borders traditionally cover an entire border edge. Sometimes,
however, it can be useful to hide some parts of the border.
refer to width of element height for vertical borders?
Media:
visual
Computed value:
''normal'', or a list consisting of absolute lengths, or percentages as specified
These properties split their respective borders into parts along
the border edge. The first part is visible, the second is invisible,
the third part is visible, etc. Parts can be specified with lengths,
percentages, fractions (expressed by the 'fr' unit, as per
[[CSS3GRID]] or its editor's
edition), and the 'repeat()' function. The 'normal' value means
that the border is not split, but shown normally.
'border-parts' is a shorthand property for the four individual properties.
If the listed parts are shorter than the border, any remaining
border is split proportionally between the specified fractions. If
there are no fractions, the behavior is as if ''1fr'' had been
specified at the end of the list.
If the listed parts are longer than the border, the specified parts
will be shown in full until the end of the border. In this case, all
fractions will be zero.
For horizontal borders, parts are listed from left to right. For
vertical borders, parts are listed from top to bottom.
The ''repeat()'' function specifies a "repeat pattern" that is
repeated as many times as possible. Only one ''repeat()'' function is
allowed in a value. The repeat pattern must contain at least one
length or percentage, otherwise the declaration must be ignored. The
exact border parts are determined by laying out the specified border
parts with all fractions initially set to zero. The border parts
specified before and after the ''repeat()'' function are laid out
first. Thereafter, the repeat pattern is inserted between them at
least once, and as many times as possible without making the sum of
border parts longer than the border length. Any remaining border is
split proportionally between the fractions specified.
The value of the repeat() function is disputed.
The exact border parts are determined by laying out the specified border
parts with all fractions initially set to zero. Any remaining border is
split proportionally between the fractions specified.
In this example, the repeat pattern is shown five times. The box in this example is slightly wider than the box in the previous example. The remaining border is taken up by a fraction, as if this code had been specified:
In this example, there will be a visible 40px border part on each end of the top border. Inside the 40px border parts, there will be an invisible border part of at least 20px. Inside these invisible border parts, there will be visible border parts, each 20px long with 20px invisible border parts between them.
The fragments are shown in red for illustrative purposes; they should not be visible in compliant UAs.
border: 4px solid black;
border-top-parts: 40px 20px 0 1fr 20px 20px 0 1fr 40px;
In this example, there will be a visible 40px border part on each end of the top border. Inside the 40px border parts, there will be an invisible border part of at least 20px. Inside these invisible border parts, there will be visible border parts, each 20px long with 20px invisible border parts between them.
The fragments are shown in red for illustrative purposes; they should not be visible in compliant UAs.
All but one of the visible border parts are represented as fractions in this example. The length of these border parts will change when the width of the element changes. Here is one rendering where 1fr ends up being 10px:
Here is another rendering where 1fr ends up being 30px:
The fragments are shown in red for illustrative purposes; they should be black in compliant UAs.
Hyphenation
Hyphenate properties
This specification defines six new properties to describe hyphenation.
Name:
hyphens
Value:
none | manual | auto
Initial:
manual
Applies to:
all elements
Inherited:
yes
Percentages:
N/A
Media:
visual
Computed value:
specified value
Values are:
none
Words are not broken at line breaks, even if characters inside the word suggest line break points.
manual
Words are only broken at line breaks where there are characters inside the word that suggest line break opportunities. Characters can be explicit or conditional.
In Unicode, U+00AD is a conditional "soft hyphen" and U+2010 is an explicit hyphen. Unicode Standard Annex #14 describes the role of soft hyphens in the Unicode Line breaking algorithm.
In HTML, ­ represents the soft hyphen character which suggests a line break opportunity.
ex­ample.
auto
Words can be broken at appropriate hyphenation points, as determined by characters inside the word, resources listed in 'hyphenate-resource', or other UA-dependent resources. Characters inside the word take priority over hyphenation points determined by other resources.
Name:
hyphenate-resource
Value:
none | <uri> [, <uri> ]*
Initial:
none
Applies to:
all elements
Inherited:
yes
Percentages:
N/A
Media:
visual
Computed value:
specified value
This property specifies a comma-separated list of external resources that can help the UA determine hyphenation points. If more than one resource is specified, the UA should consult each resource until it finds one that is able to determine hyphenation points in a word. The 'none' value indicates that no external resources are available. In any case, the UA can also use local resources not listed on this property.
Often, finding the right hyphenate resource is based on knowing the
language of the text. The lang attribute is recommended
for encoding the language, and the corresponding selector is used in
this example:
This property specifies the minimum number of characters in a
hyphenated word before the hyphenation character. The ''auto'' value
means that the UA chooses a value that adapts to the current layout.
Unless the UA is able to calculate a better value, it
is suggested that ''auto'' means 2.
Name:
hyphenate-after
Value:
<integer> | auto
Initial:
auto
Applies to:
all elements
Inherited:
yes
Percentages:
N/A
Media:
visual
Computed value:
specified value
This property specifies the minimum number of characters in a hyphenated word after the hyphenation character. The ''auto'' value means that the UA chooses a value that adapts to the current layout.
Unless the UA is able to calculate a better value, it is suggested that ''auto'' means 2.
Name:
hyphenate-lines
Value:
no-limit | <integer>
Initial:
no-limit
Applies to:
all elements
Inherited:
yes
Percentages:
N/A
Media:
visual
Computed value:
specified value
This property indicates the maximum number of successive hyphenated
lines in an element. In some cases, user agents may not be able to
honor the specified value. The ''no-limit'' value means that there is
no limit.
Name:
hyphenate-character
Value:
auto | <string>
Initial:
auto
Applies to:
all elements
Inherited:
yes
Percentages:
N/A
Media:
visual
Computed value:
specified value
This property specifies a string that is shown when a
hyphenate-break occurs. The 'auto' value means that the User Agent
should find an appropriate value.
In Latin scripts, the hyphen character (U+2010) is often used to
indicate that a word has been split. Normally, it will not be
necessary to set it explicitly. However, this can easily be done:
article { hyphenate-character: "\2010" }
Named counter styles
CSS defines a number of predefined list style types for the
'list-style-type' property and other places where a list-style-type
value is accepted. Some styles repeat the same glyph (e.g., ''disc''
and ''circle'') while others have lists of glyphs (e.g., ''decimal'',
and ''lower-roman''). To increase the range of lists that can be
achieved through CSS without adding many new keywords,
@counter-style rules are introduced. By using @counter-style, a style
sheet can name new counter styles.
An @counter-style rule consists of the keyword ''@counter-style'',
followed by the name of the symbol counter style, followed by a
space-separated list of strings.
The first string in the list represents number one, the second
string represents number two, etc. Outside the range of specified values, the rendering
will be as if the ''decimal'' list style type had been specified.
For a series of list-item elements inside an
ordered-list element, the value of the items counter
will be -1, 1, 3, 5, 7 etc. Given that the ordinal counter
style only defines a counter style for 1, 2, 3, and 4, the list will
be numbered "-1", "1st", "3rd", "5", "7" etc.
Named counter styles can be imported through @import statements.
@import url(http://www.example.com/armenian-counters.css); /* defines 'armenian' */
ol { list-style-type: armenian }
The ''symbols()'' list-style-type
A new list-style-type with a functional notation is introduced to
avoid the indirection of having to name counter styles. The
''symbols()'' value takes a comma-separated list of strings as
arguments.
Outside the range of specified values, the rendering will be as if
the ''decimal'' list style type had been specified.
This code:
ol { list-style: symbols("*", "\2020", "\2021", "\A7", "#") }
will result in these list-items markers: * † ‡ § # 6 7 8 ...
Image resolution
Image resolution, as the term is used in this document, means
pixels per physical length, e.g., pixels per inch. Some image formats
can record information about the resolution of images. This
information can be helpful when determining the actual size of the
image in the formatting process. However, the information can also be
wrong, in which case it should be ignored. The 'image-resolution'
property is introduced to determine the correct resolution of images.
Name:
image-resolution
Value:
normal | [ from-image || <dpi> ]
Initial:
normal
Applies to:
replaced elements and background images
Inherited:
yes
Percentages:
N/A
Media:
visual
Computed value:
a <dpi> value
This property accepts either a single value, or a comma-separated
list of two values. The values are:
normal
The resolution of the image is unknown, and UAs must not use the
resolution found in the image. Instead, the image resolution will be
found by making image pixels equivalent to CSS pixels.
from-image
The UA must look for the resolution in the image itself.
<dpi>
The value consists of a number with a 'dpi' unit identifier. The UA must use the specified resolution.
If the 'from-image' keyword is combined with a dpi value, the resolution of the image is used if it can be found. Otherwise, the specified resolution is used.
This rule specifies that the UA should use the image resolution found in the image itself.
img { image-resolution: from-image }
These rules both specify that the UA should use the image resolution found in the image itself. If the image has no resolution, the resolution is set to 300dpi.
Using this rule, the image resolution is set to 300dpi and the resolution in the image, if any, is ignored.
img { image-resolution: 300dpi }
Page marks and bleed area
The 'marks' property from [[CSS2]] is part of this specification.
Name:
marks
Value:
[ crop || cross ] | none
Initial:
none
Applies to:
page context
Inherited:
no
Percentages:
N/A
Media:
visual, paged
Computed value:
specified value
This property adds crop and/or cross marks to the document. Crop
marks indicate where the page should be cut. Cross marks are used to
align sheets.
Crop marks and cross marks are printed outside the page box. To
have room to show crop and cross marks, the final pages will have to
be somewhat bigger than the page box.
To set crop and cross marks on a document, this code can be used:
@page { marks: crop cross }
Name:
bleed
Value:
<length>
Initial:
6pt
Applies to:
page context
Inherited:
no
Percentages:
refer to width of page box
Media:
visual
Computed value:
as specified value
This property specifies the extent of the page bleed area outside
the page box. This property only has effect if crop marks are enabled.
Bookmarks
Some document formats have the capability of holding bookmarks.
Bookmarks are typically shown outside the document itself, often a
tree-structured and clickable table of contents to help navigate in
the electronic version of the document. To generate bookmarks, these
properties are defined:
Name:
bookmark-level
Value:
none | <integer>
Initial:
none
Applies to:
all elements
Inherited:
no
Percentages:
N/A
Media:
all
Computed value:
specified value
This property describes what level a certain bookmark has in a
hierarchical bookmark structure. The highest level is ''1'', then
''2'', ''3'' etc.
This property describes the initial state of a bookmark.
* { bookmark-state: closed }
#open { bookmark-state: open }
CMYK colors
PDF can hold two types of CMYK values: device-specific and color-profile-specific. In the latter case, we may need to point to a color profile.
Printers do not use RGB colors, they (often) use CMYK: cyan,
magenta, yellow and black. A new functional value allows style sheets
to express CMYK colors.
h3 { color: cmyk(0.8, 0.5, 0.0, 0.3) }
The values representing the colors are between ''0'' and ''1''.
Values outside this range are clipped.
Unless a color profile is specified, the cmyk() value refers to
device-specific colors. A future version of this specification will
describe how to link to color profiles.
It is not expected that screen-centric user agents support CMYK
colors and it is therefore important that existing CSS color values can
be combined with CMYK colors.
User Agents that do not understand the cmyk() value, will use the first color (red). User agents that understand cmyk() will use the second color (which is bluish).
Creating paged presentations
Printed publications are paged, while screen-based presentations of
web pages are most often presented in a continuous manner with a
scrollbar on the side. There are reasons to believe that screen-based
presentations also could benefit from using paged presentations. There
is nothing in web specifications that prevent browsers from adding a
page-based mode today. However, most web content is authored and
styled with a continuous presentation in mind. This could change if it
becomes possible to describe paged presentations in style sheets.
The simplest way to signal that a paged presentation is preferable
is to add a value to the 'overflow' property. For example:
body { overflow: paged }
One challenge when introducing paged presentations on screens is
that the user will need navigational tools to reach the next and
previous pages. For scrolled presentations, the user agent
automatically provides scrollbars. This solution could also work for
paged presentations. However, it must be expected that authors want to
design their own navigational tools. For example, authors may want to
make their own buttons from images. In order to separate the style and
the presentation, these navigational tools should not be part of the
document.
Styling blank pages
Blank pages that appear as a result of forced page breaks can be
styled with the :blank pseudo-class.
In this example, forced page break may occur before h1 elements.
h1 { page-break-before: left }
@page :blank {
@top-center { content: "This page is intentionally left blank" }
}
The :blank pseudo-class has the same specificity as
the :first pseudo-class. A page matched
by :blank will still be matched by other page selectors.
If headers have been specified on all right pages, a blank right
page will be matched by both :blank
and :right. Therefore, margin boxes set on right pages
will have to be removed unless they are wanted on blank pages. Here is
an example where the top center header is removed from blank pages,
while the page number remains:
Due to the higher specificity of :blank
over :right, the top center header is removed even
if content: none comes before content: "Preliminary
edition".
Float intrusion in multicol elements
We need a switch for turning on intrusion inside multicol element
Floats that are wider than the column box intrude into neighboring columns.
img { float: left; width: 120% }
In this example, the image is wider than the column and will
therefore intrude into the neighboring column. At the bottom of the
middle column is a long word that is clipped in the middle of the
column gap.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl. M nop qrst uvw x yz. Ab cde fgh i jkl. Mnopqr stu vw xyz. A bcdef ghij klm nopqrs tuv wxy z. Abc
de fghi jk klmop qrst
uvwxyzabcdefghijklmn
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi jkl.
M nop qrst uv wx yz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz.
img { float: right; width: 120% }
In this example, the image naturally appears in the last column. Due to being floated to the right, the image will intrude into the neighboring column to the left.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nopqrs
tuv wxy z. Abc de fg
hi jklmno. Pqrstu vw
x yz. Abc def ghi j
kl. M nop qrst uv wx
yz. Ab cde fgh i jkl
mno pqr stu vw xyz.
Ab cde fgh i jkl. Mno
pqr stu vw xyz. A bc
def g hij klm nop
qrs tuv wxy z.
Rst uvw x yz. Ab
c def ghi jkl m.
Nop qrst uv wx
yz. Ab cdef gh
i jklmno pqr stu vw
xyz. Abc def ghi jkl
mno. Pqr stu vw xyz.
Ab cde fgh ij klm no.
Page floats
Images and figures are sometimes displayed at the top or bottom of
pages. Also, an element may be moved to the next page or not displayed
at all if there is not enough room on its native page. These types of
floats are called "page floats" in this specification.
To support page floats, the 'float'
property is extended with several new values. In this list, the new
values are listed and categorized (along with the existing 'left',
'right' and 'none' keywords, and the 'footnote' and 'to()' as described above):
horizontal keywords: left right inside outside
vertical keywords: top bottom
reference keywords: page multicol
modifier keyword: next
other keywords: none hide footnote to() page()
The keywords can be combined to form more complex expressions.
This code floats figures to the top of the next page:
.figure {
float: top next page;
}
Further, the 'float' property is extended to accept a
comma-separated list of sets of keywords. If the first set of keywords
cannot be honored with the element remaining on the current page, the
second set of keywords will determine how the element is floated.
In this example, the element will be floated to the top of the next page unless it fits on the current page.
.figure {
float: none, top next page;
}
The new values have the following meaning:
inside
On a right page, this value is synonymous with 'left'. On a left page, this value is synonymous with 'right'.
outside
On a left page, this value is synonymous with 'left', On a right page, this value is synonymous with 'right'.
page
Indicates that the page area is the containing block for the element.
multicol
Indicates that the multicol element is the containing block for the element. The float may will intrude into neighboring columns.
intrude
if the float is in a multicol element, it may intrude into neighboring columns. (If the element is not in a multicol element, it will always intrude.)
top
This keyword indicates that the element is floated to the top of the flow root.
bottom
This keyword indicates that the element is floated to the bottom of the flow root.
next
The float is placed on top of the next page from its source location.
If combined with 'bottom', the float is placed on
the bottom of the next page.
page()
The element is floated to a named page. The named page is created for the element, unless a suitable named page already has been created by another 'page()' value. The name page should appear as early as possible, but any 'next' keywords should be honored.
The element is floated to one or more named pages of the type specified. These named pages are created for the purpose of showing the element, and they are presented as early as possible after the page from which they are displaced. If the element is not the first page float to be displaced from this page area to this named page name, its contents should continue on the last of the previously established named pages (unless precluded, for example by page-breaking properties).
hide
As if 'display: none' is set.
The keywords can be combined into sets this way:
only one horizontal keyword can appear in a set
only one vertical keyword can appear in a set
at least one horizontal or vertical keyword must appear, except that 'none', 'hide', and 'footnote' must appear alone
'next' may appear once along with 'page'
keywords can appear in any order
Float element to the top of the page:
.figure {
float: top page;
width: 1gr;
}
Float element to the top of the next page:
.figure {
float: top next page;
width: 1gr;
}
Float figure to the top right of the multi-column element:
.figure {
float: top right multicol;
width: 1gr;
}
Place footnotes at the bottom of the inside columns:
If there is room on the current page, show the element in place. If
there isn't room on the current page, hide the element.
.figure {
float: none, hide;
}
In this example, wide tables are floated to landscape pages:
table.wide {
float: page(landscape);
}
In the above code, the element is take out of the flow, which is
allowed to continue on the same page. If the flow should be broken,
this code can be used:
table.wide {
page: landscape;
}
Consider this code:
table {
float: page(landscape);
}
If two tables appear consecutively, they will both, space
permitting, be placed on the same named page. To ensure that each
table appears on its own page, this code can be used:
For non-replaced elements in horizontal text, values on 'float'
that have a horizontal component ('right', 'left', 'outside',
'inside') will result in shrink-wrap width calculations as per CSS 2.1
section 10.3.5. Values that only have a vertical component ('top',
'bottom', 'next', not in combination with other values) will result in
width calculations as per CSS 2.1 section 10.3.3. In vertical text,
width calculations are vice versa.
Advanced multi-column layout
In paged media, it is common for figures, captions, images, and
quotes to be laid out in certain positions for typographical reasons,
rather than for structural (as in content order) reasons. For example,
an image that illustrates a news story is often placed in the upper
right corner of the article, irrespective of its order in the content.
A poignant quote from the article may be shown in large type in the
column gap, pushing aside text in both columns, to get the attention
of the reader.
Basic multi-column layouts is described in a separated CSS3 module
[[CSS3COL]]. This section extends multi-column functionality so that
more advanced, but commonly used, layouts can be achieved.
The proposed functionality relies on three new components:
one new value on float: ''multicol'':
one new property: 'float-offset'
one new unit: ''gr''
The strategy for achieving advanced multi-column layout is similar
to page floats; elements escape their normal flow root by setting
a value on 'float'. In the case of multi-column layout, the keyword is
''multicol'' (instead of ''page'') and it indicates that the
element should floated wrt. the multi-column element instead of the
column where it naturally occurs.
To further enhance positioning, the 'float-offset' property is
introduced. It pushes elements in the opposite direction of the
positional keywords, both horizontally and vertically.
The ''gr'' unit is introduced to allow the grid lines of columns
(and, potentially, tables) to be used in the positioning ans sizing of elements.
Each column has one grid line on each side corresponding to the
content edge of the content box.
The 'gr' unit has two purposes. When used on the 'float-offset'
property it identifies a position by counting columns and gaps from
the position established by the 'float' property. Fractions on the
'gr' unit refer to fractions of the last counted gap or column.
When used on the 'width' property, the 'gr' unit identifies a
length by counting gaps and columns, starting at the point where the
element naturally finds itself and continuing in the direction of
box expansion. Fractions on the 'gr' unit refer to the last gap or
column counted.
The 'float-offset' property
Name:
float-offset
Value:
<length> <length> ?
Initial:
0 0
Applies to:
floated elements
Inherited:
no
Percentages:
refer to width and height of containing block
Media:
visual, paged
Computed value:
one or two absolute lengths
This property pushes floated elements in the opposite direction of
the where they have been floated with 'float'. If one value is
specified, it is the horizontal offset. If two values are specified,
the first is the horizontal and the second is the vertical offset. If
an element has only been floated horizontally (e.g., by setting
'float: right'), this property will only offset the float
horizontally, even if a vertical value also has been specified.
Likewise, if an element has only been floated vertically, this
property will only offset the float vertically. If an element has been
floated both horizontally and vertically, this property will offset
both horizontally and vertically. If no vertical value has been
specified, the vertical offset is set to zero.
If the 'gr' unit or percentage unit is used, it means that the
middle of the float should be aligned with the specified grid line (or
portion thereof).
If another unit is used, it means that the float is pushed a
distance equal to the specified length.
'float-offset' is a good concept for moving a float into
the right position. For completeness it should apply to absolute
positioning as well. We should reuse existing naming conventions
already in place for abspos elements (e.g., 'offset-left, 'right',
or call it 'shift left, 'shift right' etc.).
This code serves as the base document for the examples of this section:
<html>
<style>
div {
column-width: 15em;
column-gap: 2em; /* shown in red below */
column-rule: thin solid black; /* shown in black below */
padding: 1em; /* shown in blue below */
}
img {
display: block; /* shown in dark gray below */
}
</style>
<body>
<div>
Lorem ipsum dolor sit amet. Nam at jus.
<img src="foo"/>
Sed imp er di et ris. Cur abi tur et sapen.
...
</div>
</body>
</html>
This code can be rendered as:
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
If this code is added to the base document:
img { float: right }
it may be rendered as:
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen. Fusce sed ligula a turpis.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
This code floats images to the bottom of their containing block and
sets the width to be that of the column:
img {
float: bottom;
width: 1gr;
}
The column box is the containing block for floats, so if an image naturally appears in the first column it will float to its bottom:
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
This code floats figures to the top of the multi-column element.
div.figure {
float: top right multicol;
width: 1gr }
The '1gr' value on
'width' is equal to the width of the containing block. Here is a possible rendering:
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
In this code, the 'float' property floats the element to the top left of the multi-column element, while the 'float-offset' property pushes it to
the right so that it ends up in the column next to it:
div.quote {
float: top left multicol;
float-offset: 2.5gr;
width: 1gr }
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Assuming a three-column layout, the same rendering can be achieved
by floating the element to the right instead:
div.quote {
float: top right multicol;
float-offset: 2gr;
width: 1gr }
The floated element will never be pushed outside the content edges
of the multicol element due to 'float-offset'.
img {
float: top right multicol;
width: 3gr;
}
The code above floats the element to the top right of the
multi-column element. Further, it sets the width of images to the
width of two columns plus the gap between them. Here is a possible
rendering.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
img {
float: top right multicol;
width: 2gr;
}
The code above floats the element to the top right of the multi-column element. Further, it sets the width of the image to the width of one
column plus one column gap. Here is a possible rendering.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
img {
float: top right multicol;
width: 1.5gr;
}
The code above floats the element to the top right of the multi-column element. Further, it sets the width of the image to the width of one
column plus half the column gap.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
img {
float: top left multicol;
float-offset: 1.5gr 50%;
width: 8em;
}
The first rule in the code above floats images to the top left of
the multi-column element. The second rule pushes the float in the
opposite directions: to the right and downwards. The horizontal
component (''1.5gr'') means that the horizontal middle of the element
should be in the middle of the gap between the left-most column and
the one next to it. Vertically, element should be in the middle of the
column. Here is a possible rendering:
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen. Fusce sed ligula a turpis.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi
tur et sapen. Fusce
sed ligula a turpis.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
img {
float: top left multicol;
float-offset: 1.25gr 50%;
width: 6em;
}
The only difference between this and the previous example is the horizontal value on 'float-offset'. The value ''1.25gr'' means that a point 25% into the image in the inline direction will be aligned with a point 25% into the column gap. Here is a possible rendering:
Lorem ipsum dolor sit amet. Nam at jus.
Sed imper di et ris. Cur abi tur et sapen. Fusce sed ligula a sic turpis.
Lorem ipsum dolor sit amet. Namat jus.
Sed imper di et ris curit.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi
tur et sapen. Fusce
sed ligula a turpis.
Lorem ipsum dolor sit amet. Nam at jus.
Sed imp er di et ris. Cur abi tur et sapen.
Vivamus a metus. Aenean at risus pharetra ante
luctu feugiat quis enim. Cum sociis natoque
penatibus et magni.
Page lists
In CSS 2.0, the 'page' property takes one value, and the value can
be 'auto' or a named page.
In this specification, a space-separated list of named pages
(called a "page list") is allowed in the 'page' property and the
property is changed from inherited to non-inherited.
The 'page' property
Name:
page
Value:
auto | [ <identifier> ]+ auto?
Initial:
auto
Applies to:
block-level elements
Inherited:
no
Percentages:
N/A
Media:
all
Computed value:
specified value
The content of the element is laid out on the list of pages specified on this property. The values mean:
auto
A single 'auto' value means that the element is laid out on the
established page list. If no page list has been established, unnamed
pages are created as necessary.
one or more named pages, optionally followed by 'auto'
The element is laid out on the named pages specified in the page
list. A page break is generated before the element unless the first
named page in the list is the same as the current page. If more pages
are required than there are items in the page list, the last item is
repeated so that the element can be displayed. If the page list ends
with the 'auto' keyword, the page list continues after the end of the
element, otherwise the page list reverts back to that of the parent
element.
<div>
<table>...</table>
<table>...</table>
<p>This text is rendered on a 'narrow' page</p>
</div>
Given the above markup, this style sheet will put the two tables on
"rotated" pages. The tables will be placed on the same pages if there
is room. The paragraph following the tables will be placed on the
"narrow" page.
Continuation markers are used to indicate that an element continues
from one page to the next. The ::before-page-break pseudo-element is shown
after the last line before the page break. The ::after-page-break
pseudo-element is shown before the first line after the page break.
Continuation markers otherwise act as ::marker pseudo-elements
[[!CSS3LIST]], except that the value of 'list-style-position' is
honored on the pseudo-elements rather than the host element.
Change bars are used to indicate that a change has occurred in a
section of a document. The changed section does not necessarily
correspond to an element and (given the tree structure of common
markup languages) it is not always possible to create any such
element.
To avoid these limitations, the beginning of a change mark is
associated with one element and the end of a change mark is
associated with another element.
These are the pseudo-elements that can set line numbers: 'line-number-left', 'line-number-right', 'line-number-inside', 'line-number-outside'.
The ''line'' counter is set to zero at the beginning of the document and incremented by one for each line box of elements in the normal flow, excluding tables.
The use of multiple pseudo-elements to control where
the line counter appears seems clumsy, but there doesn't seem to be
any other way to get that functionality without adding more
properties.
Generated lists
Books typically have sections that are extracted from the main
content, for example, a the table of contents (TOC) in the front and
an index at the back. Also, there are glossaries and lists of figures
(LOF) and lists of tables (LOT). These sections can all be referred to
as generated lists; they are generated from the main content,
and have the nature of lists. Some lists are sorted alphabetically
(e.g., an index and a glossary), and others reflect the order of the
content (e.g., TOCs, LOFs, and LOTs).
To generate lists in CSS, a prototype list must be
established. Generated list items will be flowed into the prototype
list, but it can also contain content of its own. The prototype
list is identified with the 'prototype' property. To add generated
list items to the prototype list, the 'prototype-insert' property
is used. The 'prototype-insert-position' and 'prototype-insert-policy'
properties describe where and how generated list items are inserted
into the prototype list.
The prototype properties
Name:
prototype
Value:
list | none
Initial:
none
Applies to:
all elements
Inherited:
no
Percentages:
N/A
Media:
all
Computed value:
specified value
This property declares that an element is a prototype list. A
prototype list can hold generated list items inside it. Prototype
lists cannot be nested. For each prototype list, the user
agent must remember the current insert position.
Strictly, this property isn't necessary -- one could
infer from 'prototype-insert-position' or 'prototype-insert-policy'
that something is a prototype list.
This property specifies a comma-separated list of elements that
should be generated in generated lists. The initial ''none'' value
means that no elements are generated. The comma-separated list
consists of the name of the ID attribute of a prototype element with a
starting '#', and a specification of the content which is to be
generated. The content is one or more of these, in any order:
content(), content(before), content(after), content(first-letter). The
content is inserted into prototype element if it is empty, otherwise
into the first empty element inside the prototype element.
Name:
prototype-insert-position
Value:
current | sorted
Initial:
current
Applies to:
all elements
Inherited:
no
Percentages:
N/A
Media:
all
Computed value:
specified value
Name:
prototype-insert-policy
Value:
normal | unique
Initial:
normal
Applies to:
all elements
Inherited:
no
Percentages:
N/A
Media:
all
Computed value:
specified value
TOC
Here is an example of how to generate a TOC with leaders and page numbers.
has one new value (''source-counter(page)'') which fetches the value
of the ''page'' counter from the source element, i.e., the element
which has a 'prototype-insert' declaration:
The above rule creates one new element. The new element is
isomorphic to the #toc-entry element and is inserted according to the
'prototype-insert-position' of #toc-entry.
Glossary
Glossaries provide a new kind of challenge: entries are sorted
alphabetically.
By inserting the term ''sorted'' and the definition in the
''current'' position, terms will be sorted alphabetically with their
respective definition following.
Tables are commonly used to display lists. For example, a list of
terms and their definition can be presented this way:
Note that the #glossary-term element is a table row, while the
element is inserted into a table cell. This is due to the table row
being a non-empty element and that the first td element is the first
empty element.
Index
An index is a generated list that is sorted alphabetically, just
like glossaries. In addition, indexes often have single letters in
large font sizes to help humans navigate. For example, all index
entries starting with "s" is placed under a large capital "S". There
should only be one large capital "S", and if there are no index entries
starting with "s" the large "S" isn't shown.
To achieve this kind of presentation, the following strategy is
suggested: for every index entry that is encountered, two elements are
generated. One is the large capital letter, and the other is the index
entry itself. To avoid having one large capital letter before each
index entry, the 'prototype-insert-policy' property declares that identical
generated list elements are to be deleted.
Here is a more complex example with several types of generated lists. Note how multilevel TOCs require a prototype list without any additional content. Also, notice how the "acronym" element generates an entry both in the index and in the list of acronyms.
This document has been improved by Bert Bos, Michael Day, Melinda
Grant, David Baron, Markus Mielke, Steve Zilles, Ian Hickson, Elika
Etemad, Laurens Holst, Mike Bremford, Allan Sandfeld Jensen, Kelly
Miller, Werner Donné, Tarquin (Mark) Wilton-Jones, Michel Fortin,
Christian Roth, Brady Duga, Del Merritt, Ladd Van Tol, Tab Atkins Jr.,
Jacob Grundtvig Refstrup, James Elmore, Ian Tindale, Murakami Shinyu, Paul E.
Merrell, Philip Taylor.
References
Normative references
[Here will be inserted the file "normative.inc"]
Other references
[Here will be inserted the file "informative.inc"]