A family of Microsoft word processing software products for creating web, email, and print documents.
Hi Andrew,
The fixed file is at http://www.wordarticles.com/temp/AH%20Statistics%201%20Notes%20-%20Outcome%202.docx
To try to answer your questions:
There is no easy way to do it in Notepad - I generally use Visual Studio; Yves Dhondt - the only other person here, AFAIK, who fixes these documents - has some tool he wrote himself. It isn't very difficult but there is no guarantee of what you will find when you look. Usually - and I'm sure you're right - it happens when equations and graphics are together and an oMath end tag, and perhaps part of the equation it ends, gets misplaced within a structure that is meant to enable the equation be correctly displayed in earlier versions of Word that do not support the new equation engine.
The structure should be:
<mc:AlternateContent>
<mc:Choice>
<m:oMath>
Start of equation
End of equation
</m:oMath>
<mc:Choice>
<mc:Fallback>
Probably some graphics
</mc:Fallback>
</AlternateContent>
but ends up as:
<mc:AlternateContent>
<mc:Choice>
<m:oMath>
Start of equation
<mc:Choice>
<mc:Fallback>
Probably some graphics
</mc:Fallback> </AlternateContent>
End of equation
</m:oMath>
This is a bug so nothing is for certain, and I don't know what circumstances trigger it, or what you can do to avoid it. I also don't know if Microsoft are working on it, although I have informed them and they have replied that 'it has been passed to the appropriate team' or some such.
For my own amusement I am working on an AddIn that will attempt to mend these documents but I don't know how well it will work, yet.
Enjoy,
Tony