From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/27712 Path: main.gmane.org!not-for-mail From: Alan Shutko Newsgroups: gmane.emacs.gnus.general Subject: Re: Manualitis Date: 04 Dec 1999 22:28:30 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035164689 25977 80.91.224.250 (21 Oct 2002 01:44:49 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:44:49 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id WAA26783 for ; Sat, 4 Dec 1999 22:30:50 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id VAB32583; Sat, 4 Dec 1999 21:30:39 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 04 Dec 1999 21:30:30 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id VAA17065 for ; Sat, 4 Dec 1999 21:30:19 -0600 (CST) Original-Received: from s1.nassau.cv.net (s1.optonline.net [167.206.112.6]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id WAA26770 for ; Sat, 4 Dec 1999 22:29:54 -0500 (EST) Original-Received: from hunt108-151.optonline.net (hunt108-151.optonline.net [167.206.108.151]) by s1.nassau.cv.net (8.9.1/8.9.1) with ESMTP id WAA09559 for ; Sat, 4 Dec 1999 22:29:41 -0500 (EST) Original-Received: (from ats@localhost) by hunt108-151.optonline.net (8.9.3/8.9.3) id WAA05895; Sat, 4 Dec 1999 22:29:40 -0500 X-Authentication-Warning: localhost.localdomain: ats set sender to ats@acm.org using -f Original-To: ding@gnus.org Mail-Copies-To: never In-Reply-To: Lars Magne Ingebrigtsen's message of "05 Dec 1999 02:20:41 +0100" User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4.93 Original-Lines: 89 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:27712 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:27712 Lars Magne Ingebrigtsen writes: > I'm adding more formats to > . Split HTML, > monolithic HTML, PS, pdf.. Anything else? Macromedia Flash? :-) > > Actually, I'm having some difficulties with ps2pdf. It bugs out with Don't use ps2pdf. It's evil. Broken. In terrible shape. It might work someday (sounds like it might be OK by 6.0) but now, it's bad. Now, pdftex, that's good. Here's a patch to the makefile to make them. I also have PDFs of all of them (including really happy hyperlinks) if anyone wants them. The only problem I found (in the brief look I had) is the logo in the refcard. It would take me a while to get it to work... I played with it, and it wasn't quite happy with my regular methods. *** Makefile.in.orig Wed Dec 1 11:30:59 1999 --- Makefile.in Sat Dec 4 22:18:28 1999 *************** *** 6,16 **** --- 6,18 ---- VPATH=$(srcdir) TEXI2DVI=texi2dvi + TEXI2PDF=texi2pdf EMACS=emacs MAKEINFO=@MAKEINFO@ EMACSINFO=$(EMACS) -batch -q -no-site-file INFOSWI=-l texinfmt -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer XINFOSWI=-l texinfmt -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer + PDFLATEX=pdflatex LATEX=latex DVIPS=dvips PERL=perl *************** *** 23,29 **** most: texi2latex.elc latex latexps ! .SUFFIXES: .texi .dvi .ps .texi: if test -x $(MAKEINFO); then \ --- 25,31 ---- most: texi2latex.elc latex latexps ! .SUFFIXES: .texi .dvi .ps .pdf .texi: if test -x $(MAKEINFO); then \ *************** *** 34,47 **** --- 36,62 ---- dvi: gnus.dvi message.dvi refcard.dvi emacs-mime.dvi + pdf: gnus.pdf message.pdf refcard.pdf emacs-mime.pdf + .texi.dvi : $(PERL) -n -e 'print unless (/\@iflatex/ .. /\@end iflatex/)' $< > gnustmp.texi $(TEXI2DVI) gnustmp.texi cp gnustmp.dvi $*.dvi rm gnustmp.* + .texi.pdf : + $(PERL) -n -e 'print unless (/\@iflatex/ .. /\@end iflatex/)' $< > gnustmp.texi + $(TEXI2PDF) gnustmp.texi + cp gnustmp.pdf $*.pdf + rm gnustmp.* + + refcard.dvi: refcard.tex gnuslogo.refcard gnusref.tex $(LATEX) refcard.tex + + refcard.pdf: refcard.tex gnuslogo.refcard gnusref.tex + epstopdf gnuslogo.refcard --outfile=gnuslogo.refcard.pdf + $(PDFLATEX) refcard.tex clean: rm -f gnus.*.bak *.ky *.cp *.fn *.cps *.kys *.log *.aux *.dvi *.vr \ -- Alan Shutko - In a variety of flavors! To err is human; to admit it, a blunder.