How do I print a Texinfo file?
You can’t get nicely printed output from Info files; you must still have the original Texinfo source file for the manual you want to print.
Assuming you have TeX installed on your system, follow these steps:
Make sure the first line of the Texinfo file looks like this:
latex\input texinfoYou may need to change ‘
texinfo’ to the full pathname of thetexinfo.texfile, which comes with Emacs asdoc/misc/texinfo.tex(or copy or link it into the current directory).Type texi2dvi texinfo-source, where
texinfo-sourceis the name of the Texinfo source file for which you want to produce a printed copy. The ‘texi2dvi’ script is part of the GNU Texinfo distribution.Alternatively, ‘
texi2pdf’ produces PDF files.Print the DVI file
texinfo-source.dviin the normal way for printing DVI files at your site. For example, if you have a PostScript printer, run thedvipsprogram to print the DVI file on that printer.
To get more general instructions, retrieve the latest Texinfo package (see How do I install a piece of Texinfo documentation?).