DOCBOOK-APPS: dsssl newbie Q: define padding in tables for - tex - pdfoutput

2002-06-14 Thread zope-mailinglist

hello

is there a way to increase the padding in tables when using the dsssl 
stylesheets to create pdf?

or does anybody know a good source of information regarding the 
customization of the dsssl stuff (e.g. table style, fonts ...)
besides the parameterized stuff

tia, bernd



Re: DOCBOOK-APPS: xsl fop and glossary format in pdf trouble

2002-06-12 Thread zope-mailinglist

Bob Stayton wrote:
 On Tue, Jun 11, 2002 at 05:21:20PM +0200, zope-mailinglist wrote:
 
hello all

i'm using the xsl stylesheets to create a pdf file using fop
everything in the latest version

i have a problem with my glossary
due to the fact, that e have relatively long terms, the term is written 
over the definition in pdf, where the glossary is in table format.

questions:
1. is there a variable to get my glossary in block format like for 
variablelist through:
xsl:param name=variablelist.as.blocks select=1/

2. is there a possibility to make the term wrap in its table cell, this 
would be the best.
 
 
 Well, a glossary isn't in a table.
 The current fo stylesheet puts a glossary in a
 fo:list-block, glossentries in a
 fo:list-item, the glossterm in a fo:list-item-label
 and the glossdef in a fo:list-item-body.
 So the fo output is already doing the equivalent of
 the variablelist.  The label just isn't being handled
 properly by FOP when it is longer than its designated
 width.
 


thanks for your response

there are so many small issues with fop, that i have switched to 
passivetex for pdf generation

cheers



DOCBOOK-APPS: change header in glossary xsl fo

2002-06-12 Thread zope-mailinglist

hello

i think i understood something wrong, hm
i try to customize the header in my glossary, because for some reason, 
the title of the last chapter of my book is in there ?!
seems to be a bug i think, normally the title of the glossary should 
appear in the header of a glossary, right?

for testing it i put this in my custom.xsl:

xsl:template match=glossary mode=running.head.mode
xsl:texthello the running head/xsl:text
/xsl:template

but this has no effect on the pdf output

thanks in advance, bernd



Re: DOCBOOK-APPS: change header in glossary xsl fo

2002-06-12 Thread zope-mailinglist

Bob Stayton wrote:
 On Thu, Jun 13, 2002 at 12:02:19AM +0200, zope-mailinglist wrote:
 
hello

i think i understood something wrong, hm
i try to customize the header in my glossary, because for some reason, 
the title of the last chapter of my book is in there ?!
seems to be a bug i think, normally the title of the glossary should 
appear in the header of a glossary, right?

for testing it i put this in my custom.xsl:

xsl:template match=glossary mode=running.head.mode
xsl:texthello the running head/xsl:text
/xsl:template

but this has no effect on the pdf output
 
 
 That's not surprising since the running.head.mode 
 outputs the proper fo: tags around the text to
 get it to appear in the running head.
 
 The running.head.mode outputs only chapter or appendix
 information in the current 1.51.1 fo stylesheets.  If your
 glossary is a separate element following your last chapter
 (not inside the chapter), then it should have no running head at all.
 If it does, then that's a fo processor bug.
 
 If your glossary element is inside your last chapter
 element, then that explains why the running head is for the
 last chapter.
 
 Assuming you put your glossary as a sibling element
 after your last chapter, you still want the running head to show.
 It looks like adding the glossary to the list of
 elements with a running head is not that simple.
 You'd have to copy the entire template
 xsl:template match=chapter|appendix mode=running.head.mode
 from pagesetup.xsl to your customization file and then
 change the match to glossary, or perhaps to
 chaper|appendix|glossary if you plan further
 customizations of all the running heads.
 The reason the template is so long is that it outputs
 the fo:static-content elements and handles
 the left/right/center alignment based on the
 master page type.
 
 Or you could file an RFE on the DocBook SourceForge site
 to request that change for the next distribution.  8^)
 


thanks for the fast response

  If your glossary element is inside your last chapter
  element, then that explains why the running head is for the
  last chapter.

i also thought that this is the case, but it's a sibling

do you have any suggestions about whats the best docbook xml to pdf 
method? either on  win32 or unix


i'm nearly finished with writing my thesis and can't get a proper pdf output

i tried fop before, but there are other issues, regarding vector images
fop seems to be unable to handle advanced svg drawings created with 
illustrator

cheers



DOCBOOK-APPS: xsl fop and glossary format in pdf trouble

2002-06-11 Thread zope-mailinglist

hello all

i'm using the xsl stylesheets to create a pdf file using fop
everything in the latest version

i have a problem with my glossary
due to the fact, that e have relatively long terms, the term is written 
over the definition in pdf, where the glossary is in table format.

questions:
1. is there a variable to get my glossary in block format like for 
variablelist through:
xsl:param name=variablelist.as.blocks select=1/

2. is there a possibility to make the term wrap in its table cell, this 
would be the best.

thanks in advance, bernd