The source for the document consisted of a master file
lecnotes.tex and an individual file for each chapter,
e.g. IFS.tex for the chapter on Iterated Function
Systems. In addition, there are many (almost 100) figures, which are
generally external PostScript files which were created in several
ways.
The LaTeX source is not being made available for distribution at this time. However, the Web version of the book is available as a gzipped tar file:
dynamics.tar.gz
Archive file of lecture notes.
latex2htmllatex2html. The basic
reference for this program is: LaTeX2html home page
To allow HTML links in the LaTeX document, one needs to load the
html.sty package (included with latex2html).
This defines various LaTeX commands such as
\htmladdnormallink
for including a hypertext link.
To prepare the Web document, run the LaTeX document through LaTeX and BibTeX several times (enough to generate all the proper auxiliary files: table of contents, bibliography, internal references, etc.). Then process the document with
latex2html main.tex
main.tex is the main LaTeX document.
This produces a directory tree of HTML files and images.
The main HTML node will be main/main.html.
All PostScript files begin with %! and usually have a tag
.ps. Then all the programming commands come, as well as
commands for showing the results. Generally speaking, to include a
PostScript picture in a document, you must convert it to an
Encapsulated PostScript file (with tag .eps). For that
purpose, I use a program called ps2epsi that comes as
part of the ghostscript package. You say something
like:
ps2epsi file.ps
and the
output is a file file.epsi. The .epsi
signifies a special type of EPS file that has a small bitmap of the
ultimate image encoded in the prologue to the actual image. This is
useful for programs that can manipulate an EPS file, such as
xfig, which we will get to later.You must study The PostScript Language Reference Manual to learn the basics of PostScript programming.
xfigxfig is one of the single most
important reasons for using Unix rather than other OS's. It is
an amazing program for creating and manipulating pictures particularly
intended for TeX documents. It can load arbitrary EPS figures and
then modify them with labels, arrows, etc. The labels can actually
be mathematical notation encoded in TeX! It is available at major
archives, such as ftp.x.org.
picture.ps, use ps2epsi to create
an EPS file just enclosing the graphic.
xfig will load JPG or GIF files as images, so that it is
not strictly necessary to convert such images. However, there is a
program called convert that comes with the free
Imagemagick graphics package (also available at ftp.x.org).
It is used in a very simple way:
convert file.jpg file.eps
convert knows the type of the picture from the file tag.
It recognizes virtually all the standard image types.