Changes between Version 29 and Version 30 of BoostDocs/GettingStarted


Ignore:
Timestamp:
Dec 11, 2008, 1:01:19 PM (14 years ago)
Author:
John Maddock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoostDocs/GettingStarted

    v29 v30  
    180180== How to build pdfs ==
    181181
    182 ''TODO''
     182First of all you will need an FO processor, there are basically only two free two choices here:
     183
     184* Apache FOP from http://xmlgraphics.apache.org/fop/
     185* XEP Personal edition from http://www.renderx.com/download/personal.html
     186
     187The XEP processor generally produces much better results, but inserts a small "built with XEP" advert in the footer of each page.  You will also need a Java virtual machine to run the FO processor on.
     188
     189You will then need to edit your user-config.jam file to point to the location of the FO processor, for example:
     190
     191{{{
     192using fop : 
     193   # path to invocation batch file:
     194   C:/Progra~1/RenderX/xep/xep.bat
     195   :
     196   # path to Java installation, this is ignored if you're using XEP:
     197   C:/PROGRA~1/Java/j2re1.4.2_12
     198   ;
     199}}}
     200
     201You should now be able to build pdf docs via:
     202
     203{{{
     204bjam pdf
     205}}}
     206