RE: [Aimmath-developers] AIM and Maple 9 not good news
Brought to you by:
gustav_delius,
npstrick
From: Ken M. <mo...@pt...> - 2003-08-13 17:38:27
|
Hi all, I just made Greg's suggested changes to my local copy: > It should only be .mpl files in the WEB-INF/maple directory and > subdirectories. I've just done the changes to a local develop_2_1 copy. > Essentially, what I did was: > > 1. globally substituted LaTeX( for `aim/LaTeX`( > 2. globally substituted `LaTeX/ for `aim/LaTeX/ > 3. moved the `aim/LaTeX... commands to aim/LaTeX.mpl > 4. added: aim/LaTeX to PackageList > 5. added: > > if Config['MapleVersion'] <= 8 then > `Package/Assign`(`LaTeX/trim` ,"", `aim/LaTeX/trim`): > `Package/Assign`(LaTeX ,"", `aim/LaTeX`): > `Package/Assign`(`LaTeX/Subs` ,"", `aim/LaTeX/Subs`): > `Package/Assign`(`LaTeX/Wrap` ,"", `aim/LaTeX/Wrap`): > `Package/Assign`(`LaTeX/Display` ,"", `aim/LaTeX/Display`): > `Package/Assign`(`LaTeX/DisplayParse`,"", `aim/LaTeX/DisplayParse`): > fi; > > to aim/LaTeX.mpl so that the old names are still available in > versions of Maple up to 8. The only thing that needs to be added to this is: 6. Change the line: LaTeX::string, to `aim/LaTeX`::string, in aim/LaTeX.mpl. I also changed the name of the LaTeX package to "aim/LaTeX" at the top of the same file. It seems to be working fine now. Thanks Greg! Another fine point here is that any question files that use the LaTeX() command also have to be updated if you want them to work under Maple 9. KEN |