From 66f70c4fcc01c186d257ca98b5310a532b3a2843 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 10 Dec 2006 22:11:35 +0000 Subject: [PATCH] Explicitly set the title via pdfmark, since that allows us to put in Unicode, which we can't (reliably) in %%Title. git-svn-id: svn://svn.tartarus.org/sgt/halibut@6987 cda61777-01e9-0310-a592-d414129be87e --- bk_ps.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bk_ps.c b/bk_ps.c index 41b70d2..4e47767 100644 --- a/bk_ps.c +++ b/bk_ps.c @@ -164,6 +164,11 @@ void ps_backend(paragraph *sourceform, keywordlist *keywords, int titlelen, count, i; title = pdf_outline_convert(oe->pdata->outline_title, &titlelen); + if (oe->level == 0) { + fprintf(fp, " [/Title"); + ps_string_len(fp, title, titlelen); + fprintf(fp, "/DOCINFO pdfmark\n"); + } count = 0; for (i = 1; i < noe && oe[i].level > oe->level; i++) -- 2.11.0