jochem
jochem

Reputation: 247

Generating PDF documents from LISP

I want to generate a technical report from lisp (AllegroCL in my case) and I studied various packages/project to help me do this.

Requirements:

Possibilities:

Question:

Do you know alternatives to easily generate (PDF) reports from lisp. What is the best workflow to go for?

Upvotes: 4

Views: 1409

Answers (1)

Attila Lendvai
Attila Lendvai

Reputation: 1351

we are using cl-pdf and cl-typesetting for the last 3 years and it has numerous issues... (like its confusion around encodings, or silently not rendering things that don't fit, or...) so, i don't recommend new development based on them.

currently we are in the process of moving all our export mechanisms to open document format. openoffice is all happy with it, and there's a plugin for ms office, too.

there's .fodt, the so called flat open document text format, which is a mere xml file describing a document. generating it is as easy as generating xml files.

you can also make parts of your document read-only with a password (insert a section and mark it read-only and protected by a password. when generating the xml, you can generate random hashes as password...).

Upvotes: 5

Related Questions