- From: Chris Lilley <chris@w3.org>
- Date: Tue, 19 Sep 2000 18:10:18 +0200
- To: francis@redrice.com
- CC: www-svg@w3.org
Francis Norton wrote:
>
> Hello,
>
> I would be very interested to know how SVG documents intended for
> print-only agents should indicate preferred page-breaks.
<mypagedML>
<?xml-stylesheet href="foo.css" media="print" ?>
<page>
<svg /><!-- first page svg goes here
</page>
<page>
<svg /><!-- second page svg goes here
</page>
<!-- and so forth -->
</mypagedML>
foo.css contains the one line CSS stylesheet
page { page-break-before: always }
or, if you want to get real fancy, add a second line
page > svg {width: 100% !important; height: 100% !important }
just to ensure that all the pictures fit onto the page. Obviously you can
specify page margins, etc as usual.
--
Chris
Received on Tuesday, 19 September 2000 12:11:07 UTC