mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-19 06:22:16 +00:00
40 lines
859 B
XML
40 lines
859 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE document SYSTEM "rml.dtd">
|
|
|
|
<document
|
|
filename="simple-layout.pdf"
|
|
xmlns:doc="http://namespaces.zope.org/rml/doc">
|
|
|
|
<stylesheet doc:example="">
|
|
<paraStyle
|
|
name="large"
|
|
fontSize="3cm"
|
|
textColor="red"
|
|
doc:example=""
|
|
/>
|
|
</stylesheet>
|
|
|
|
<template
|
|
pagesize="(21cm, 29cm)"
|
|
rotation="180"
|
|
leftMargin="1cm"
|
|
rightMargin="2cm"
|
|
topMargin="3cm"
|
|
bottomMargin="4cm"
|
|
showBoundary="true"
|
|
allowSplitting="true"
|
|
title="Test Template Document"
|
|
author="Stephan Richter">
|
|
|
|
<pageTemplate id="main">
|
|
<frame id="main" x1="1.5cm" y1="3.5cm" width="18cm" height="22cm" />
|
|
</pageTemplate>
|
|
|
|
</template>
|
|
|
|
<story doc:example="">
|
|
<para style="large">Hello <b>World</b>!</para>
|
|
</story>
|
|
|
|
</document>
|