On Saturday 19 November 2005 01:39 pm, Philipp Thomas wrote:
Steven,
On Sat, 19 Nov 2005 02:37:12 -0500, Steven T. Hatton wrote:
I'm curious to know what people think about hardcopy documentation verses electronic form.
Could please ask such questions on a list like suse-ot? It is grossly off-topic for this list.
Philipp
What's this mean? $ pdf2ps INCITS+ISO+IEC+14882-2003.pdf INCITS+ISO+IEC+14882-2003.ps **** Warning: Fonts with Subtype = /TrueType should be embedded. But Arial,Bold is not embedded. **** This file had errors that were repaired or ignored. **** The file was produced by: **** >>>> Acrobat Distiller 5.0.5 (Windows) <<<< **** Please notify the author of the software that produced this **** file that it does not conform to Adobe's published PDF **** specification. I can hardly read the output of my script: $ cat ~/bin/make-book.sh #!/bin/bash SIGNATURE=20 usage="make-book.sh [-s signature] filename" while getopts ":s:w:c:" opt; do case $opt in s ) SIGNATURE=$OPTARG ;; \? ) echo $usage exit 1 ;; esac done shift $(($OPTIND - 1)) FILE_NAME=$1 psbook -s$SIGNATURE $FILE_NAME | psnup -pletter -2 > ${FILE_NAME%.ps}-book.ps;