Tagged Questions
1
vote
0answers
27 views
How can I prevent text from going over the before, after, start and end blocks using xsl-fo?
I'm loading allot of text into a PDF using xsl-fo. But when it loads it fills the page entirely from border to border. Is there a way to prevent the text from being able to go over the before, after, ...
0
votes
0answers
32 views
Executing the FOP command line as batch from Perl
I am converting XML to PDF using Apache. I am executing the FOP command line as batch file( since the input file will be vary) from Perl as like below:
Creating Batch file:
open (OUT2, '>', ...
0
votes
2answers
28 views
Getting different namespaces from xml document
I would like to know how to get different namespaces from my xml document to use in a conversion to xsl-fo. What I have is the following:
XML:
<?xml version="1.0" ?>
<?xml-stylesheet ...
1
vote
1answer
34 views
Running footer not visible on first page
I am using below XSLT to generate report with running footer, but the first page of ther report doesn't have the running footer, please advice what needs to be changed
<?xml version="1.0" ...
0
votes
1answer
12 views
Can't display Image in PDF-File if height > 72px
I created a PDF-File with XSL. What iam trying to do is displaying a image with
<fo:block >
<fo:external-graphic src="url('{.//ImagePfad}')" /> ...
0
votes
1answer
23 views
XSL + Apache FOP: Adding content on the remainder of empty space on a paragraph
I'm making a PDF generator with Apache FOP and one of the main requirement is to fill the remaining empty space of a paragraph with a series of dashes like this:
This is a paragraph on a page that ...
0
votes
0answers
28 views
xsl-fo white-space-treatment=“preserve” when justifying text
I am using XSLT 1.0 to transform some XML into XSL-FO. I need to preserve all spaces, but I also need to justify the text. I'm finding that my text doesn't appear properly justified unless I set ...
0
votes
2answers
31 views
Is it possible to split a xslt file into multiples file?
I have a (currently) 3000 lines XSLT file, containing a bunch of templates. I have to add even more stuff to it and it's becoming pretty much unmanageable.
So could I split it and add includes of ...
-3
votes
0answers
50 views
Any free XSL FO (PDF) wysiwyg designer software? [closed]
I need to create some FO (PDF) documents using XSL. Does anyone know of any free designer wysiwyg softwares? Thank you
0
votes
2answers
67 views
XSL-FO Table break every 5 columns
I am creating an fo:table that has 25 columns.
When I am converting to PDF the table is too wide for the size of the page (A4), how can I break the table by column, for example, every 5 columns I want ...
2
votes
1answer
38 views
Chapter numbering in XSL-FO
I have xml of the form:
Chapter 1
Chapter 1.1
Chapter 1.1.1
Chapter 1.2
<CHAPTER>
...
1
vote
3answers
76 views
Generate a pdf to document a database in XSLT
I have a XML related to a database and have to generate a PDF to document the database. I am using FOP to convert XSLT to PDF.
XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
...
1
vote
2answers
55 views
XSLT to generate xsl fo from HTML with varying namespace
I have a XSLT file which is used for html to xsl-fo conversion using fop engine.
It has templates for HTML elements as shown below
<pre>
<xsl:stylesheet ...
1
vote
1answer
63 views
Can't display Image in created PDF-File
I'am working with xsl-fo.
To include an image in a PDF-File i have written the following lines:
<fo:static-content flow-name="kopf"> <fo:external-graphic ...
0
votes
0answers
48 views
WMF file format in XSLFO
I am trying to convert Docx to Pdf with the document.xml file from the docx using Apache FOP.
I am facing problem to embed the wmf equation files in PDF, it showing the following error:
WARNING: ...
0
votes
0answers
139 views
How to let xsl:fo allow table cell to take empty blocks and print mutiple lines
I have a one row and one of the columns has a list of data. Say I have a row, the 3rd column has 0 or more rows. <xsl:for-each select="./parts"> and for some reason the code I have doesn't seem ...
1
vote
0answers
86 views
How can I keep page breaks out of groups of table rows in XSL-FO
I've got a rather complicated table, which i think is the source of my problem. The table is filled based on data retrieved from an XML file from a client database. Here is an excerpt of the XSL code ...
0
votes
1answer
52 views
How to apply different page width for different pages in xsl? This is for generating PDF
I have to generate a pdf using xml and xsl.
On the PDF i need different width for different pages.
How can I achive this?
Thanks and Regards
Krishnan
0
votes
1answer
203 views
XSLT Generate Dynamic Rows and Columns for Apache FOP
For the following xml file, i need to generate an xsl-fo file to be converted into pdf.
I am new to style sheets and struggling to create dynamic table. Please help.
Also, the width for each column ...
0
votes
0answers
86 views
Debugging XSL-FO overflows
My PDF generation is throwing a bunch of overflow warnings
Namingly
INFO: An fo:table (No context info available) is wider than the available room in inline-progression-dimension. Adjusting ...
0
votes
1answer
80 views
XSLFO - using xsl:import or xsl:include causes error when creating PDF
I have used XSLFO to generate PDF files, which is working perfectly.
There is some code within the XSLFO that I would like to put into a common file to be used by all the PDF's, but when I add an ...
0
votes
2answers
137 views
XSL Fo - Speacial characters
I am designing an xsl form, my source pdf contains 'Diamond' symbols
I need to know how to use/create diamond character using xsl(is there any font family i can configure and use/can i get the ...
2
votes
2answers
65 views
XSL rounding issue
I have an XSL style sheet and I’m using format-number(xpath,"#,##0") to round the value. On my local machine the value 1006.5 gets rounded to 1007. However, the same style sheet on the server rounds ...
1
vote
1answer
181 views
HTML to PDF using XSL FO is having pagination issue - displays only the first page
I'm using a Java class(http://pastebin.com/KhSGPmCV) that takes in an HTML document and tries to convert it to a PDF document by the following steps:
Uses Tidy to parse it into an XML document.
Uses ...
2
votes
1answer
191 views
XSL-FO test the value of <fo:page-number/>
I have a .xml file and I would like to generate a .pdf file. I use xsl-fo to make this happen.
The problem is that I cannot request the number of the current page in order to store it into a variable ...
0
votes
0answers
81 views
using styles with html to xsl-fo
I am converting an HTML String to xsl-fo and then outputting it as a PDF. I have several tables that are shown in the PDF and they are packed too closely due to a lack of CSS rules. I tried to specify ...
1
vote
2answers
164 views
How to strip Unicode soft hyphen from PDF bookmarks generated using XSL-FO
I'm converting DITA maps to PDF using the DITA Open Toolkit 1.7 and RenderX XEP. In the DITA topics, product names are inserted using conrefs. One of my product names is quite long. It caused layout ...
1
vote
0answers
127 views
XSL-FO external graphic not rotating properly
I've suddenly developed the problem where the graphics in my resulting PDF don't have the proper rotation, or orientation. Photos taken with an iPhone in portrait orientation have started appearing ...
0
votes
2answers
149 views
How to create an XSL FO From an XHTML File? How can I can convert XHTML to XSLFO?
I have an XHTML Template.
I want to create an XSL FO from the XHTML Template.
How can I can convert XHTML to XSLFO?
I created XSL FO by using string replacement of XHTML File.
Is it possible to create ...
1
vote
1answer
105 views
link an XML document with an XSL-FO stylesheet
The linking of an XML document with an XSLT stylesheet can be done with:
< ?xml-stylesheet type="text/xsl" href="foobar.xsl"?>
placed in the XML document.
How can I bind my XML document to an ...
1
vote
2answers
55 views
Fragmenting XSL stylesheets
The stylesheet I'm using currently to transform XML to PDF has become really big and going out of control. It has become a maintenance nightmare.
I'm planning to redesign this style sheet by ...
0
votes
1answer
157 views
Calculating string length of text node when parent has other child nodes too
I am stuck with XSLT 1.0 making a hyphenation script for verbatim output to PDF. (note it is PDF so I can't use clever CSS to hellp me out.
I would like to be able to access both text() nodes and ...
1
vote
2answers
256 views
how to parse the xml inside CDATA of another xml using xslt?
I need to transform the XML inside the CDATA of the XML using the single XSLT.
I have an XML as below with xml inside the CDATA as in the below xml.
<message ...
1
vote
1answer
129 views
XSL-FO: Need to disable page break at page sequence level
My requirement is to produce, essentially, a page WITHIN a page. The xsl defines a page 1/3 the size of an A4 sheet, but up to 3 of them must print on the sheet. The page is a standard ...
0
votes
0answers
261 views
xsl fo page size / orientation
I am designing an xsl that will give a pdf output. My pdf output is in landscape format.
I can't get the landscape formatted output even i change the simple page master as follows,
Still my pdf ...
0
votes
0answers
46 views
How can i prevent column from overflow
I create a PDF file with a Table. My Problem is that some columns are overflowing.
To illustrate my Problem i made a Screenshot:
Overflow
I tried overflow="hidden" but this doesn't work. I use ...
0
votes
1answer
223 views
xsl to pdf - empty pages
I am experiencing with xsl and pdf output. I have a xml file like this:
<?xml version="1.0" encoding="utf-8" ?>
<document>
<header>
<author>my name</author>
...
0
votes
1answer
48 views
How to increment the inner loop index from its previous state in XSL
How to increment the inner loop index from its previous state in XSL. what could the best approach, whether to maitain a seperate global variable best or use any inbuilt function. I am new to XSL so, ...
0
votes
1answer
115 views
.fo creates PDF file not as expected
I have an XSLT stylesheet that outputs XSL-FO, which is used to generate a PDF file. I am returning bookings of the current week and want to print the bookings in the PDF file grouped-by the weekday. ...
1
vote
1answer
49 views
How do I output separate pdf/tiff files for each individual pages from a large xml file?
I am using xsl-fo to generate pdf/tiff files. I want to output separate pdf/tiff files for each individual pages from a large xml file. Is it possible?
0
votes
1answer
118 views
Is there an alternative to “keep-together='always'” on table-row?
Upon finding the "keep-together" attribute, and needing to not page break inside a row I added keep-together="always" on every table-row element in my xslt.
Is there a nicer way of achieving the same ...
0
votes
1answer
182 views
XSLT text repeating across pages
I am producing a letter (pdf) using XSLT-FO. On the first page I have the company logo/image and the start of the letter content. I don't want to show the logo on any other pages so I am using ...
1
vote
1answer
80 views
Emacs Support for DocBook5 and XSLT
I am just starting out with Emacs for creating DocBook5 documents. (Because some vendors who offered free editions of their XML authoring software have now ceased to do so. For example, Syntext Serna ...
0
votes
2answers
411 views
What is wrong with my xsl-fo code
I am trying to generate a pdf using apache-fop from the following command.
C:\fop-1.0-bin\fop-1.0>fop -xml sample1.xml -xsl xsl-fo.xsl -pdf sample2.pdf
My xml looks like this
<?xml ...
0
votes
2answers
271 views
How to cut a long string into fixed length lines in XSL FO?
This is just info sharing. I already know the solution :) I did it the hard way !! I want two things here:
To share what I reached so far.
To know if anyone has a better solution
0
votes
1answer
49 views
How to have different formatting under same fo:block in XSL stylesheet?
I have a stylesheet as follows(snippet):
<fo:block xsl:use-attribute-sets="header" text-align-last ="justify">
<xsl:value-of xsl:use-attribute-sets="branding" select="$pTitle"/>
...
0
votes
1answer
386 views
Apache FOP XML - XLS-FO generates invalid pdf
I'm trying to create a PDF document with Apache FOP from an xml file that is formatted with an xlst stylesheet to convert the original xml file to an xml-fo formatted xml file.
As I'm new to this, I ...
0
votes
3answers
135 views
XSL FO transformation won't work if I have schema location inside XML file
My XSL-FO transformation will not work with XML specified below. It seems those xmlns and schemaLocation are bothering the transformation.
<book
xmlns="http://www.example.org/book"
...
0
votes
1answer
72 views
Avoiding the second page when first page is sufficient in xsl itself
I have got the solution to the problem, want to thank you all you guys since without your timely solutions and advise this was impossible to achieve and solve thanks a lot..!!
A solution to this ...
0
votes
2answers
875 views
XSL-FO external-graphic not showing
I'm having some issues getting the external-graphic to show in my PDF. I've tried using all sorts of paths using the url() but nothing seems to work. Is it something else I'm missing? I'm pretty new ...

