Compile old LaTeX document

I recently found an old LaTeX doc that I wrote in 1994. It starts with the line

\documentstyle[makeidx,twoside,german,bibgerm,a4wide,mydefs,
               equations,fleqn,psfig]{script}

      

Now I tried to compile this document using a real version of MiKTeX on my windows machine, but pdflatex complains about the undefined contol '\ phspace' sequence:

! Undefined control sequence.
<argument> \uppercase {i}\phspace
                                  {1em}Fail--Stop

      

I am very confident that this document was compiled without errors in 1994 (this was my thesis). What can I do to make this build again?

+2


source to share


2 answers


This is similar to what is coming from the file toc

. Do you still have all the supporting files created by the old LaTeX in the same directory? If so, you should remove them before trying modern LaTeX. They include at least aux

, toc

, lof

and lot

.



+4


source


I think I \phspace

was probably an old LaTeX 2.09 primitive that is no longer used. Try adding

\let\phspace\hspace

      



in the preamble.

+1


source







All Articles