- From: Hugo Haas via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 02 Aug 2005 06:03:58 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/tools
In directory homer:/tmp/cvs-serv10927
Modified Files:
html2psrc
Log Message:
Added hyphenation and use of other packages (which doesn't solve my cross referencing issue...)
Index: html2psrc
===================================================================
RCS file: /sources/public/2002/ws/desc/tools/html2psrc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** html2psrc 23 Jan 2003 19:32:18 -0000 1.1
--- html2psrc 2 Aug 2005 06:03:56 -0000 1.2
***************
*** 4,7 ****
--- 4,18 ----
@html2ps {
+ package {
+ ImageMagick: 1;
+ PerlMagick: 1;
+ netpbm: 1;
+ djpeg: 1;
+ Ghostscript: 1;
+ TeX: 1;
+ dvips: 1;
+ libwww-perl: 1;
+ check: weblint;
+ }
paper {
type: letter;
***************
*** 9,20 ****
option {
DSC: 1; /* DSC compliant PostScript */
! xref: 1; /* cross references a la [p 31] */
duplex: 1; /* double sided */
number: 1; /* have page numbers */
}
xref {
! text: "[p.$N]"; /* avoid line breaks before page no. */
! passes: 2;
}
header {
center: "$H"; /* put current heading in page header */
--- 20,38 ----
option {
DSC: 1; /* DSC compliant PostScript */
! xref: 1; /* cross references */
duplex: 1; /* double sided */
number: 1; /* have page numbers */
+ encoding: ISO-8859-1; /* this should really be UTF-8, but isn't recognized yet */
+ hyphenate: 1; /* hyphenate text */
}
xref {
! text: "[p.$N]"; /* avoid line breaks before page no. */
! passes: 2; /* 2 passes to increase accuracy*/
}
+ hyphenation {
+ en {
+ file: "/usr/share/texmf/tex/generic/hyphen/hyphen.tex";
+ }
+ }
header {
center: "$H"; /* put current heading in page header */
Received on Tuesday, 2 August 2005 06:04:00 UTC