View Single Post
  #10   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey Greg Maxey is offline
external usenet poster
 
Posts: 264
Default Equations in Word 2007 compatibility mode

Kassy,

As you now may know, the icon for the Word2007 EquationInsertNew
control is already located on the Ribbon in the Symbols group of the
Insert Tab and it can be added to the Quick Access Toolbar (QAT)
Whether access is easier with the QAT located above or below the
Ribbon is purely a matter of opinion.

To answer your question. Yes, there is a way to get an icon on the
ribbon and Jay Freedman pointed you to a link that would get you
started.

We still don't know if you want single click access to the new
equation editor or if you want to use the older Microsoft Equation 3.0
editor. If you want to use the older Microsoft Equation 3.0 editor
and add it to your Ribbon you could do it with the following XML
script. This script adds a new control to the Symbols group that will
insert a Microsoft Equation 3.0 object at the selection:

?xml version="1.0" encoding="UTF-8" standalone="yes"?
customUI xmlns="http://schemas.microsoft.com/office/2006/01/
customui"
ribbon
tabs
tab idMso="TabInsert"
group idMso="GroupInsertSymbols" visible="false"/
group id="GroupCustomInsertSymbol" label="Symbols"
insertBeforeMso="GroupInsertSymbols"
button idMso="EquationInsertNew"/
gallery idMso="SymbolInsertGallery"/
button id="Btn1" label="Microsoft Equation 3.0"
imageMso="EquationInsertNew" onAction="RibCon.ButtonOnAction"/
/group
/tab
/tabs
/ribbon
/customUI

Actually builtin controls (including groups) can not be edited so what
the script really does is it hides the builtin group and creates a new
custom group that contains duplicates of the two Symbols group builtin
controls and a new custom control.

You would also need the following VBA script a standard project named
"Main:"

Sub InsertEquationObject()
Selection.InlineShapes.AddOLEObject ClassType:="Equation.3",
FileName:="", _
LinkToFile:=False, DisplayAsIcon:=False
End Sub

and the the following VBA script in a standard project named "RibCon:"

Sub ButtonOnAction(Control As IRibbonControl)
Main.InsertEquationObject
End Sub

Once a control is added anywhere on the Ribbon it can be placed on the
QAT for single click access.

Another thing to consider is a keyboard shortcut. You could assign
either the InsertEquationObject macro shown above (to insert a
Microsoft Equation 3.0 object) or the following macro if you prefer
the new equation editor

Sub InsertNewEquation()
CommandBars.ExecuteMso ("EquationInsertNew")
End Sub

to a keyboard shortcut.

Post back if you need further assistance.



On Aug 17, 1:19*pm, Kassy wrote:
Is there anyway to get an icon on the ribbon? *In Word 2003 I could just
click on the icon for equation editor and I'd like to make it that easy again
because I am a math teacher and therefore use it often.



"Mattas120" wrote:

Thanks for your very prompt help. I appreciate it.


"Bob Mathews" wrote:


You don't need to convert the document to Word 2007 docx format,
but neither can you use the "new" equation editor (aka, the OMML
equation editor). The same Equation Editor that's been included
with Office since Office version 2 is also in Word 2007. Some
people call this "Equation Editor"; others call it "Microsoft
Equation", but whatever you call it, it hasn't changed.


To access Equation Editor in Word 2007, whether in native or
compatibility mode, on the Text group of the Insert tab, click on
Object. The Insert Object dialog that pops up is similar to what
you've seen in earlier versions of Word. Select "Microsoft
Equation 3.0".


BTW, MathType 6 is also compatible with Office 2007 (and
earlier), and installs a MathType tab onto the Ribbon in both
Word and PowerPoint. For more information on MathType, and to
download a free 30-day evaluation, click the link in my
signature.


--
Bob Mathews
Director of Training
Design Science, Inc.
bobm at dessci.com
http://www.dessci.com/free.asp?free=news
FREE fully-functional 30-day evaluation of MathType 5
MathType, WebEQ, MathPlayer, MathFlow, Equation Editor, TeXaide


On 28-Sep-2007, wrote:


I am working in 97-2003 compatibility mode in Word 2007 (in
a vista OS), and need to include equations in my documents.
'Equation' is disabled as incompatible, and Words only
suggestion is that I convert the document to straight 2007,
which I don't want *to do. I am currently going back and forth
between word 2003 and 2007 to get the combination of features
I want. Is there any better work around for including
compatible equations into a document created in word 2007?


Thanks for any help.


Stefanie M- Hide quoted text -


- Show quoted text -