Anyone have any experience generating either power point of PDF
"slides" from Docbook?
Here's what I'm thinking:
Each section is a slide with a title and then a list of bullet points
and/or images, etc.
Can the Maven plugin help me do this? Or is it just a matter of
getting PDF generation right?
Thanks,
Grant
On Mar 2, 2009, at 7:03 PM, Grant Ingersoll wrote:
> Alas, though, it still doesn't produce what I want.
>
> Ultimately, I want a docbook file that I can do the following:
> 1. Easily produce an outline of a training course - This really just
> means the titles of all the sections, as generated by the TOC part
> of the stylesheets
This is easy using traditional <book> sections, etc. and then I have
an XSLT that just outputs the TOC. Easy-peasy.
> 2. Easily produce a slide deck from class. (Ideally, Powerpoint,
> but PDF is good enough). In my case, the content of a sect1 or
> sect2 represents a single slide. See [1] below.
OK, this was a bit trickier, esp. when it came to PDF generation. I
did as in [1] below, but I had to add in hard page break processing
instructions and handle them in my fo-customization. See http://www.sagehill.net/docbookxsl/PageBreaking.html#HardPageBreaks
This works great, and I can now make a "slide" anywhere I want while
still maintaining the hierarchy, etc..
> 3. Easily produce a manual (slides + notes)
This is handled through a fo-customization
> 4. HTML for online viewing
This is handled through a html-customization
> 5. PDF for distribution
See #2 & #3
>
>
> [1] For sect1 and sect2, some sect1 will have content in a <para>
> tag, so I may have:
> <sect1>
> <title>Title</title>
> <para>
> <itemizedList>...</itemizedList>
> </para>
> <sect2>
> <title>Sect 2 Title</title>
> <para>
> <itemizedList>...</itemizedList>
> </para>
> </sect2>
> </sect1>
>
I'm now pretty darn happy with it all. I'd still love to be able to
output PPT, but I can live w/ PDF.
I think the added benefit of all this is I also have the flexibility
to output more in depth manuals, too, all from the same source.
Cheers,
Grant
Hello,
Did you have a look at http://open.comsultia.com/docbook2odf/ stylesheets? I never (yet) found the time to test them and why not include them in our tool.
Is OpenOffice an acceptable output for you?