Convert .tex to .pdf or latex2.09 to latex2e
I had to convert an old .tex file into .pdf on a Linux Ubuntu machine
The utilities I first used were tex and dvipdf but got a loads of errors and a blank pdf file.
A number of lines like the one below were thrown by tex program at me.
! Undefined control sequence.
After searching a bit, I came to know that its a version change problem
The new latex version LATEX2E didn't seem to be compatible with the old LATEX2.09
First of all finding a file in version 3.142 (as shown below) helped me to correct my .tex file in the following manner
-----------------------------------------
\documentstyle[12pt,psSouv]{article}
was changed to
\documentclass[12pt]{article}
\usepackage{psSouv}
-----------------------------------------
\setlength{\textwidth}{16cm}
was changed to
\textwidth=16cm
-----------------------------------------
Even then I wasn't able to recover from the old to new latex format conversion problem.
latex program was throwing errors like the one below
Underfull \hbox (badness 10000) in paragraph at lines 36--37
Overfull \hbox (45.60556pt too wide) in paragraph at lines 173--187
The statements above seemed more like a warning. Being curious about what is the generated output, I opened the dvi file using xdvi which displayed my content properly formatted
Now the path was straightforward
I went to File ->Print and chose the option "Print To file"
It gave me a file with extension .ps which I then converted to a pdf format using "ps2pdf"
I also came across the following program which might be useful to Windows users. (haven't tried myself)
Links that helped me
http://web.mit.edu/answers/latex/latex_2e.html
http://cs.anu.edu.au/software/shyster/output/report-1-tex.html
LaTeX Frequently Asked Questions
Links that may help you
Latex2.09 vs. Latex2e
TexPider program for Windows users to convert Latex2.09 file to Latex2e
Guide to TeX and LaTeX
Latex Terminology

