I'm not sure if this is the right place to ask this,so if I'm wrong please let me know where it would be the best place.

I'm working on a project that creates tools customized for several customers. The company policy requires that they get the documentation in word and/or PDF, using a very specific template (available in WORD, and my attempts to translate it in LATEX didn't produce a great output)

The basic document is mostly the same, but some command line option may not be available for a customer, some configuration options may not be available for them, some input file format may be different (a whole section of the document in this case) and the configuration file example is/should be specific to each customer.

I want to generate the documentation automatically, based on the program output (the tool has support to display command line options and configuration options ), a template (not decided if it's going to be a word template or something else) and a minimal (preferably none) customer specific configuration file.

The environment is Linux, and preferred language is python.

Given the above conditions, how would you approach the problem ? Is there some tool that may help here ? Can you suggest any google keywords to search for ?

What I've tried:

  • converted the template to latex and using m4 to generate the final latex and convert to PDF - can't really reproduce the PDF output of the WORD
  • using python to automate OpenOffice.org (I'm still investigating this)
link|improve this question
There are various commercial tools that do this, but I doubt you'd be interested in them, given that you mentioned OpenOffice, and you're probably trying to do this on a shoestring. – Robert Harvey Jan 27 at 21:49
I would absolutely keep hammering away at latex on this - for the easy automation and linux aspects. Have you tried talking to the guys at the tex stack-exchange site? – Joe Jan 27 at 21:55
@Robert Harvey: I don't get the shoestring reference. If you mean I'm trying to do it cheap, OpenOffice is the only decent office suite available on Linux (I'm trying to avoid wine). At the moment of asking it was kind of "go away or I will replace you with a small script" project addressed to the tech writer. However given the fact that in the last 10 days the number of installations tripled and we are way behind with the documentation, I think the company would gladly pay to remove the doc bottleneck – Sorin Jan 28 at 8:39
@joe, I was planning to do that, thanks for the suggestion. – Sorin Jan 28 at 8:41
feedback

1 Answer

Take a look at Sphinx. I've been using it for documentation for several years now and am pretty happy with it.

It supports pdf generation via reportlab.

link|improve this answer
Thanks, I will look into it – Sorin Jan 31 at 7:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.