From divanov at aha.ru Tue Jan 27 16:17:16 2004 From: divanov at aha.ru (Dmitri Ivanov) Date: Tue, 27 Jan 2004 19:17:16 +0300 Subject: [cl-pdf-devel] CL-PDF and non-latin character sets Message-ID: <000301c3e4f1$302c3280$6d5702c3@digo> Hello lispniks, Have anybody succeeded in generating documents in languages like Russian with CL-PDF? Is it possible to embed T1 fonts or specify TrueType fonts without becoming a PDF expert? -- Sincerely, Dmitri Ivanov lisp.ystok.ru From emarsden at laas.fr Thu Jan 29 17:02:12 2004 From: emarsden at laas.fr (Eric Marsden) Date: Thu, 29 Jan 2004 18:02:12 +0100 Subject: [cl-pdf-devel] PATCH: pdf metainformation & min-value for histograms Message-ID: Hi, The attached patch makes it possible to add PDF metainformation to generated documents: author name, keywords, generation date etc. This information is available using the pdfinfo tool from xpdf, or under Files -> Document Properties from Acrobat Reader. PDF metainformation is added by using options to WITH-DOCUMENT, as per (pdf:with-document (:author "?ric Marsden" :title "Foo Bar") ...) Secondly, the patch makes it possible to override the min-value and max-value of a histogram by supplying arguments to :Y-AXIS-OPTIONS in the constructor. The current code means that the values calculated by the histogram code take precedence over any values supplied by the user. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: cl-pdf-20040129.diff URL: -------------- next part -------------- -- Eric Marsden From marc.battyani at fractalconcept.com Thu Jan 29 22:33:26 2004 From: marc.battyani at fractalconcept.com (Marc Battyani) Date: Thu, 29 Jan 2004 23:33:26 +0100 Subject: [cl-pdf-devel] PATCH: pdf metainformation & min-value for histograms References: Message-ID: <08e801c3e6b7$e9f50b20$0303a8c0@marc2> "Eric Marsden" writes: >The attached patch makes it possible to add PDF metainformation to >generated documents: author name, keywords, generation date etc. This >information is available using the pdfinfo tool from xpdf, or under >Files -> Document Properties from Acrobat Reader. >PDF metainformation is added by using options to WITH-DOCUMENT, as per > (pdf:with-document (:author "?ric Marsden" > :title "Foo Bar") > ...) >Secondly, the patch makes it possible to override the min-value and >max-value of a histogram by supplying arguments to :Y-AXIS-OPTIONS in >the constructor. The current code means that the values calculated by >the histogram code take precedence over any values supplied by the >user. Hi Eric, Thanks for these patches, I have commited them to the cl-pdf repository. I also applied the same kind of modification for the plot-xy chart. Marc