template_pdf.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. -->
  3. <!-- revise @PLACEHOLDER@ names and values-->
  4. <!--
  5. | basedir can be specified to other places base on your need.
  6. |
  7. | Note: input, output, and temp directories will base on the basedir if
  8. | they are relative paths.
  9. * -->
  10. <project name="@PROJECT.NAME@_pdf" default="@DELIVERABLE.NAME@2pdf" basedir=".">
  11. <!-- dita.dir should point to the toolkit's root directory -->
  12. <property name="dita.dir" location="${basedir}${file.separator}..${file.separator}..${file.separator}.."/>
  13. <target name="@DELIVERABLE.NAME@2pdf">
  14. <ant antfile="${dita.dir}${file.separator}build.xml">
  15. <!-- please refer to the toolkit's document for supported parameters, and
  16. specify them base on your needs -->
  17. <property name="args.input" location="@DITA.INPUT@"/>
  18. <property name="output.dir" location="@OUTPUT.DIR@"/>
  19. <property name="transtype" value="pdf"/>
  20. </ant>
  21. </target>
  22. </project>