Date: Fri, 08 Dec 2000 19:54:43 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "Florian X" Message-Id: <2950-Fri08Dec2000195442+0200-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.6 CC: djgpp AT delorie DOT com In-reply-to: <3a30ee5d$0$13180@SSP1NO25.highway.telekom.at> (dos.fire@aon.at) 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> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "Florian X" > Newsgroups: comp.os.msdos.djgpp > Date: Fri, 8 Dec 2000 15:21:32 +0100 > > What is different between: .texi .info .dvi?? They are different formats. - .texi is the Texinfo source of a document. - .info is the format used by the Info readers, such as info.exe and the readers built into RHIDE and Emacs. Your DJGPP info subdirectory is full of such files. - .dvi (for DeVice Independent) is the output of TeX. It is a typeset document, produced from a .texi or a .tex source, but it needs a DVI driver program to convert it to commands understandable by specific devices, in order to print the document or display it. For example, dvips is the DVI driver for PostScript printers: it reads the DVI file and produces PostScript commands to print the DVI file on a PS printer. Likewise, dvipdfm reads a DVI file and produces PDF. There are many other DVI drivers, for different devices (PCL printers, bit-mapped displays, etc.)