changeset 985:25b4c8410278

* sgml/jadetex.cfg: Add this to configure PDF output nicely with index and coloured links. * sgml/makemakefile: modified copyfiles to copy png-s instead of gif-s. * sgml/README-PDF: Comment on pdfjadetext failure and workaround.
author jlarmour
date Thu, 01 May 2003 23:00:01 +0000
parents b132c55cd8c6
children 82f8569b6d40
files doc/ChangeLog doc/sgml/README-PDF doc/sgml/jadetex.cfg doc/sgml/makemakefile
diffstat 4 files changed, 23 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,14 @@
+2003-05-01  Jonathan Larmour  <jifl@eCosCentric.com>
+
+	* sgml/jadetex.cfg: Add this to configure PDF output nicely with index
+	and coloured links.
+
+2003-03-23  Iztok Zupet  <iz@vsr.si>
+
+	* sgml/makemakefile: modified copyfiles to copy png-s instead of 
+	gif-s.
+	* sgml/README-PDF: Comment on pdfjadetext failure and workaround.
+
 2003-03-27  Thomas Koeller  <thomas.koeller@baslerweb.com>
 
         * sgml/makemakefile: Modified to generate makefile that can
--- a/doc/sgml/README-PDF
+++ b/doc/sgml/README-PDF
@@ -1,5 +1,6 @@
 To build the PDF version of docs (on Linux), simply use:
-make pdf
+make pdfa4 for A4 size or
+make pdfletter for US letter size
 
 If Your pdfjadetex complains with
 	> ! TeX capacity exceeded, sorry [save size=5000].
@@ -7,6 +8,12 @@ then define
 	save_size.pdfjadetex=10000 (at least) in
 	/usr/share/texmf/web2c/texmf.cnf instead of 5000.
 
+If Your pdfjadetex complains with
+	> ! TeX capacity exceeded, sorry [number of strings=55000].
+then define
+	max_strings.pdfjadetex=155000 (for instance) in
+	/usr/share/texmf/web2c/texmf.cnf instead of 5000.
+
 If You don't get coloured links in Your output, or if You 
 wish to modify the pdfjadetex default behaviour then add
 a file named jadetex.cfg into each directory where the build
@@ -15,7 +22,7 @@ takes place and put something like that 
 \hypersetup{pdfpagemode=None,  pdfauthor=eCos (pdfjadetex) ,  colorlinks=true,
  linkcolor=blue,  pdfstartview=FitH}
 
-Regaqrds
+Regards
 Iztok
 <iz@vsr.si>
 
new file mode 100644
--- /dev/null
+++ b/doc/sgml/jadetex.cfg
@@ -0,0 +1,1 @@
+\hypersetup{pdfauthor=eCos (pdfjadetex) ,  colorlinks=true,  linkcolor=blue,  pdfstartview=FitH}
--- a/doc/sgml/makemakefile
+++ b/doc/sgml/makemakefile
@@ -84,10 +84,10 @@ for i in `cat ${doclist}`; do
   fi
 done
 
-# Go through again but find GIFs to copy
+# Go through again but find GIFs and PNGs to copy
 for i in `for j in \`cat ${doclist}\` ; do dirname $j ; done | sort | uniq` ; do
   diri=`echo ${toplvl}/packages/$i | sed "s@/current/@/${PACKAGEVER}/@g"`
-  dirigifs=`ls $diri/*.gif 2>/dev/null | tr '\n' ' '`
+  dirigifs=`ls $diri/*.gif $diri/*.png 2>/dev/null | tr '\n' ' '`
   if [ x"$dirigifs" != x ]; then
         copyfiles="$copyfiles $dirigifs"
   fi