182 | | ''TODO'' |
| 182 | First 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 | |
| 187 | The 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 | |
| 189 | You will then need to edit your user-config.jam file to point to the location of the FO processor, for example: |
| 190 | |
| 191 | {{{ |
| 192 | using 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 | |
| 201 | You should now be able to build pdf docs via: |
| 202 | |
| 203 | {{{ |
| 204 | bjam pdf |
| 205 | }}} |
| 206 | |