7

我正在使用 Docbook 5 (docbook-xsl-ns),使用 Apache FOP 生成 PDF,我想将所有文本移到左侧。我该怎么做?

源 XML 是:

<section>
        <title>Usage</title>
        <programlisting>mvn archetype:generate -DarchetypeGroupId=cz.csob.javor -DarchetypeArtifactId=javor-archetypes-subcomponent -DarchetypeVersion=X.Y.Z</programlisting>
        <para>During the subcomponent project generation you will be asked for the following properties:</para>
        <itemizedlist>
            <listitem>
                <para><emphasis>parent-component-id</emphasis> - ID of the parent component, should be the name of the directory the parent component project is placed in</para>
            </listitem>
            <listitem>...

在此处输入图像描述

谢谢。

4

1 回答 1

8

body.start.indent由参数添加的段落缩进。

您应该使用测量值设置此参数的值,因为它在其他 XSLT 模板中用于计算。例如,下一行将完全删除段落缩进:

<xsl:param name="body.start.indent">0pt</xsl:param>

所有 XSLT 定制层应该是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    version="1.0">
    <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
    <xsl:param name="body.start.indent">0pt</xsl:param>
</xsl:stylesheet>

本主题的参考文档

也可以使用其他缩进选项:

  • page.margin.inner- 左页边距
  • page.margin.outer- 右页边距

顶部和底部边距(来自文档)

例如,下一个参数将使此页面布局3

<xsl:param name="page.margin.inner">20mm</xsl:param>
<xsl:param name="page.margin.outer">10mm</xsl:param>
<xsl:param name="page.margin.top">12.5mm</xsl:param>
<xsl:param name="page.margin.bottom">15mm</xsl:param>

<xsl:param name="region.before.extent">10mm</xsl:param>
<xsl:param name="region.after.extent">5mm</xsl:param>

<xsl:param name="body.margin.top">15mm</xsl:param>
<xsl:param name="body.margin.bottom">15mm</xsl:param>

生成的页面布局

于 2013-06-28T17:24:27.527 回答