Message-ID: <3A338385.17FFB69F@networkusa.net> From: Weiqi Gao Organization: Object Computing, Inc. X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: en,zh-CN MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: TEX again References: <3a30ecb5$0$14720 AT SSP1NO25 DOT highway DOT telekom DOT at> <3a30ee5d$0$13180 AT SSP1NO25 DOT highway DOT telekom DOT at> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 31 Date: Sun, 10 Dec 2000 07:22:13 -0600 NNTP-Posting-Host: 216.15.147.138 X-Trace: news1.i1.net 976454525 216.15.147.138 (Sun, 10 Dec 2000 07:22:05 CDT) NNTP-Posting-Date: Sun, 10 Dec 2000 07:22:05 CDT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Florian X wrote: > > What is different between: .texi .info .dvi?? When you create documentation for the GNU operation system, you write a foo.texi file. This file contains TeX macros defined in texinfo.tex file, and can be processed using tex (the command) to generate the foo.dvi file. The same set of macros that's contained in the foo.texi file, can be processed by a different processor makeinfo to generate the foo.info file. The foo.dvi file is the DeVice Independent file. It contains fonts and formatting information ready to be processed by a dvi processor to generate outputs suitable for a particular device. For example, running "dvips foo.dvi" will generate a PostScript file suitable to be sent to a PostScript printer. Similarly, running "dvilj4 foo.dvi" will generate a PCL file suitable to be sent to a HP LaserJet 4 printer. Running "dvivga foo.dvi" will generate display of the foo.dvi file on your screen for previewing. Other commands exists to convert the foo.dvi file into other formats. The foo.info file is essentially an ASCII file. It contains markers liking one part of the file to another part of the file. You can browse the foo.info file using the info command, or the Emacs info facility. All of the above existed long before HTML or PDF came along. Nowadays, you can generate HTML and PDF files from your foo.texi source. -- Weiqi Gao weiqigao AT networkusa DOT net