Re: HOWTOs to txt

1999-05-14 Thread Ed Hurst
My local book retailer sells that book ("Linux Secrets"?) for about $50.

Ed


RE: HOWTOs to txt..

1999-05-05 Thread jgilger_it
http://www.yggdrasil.com <http://www.yggdrasil.com>  has "The Linux
Bible" for US$49.95.  It is advertised as being a printing of all of the
LDP documents.

-John

-Original Message-
From:   [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]
Sent:   Tuesday, May 04, 1999 3:27 PM
To: Debian List
Subject:        Re: HOWTOs to txt..

I think all Howtos and mini- are a bit too much for printing...
is there
any reseller who sells hard copies of the whole set?

Horacio.
-- 
Claves - GnuPG/PGP - Keys : http://www.rediris.es/cert/keyserver
o/or
Envía un mensaje vacío a [EMAIL PROTECTED] con la línea de
asunto:
Send a blank message to [EMAIL PROTECTED] with the subject
line:
Tipo de Clave/Key Type  Asunto:/Subject:

DSA/ElGamal fetch
dsa/elgamal
DSS/Diffie-Hellman  fetch dh/dss
RSA fetch rsa


-- 
Unsubscribe?  mail -s unsubscribe
[EMAIL PROTECTED] < /dev/null


Re: HOWTOs to txt..

1999-05-04 Thread Allan M. Wind
On 1999-05-04 14:46, Brian Servis wrote:

> The HOWTO's are all converted to postscript which are nicely formated
> and ready for printing.  The mini-HOWTO's are not available as ps
> though.  Some are available in SGML which can be converted to ps(I have
> not done it but it is possible some how)

With DocBook you do something like this:

STYLE = /usr/lib/sgml/stylesheet/dsssl/docbook/nwalsh/print/docbook.dsl

jade -d $STYLE -t tex input_file.sgml
jadetex input_file.tex
dvips input_file.dvi -o input_file.ps

Just in case someone needs it, I have enclosed a Makefile that
generate most (if not all) the formats that DocBook stylesheets
support (directly or indirectly).


/Allan
-- 
Allan M. Wind   Phone:  781.938.5272 (home)
687 Main Street, 2nd Floor  Fax:781.938.6641 (fax/modem)
Woburn, MA 01801Email:  [EMAIL PROTECTED] (home)
.PHONEY: all clean

DVI2PDF = dvipdf
DVI2PS = dvips
JADE = jade
TEX = jadetex

DSSSL_BASE = /usr/lib/dsssl/stylesheets/docbook
DSSSL_HTML = $(DSSSL_BASE)/html/docbook.dsl
DSSSL_RTF = $(DSSSL_BASE)/print/docbook.dsl
DSSSL_TEX = $(DSSSL_BASE)/print/docbook.dsl

SUFFIX_REMOVE = aux,dvi,log,ps,pdf,rtf,tex


clean:
rm -f *.{$(SUFFIX_REMOVE)}


# patern rules

%.dvi: %.tex
$(TEX) $?

%.html: %.sgml
$(JADE) -d $(DSSSL_HTML) -t tex $?

%.pdf: %.dvi
$(DVI2PDF) $? $@

%.ps: %.dvi
$(DVI2PS) -f $? -o $@

%.rtf: %.sgml
$(JADE) -d $(DSSSL_RTF) -t rtf $?

%.tex: %.sgml
$(JADE) -d $(DSSSL_TEX) -t tex $?


Re: HOWTOs to txt..

1999-05-04 Thread Eric Gillespie, Jr.
On Wed, May 05, 1999 at 12:26:38AM +0200,
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I think all Howtos and mini- are a bit too much for printing... is there
> any reseller who sells hard copies of the whole set?
> 

Walnut Creek (www.cdrom.com) sells the biggest Linux book I've ever seen.
It's nearly all the HOWTOs, and some of the other docs from the Documentation
Project. I forget how much it is, but it was definitely worth the money.

-- 
Eric Gillespie, Jr. <*> [EMAIL PROTECTED]

Don't you try to out-weird me! I get stranger things
than you free with my breakfast cereal!
--Zaphod Beeblebrox


Re: HOWTOs to txt..

1999-05-04 Thread homega
I think all Howtos and mini- are a bit too much for printing... is there
any reseller who sells hard copies of the whole set?

Horacio.
-- 
Claves - GnuPG/PGP - Keys : http://www.rediris.es/cert/keyserver
o/or
Envía un mensaje vacío a [EMAIL PROTECTED] con la línea de asunto:
Send a blank message to [EMAIL PROTECTED] with the subject line:
Tipo de Clave/Key Type  Asunto:/Subject:

DSA/ElGamal fetch dsa/elgamal
DSS/Diffie-Hellman  fetch dh/dss
RSA fetch rsa


Re: HOWTOs to txt..

1999-05-04 Thread Matt Garman
On Tue, May 04, 1999 at 02:46:36PM -0500, Brian Servis wrote:
> *- On  4 May, Robert V. MacQuarrie wrote about "HOWTOs to txt.."
> > 
> > Just wondering if anyone has printed off howto pages? Is there any quick
> > way to convert a full howto (ie.. all the pages) to a single file and
> > print it off?
> > 
> > I've printed them in the past but simply saved each page to text with
> > netscape and printed them. This is a pain :)
> > 
> > Thanx got any suggestions.
> > 
> 
> The HOWTO's are all converted to postscript which are nicely formated
> and ready for printing.  The mini-HOWTO's are not available as ps
> though.  Some are available in SGML which can be converted to ps(I have
> not done it but it is possible some how)

And don't forget the program "mpage" (there is a Debian package for
it).  You can print multiple pages (of text or postscript) on one
physical page.  Obviously the text comes out smaller, but it saves
paper on lengthy stuff.

MG

-- 
Matt Garman, [EMAIL PROTECTED]
"One of these days I'm going to cut you into little pieces"
--Pink Floyd


Re: HOWTOs to txt..

1999-05-04 Thread Brian Servis
*- On  4 May, Robert V. MacQuarrie wrote about "HOWTOs to txt.."
> 
> Just wondering if anyone has printed off howto pages? Is there any quick
> way to convert a full howto (ie.. all the pages) to a single file and
> print it off?
> 
> I've printed them in the past but simply saved each page to text with
> netscape and printed them. This is a pain :)
> 
> Thanx got any suggestions.
> 

The HOWTO's are all converted to postscript which are nicely formated
and ready for printing.  The mini-HOWTO's are not available as ps
though.  Some are available in SGML which can be converted to ps(I have
not done it but it is possible some how)

ftp://metalab.unc.edu/pub/Linux/docs/HOWTO/other-formats/ps/

-- 
Brian 
-
Mechanical Engineering  [EMAIL PROTECTED]
Purdue University   http://www.ecn.purdue.edu/~servis
-


Re: HOWTOs to txt..

1999-05-04 Thread Will Lowe
> Just wondering if anyone has printed off howto pages? Is there any quick
> way to convert a full howto (ie.. all the pages) to a single file and
> print it off?

Why don't you just download the text versions?

ftp://sunsite.unc.edu/pub/Linux/docs/HOWTO/
Will


--
| [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]   |
|   http://www.cis.udel.edu/~lowe/   |
|PGP Public Key:  http://www.cis.udel.edu/~lowe/index.html#pgpkey|
--
|   You think you're so smart,  but I've seen you naked  |
|  and I'll prob'ly see you naked again ...  |
| --The Barenaked Ladies,  "Blame It On Me"  |
--