Tagged Questions

XSL-FO is a markup language for XML document formatting which is most often used to generate printed content.

learn more… | top users | synonyms

13
votes
6answers
3k views

What's the difference between XSLT and XSL-FO?

What's the difference between XSLT and XSL-FO ? Every resource I've read deal with them as if they were 1, or at least very closely tied.. Thanks in advance
5
votes
1answer
115 views

Any javascript (web-based) wysiwyg editor that produces xsl:fo

I am having a hard time finding on OSS or commercial web-based (javascript) WYSIWYG* editor that produces XSL:FO. Would I would love to have the editor capable of doing... The user is presented with ...
5
votes
3answers
274 views

How to do an XSL:for-each in reverse order

I am looking to reverse in XSL/FO a for-each loop. for instance the xml <data> <record id="1"/> <record id="2"/> <record id="3"/> <record id="4"/> <record ...
5
votes
1answer
431 views

Are there Any free XSL-FO editors?

I am looking for a free WYSIWYG editor of XSL-FO. Specifically, I would like to be able to design the FO file through a visual editor. I am aware of some that are available for purchase and ...
5
votes
4answers
3k views

XSL FO inline alignment

I need to get text aligned right and left on the same line. This should be possible, but i can't seem to find a way. I'm using Apache FOP to convert xml to pdf. Can someone help me to get this right? ...
4
votes
2answers
1k views

XSL-FO fop. Long text flows into adjacent cells/block, obscuring stuff there

Could anyone suggest me a way to make long words (like serial numbers) to be wrapped? I tried some commercial software and there is no such issue. Is it a fop bug or probably there is a solution ...
4
votes
3answers
826 views

way to convert word documnet to xsl-fo

I am using ms word 2007 , I would like to convert the word to xsl-fo ,there are some hints in the net but they do so only for renderx.Is there a tool for apache-fop ?
4
votes
2answers
1k views

Rounded corners in XSL-FO

Our client's request is to have tables in PDF with rounded corner. I only have Apache FOP processor at my disposal and it doesn't support the rounded corner attribute. It also doesn't support floats, ...
4
votes
3answers
5k views

How do you add a page break in a PDF with XSL-FO?

How do you add a page break into a document with XSL-FO? I'm using Apache FOP to create PDFs, if that makes a difference.
4
votes
11answers
923 views

Where can I find good tutorials on XSL-FO (Formating/ed Objects), the stuff one feeds to fop and get PDF's?

On a company that I've worked, me and my colleagues, implemented a tailored document distribution system on top of XSL-FO. My task was to get the script to deliver the documents and configure the ...
3
votes
1answer
91 views

How can I display a Unicode character using Apache fop? Showing “?” instead of character.

I been trying to insert a Unicode character ∇ or ▽, so it shows in the PDF generated by Apache FOP. This is what I did so far: First you have to know the correct Unicode codepoint ...
3
votes
3answers
233 views

How to dynamically change xslt page-sequence based on node attributes?

The watered-down version of the problem I'm having is this. For an XML file like: <?xml version="1.0" encoding="UTF-8"?> <items> <item cols="1">Item 1</item> <item ...
3
votes
3answers
134 views

Convert xml using xslt

I have the following xml: <fo:block font-weight="bold" font-style="italic">Some Text Here</fo:block> I need to convert it to the following using xsl: {\b\iSome Text Here\i0\b0\par} ...
3
votes
1answer
451 views

font-family in FOP

I was just wondering, is it possible, to name several alternative fonts in an FO-File? I know it's possible in HTML and CSS, but I couldn't find anything about XSL-FO. Like this: h1 { ...
3
votes
2answers
270 views

Is there a library capable of generating XSL-FO from Office XML documents like DOCX, XLSX?

Does anyone know of a library that is capable of generating XSL-FO from a Microsoft Office Open XML file, such as a Word DOCX or an Excel XLSX? Given that these Office files are basically XML in a ...
3
votes
2answers
158 views

Reading FOP images from database

My application generates PDFs using images stored in the EAR. The images are changed about on a monthly basis, and I would like to move them into the database to avoid deployment by every image file ...
3
votes
1answer
323 views

generating HTML from XSL-FO using Java

I have some PDF files generated based on some XSL-FO documents and I now need this content in HTML too. I am using FOP for creating the PDF files but this does not support HTML as an output format. ...
3
votes
2answers
564 views

XSL-FO processor for PHP : transform XML to PDF

I am looking for a PHP XSL-FO processor. What I need is an alternative to Apache FOP (in the Java world), in order to convert an XML document to PDF, but I need to execute it in a PHP environment ...
3
votes
1answer
453 views

How to manipulate page number in FOP?

I am using Apache FOP 0.95, and all I want to do is add 1 to the current page number. So, on page 12, I want to show 12 / 13. Then nothing on page 13, of course. Any ideas how I could do this, ...
3
votes
4answers
508 views

XSL-FO: is XSL-FO dead technology and only used by niche companies?

I wanted to convert some xml to a magazine like pdf document. A lot like what Latext allows you to do however i was not able to find any new books or online tutorials on the subject. Is it worth ...
3
votes
5answers
1k views

Which is the Best commercial xsl fo engine?

We have been using apache's fop 0.95 as our xsl fo engine. We basically use fop 0.95 to generate pdf documents from xml files. During the run of time we have felt that it would be better by far if we ...
3
votes
2answers
430 views

ASP .net current physical location

Hi I am developing an ASP.net web application. I need to find the current location (physical) of the web site (or the bin directory containing the assemblies). I have tried using ...
3
votes
2answers
907 views

Is there a way to use the equivalent of 'rowspan' in XSL-FO?

I want to display a text with a bigger font in the leftmost column of an <fo:table>. The columns to the right however should consist of a couple of rows with smaller text. This is how the XSL ...
3
votes
3answers
1k views

XSL-FO - Empty block elements

having a quite simple template: <xsl:template match="p"> <fo:block> <xsl:apply-templates/> </fo:block> </xsl:template> I ask myself how to tell FO to keep empty ...
2
votes
1answer
23 views

High level interface for manipulating fields in docx4j?

Is there a high level interface to manipulating document fields with docx4j? The task I am doing is to fill in the fields (and optionally remove them or not - i.e. maybe leave them filled in, or ...
2
votes
4answers
68 views

XSL - If all children has an attribute

I want to check if all children has an attribute set, and if so add 1 more element in fo: <row> <entry attribute="true"></entry> <entry attribute="true"></entry> ...
2
votes
3answers
216 views

I can't change my Font Family using Apache FOP

I use fop Quick Start Guide to print a simple PDF file from simple XML file and it works fine. but when I change <name>Frank</name> to <name>امیررضا</name> (change name to ...
2
votes
2answers
140 views

XSL-FO - how to continue numbers in two list-blocks?

Does somebody know how to achieve this with XSL-FO transformation? The question details should be clear from the codes below. Input: <section> <title>Section 1</title> ...
2
votes
3answers
89 views

Nested list with number labels

I have a nested list, and therefore I want the label to be nested too. This is my code: <!-- For first list --> <xsl:template name="list1-label"> <xsl:number format="1."/> ...
2
votes
1answer
102 views

XSLT - transform a table structure to FO

I would like to create a transformation for the INPUT to get the OUTPUT. I was trying various transformations but it didn't work. I tried to put <xsl:for-each> between <fo:table-body> and ...
2
votes
1answer
235 views

Using XSLT to create XSL-FO with nested bold/italic tags

I'm creating xslt file, which should convert my xml into xsl-fo. XML is something like that: <doc> <par> <point> <text>some text</text> </point> ...
2
votes
1answer
318 views

Vertical alignment of text in a table cell

I would like to align the text to bottom in the second cell. The first cell extends to 2 lines, because of insufficent width and that's OK But the text in the second cell is only one line and shows up ...
2
votes
1answer
111 views

Modify Printing attribute for Media Name Java Apache FOP API

Am using Apache FOP API to print a document which was working well for a while but now it is trying to print on a legal size paper on tray 1. Am wondering if i can change that to Letter size so that ...
2
votes
1answer
65 views

Create an hyperlink from SVG to a block in XSL-FO / PDF

Hope somebody can help me, I'm stuck. I am creating a set of SVG's and HTML files from an XML doc (via XSLT2), and I have hyperlinks in my SVG graphics (with xlink:href) to the HTML files. Basically, ...
2
votes
0answers
327 views

Scale down to fit an image in FOP

I am using FOP version 1.0 to create PDFs. In one of the pages I'd like to display an image (2552 x 4200 pixel) and scale it down if it doesn't fully fit on the page. As far as I could see on the ...
2
votes
2answers
284 views

Good alternative to FOP?

I'm currently using FOP to generate PDF from an XML file. But I am facing two big issues : First: FOP cannot manage OpenType Font files Second: fo:float is not implemented yet So it's impossible ...
2
votes
4answers
123 views

xslt test on a parameter of a tag

I would like to create a template in xslt with a condition on the parameter of the tag I am matching. for exemple: If I have the tags <par class="class1"> and <par class="class2"> I ...
2
votes
1answer
441 views

How to embed external pdf/txt file into another using XSL-FO?

Is it possible to embed an external PDF or TEXT document into a master PDF by using XSL-FO/XSLT? I have xslt stylesheet to produce PDF documents. But, the input XML contains inlined TEXT or Base64 ...
2
votes
2answers
143 views

how to edit a xsl file, so that it loads different templates, based on some checking?

I have two xsl file each for different type of machines for various unix flavour machines for various windows machines I want to load another xsl based on checking the osname from these xsl ...
2
votes
2answers
289 views

XSLT - Produce address labels

UPDATE Rephrasing the question to clarify confusion. I am using XSLT and XSL:FO translated by Apache FOP. I want to print address labels. INPUT <?xml version="1.0" encoding="utf-8" ?> ...
2
votes
1answer
407 views

XSL-FO static image bottom left of document, dynamic text flowing around 2 column layout?

I am creating a PDF using dynamic XML/XSL-FO from external source, I need an image bottom left of the page but its not working and flowing the text around the image. The xsl used is as follows - note ...
2
votes
2answers
464 views

Preserving linefeeds etc. in text content of XSL but not in tags itself

While building an XSL document I ran into the following problem. I want to preserve linefeeds in the original text, so I set linefeed-treatment="preserve". However, this apparantly also means it ...
2
votes
2answers
817 views

XSL-FO: Forcing a page break between each <xi:include>

I'm trying to generate a mod spec with pdf generation. The way I have it be generated is using a contents.xml file which looks like this... <?xml version="1.0" encoding="UTF-8"?> <article ...
2
votes
2answers
796 views

XSL-fo Image size issue with pdfs

I have a large number of XML documents which are created in docbook and, through maven, are published in both an html for and a pdf form. The generations works fine, and the html looks fine. The ...
2
votes
1answer
383 views

Using a dynamic URL to add a picture with XSL:FO

I want to add an image to my PDF output. The problem ist, that <fo:external-graphic src="url('URL here')"/> will accept nothing but an URL. The link to the image I want to add however is ...
2
votes
3answers
311 views

HTML to PDF in c#

I'm trying to create an application that converts a file from the HTML format to the PDF format. The approach I am using is: HTML to XHTML XHTML to Formatting Object Formatting Object to PDF I'm ...
2
votes
1answer
296 views

Apache FOP: zindex does not appear to be working in overlapping blocks

I am a FOP newb. I am trying to show text on top of an image by using block-container's and zindexes. The image is always on top though. If i remove the image, i can see the text, so the text is under ...
2
votes
1answer
1k views

Resolve relative paths when loading XSLT files

I've updated the question below Hello, I need to do a XSL transformation using Apache FOP and I have a code like this one: //Setup FOP Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF, ...
2
votes
2answers
2k views

Inserting a line break in a PDF generated from XSL FO using <xsl:value-of>

I am using XSL FO to generate a PDF file containing a table with information. One of these columns is a "Description" column. An example of a string that I am populating one of these Description ...
2
votes
1answer
240 views

ApacheFOP - Blank PDF Output?

I've been trying to transform my XML documents to PDF through Apache FOP, but the output pdf is blank. Any help to why this is occuring is greatly appreciated. The code seems to be executed without ...

1 2 3 4 5 6