I am preparing a submission to a journal that uses 2.09 style latex macros. Here is the journal website with the latex macros: http://www.jilp.org/latex/.
This sample compiles fine and produces a pdf. However, my submission uses the algorithmx and graphicx packages. If I try to do a \usepackage{graphicx} etc. in my tex file, it complains saying that I should not be using latex 2.09 style \documentstyle{}.
I then tried changing \documentstyle to \documentclass. It compiles fine; however, macros like page numbering, title, etc. do not compile and have to be commented out. So I am stuck between:
1. Choosing the macros provided which are latex 2.09 style and my graphicx and algorithmx packages cannot be used.
2. Changing documentstyle to documentclass so I am able to use graphicx and algorithmx packages. But the titles cannot be done and the font size and page layout look very different from option 1.
Now the journal wont accept any entry that is not formatted according to their macros. How can I port these macros to latex 2e so I can use the modern packages?
Sorry, I am very new to Latex and am asking this very elementary question.
EDIT: Here was the original document start:
Code: Select all
\documentstyle[jilp,twoside,11pt]{article}
\input epsf %% at top of file
\jilpheading{1}{1993}{1-15}{6/91}{9/91}
\ShortHeadings{Minimizing Conflicts: A Heuristic Repair Method}
{Minton, Philips, Johnston, \& Laird}
\firstpageno{25}
Code: Select all
\documentclass[jilp,twoside,11pt]{article}
\usepackage[dvips]{graphicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\input epsf %% at top of file
%\jilpheading{1}{1993}{1-15}{6/91}{9/91}
%\ShortHeadings{Minimizing Conflicts: A Heuristic Repair Method}
%{Minton, Philips, Johnston, \& Laird}
%\firstpageno{25}