diff options
author | eschaeffer <eschaeffer@unknown> | 2001-01-23 16:02:37 +0000 |
---|---|---|
committer | eschaeffer <eschaeffer@unknown> | 2001-01-23 16:02:37 +0000 |
commit | c039ef6c43240c622eb31e46bd1d62b49f43a877 (patch) | |
tree | 39909caf7d99e9087163477de4b62d75ecbc2902 | |
parent | de9a93cb77ffc902fdf480c1b679d553c87b94e0 (diff) | |
download | xmlgraphics-fop-c039ef6c43240c622eb31e46bd1d62b49f43a877.tar.gz xmlgraphics-fop-c039ef6c43240c622eb31e46bd1d62b49f43a877.zip |
Examples of small-caps.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193978 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/examples/fo/normal.fo | 253 |
1 files changed, 127 insertions, 126 deletions
diff --git a/docs/examples/fo/normal.fo b/docs/examples/fo/normal.fo index 1cd3d206f..e64feafe2 100644 --- a/docs/examples/fo/normal.fo +++ b/docs/examples/fo/normal.fo @@ -1,50 +1,50 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- example for a simple fo file. At the beginning the page layout is set. -Below fo:root there is always +<!-- example for a simple fo file. At the beginning the page layout is set. +Below fo:root there is always - a single fo:layout-master-set which defines one or more page layouts - an optional fo:declarations, - and a sequence of one or more fo:page-sequences containing the text and formatting instructions --> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> - <fo:layout-master-set> - <!-- fo:layout-master-set defines in its children the page layout: - the pagination and layout specifications - - page-masters: have the role of describing the intended subdivisions - of a page and the geometry of these subdivisions - - page-sequence-masters: have the role of describing the sequence - of page-masters that will be used to generate - pages during the formatting of an fo:page-sequence - - --> - - <!-- layout for the first page --> - <fo:simple-page-master master-name="first" - page-height="21cm" - page-width="29.7cm" - margin-top="1cm" - margin-bottom="2cm" - margin-left="2.5cm" - margin-right="2.5cm"> - <fo:region-body margin-top="3cm"/> - <fo:region-before extent="3cm"/> - <fo:region-after extent="1.5cm"/> - </fo:simple-page-master> - - <!-- layout for the other pages --> - <fo:simple-page-master master-name="rest" - page-height="29.7cm" - page-width="21cm" - margin-top="1cm" - margin-bottom="2cm" - margin-left="2.5cm" - margin-right="2.5cm"> - <fo:region-body margin-top="2.5cm"/> - <fo:region-before extent="2.5cm"/> - <fo:region-after extent="1.5cm"/> - </fo:simple-page-master> + <fo:layout-master-set> + <!-- fo:layout-master-set defines in its children the page layout: + the pagination and layout specifications + - page-masters: have the role of describing the intended subdivisions + of a page and the geometry of these subdivisions + - page-sequence-masters: have the role of describing the sequence + of page-masters that will be used to generate + pages during the formatting of an fo:page-sequence + + --> + + <!-- layout for the first page --> + <fo:simple-page-master master-name="first" + page-height="21cm" + page-width="29.7cm" + margin-top="1cm" + margin-bottom="2cm" + margin-left="2.5cm" + margin-right="2.5cm"> + <fo:region-body margin-top="3cm"/> + <fo:region-before extent="3cm"/> + <fo:region-after extent="1.5cm"/> + </fo:simple-page-master> + + <!-- layout for the other pages --> + <fo:simple-page-master master-name="rest" + page-height="29.7cm" + page-width="21cm" + margin-top="1cm" + margin-bottom="2cm" + margin-left="2.5cm" + margin-right="2.5cm"> + <fo:region-body margin-top="2.5cm"/> + <fo:region-before extent="2.5cm"/> + <fo:region-after extent="1.5cm"/> + </fo:simple-page-master> <fo:page-sequence-master master-name="basicPSM" > <fo:repeatable-page-master-alternatives> @@ -57,92 +57,93 @@ Below fo:root there is always </fo:repeatable-page-master-alternatives> </fo:page-sequence-master> - </fo:layout-master-set> - <!-- end: defines page layout --> - - <!-- actual layout --> - <fo:page-sequence master-name="basicPSM"> - - <!-- header --> - <fo:static-content flow-name="xsl-region-before"> - <fo:block text-align="end" - font-size="10pt" - font-family="serif" - line-height="14pt" > - XML Recommendation - p. <fo:page-number/> - </fo:block> - </fo:static-content> - - <fo:flow flow-name="xsl-region-body"> - - <!-- defines text title level 1--> - <fo:block font-size="18pt" - font-family="sans-serif" - line-height="24pt" - space-after.optimum="15pt" - background-color="blue" - color="white" - text-align="center" - padding-top="3pt"> - Extensible Markup Language (XML) 1.0 - </fo:block> - - <!-- defines text title level 2--> - <fo:block font-size="16pt" - font-family="sans-serif" - line-height="20pt" - space-before.optimum="10pt" - space-after.optimum="10pt" - text-align="start" - padding-top="3pt"> - Abstract - </fo:block> - - <!-- Normal text --> - <fo:block font-size="12pt" - font-family="sans-serif" - line-height="15pt" - space-after.optimum="3pt" - text-align="start"> - The Extensible Markup Language (XML) is a subset of SGML that is completely described in this document. Its goal is to - enable generic SGML to be served, received, and processed on the Web in the way that is now possible with HTML. XML - has been designed for ease of implementation and for interoperability with both SGML and HTML. - </fo:block> - - <!-- defines text title level 2--> - <fo:block font-size="16pt" - font-family="sans-serif" - line-height="20pt" - space-before.optimum="10pt" - space-after.optimum="10pt" - text-align="start" - padding-top="3pt"> - Status of this document - </fo:block> - - <!-- Normal text --> - <fo:block font-size="12pt" - font-family="sans-serif" - line-height="15pt" - space-after.optimum="3pt" - text-align="start"> - This document has been reviewed by W3C Members and other interested parties and has been endorsed by the Director as a - W3C Recommendation. It is a stable document and may be used as reference material or cited as a normative reference from - another document. W3C's role in making the Recommendation is to draw attention to the specification and to promote its - widespread deployment. This enhances the functionality and interoperability of the Web. - </fo:block> - - <!-- Normal text --> - <fo:block font-size="12pt" - font-family="sans-serif" - line-height="15pt" - space-after.optimum="3pt" - text-align="start"> - This document specifies a syntax created by subsetting an existing, widely used international text processing standard - (Standard Generalized Markup Language, ISO 8879:1986(E) as amended and corrected) for use on the World Wide Web. It - is a product of the W3C XML Activity, details of which can be found at http://www.w3.org/XML. A list of current W3C - Recommendations and other technical documents can be found at http://www.w3.org/TR. - </fo:block> - </fo:flow> - </fo:page-sequence> + </fo:layout-master-set> + <!-- end: defines page layout --> + + <!-- actual layout --> + <fo:page-sequence master-name="basicPSM"> + + <!-- header --> + <fo:static-content flow-name="xsl-region-before"> + <fo:block text-align="end" + font-size="10pt" + font-family="serif" + line-height="14pt" > + XML Recommendation - p. <fo:page-number/> + </fo:block> + </fo:static-content> + + <fo:flow flow-name="xsl-region-body"> + + <!-- defines text title level 1--> + <fo:block font-size="18pt" + font-family="sans-serif" + line-height="24pt" + space-after.optimum="15pt" + background-color="blue" + color="white" + text-align="center" + padding-top="3pt" + font-variant="small-caps"> + Extensible Markup Language (XML) 1.0 + </fo:block> + + <!-- defines text title level 2--> + <fo:block font-size="16pt" + font-family="sans-serif" + line-height="20pt" + space-before.optimum="10pt" + space-after.optimum="10pt" + text-align="start" + padding-top="3pt"> + Abstract + </fo:block> + + <!-- Normal text --> + <fo:block font-size="12pt" + font-family="sans-serif" + line-height="15pt" + space-after.optimum="3pt" + text-align="start"> + The <fo:inline font-variant="small-caps">Extensible Markup Language (XML)</fo:inline> is a subset of SGML that is completely described in this document. Its goal is to + enable generic SGML to be served, received, and processed on the Web in the way that is now possible with HTML. XML + has been designed for ease of implementation and for interoperability with both SGML and HTML. + </fo:block> + + <!-- defines text title level 2--> + <fo:block font-size="16pt" + font-family="sans-serif" + line-height="20pt" + space-before.optimum="10pt" + space-after.optimum="10pt" + text-align="start" + padding-top="3pt"> + Status of this document + </fo:block> + + <!-- Normal text --> + <fo:block font-size="12pt" + font-family="sans-serif" + line-height="15pt" + space-after.optimum="3pt" + text-align="start"> + This document has been reviewed by W3C Members and other interested parties and has been endorsed by the Director as a + W3C Recommendation. It is a stable document and may be used as reference material or cited as a normative reference from + another document. W3C's role in making the Recommendation is to draw attention to the specification and to promote its + widespread deployment. This enhances the functionality and interoperability of the Web. + </fo:block> + + <!-- Normal text --> + <fo:block font-size="12pt" + font-family="sans-serif" + line-height="15pt" + space-after.optimum="3pt" + text-align="start"> + This document specifies a syntax created by subsetting an existing, widely used international text processing standard + (Standard Generalized Markup Language, ISO 8879:1986(E) as amended and corrected) for use on the World Wide Web. It + is a product of the W3C XML Activity, details of which can be found at http://www.w3.org/XML. A list of current W3C + Recommendations and other technical documents can be found at http://www.w3.org/TR. + </fo:block> + </fo:flow> + </fo:page-sequence> </fo:root> |