XSL-FO document
Translation results:
XSL-FO is used to format XML data for output.
XSL-FO documentsyntax
XSL-FO documents are XML files with output information.
XSL-FO documents are stored in files with a .fo or .fob file extension. You can also save the XSL-FO document as a file with an .xml extension, which makes the XSL-FO document more accessible to XML editors.
XSL-FO documentexample
<?xml version="1.0" encoding="ISO-8859-1"?> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <fo:simple-page-master master-name="A4"> <!-- Page template goes here --> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference="A4"> <!-- Page content goes here --> </fo:page-sequence> </fo:root>