unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* Re: remove ascii images from pdf
       [not found]               ` <87fx8oy520.fsf@ossau.uklinux.net>
@ 2009-12-09 21:08                 ` Brian Gough
  2009-12-17 23:58                   ` Neil Jerram
  0 siblings, 1 reply; 2+ messages in thread
From: Brian Gough @ 2009-12-09 21:08 UTC (permalink / raw)
  To: bug-guile

[-- Attachment #1: Type: text/plain, Size: 1255 bytes --]

At Sun, 08 Nov 2009 23:23:19 +0000,
Neil Jerram wrote:
> Unfortunately these changes don't completely work for me.  I wonder if
> that's because I'm using unhelpful versions of tex/texinfo.tex and
> makeinfo?

Hi Neil,

I've looked into this now.  Revised patches are attached.  Sorry for
the delay.

> For me, with your changes in place...
> Firstly, `make dvi' stops with..

Some of the files were missing, they also needed to be added to
Makefile.am.

> Secondly, `make html' generates HTML that doesn't include the .png
> diagrams.  Instead it just shows the .png filename, for example:

This turns out to be a problem with makeinfo, which assumes that the
HTML output is always in the current directory.  It does not copy
images into the target directory when it is different (I've checked
the latest CVS for this).

The attached patch number 0003 works around it with a conditional, so
that the HTML includes the ASCII version.  I think this is the best
that is feasible with currently deployed versions of texinfo.

I will see if I can make a patch to makeinfo for Karl to copy the
images to the target directory to avoid the conditional.

-- 
Brian Gough

Network Theory Ltd,
Publishing Free Software Manuals --- http://www.network-theory.co.uk/


[-- Attachment #2: 0001-use-correct-url-to-ftp.gnu.org.patch --]
[-- Type: application/octet-stream, Size: 763 bytes --]

From e5c4e902586a9d3a740c9af7fd01663080bc3a9f Mon Sep 17 00:00:00 2001
From: Brian Gough <bjg@gnu.org>
Date: Wed, 9 Dec 2009 17:53:08 +0000
Subject: [PATCH] use correct url to ftp.gnu.org

---
 doc/ref/intro.texi |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/ref/intro.texi b/doc/ref/intro.texi
index 7e248e0..55cb4a3 100644
--- a/doc/ref/intro.texi
+++ b/doc/ref/intro.texi
@@ -72,7 +72,7 @@ Guile can be obtained from the main GNU archive site
 guile-version.tar.gz.  The current version is @value{VERSION}, so the
 file you should grab is:
 
-@url{ftp://ftp.gnu.org/pub/gnu/guile-@value{VERSION}.tar.gz}
+@url{ftp://ftp.gnu.org/pub/gnu/guile/guile-@value{VERSION}.tar.gz}
 
 To unbundle Guile use the instruction
 
-- 
1.5.4.3


[-- Attachment #3: 0002-use-explicit-.-scriptname-to-help-novice-users.patch --]
[-- Type: application/octet-stream, Size: 1471 bytes --]

From 86eee5d1de3bb657dbbb7f0863d1dd9e07810952 Mon Sep 17 00:00:00 2001
From: Brian Gough <bjg@gnu.org>
Date: Wed, 9 Dec 2009 17:59:59 +0000
Subject: [PATCH] use explicit ./scriptname to help novice users

---
 doc/ref/scheme-scripts.texi |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/doc/ref/scheme-scripts.texi b/doc/ref/scheme-scripts.texi
index 249bc34..f47ecf7 100644
--- a/doc/ref/scheme-scripts.texi
+++ b/doc/ref/scheme-scripts.texi
@@ -458,7 +458,7 @@ Here is a script which prints the factorial of its argument:
 @end example
 In action:
 @example
-$ fact 5
+$ ./fact 5
 120
 $
 @end example
@@ -487,7 +487,7 @@ definitions, without any extraneous computation taking place.  Then we
 used the meta switch @code{\} and the entry point switch @code{-e} to
 tell Guile to call @code{main} after loading the script.
 @example
-$ fact 50
+$ ./fact 50
 30414093201713378043612608166064768844377641568960512000000000000
 @end example
 
@@ -515,17 +515,17 @@ The command-line arguments here tell Guile to first load the file
 point.  In other words, the @code{choose} script can use definitions
 made in the @code{fact} script.  Here are some sample runs:
 @example
-$ choose 0 4
+$ ./choose 0 4
 1
-$ choose 1 4
+$ ./choose 1 4
 4
-$ choose 2 4
+$ ./choose 2 4
 6
-$ choose 3 4
+$ ./choose 3 4
 4
-$ choose 4 4
+$ ./choose 4 4
 1
-$ choose 50 100
+$ ./choose 50 100
 100891344545564193334812497256
 @end example
 
-- 
1.5.4.3


[-- Attachment #4: 0003-replace-ascii-figures-with-scalable-ps-pdf-versions.patch --]
[-- Type: application/octet-stream, Size: 44861 bytes --]

From 7d0dc576fd51001d2bafd554a3caee363def4832 Mon Sep 17 00:00:00 2001
From: Brian Gough <bjg@gnu.org>
Date: Wed, 9 Dec 2009 18:04:42 +0000
Subject: [PATCH] replace ascii figures with scalable ps/pdf versions.

use ascii figures in HTML output, to work around deficiency in makeinfo
where images are not copied to target directory.
---
 doc/ref/Makefile.am         |    8 +
 doc/ref/gds.dia             |  Bin 0 -> 1645 bytes
 doc/ref/gds.eps             |  449 ++++++++++++++++++++++++++++++++++++++++++
 doc/ref/gds.pdf             |  Bin 0 -> 2936 bytes
 doc/ref/gds.txt             |   17 ++
 doc/ref/goops-tutorial.texi |   10 +-
 doc/ref/scheme-using.texi   |   40 ++---
 doc/ref/scheme.dia          |  Bin 0 -> 1821 bytes
 doc/ref/scheme.eps          |  457 +++++++++++++++++++++++++++++++++++++++++++
 doc/ref/scheme.pdf          |  Bin 0 -> 2898 bytes
 doc/ref/scheme.txt          |   11 +
 11 files changed, 961 insertions(+), 31 deletions(-)
 create mode 100644 doc/ref/gds.dia
 create mode 100644 doc/ref/gds.eps
 create mode 100644 doc/ref/gds.pdf
 create mode 100644 doc/ref/gds.txt
 create mode 100644 doc/ref/scheme.dia
 create mode 100644 doc/ref/scheme.eps
 create mode 100644 doc/ref/scheme.pdf
 create mode 100644 doc/ref/scheme.txt

diff --git a/doc/ref/Makefile.am b/doc/ref/Makefile.am
index 2f218a5..d58b370 100644
--- a/doc/ref/Makefile.am
+++ b/doc/ref/Makefile.am
@@ -89,8 +89,16 @@ PICTURES = hierarchy.eps \
 	   hierarchy.pdf \
 	   hierarchy.png \
 	   hierarchy.txt \
+	   gds.eps \
+	   gds.pdf \
+	   gds.txt \
+	   scheme.eps \
+	   scheme.pdf \
+	   scheme.txt \
 	   mop.text
 
+noinst_DATA = $(PICTURES)
+
 EXTRA_DIST = ChangeLog-2008 $(PICTURES)
 
 include $(top_srcdir)/am/pre-inst-guile
diff --git a/doc/ref/gds.dia b/doc/ref/gds.dia
new file mode 100644
index 0000000000000000000000000000000000000000..b134d0438c82f1cbdfb77cb68e854ee5a074fce7
GIT binary patch
literal 1645
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

literal 0
HcmV?d00001

diff --git a/doc/ref/gds.eps b/doc/ref/gds.eps
new file mode 100644
index 0000000..e37b6a4
--- /dev/null
+++ b/doc/ref/gds.eps
@@ -0,0 +1,449 @@
+%!PS-Adobe-2.0 EPSF-2.0
+%%Title: /home/bjg/guile/doc/ref/gds.dia
+%%Creator: Dia v0.95-1
+%%CreationDate: Tue Dec  8 14:11:12 2009
+%%For: bjg
+%%Orientation: Portrait
+%%Magnification: 1.0000
+%%BoundingBox: 0 0 949 421
+%%BeginSetup
+%%EndSetup
+%%EndComments
+%%BeginProlog
+[ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
+/parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one
+/two /three /four /five /six /seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at /A /B /C /D /E
+/F /G /H /I /J /K /L /M /N /O
+/P /Q /R /S /T /U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c
+/d /e /f /g /h /i /j /k /l /m
+/n /o /p /q /r /s /t /u /v /w
+/x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/space /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] /isolatin1encoding exch def
+/cp {closepath} bind def
+/c {curveto} bind def
+/f {fill} bind def
+/a {arc} bind def
+/ef {eofill} bind def
+/ex {exch} bind def
+/gr {grestore} bind def
+/gs {gsave} bind def
+/sa {save} bind def
+/rs {restore} bind def
+/l {lineto} bind def
+/m {moveto} bind def
+/rm {rmoveto} bind def
+/n {newpath} bind def
+/s {stroke} bind def
+/sh {show} bind def
+/slc {setlinecap} bind def
+/slj {setlinejoin} bind def
+/slw {setlinewidth} bind def
+/srgb {setrgbcolor} bind def
+/rot {rotate} bind def
+/sc {scale} bind def
+/sd {setdash} bind def
+/ff {findfont} bind def
+/sf {setfont} bind def
+/scf {scalefont} bind def
+/sw {stringwidth pop} bind def
+/tr {translate} bind def
+
+/ellipsedict 8 dict def
+ellipsedict /mtrx matrix put
+/ellipse
+{ ellipsedict begin
+   /endangle exch def
+   /startangle exch def
+   /yrad exch def
+   /xrad exch def
+   /y exch def
+   /x exch def   /savematrix mtrx currentmatrix def
+   x y tr xrad yrad sc
+   0 0 1 startangle endangle arc
+   savematrix setmatrix
+   end
+} def
+
+/mergeprocs {
+dup length
+3 -1 roll
+dup
+length
+dup
+5 1 roll
+3 -1 roll
+add
+array cvx
+dup
+3 -1 roll
+0 exch
+putinterval
+dup
+4 2 roll
+putinterval
+} bind def
+/Times-Roman-latin1
+    /Times-Roman findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Times-Italic-latin1
+    /Times-Italic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Times-Bold-latin1
+    /Times-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Times-BoldItalic-latin1
+    /Times-BoldItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-Book-latin1
+    /AvantGarde-Book findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-BookOblique-latin1
+    /AvantGarde-BookOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-Demi-latin1
+    /AvantGarde-Demi findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-DemiOblique-latin1
+    /AvantGarde-DemiOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-Light-latin1
+    /Bookman-Light findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-LightItalic-latin1
+    /Bookman-LightItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-Demi-latin1
+    /Bookman-Demi findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-DemiItalic-latin1
+    /Bookman-DemiItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-latin1
+    /Courier findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-Oblique-latin1
+    /Courier-Oblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-Bold-latin1
+    /Courier-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-BoldOblique-latin1
+    /Courier-BoldOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-latin1
+    /Helvetica findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Oblique-latin1
+    /Helvetica-Oblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Bold-latin1
+    /Helvetica-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-BoldOblique-latin1
+    /Helvetica-BoldOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-latin1
+    /Helvetica-Narrow findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-Oblique-latin1
+    /Helvetica-Narrow-Oblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-Bold-latin1
+    /Helvetica-Narrow-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-BoldOblique-latin1
+    /Helvetica-Narrow-BoldOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-Roman-latin1
+    /NewCenturySchoolbook-Roman findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-Italic-latin1
+    /NewCenturySchoolbook-Italic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-Bold-latin1
+    /NewCenturySchoolbook-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-BoldItalic-latin1
+    /NewCenturySchoolbook-BoldItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-Roman-latin1
+    /Palatino-Roman findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-Italic-latin1
+    /Palatino-Italic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-Bold-latin1
+    /Palatino-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-BoldItalic-latin1
+    /Palatino-BoldItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Symbol-latin1
+    /Symbol findfont
+definefont pop
+/ZapfChancery-MediumItalic-latin1
+    /ZapfChancery-MediumItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/ZapfDingbats-latin1
+    /ZapfDingbats findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+28.346000 -28.346000 scale
+-0.061670 -17.866043 translate
+%%EndProlog
+
+
+0.010000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+1.000000 1.000000 1.000000 srgb
+n 0.061670 3.016800 m 33.507821 3.016800 l s
+n 0.061670 17.866043 m 33.507821 17.866043 l s
+n 0.061670 3.016800 0.000000 0.000000 180.000000 270.000000 ellipse s
+n 33.507821 3.016800 0.000000 0.000000 270.000000 360.000000 ellipse s
+n 0.061670 3.016800 m 0.061670 17.866043 l s
+n 33.507821 3.016800 m 33.507821 17.866043 l s
+n 0.061670 17.866043 0.000000 0.000000 90.000000 180.000000 ellipse s
+n 33.507821 17.866043 0.000000 0.000000 0.000000 90.000000 ellipse s
+n 2.176250 4.300000 m 2.176250 9.100000 l 9.400000 9.100000 l 9.400000 4.300000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 2.176250 4.300000 m 2.176250 9.100000 l 9.400000 9.100000 l 9.400000 4.300000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(Program #1) dup sw 2 div 5.788125 ex sub 6.050000 m gs 1 -1 sc sh gr
+1.000000 1.000000 1.000000 srgb
+n 3.425000 6.650000 m 3.425000 8.550000 l 7.975000 8.550000 l 7.975000 6.650000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 3.425000 6.650000 m 3.425000 8.550000 l 7.975000 8.550000 l 7.975000 6.650000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(GDS Client) dup sw 2 div 5.700000 ex sub 7.750000 m gs 1 -1 sc sh gr
+1.000000 1.000000 1.000000 srgb
+n 2.400000 11.600000 m 2.400000 17.050000 l 9.550000 17.050000 l 9.550000 11.600000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 2.400000 11.600000 m 2.400000 17.050000 l 9.550000 17.050000 l 9.550000 11.600000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(Program #2) dup sw 2 div 5.975000 ex sub 13.275000 m gs 1 -1 sc sh gr
+1.000000 1.000000 1.000000 srgb
+n 3.750000 14.250000 m 3.750000 16.150000 l 8.550000 16.150000 l 8.550000 14.250000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 3.750000 14.250000 m 3.750000 16.150000 l 8.550000 16.150000 l 8.550000 14.250000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(GDS Client) dup sw 2 div 6.150000 ex sub 15.350000 m gs 1 -1 sc sh gr
+1.000000 1.000000 1.000000 srgb
+n 16.175000 8.575000 m 16.175000 11.275000 l 20.975000 11.275000 l 20.975000 8.575000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 16.175000 8.575000 m 16.175000 11.275000 l 20.975000 11.275000 l 20.975000 8.575000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(GDS Server) dup sw 2 div 18.575000 ex sub 10.075000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slc
+n 8.550000 15.200000 m 16.175000 9.925000 l s
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slc
+n 7.975000 7.600000 m 16.175000 9.925000 l s
+/Helvetica-latin1 ff 0.560000 scf sf
+(TCP) 11.350000 12.300000 m gs 1 -1 sc sh gr
+/Helvetica-latin1 ff 0.560000 scf sf
+(TCP) 11.400000 8.150000 m gs 1 -1 sc sh gr
+1.000000 1.000000 1.000000 srgb
+n 22.850100 6.025000 m 22.850100 12.000000 l 30.900100 12.000000 l 30.900100 6.025000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 22.850100 6.025000 m 22.850100 12.000000 l 30.900100 12.000000 l 30.900100 6.025000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(Emacs) dup sw 2 div 26.875100 ex sub 7.162500 m gs 1 -1 sc sh gr
+1.000000 1.000000 1.000000 srgb
+n 23.935100 8.850000 m 23.935100 10.900000 l 29.500100 10.900000 l 29.500100 8.850000 l f
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 23.935100 8.850000 m 23.935100 10.900000 l 29.500100 10.900000 l 29.500100 8.850000 l cp s
+/Helvetica-latin1 ff 0.560000 scf sf
+(GDS Interface) dup sw 2 div 26.717600 ex sub 10.025000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+[] 0 sd
+0 slc
+n 20.975000 9.925000 m 23.935100 9.875000 l s
+showpage
diff --git a/doc/ref/gds.pdf b/doc/ref/gds.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9af4ab2d94d1a4f62511d00b0159252c32f27768
GIT binary patch
literal 2936
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

literal 0
HcmV?d00001

diff --git a/doc/ref/gds.txt b/doc/ref/gds.txt
new file mode 100644
index 0000000..4e32ecb
--- /dev/null
+++ b/doc/ref/gds.txt
@@ -0,0 +1,17 @@
++----------------+
+| Program #1     |
+|                |
+| +------------+ |
+| | GDS Client |-_
+| +------------+ |-_                       +-------------------+
++----------------+  -_TCP                  | Emacs             |
+                      -_                   |                   |
+                        -_+------------+   | +---------------+ |
+                         _| GDS Server |-----| GDS Interface | |
++----------------+     _- +------------+   | +---------------+ |
+| Program #2     |   _-                    +-------------------+
+|                | _- TCP
+| +------------+ _-
+| | GDS Client |-|
+| +------------+ |
++----------------+
diff --git a/doc/ref/goops-tutorial.texi b/doc/ref/goops-tutorial.texi
index 600be77..569920a 100644
--- a/doc/ref/goops-tutorial.texi
+++ b/doc/ref/goops-tutorial.texi
@@ -466,13 +466,17 @@ super class of all standard Scheme types.
 
 @example
 @group
-@image{hierarchy}
-@center @emph{Fig 1: A class hierarchy}
 @iftex
+@center @image{hierarchy,5in}
+@end iftex
+@ifnottex
+@verbatiminclude hierarchy.txt
+@end ifnottex
+
+@emph{Fig 1: A class hierarchy}
 @emph{(@code{<complex>} which is the direct subclass of @code{<number>}
 and the direct superclass of @code{<real>} has been omitted in this
 figure.)}
-@end iftex
 @end group
 @end example
 
diff --git a/doc/ref/scheme-using.texi b/doc/ref/scheme-using.texi
index a8a2568..2e0a68f 100644
--- a/doc/ref/scheme-using.texi
+++ b/doc/ref/scheme-using.texi
@@ -371,19 +371,14 @@ to each other, with the arrows indicating ``builds on'' or
 ``extends''.  For example, the Quack library builds on cmuscheme,
 which in turn builds on the standard scheme mode.
 
+@iftex
+@center @image{scheme,5in}
+@end iftex
+@ifnottex
 @example
-            scheme
-               ^
-               |
-         .-----+-----.
-         |           |
-     cmuscheme    xscheme
-         ^
-         |
-   .-----+-----.
-   |           |
- Quack        GDS
+@verbatiminclude scheme.txt
 @end example
+@end ifnottex
 
 @dfn{scheme}, written by Bill Rozas and Dave Love, is Emacs's standard
 mode for Scheme code files.  It provides Scheme-sensitive syntax
@@ -550,25 +545,14 @@ program that wants to use GDS in any way.
 The following diagram shows how these components are connected to each
 other.
 
+@iftex
+@center @image{gds,5in}
+@end iftex
+@ifnottex
 @example
-+----------------+
-| Program #1     |
-|                |
-| +------------+ |
-| | GDS Client |-_
-| +------------+ |-_                       +-------------------+
-+----------------+  -_TCP                  | Emacs             |
-                      -_                   |                   |
-                        -_+------------+   | +---------------+ |
-                         _| GDS Server |-----| GDS Interface | |
-+----------------+     _- +------------+   | +---------------+ |
-| Program #2     |   _-                    +-------------------+
-|                | _- TCP
-| +------------+ _-
-| | GDS Client |-|
-| +------------+ |
-+----------------+
+@verbatiminclude gds.txt
 @end example
+@end ifnottex
 
 @cindex TCP, use of
 The data exchanged between client and server components, and between
diff --git a/doc/ref/scheme.dia b/doc/ref/scheme.dia
new file mode 100644
index 0000000000000000000000000000000000000000..30f9cc2bfa73977c5e138b40e0583a1a91c0b21a
GIT binary patch
literal 1821
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

literal 0
HcmV?d00001

diff --git a/doc/ref/scheme.eps b/doc/ref/scheme.eps
new file mode 100644
index 0000000..9481b9c
--- /dev/null
+++ b/doc/ref/scheme.eps
@@ -0,0 +1,457 @@
+%!PS-Adobe-2.0 EPSF-2.0
+%%Title: /home/bjg/guile/doc/ref/scheme.dia
+%%Creator: Dia v0.95-1
+%%CreationDate: Tue Dec  8 14:22:51 2009
+%%For: bjg
+%%Orientation: Portrait
+%%Magnification: 1.0000
+%%BoundingBox: 0 0 576 445
+%%BeginSetup
+%%EndSetup
+%%EndComments
+%%BeginProlog
+[ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
+/parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one
+/two /three /four /five /six /seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at /A /B /C /D /E
+/F /G /H /I /J /K /L /M /N /O
+/P /Q /R /S /T /U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c
+/d /e /f /g /h /i /j /k /l /m
+/n /o /p /q /r /s /t /u /v /w
+/x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
+/space /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] /isolatin1encoding exch def
+/cp {closepath} bind def
+/c {curveto} bind def
+/f {fill} bind def
+/a {arc} bind def
+/ef {eofill} bind def
+/ex {exch} bind def
+/gr {grestore} bind def
+/gs {gsave} bind def
+/sa {save} bind def
+/rs {restore} bind def
+/l {lineto} bind def
+/m {moveto} bind def
+/rm {rmoveto} bind def
+/n {newpath} bind def
+/s {stroke} bind def
+/sh {show} bind def
+/slc {setlinecap} bind def
+/slj {setlinejoin} bind def
+/slw {setlinewidth} bind def
+/srgb {setrgbcolor} bind def
+/rot {rotate} bind def
+/sc {scale} bind def
+/sd {setdash} bind def
+/ff {findfont} bind def
+/sf {setfont} bind def
+/scf {scalefont} bind def
+/sw {stringwidth pop} bind def
+/tr {translate} bind def
+
+/ellipsedict 8 dict def
+ellipsedict /mtrx matrix put
+/ellipse
+{ ellipsedict begin
+   /endangle exch def
+   /startangle exch def
+   /yrad exch def
+   /xrad exch def
+   /y exch def
+   /x exch def   /savematrix mtrx currentmatrix def
+   x y tr xrad yrad sc
+   0 0 1 startangle endangle arc
+   savematrix setmatrix
+   end
+} def
+
+/mergeprocs {
+dup length
+3 -1 roll
+dup
+length
+dup
+5 1 roll
+3 -1 roll
+add
+array cvx
+dup
+3 -1 roll
+0 exch
+putinterval
+dup
+4 2 roll
+putinterval
+} bind def
+/Times-Roman-latin1
+    /Times-Roman findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Times-Italic-latin1
+    /Times-Italic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Times-Bold-latin1
+    /Times-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Times-BoldItalic-latin1
+    /Times-BoldItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-Book-latin1
+    /AvantGarde-Book findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-BookOblique-latin1
+    /AvantGarde-BookOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-Demi-latin1
+    /AvantGarde-Demi findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/AvantGarde-DemiOblique-latin1
+    /AvantGarde-DemiOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-Light-latin1
+    /Bookman-Light findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-LightItalic-latin1
+    /Bookman-LightItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-Demi-latin1
+    /Bookman-Demi findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Bookman-DemiItalic-latin1
+    /Bookman-DemiItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-latin1
+    /Courier findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-Oblique-latin1
+    /Courier-Oblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-Bold-latin1
+    /Courier-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Courier-BoldOblique-latin1
+    /Courier-BoldOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-latin1
+    /Helvetica findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Oblique-latin1
+    /Helvetica-Oblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Bold-latin1
+    /Helvetica-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-BoldOblique-latin1
+    /Helvetica-BoldOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-latin1
+    /Helvetica-Narrow findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-Oblique-latin1
+    /Helvetica-Narrow-Oblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-Bold-latin1
+    /Helvetica-Narrow-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Helvetica-Narrow-BoldOblique-latin1
+    /Helvetica-Narrow-BoldOblique findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-Roman-latin1
+    /NewCenturySchoolbook-Roman findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-Italic-latin1
+    /NewCenturySchoolbook-Italic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-Bold-latin1
+    /NewCenturySchoolbook-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/NewCenturySchoolbook-BoldItalic-latin1
+    /NewCenturySchoolbook-BoldItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-Roman-latin1
+    /Palatino-Roman findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-Italic-latin1
+    /Palatino-Italic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-Bold-latin1
+    /Palatino-Bold findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Palatino-BoldItalic-latin1
+    /Palatino-BoldItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/Symbol-latin1
+    /Symbol findfont
+definefont pop
+/ZapfChancery-MediumItalic-latin1
+    /ZapfChancery-MediumItalic findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+/ZapfDingbats-latin1
+    /ZapfDingbats findfont
+    dup length dict begin
+	{1 index /FID ne {def} {pop pop} ifelse} forall
+	/Encoding isolatin1encoding def
+    currentdict end
+definefont pop
+28.346000 -28.346000 scale
+-17.174517 -10.811080 translate
+%%EndProlog
+
+
+0.010000 slw
+[] 0 sd
+[] 0 sd
+0 slj
+1.000000 1.000000 1.000000 srgb
+n 17.174517 -4.886690 m 37.468481 -4.886690 l s
+n 17.174517 10.811080 m 37.468481 10.811080 l s
+n 17.174517 -4.886690 0.000000 0.000000 180.000000 270.000000 ellipse s
+n 37.468481 -4.886690 0.000000 0.000000 270.000000 360.000000 ellipse s
+n 17.174517 -4.886690 m 17.174517 10.811080 l s
+n 37.468481 -4.886690 m 37.468481 10.811080 l s
+n 17.174517 10.811080 0.000000 0.000000 90.000000 180.000000 ellipse s
+n 37.468481 10.811080 0.000000 0.000000 0.000000 90.000000 ellipse s
+0.100000 slw
+[] 0 sd
+n 20.050000 7.950000 m 20.050000 9.350000 l 23.050000 9.350000 l 23.050000 7.950000 l f
+0.000000 0.000000 0.000000 srgb
+n 20.050000 7.950000 m 20.050000 9.350000 l 23.050000 9.350000 l 23.050000 7.950000 l cp s
+/Helvetica-Bold-latin1 ff 0.700000 scf sf
+(Quack) dup sw 2 div 21.550000 ex sub 8.950000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+1.000000 1.000000 1.000000 srgb
+n 25.900000 7.950000 m 25.900000 9.350000 l 28.050000 9.350000 l 28.050000 7.950000 l f
+0.000000 0.000000 0.000000 srgb
+n 25.900000 7.950000 m 25.900000 9.350000 l 28.050000 9.350000 l 28.050000 7.950000 l cp s
+/Helvetica-Bold-latin1 ff 0.700000 scf sf
+(GDS) dup sw 2 div 26.975000 ex sub 8.950000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+1.000000 1.000000 1.000000 srgb
+n 21.450000 2.200000 m 21.450000 3.600000 l 26.800000 3.600000 l 26.800000 2.200000 l f
+0.000000 0.000000 0.000000 srgb
+n 21.450000 2.200000 m 21.450000 3.600000 l 26.800000 3.600000 l 26.800000 2.200000 l cp s
+/Helvetica-Bold-latin1 ff 0.700000 scf sf
+(cmuscheme) dup sw 2 div 24.125000 ex sub 3.200000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+0 slj
+0 slc
+n 24.357500 4.511803 m 24.357500 5.775000 l 27.098800 5.775000 l 27.098800 7.950000 l s
+0 slj
+1.000000 1.000000 1.000000 srgb
+n 24.757500 4.511803 m 24.357500 3.711803 l 23.957500 4.511803 l ef
+0.100000 slw
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 24.757500 4.511803 m 24.357500 3.711803 l 23.957500 4.511803 l cp s
+/Courier-latin1 ff 0.560000 scf sf
+0.100000 slw
+[] 0 sd
+0 slj
+0 slc
+n 24.357500 4.511803 m 24.357500 5.775000 l 21.698800 5.775000 l 21.698800 7.950000 l s
+0 slj
+1.000000 1.000000 1.000000 srgb
+n 24.757500 4.511803 m 24.357500 3.711803 l 23.957500 4.511803 l ef
+0.100000 slw
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 24.757500 4.511803 m 24.357500 3.711803 l 23.957500 4.511803 l cp s
+/Courier-latin1 ff 0.560000 scf sf
+0.100000 slw
+[] 0 sd
+1.000000 1.000000 1.000000 srgb
+n 30.300000 2.200000 m 30.300000 3.600000 l 34.400000 3.600000 l 34.400000 2.200000 l f
+0.000000 0.000000 0.000000 srgb
+n 30.300000 2.200000 m 30.300000 3.600000 l 34.400000 3.600000 l 34.400000 2.200000 l cp s
+/Helvetica-Bold-latin1 ff 0.700000 scf sf
+(xscheme) dup sw 2 div 32.350000 ex sub 3.200000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+1.000000 1.000000 1.000000 srgb
+n 27.400000 -3.500000 m 27.400000 -2.100000 l 31.050000 -2.100000 l 31.050000 -3.500000 l f
+0.000000 0.000000 0.000000 srgb
+n 27.400000 -3.500000 m 27.400000 -2.100000 l 31.050000 -2.100000 l 31.050000 -3.500000 l cp s
+/Helvetica-Bold-latin1 ff 0.700000 scf sf
+(scheme) dup sw 2 div 29.225000 ex sub -2.500000 m gs 1 -1 sc sh gr
+0.100000 slw
+[] 0 sd
+0 slj
+0 slc
+n 29.368800 -1.188197 m 29.368800 0.050000 l 32.526300 0.050000 l 32.526300 2.200000 l s
+0 slj
+1.000000 1.000000 1.000000 srgb
+n 29.768800 -1.188197 m 29.368800 -1.988197 l 28.968800 -1.188197 l ef
+0.100000 slw
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 29.768800 -1.188197 m 29.368800 -1.988197 l 28.968800 -1.188197 l cp s
+/Courier-latin1 ff 0.560000 scf sf
+0.100000 slw
+[] 0 sd
+0 slj
+0 slc
+n 29.368800 -1.188197 m 29.368800 0.050000 l 24.357500 0.050000 l 24.357500 2.200000 l s
+0 slj
+1.000000 1.000000 1.000000 srgb
+n 29.768800 -1.188197 m 29.368800 -1.988197 l 28.968800 -1.188197 l ef
+0.100000 slw
+[] 0 sd
+0 slj
+0.000000 0.000000 0.000000 srgb
+n 29.768800 -1.188197 m 29.368800 -1.988197 l 28.968800 -1.188197 l cp s
+/Courier-latin1 ff 0.560000 scf sf
+/Helvetica-latin1 ff 0.560000 scf sf
+showpage
diff --git a/doc/ref/scheme.pdf b/doc/ref/scheme.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fff74f4320d29b9caba83ba12eb6211ea4e1d8dd
GIT binary patch
literal 2898
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

literal 0
HcmV?d00001

diff --git a/doc/ref/scheme.txt b/doc/ref/scheme.txt
new file mode 100644
index 0000000..64ae052
--- /dev/null
+++ b/doc/ref/scheme.txt
@@ -0,0 +1,11 @@
+            scheme
+               ^
+               |
+         .-----+-----.
+         |           |
+     cmuscheme    xscheme
+         ^
+         |
+   .-----+-----.
+   |           |
+ Quack        GDS
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: remove ascii images from pdf
  2009-12-09 21:08                 ` remove ascii images from pdf Brian Gough
@ 2009-12-17 23:58                   ` Neil Jerram
  0 siblings, 0 replies; 2+ messages in thread
From: Neil Jerram @ 2009-12-17 23:58 UTC (permalink / raw)
  To: Brian Gough; +Cc: bug-guile

Brian Gough <bjg@network-theory.co.uk> writes:

> At Sun, 08 Nov 2009 23:23:19 +0000,
> Neil Jerram wrote:
>> Unfortunately these changes don't completely work for me.  I wonder if
>> that's because I'm using unhelpful versions of tex/texinfo.tex and
>> makeinfo?
>
> Hi Neil,
>
> I've looked into this now.  Revised patches are attached.  Sorry for
> the delay.

Thanks, Brian.  These look good now and I will commit them shortly.

Regards,
        Neil




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-12-17 23:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <3dcf73910909291014l5dfc3ac3i2dc95c882e762584@mail.gmail.com>
     [not found] ` <87ljjww07u.fsf@ossau.uklinux.net>
     [not found]   ` <3dcf73910910010502y2c8a4508i28d95ab2972d913e@mail.gmail.com>
     [not found]     ` <3dcf73910910050944m1787a935pd135fbaeca014813@mail.gmail.com>
     [not found]       ` <87r5tgk58t.wl%bjg@network-theory.co.uk>
     [not found]         ` <87fx8tudgc.fsf@ossau.uklinux.net>
     [not found]           ` <3dcf73910911050228l7349c7e3mad38d835cb01a057@mail.gmail.com>
     [not found]             ` <87y6mkk3rm.fsf@ossau.uklinux.net>
     [not found]               ` <87fx8oy520.fsf@ossau.uklinux.net>
2009-12-09 21:08                 ` remove ascii images from pdf Brian Gough
2009-12-17 23:58                   ` Neil Jerram

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).