1[/ 2 Copyright 2013-2018 Daniel James 3 4 Distributed under the Boost Software License, Version 1.0. 5 (See accompanying file LICENSE_1_0.txt or copy at 6 http://www.boost.org/LICENSE_1_0.txt) 7] 8 9[chapter Building PDFs 10[id boost_doc_tools.pdfs] 11[source-mode teletype] 12] 13 14To build pdf you will need an FO processor, we recommend using 15[@http://www.renderx.com/download/personal.html 16XEP Personal edition]. You will also need a Java virtual machine to run the FO 17processor on. 18 19You will then need to edit your [^user-config.jam] file to point to the 20location of the FO processor, for example: 21 22 using fop : 23 # path to invocation batch file: 24 C:/Progra~1/RenderX/xep/xep.bat 25 : 26 # path to Java installation, this is ignored if you're using XEP: 27 C:/PROGRA~1/Java/j2re1.4.2_12 28 ; 29 30You should now be able to build pdf docs via: 31 32 bjam pdf 33