Want to get rid intentation for figures in FO

Hi, I designed a booklet with a couple of figures with oxygen. The booklet is transformed with FO. I have changed already the Transformation Scenery to fit to my purpose. However, I cannot get rid of the way figures are indented with FO. I have already made some preparations and copied fo_param.xsl, fo.css, and docbook.xsl into the following structure. The paths in docbook.xsl were changed to account for a not normal place. project/ ├── README.txt ├── project.xpr ├── xml/ │ ├── book.xml │ └── cha-intro.xml └── xslt/ ├── fo/ │ ├── fo_param.xsl │ ├── fo.css │ └── docbook.xsl └── xhtml/ Where can I now find the information which when changed will enable to get rid of figure indentation. Thanks a lot Bernhard -- spitzhalde9 D-79853 lenzkirch bernhard.kleine@gmx.net www.b-kleine.com, www.urseetal.net - thunderbird mit enigmail GPG schlüssel: D5257409 fingerprint: 08 B7 F8 70 22 7A FC C1 15 49 CA A6 C7 6F A0 2E D5 25 74 09

Since you are using DocBook, the easiest solution would be to add a pgwide="1" attribute on the figure elements. That forces the graphic to the full width of the page. See: http://www.sagehill.net/docbookxsl/Graphics.html#GraphicElements In general, the above online book covers a lot of formatting issues for DocBook. Bob Stayton Sagehill Enterprises bobs@sagehill.net On 8/2/2018 8:55 AM, Bernhard Kleine wrote:
Hi,
I designed a booklet with a couple of figures with oxygen. The booklet is transformed with FO.
I have changed already the Transformation Scenery to fit to my purpose. However, I cannot get rid of the way figures are indented with FO.
I have already made some preparations and copied fo_param.xsl, fo.css, and docbook.xsl into the following structure. The paths in docbook.xsl were changed to account for a not normal place.
project/ ├── README.txt ├── project.xpr ├── xml/ │ ├── book.xml │ └── cha-intro.xml └── xslt/ ├── fo/ │ ├── fo_param.xsl │ ├── fo.css │ └── docbook.xsl └── xhtml/
Where can I now find the information which when changed will enable to get rid of figure indentation.
Thanks a lot
Bernhard
_______________________________________________ oXygen-user mailing list oXygen-user@oxygenxml.com https://www.oxygenxml.com/mailman/listinfo/oxygen-user

Thanks a lot, that went well. I am almost finished with the booklet. I struggle with pagebreak before sections level 1. I have this start of the file: <?xml version="1.0" encoding="UTF-8"?> <?xml-model href="http://docbook.org/xml/5.1/rng/docbookxi.rng" schematypens="http://relaxng.org/ns/structure/1.0"?> <?xml-model href="http://docbook.org/xml/5.1/sch/docbook.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?> <?xml-stylesheet type="text/xsl" href="../xslt/fo/Falterbuechlein.xsl"?> <book xmlns="http://docbook.org/ns/docbook" xml:lang="de" xmlns:xi="http://www.w3.org/2001/XInclude" Falterbuechlein.fo looks like this:
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl" exclude-result-prefixes="xs xd" version="2.0"> <xd:doc scope="stylesheet"> <xd:desc> <xd:p><xd:b>Created on:</xd:b> Aug 4, 2018</xd:p> <xd:p><xd:b>Author:</xd:b> bk</xd:p> <xd:p></xd:p> </xd:desc> </xd:doc> <xsl:attribute-set name="section.level1.properties"> <xsl:attribute name="break-before">page</xsl:attribute> </xsl:attribute-set> </xsl:stylesheet>
However, it is not used. What to do to make it working? -- spitzhalde9 D-79853 lenzkirch bernhard.kleine@gmx.net www.b-kleine.com, www.urseetal.net - thunderbird mit enigmail GPG schlüssel: D5257409 fingerprint: 08 B7 F8 70 22 7A FC C1 15 49 CA A6 C7 6F A0 2E D5 25 74 09
participants (2)
-
Bernhard Kleine
-
Bob Stayton