Page references - i.e. page-number-citation
objects - are converted to PageRef
fields. The values of these fields are not automatically updated when loading an RTF/WML/OOXML document in MS-Word. The easiest way to update all field values is to force a repagination of the document, for instance by switching to the "Page Layout" view (sometimes called "Print Layout").
If after doing that, some fields have not been updated, for example, those found in the Table of Contents and in the Index, please proceed as follows:
Switch to the "Page Layout" view (sometimes called "Print Layout").
Type Ctrl+A (Select all)
Press F9 (Update fields).
XFC automatically tries to infer the numbering style from the label of the first list item. Both bulleted and numbered lists are supported. Nested lists are supported.
When the heuristics used by XFC are insufficient to infer the type of a list, it's still possible to explicitly specify this type by adding an xfc:label-format
extension attribute to the fo:list-block
.
When the heuristics used by XFC are insufficient to infer the type of a list and the xfc:label-format
attribute is absent from the fo:list-block
, then the list items are output as plain paragraphs. That is, the list items look as expected, but will not behave as proper list items when edited in MS-Word or OpenOffice.org.
The xfc:label-format
attribute must be specified on a fo:list-block
.
The namespace of this attribute is "http://www.xmlmind.com/foconverter/xsl/extensions
". A prefix, typically xfc
, must be declared for this namespace.
The syntax of the value of this attribute is:
label-format
-> [bullet
|number
]?bullet
-> Stringnumber
-> [String]? '%{'format
'}' [String]format
-> 'decimal'|'lower-alpha'|'upper-alpha'| 'lower-roman'|'upper-roman' [inherit
]? [start
]?inherit
-> ';inherit'start
-> ';start=' Positive_Integer
Description:
An empty xfc:label-format
attribute (e.g. xfc:label-format=""
) is allowed. It instructs XFC not to use any heuristic and to convert the fo:list-block
to plain paragraphs.
The '%
' character must be escaped by doubling it. Example: %%%{decimal}
, which corresponds to %1
, %2
, %3
, etc.
The format values decimal
, lower-alpha
, etc, correspond to the values of the CSS list-style-type
property.
The inherit
optional parameter specifies that a numbered fo:list-block
“inherits” the numbering of its ancestor numbered fo:list-block
s. In other words, this parameter may be used to implement what is often called multi-level numbering (e.g. 1.A.a.
)
For example, let's suppose topmost fo:list-block
is numbered 1-
, 2-
, 3-
, etc. Let's suppose its second list item contains a nested fo:list-block
having attribute xfc:label-format="%{upper-alpha;inherit})"
. Then this nested list will be automatically numbered 2-A)
, 2-B)
, 2-C)
, etc.
The start=
optional parameter specifies the starting number of the first item in an ordered list. Its default value is 1.
Limitations | |
---|---|
|
Example:
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xfc="http://www.xmlmind.com/foconverter/xsl/extensions"> ... <fo:list-block font-family="monospace" margin-left="10pt" provisional-distance-between-starts="1cm" provisional-label-separation="5pt" space-before="2pt" xfc:label-format="•%{lower-roman;start=10}"> <fo:list-item> <fo:list-item-label end-indent="label-end()"> <fo:block>•x</fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block>This is the first item of the list.</fo:block> </fo:list-item-body> </fo:list-item> <fo:list-item> <fo:list-item-label end-indent="label-end()"> <fo:block>•xi</fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block>This is the second item of the list.</fo:block> </fo:list-item-body> </fo:list-item> </fo:list-block> ...
The heuristics used by XFC corresponds to the following values of xfc:label-format
:
-
, +
, *
, •
(bullet), –
(endash).
%{decimal;start=0}
, %{decimal}
, %{lower-alpha}
, %{upper-alpha}
, %{lower-roman}
, %{upper-roman}
.
%{decimal;start=0}.
, %{decimal}.
, %{lower-alpha}.
, %{upper-alpha}.
, %{lower-roman}.
, %{upper-roman}.
.
%{decimal;start=0})
, %{decimal})
, %{lower-alpha})
, %{upper-alpha})
, %{lower-roman})
, %{upper-roman})
.
(%{decimal;start=0})
, (%{decimal})
, (%{lower-alpha})
, (%{upper-alpha})
, (%{lower-roman})
, (%{upper-roman})
.
[%{decimal;start=0}]
, [%{decimal}]
, [%{lower-alpha}]
, [%{upper-alpha}]
, [%{lower-roman}]
, [%{upper-roman}]
.
<%{decimal;start=0}>
, <%{decimal}>
, <%{lower-alpha}>
, <%{upper-alpha}>
, <%{lower-roman}>
, <%{upper-roman}>
.
For lack of a corresponding element in the output formats, leader
objects are implemented by means of tab stops. This is not very convenient given the leader
object specification, since there is no way for XFC to derive the tab position from the property values. Though XFC will usually set the tab position to a reasonable value by default, this arbitrary position is unlikely to result in the intended layout.
However, the actual tab position may be specified to XFC by setting an additional property on the leader
object. This property is named tab-position
and must be defined in the XFC namespace (http://www.xmlmind.com/foconverter/xsl/extensions
). The property value is a <length>
as defined in section 5.11 of the Recommendation. A positive value specifies the tab position relative to the left margin, whereas a negative value specifies the position relative to the right margin.
An additional property named tab-align
specifies how the content following a tab is horizontally aligned. The possible values for this property are: left
, center
, right
and decimal
. Using the tab-align
property is optional. By default, the content following a tab is left aligned.
The code samples below are excerpts from file
. They illustrate a typical use of the xslutil_install_dir
/addon/config/docbook/xsl/fo/autotoc.xsltab-position
and tab-align
properties in an XSL stylesheet.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xfc="http://www.xmlmind.com/foconverter/xsl/extensions" version='1.0'>
<fo:leader leader-pattern="dots" leader-pattern-width="3pt" leader-alignment="reference-area" xfc:tab-position="-30pt" xfc:tab-align="right" keep-with-next.within-line="always"/>
Extension attribute xfc:outline-level
may be used to mark a fo:block
as a heading having the outline level specified by the value of the attribute. The value of this attribute is an integer between 1 and 9 inclusive. Any other value will cause attribute xfc:outline-level
to be ignored.
Specifying outline levels allows to:
Use the Document Map and the Outline View in MS-Word. Use the Navigator Window in OpenOffice/LibreOffice.
Insert a Table of Contents in a document edited in MS-Word or OpenOffice/LibreOffice.
Example:
<fo:block font-size="22pt" space-before="22pt" xfc:outline-level="4" color="#406080">Heading 4</fo:block>
Extension attribute xfc:outline-level
may be used to specify that a fo:block
is to be automatically converted to an equivalent fo:table
. The value of this attribute is true
or false
.
This extension attribute is a quick and easy workaround for one of the most annoying limitations of XMLmind XSL-FO Converter: a fo:block
having a border and/or background color and containing several other blocks, lists or tables was very poorly rendered in RTF, WML, DOCX and ODT. (Such container fo:block
s are quite commonly used, for example, to represent a complex note, admonition or sidebar.)
The reason of this limitation is due to the fact that the RTF, WML, DOCX and ODT output formats can —to make it simple— only contain a “flat” sequence of styled paragraphs and tables.
Example:
<fo:block margin="0.5em 2em" padding="1em 4em"
border="1px solid #800000" background="#FFF0F0"
xfc:render-as-table="true">
<fo:block space-before="0.5em" space-after="0.5em">First paragraph.</fo:block>
<fo:block space-before="0.5em" space-after="0.5em">Second paragraph.</fo:block>
<fo:block space-before="0.5em" space-after="0.5em">Third paragraph.</fo:block>
</fo:block>
Note that xfc:render-as-table="true"
is ignored when a named style (i.e. xfc:user-style
) is used to style the fo:block
.
When converting to RTF XSL-FO files making use of extension attribute |
Element fo:block-container
with a reference-orientation
attribute equal to 90
, 270
, -90
or -270
may be used to temporarily switch the page orientation from portrait to landscape. This feature is typically used to help MS-Word or OpenOffice/LibreOffice display a wide table or a wide figure.
Example:
<fo:block-container reference-orientation="90"> <fo:block>...</fo:block> <fo:table>...</fo:table> </fo:block-container>
For this feature to work:
The fo:block-container
must be directly contained in the fo:flow
[1]. Outside a fo:flow
and a fo:table-cell
(see below), fo:block-container
is treated like a fo:block
.
The value of attribute reference-orientation
must be 90
, 270
, -90
or -270
. XFC does not make any difference between these four values to implement this feature.
The width of current page layout must be smaller than its height. That is, the current page orientation must not be already landscape.
Element fo:block-container
also is supported inside a fo:table-cell
, where it may be used to rotate the content of this table cell. Outside a fo:flow
(see above) and a fo:table-cell
, fo:block-container
is treated like a fo:block
.
In order to rotate the content of a table cell, the fo:table-cell
must contain a single fo:block-container
with a reference-orientation
attribute equal to 90
, 270
, -90
or -270
.
Example 1: simplest, most common, case:
<fo:table-cell> <fo:block-container reference-orientation="90"> <fo:block>Short Header</fo:block> </fo:block-container> </fo:table-cell>
In the above case, there is generally no need to specify attribute inline-progression-dimension
(or equivalently attribute width
) and/or attribute block-progression-dimension
(or equivalently attribute height
) for the fo:block-container
element:
Attribute inline-progression-dimension
is automatically given by XFC a value equals to the maximum width[2] of the content of the fo:block-container
.
Attribute block-progression-dimension
is automatically given by XFC a value equals to
, when N
* 1.2 * FS
N
is the number of blocks, lists or tables contained the fo:block-container
and FS
is the font size[3] of the fo:block-container
.
Example 2: simple case:
<fo:table-cell> <fo:block-container reference-orientation="-90"> <fo:block>Short Header</fo:block> <fo:block>One more line!</fo:block> </fo:block-container> </fo:table-cell>
Given the default values assigned by XFC to attributes inline-progression-dimension
and block-progression-dimension
, the above example should be also rendered correctly.
Example 3: may require specifying attribute block-progression-dimension
(or equivalently attribute height
):
<fo:table-cell> <fo:block-container reference-orientation="90" block-progression-dimension="96px"> <fo:block><fo:external-graphic src="logo96x96.png"/>ACME Corp</fo:block> </fo:block-container> </fo:table-cell>
Example 4: requires specifying both attribute inline-progression-dimension
(or equivalently attribute width
) and attribute block-progression-dimension
(or equivalently attribute height
):
<fo:table-cell> <fo:block-container reference-orientation="270" inline-progression-dimension="15em" block-progression-dimension="5cm"> <fo:block>Quite long header possibly containing several lines of text. (Note that a fo:block-container is not limited to a single fo:block or even to fo:blocks.)</fo:block> </fo:block-container> </fo:table-cell>
Without this information, the word processor thinks that the document is entirely written in its default language; which may be very annoying when this is not the case (false errors reported by the spell checker).
For attribute |
Other limitations:
Will not work for right-to-left languages (e.g. ar
, he
).
Attribute script
is ignored, as well as xml:lang
values including script information (e.g. sr-Latn-RS
).
Use the two-letter ISO 639-1 code of a language if this code exists (e.g. en
, fr
, de
, es
), otherwise use the 3-letter ISO 639-2 code (e.g. fil
, tzm
, sah
).
Always use the two-letter ISO 3166 code of a country (e.g. GB
, BE
, AT
, AR
).
For East Asian language (e.g.
|
Element xfc:document-information
may be used to to add metadata[4] to the documents created by XFC[5]. This element is expected to be a child element of standard XSL-FO element fo:declarations
.
<xfc:document-information> Content: [ xfc:meta ]* </xfc:document-information> <xfc:meta name = non empty string content = string />
Example:
<xfc:document-information> <xfc:meta name="xfc:creator" content="Fox Mulder" /> <xfc:meta name="xfc:created" content="1993-09-10" /> <xfc:meta name="xfc:keywords" content="extraterrestrial life, abduction, supernatural" /> <xfc:meta name="is_classified" content="true" /> </xfc:document-information>
It's also possible to restrict editing in the documents created by XFC using command-line arguments /meta
.name
value
When both element xfc:document-information
and the aforementioned command-line argument are specified, it's the command-line argument which is used. In the case of the above xfc:document-information
example, /meta is_classified false
may be used to replace the is_classified
custom metadata.
The attributes of element xfc:meta
are:
name
Required. The name of the metadata. This may be the name of a standard metadata (e.g. xfc:creator
) or a custom metadata (e.g. is_classified
).
content
Required. The value of the metadata.
A standard metadata has a generic name (always starting with "xfc:
") which, when supported by the output format, is translated to a “native”, case-sensitive, metadata name. For example, "xfc:creator
" is translated to DOCX "dc:creator
", WML "Author
", RTF "author
" and ODT "meta:initial-creator
".
Generic name | Type | Description |
---|---|---|
xfc:category | String | A categorization of the content of the document. |
xfc:contentStatus | String | The status (e.g. "Draft", "Final") of the document. |
xfc:created | Date | The date of creation of the document. |
xfc:creator | String | The initial author of the document. |
xfc:description | String | An explanation of the content of the document. |
xfc:identifier | String | An unambiguous reference to the document within a given context (e.g. ISBN, URN). |
xfc:keywords | String | Comma-separated set of keywords to support searching and indexing. |
xfc:language | String | The code (e.g ISO 639-1) of main language of the document. |
xfc:lastModifiedBy | String | The user who performed the last modification. |
xfc:lastPrinted | Date | The date of the last printing. |
xfc:modified | Date | The date on which the document was changed. |
xfc:revision | Positive integer | The revision number (e.g the number of saves). |
xfc:subject | String | The topic of the content of the document. |
xfc:title | String | The title of the document. |
xfc:version | String | The version number of the document. |
xfc:manager | String | The manager of the author of the document. |
xfc:company | String | The company that employs the author of the document. |
xfc:final | Boolean: true or false | If |
Supported date formats are documented in "W3C Note on Date and Time Formats [W3CDTF]". Examples: 2020
, 2020-09
, 2020-09-16
, 2020-09-16T19:20
, 2020-09-16T17:20:30Z
, 2020-09-16T19:20:30.45+02:00
.
It is of course possible to use the “native” name of a standard metadata rather than its generic name. When both names are specified (e.g. xfc:creator="John Doe"
and DOCX dc:creator="Jane Doe"
), it is the value specified using the native name which is stored in the generated document (e.g. dc:creator="Jane Doe"
).
Generic name | Native name (case sensitive) |
---|---|
xfc:category | category |
xfc:contentStatus | contentStatus |
xfc:created | dcterms:created |
xfc:creator | dc:creator |
xfc:description | dc:description |
xfc:identifier | dc:identifier |
xfc:keywords | keywords |
xfc:language | dc:language |
xfc:lastModifiedBy | lastModifiedBy |
xfc:lastPrinted | lastPrinted |
xfc:modified | dcterms:modified |
xfc:revision | revision |
xfc:subject | dc:subject |
xfc:title | dc:title |
xfc:version | version |
xfc:manager | Manager |
xfc:company | Company |
xfc:final | _MarkAsFinal |
Generic name | Native name (case sensitive) |
---|---|
xfc:category | Category |
xfc:contentStatus | Not a standard metadata. |
xfc:created | Created |
xfc:creator | Author |
xfc:description | Description |
xfc:identifier | Guid |
xfc:keywords | Keywords |
xfc:language | Not a standard metadata. |
xfc:lastModifiedBy | LastAuthor |
xfc:lastPrinted | LastPrinted |
xfc:modified | LastSaved |
xfc:revision | Revision |
xfc:subject | Subject |
xfc:title | Title |
xfc:version | Version (must match regular expression "([0-9]?[0-9].[0-9]{4})|([0-9]?[0-9]) ") |
xfc:manager | Manager |
xfc:company | Company |
xfc:final | _MarkAsFinal (not supported by MS-Word 2003) |
No generic name. | AppName , the name of the application that created the document. |
Generic name | Native name (case sensitive) |
---|---|
xfc:category | category |
xfc:contentStatus | Not a standard metadata. |
xfc:created | creatim |
xfc:creator | author |
xfc:description | doccomm |
xfc:identifier | Not a standard metadata. |
xfc:keywords | keywords |
xfc:language | Not a standard metadata. |
xfc:lastModifiedBy | operator |
xfc:lastPrinted | printim |
xfc:modified | revtim |
xfc:revision | Not a standard metadata. |
xfc:subject | subject |
xfc:title | title |
xfc:version | Not a standard metadata. |
xfc:manager | manager |
xfc:company | company |
xfc:final | _MarkAsFinal (not supported by MS-Word 2003) |
No generic name. | comment , comments; text is ignored. |
No generic name. | buptim , the date/time of last backup. |
Generic name | Native name (case sensitive) |
---|---|
xfc:category | Not a standard metadata. |
xfc:contentStatus | Not a standard metadata. |
xfc:created | meta:creation-date |
xfc:creator | meta:initial-creator |
xfc:description | dc:description |
xfc:identifier | Not a standard metadata. |
xfc:keywords | meta:keywords |
xfc:language | dc:language |
xfc:lastModifiedBy | dc:creator |
xfc:lastPrinted | meta:print-date |
xfc:modified | dc:date |
xfc:revision | meta:editing-cycles |
xfc:subject | dc:subject |
xfc:title | dc:title |
xfc:version | Not a standard metadata. |
xfc:manager | Not a standard metadata. |
xfc:company | Not a standard metadata. |
xfc:final | Emulated using the read-only restriction. See below. |
No generic name. | meta:generator , a string that identifies the application or tool that was used to create or last modify the document. |
No generic name. | meta:printed-by , the name of the last person who printed the document. |
No generic name. | meta:editing-duration , the total time spent editing the document. Duration format is: "PnYnMnDTnHnMnS ". |
A metadata having a non standard native name (e.g. "is_classified
") or a standard generic name not supported by the output format (e.g. "xfc:manager
" not supported by ODT) is considered to be a custom metadata.
A custom metadata is generally stored as a typed value. Supported types are generally: boolean, number, date and string. So when you want to specify a boolean, make sure to specify true
or false
and when you want to specify a date, make sure to use one of the formats documented in "W3C Note on Date and Time Formats [W3CDTF]".
Element xfc:document-protection
may be used to control the type of changes which can be made to the documents created by XFC[6]. This element is expected to be a child element of standard XSL-FO element fo:declarations
.
<xfc:document-protection restrictions =Restrictions
password =string
/>Restrictions
= [ limited-formatting ]? [ read-only|comments-only|tracked-changes-only|fill-forms-only ]?
Example:
<xfc:document-protection password="changeit" restrictions="tracked-changes-only limited-formatting" />
It's also possible to restrict editing in the documents created by XFC using command-line arguments /prot
and restrictions
/password
.password
When both element xfc:document-protection
and any of the aforementioned command-line arguments are specified, it's the command-line argument which is used. In the case of the above xfc:document-protection
example, /password ""
may be used to discard the password.
The attributes of element xfc:document-protection
are:
restrictions
Specifies how the generated document is to be restricted in terms of editing and/or formatting.
Restriction | Description |
---|---|
read-only | No changes are permitted; the document is read-only. |
comments-only | No changes are permitted, but comments can be inserted. ODT output format: |
fill-forms-only | No changes are permitted, but data can be entered into forms. ODT output format: |
tracked-changes-only | All changes are permitted, but they're automatically tracked. |
limited-formatting | No direct formatting (e.g. Bold, Italic) and limit formatting to a selection of styles. RTF, ODT output formats: |
password
This clear text password lets the user of the word processor remove the restrictions specified by attribute restrictions
.
RTF, WML output formats: password not supported. ODT output format: password supported only for restriction tracked-changes-only
.
XFC uses an instance of the System.Text.Encoding
class to determine if a given character can be represented in the output encoding. Characters that cannot be encoded are then represented using a Unicode control word (RTF output) or an XML character reference (WML, Open XML and OpenDocument output).
This feature is supported by the ODT, WML and DOCX output formats, but not by the RTF output format. |
When using East Asian fonts in a XSL-FO file[7] to render CJK (Chinese Japanese Korean) text, these fonts must be declared to XFC.
This is done using the eastAsiaFontFamilies property. This property is specified using command line option /eaf
. The value of this property is a font family map having the following syntax:map
map -> entry [',' entry]* entry -> east_asian_family '=' western_family
Note that western_family
must be an actual font family (e.g. Arial
). Generic font families (e.g. sans-serif
) are not supported here.
Example ("MS UI Gothic
" is a Japanese font):
<fo:inline font-family="MS UI Gothic">ねこ romaji neko</fo:inline>
Let's suppose the font family map used for the XSL-FO file containing the above example is:
MS UI Gothic=Times New Roman,Meiryo=Calibri
The above font family map has two effects on XFC:
Font families "MS UI Gothic
" and "Meiryo
" are declared as being East Asian fonts and will be used to render the CJK text segments. In the above example, "ねこ" is rendered using the "MS UI Gothic
" font.
When a text run contains a mix of CJK text and Western text, the "Times New Roman
" and "Calibri
" fonts will be used to render the Western text segments. In the above example, "romaji neko
" is rendered using the "Times New Roman
" font, even if the fo:inline
containing this segment requests "MS UI Gothic
".
XFC supports all conditional-page-master-reference
element combinations that can be accommodated by a single RTF section. This means the following page sequence layouts are supported:
Single-sided layout.
Header page + single-sided layout.
Double-sided layout.
Header page + double-sided layout.
This applies to all output formats. Also, note that a single RTF section can handle different headers/footers on left/right/first pages, but does not allow page geometry changes, except for switching left and right margins on facing pages. This restriction does not apply to OpenDocument output.
Note: By default RTF, WML and Open XML output documents are given a double-sided page layout regardless of the input document properties. This results in all sections having separate headers/footers for odd and even pages, even though the content of both headers/footers may be identical. It may also result in blank pages being inserted in the document in order for every section to start on an odd page.
Adding a watermark to the generated document is done the way which is supported by all the other XSL-FO processors, that is, by setting the background-image
property of fo:region-body
. Example:
<fo:simple-page-master master-name="center" margin-bottom="1.5cm" margin-left="1.5cm" margin-right="1.5cm" margin-top="1.5cm" page-height="29.7cm" page-width="21cm"> <fo:region-body border-style="solid" border-width="1pt" margin-bottom="0.5cm" margin-top="0.5cm" padding="7.5pt" background-image="url(images/draft.png)" background-position="center"/> <fo:region-before display-align="before" extent="0.5cm" /> <fo:region-after display-align="after" extent="0.5cm" /> </fo:simple-page-master>
Note that only the background-image
, background-position-horizontal
and background-position-vertical
properties (and the corresponding shorthand properties) are supported. Other background image properties such as background-repeat
are ignored. Moreover the only supported values for background-position-horizontal
are: left
, 0%
, center
, 50%
, right
, 100%
and the supported values for background-position-vertical
are: top
, 0%
, center
, 50%
, bottom
, 100%
.
Use of expressions for property values specification is supported, subject to the following restrictions:
The proportional-column-width
function may not be part of an arithmetic expression, i.e. it must be used as a single primary expression.
The system-color
, system-font
and merge-property-values
are not supported.
In addition to the decoration type (underline
, overline
, line-through
, etc) supported by XSL-FO property text-decoration
, it's possible to specify the color, style (solid
, double
, dotted
, dashed
, wavy
) and thickness of the text decoration. The syntax used for extended simple properties[8] is identical to the syntax of CSS3 property text-decoration.
text-decoration = 'inherit' | [line
||style
||color
||thickness
]line
= 'none' | [ [ 'underline' | 'no-underline' ] || [ 'overline' | 'no-overline' ] || [ 'line-through' | 'no-line-through' ] || [ 'blink' | 'no-blink' ] ]style
= 'solid' | 'double' | 'dotted' | 'dashed' | 'wavy'color
= 'currentcolor' |Hexadecimal_color | RGB_color
thickness
= 'auto' | 'from-font' |Length
|Percentage
Actual support of the “simple properties” comprising text-decoration
by the RTF, WML, DOCX, ODT output formats varies:
Output format | Support of “simple properties” |
---|---|
RTF, WML, DOCX |
|
ODT |
|
Remember that OpenOffice/LibreOffice automatically underlines hyperlinks | |
---|---|
By default, OpenOffice/LibreOffice automatically underlines and gives a blue color to hyperlinks. In some cases, this automatic feature may give you the impression that there is something wrong with the |
[1] The fo:block-container
may also be contained in a fo:block
itself directly contained in the fo:flow
.
[2] That is, with no word wrap.
[3] This font is generally inherited from the ancestors of the fo:block-container
element.
[4] Data stored in a document about the document, e.g. the usual author, title, date, etc, but also custom metadata.
[5] This is the XFC equivalent of MS-Word " → → , Advanced Properties".
[6] This is the XFC equivalent of MS-Word " → → , Restrict Editing".
[7] Either directly in the XSL-FO file or indirectly through the use of named styles.
[8] Notation "||
" means: at least one of these items must be present, and they may appear in any order.