On 04/01/2013 11:35 PM, Noël Köthe wrote: > Am Montag, den 01.04.2013, 20:53 -0700 schrieb RJ: >> Is it possible to get a copy of the Latex source code for the Wget >> instruction manual? >> I would like to print a few copies for instructional purposes, but >> need to first compile in a smaller font. > > It is the source code in the doc/ directory wget.texi or in git > http://git.savannah.gnu.org/cgit/wget.git/tree/doc > > Or do you mean an other manual?
Note that it's not LaTeX, it's a different TeX format known as Texinfo. The invocation, if you have Texinfo installed, is "texinfo /path/to/wget.texi". Not sure, but you may need to invoke it multiple times to get indexing and such right. Texinfo is a format that's designed for both print and interactive viewing, and is represented as a web of nodes, each node giving links to which other nodes are "parent" or "previous" or "next". Editing these links by hand is painful, and if you plan on making changes to the source, I'd recommend using Emacs' texinfo mode, which can automatically re-generate those links appropriately. You could even do your primary editing in another editor, and just open it up in Emacs for the final node-link regenerating step. HTH, -mjc
