OMath buildup()转义字符

时间:2017-04-13 20:37:50

标签: c# ms-word office-interop

我正在尝试通过OMath命名空间向Word编写一个等式,但是我无法获得转义字符以正确生成。当我执行下面的控制台程序时,它正确地放置了分子和除数,但是转义的字符" \ delta"仍然完全按照键入,而不是转换为小写三角形的希腊符号。

如果我将光标放在' a'之后。在\ delta中,按下空格,它会转换。如果我从功能区中单击 Professional ,也会转换。

有人可以解释如何以编程方式创建转义字符,并使其正确显示吗?

    static void Main(string[] args)
    {
        string fName = @"C:\Users\Desktop\Doc_1.docx";

        Word._Application myApp = new Word.Application();
        myApp.Visible = true;

        Word.Document myDoc = myApp.Documents.Open(fName);

        Word.Range myFunctionR = myApp.Selection.OMaths.Add(myApp.Selection.Range);
        Word.OMathFunction myFunction = myApp.Selection.OMaths[1].Functions.Add(
            myApp.Selection.Range, Word.WdOMathFunctionType.wdOMathFunctionBox);
        Word.OMathBox myBox = myFunction.Box;

        myBox.E.Range.Text = @"\delta = (PL)/(AE)";
        myBox.E.BuildUp();
    }

如果我从MS Word中粘贴出MathML,它看起来像这样:

正确/期望版本:

<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math">
<mml:mi>δ</mml:mi><mml:mi> 
<mml:mi> </mml:mi>
<mml:mo>=</mml:mo>
<mml:mfrac>
    <mml:mrow>
        <mml:mi>P</mml:mi>
        <mml:mi>L</mml:mi>
    </mml:mrow>
    <mml:mrow>
        <mml:mi>A</mml:mi>
        <mml:mi>E</mml:mi>
        </mml:mrow>
</mml:mfrac>

不正确/程序化版本:

<mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math">
<mml:mo>\</mml:mo>
<mml:mi>d</mml:mi>
<mml:mi>e</mml:mi>
<mml:mi>l</mml:mi>
<mml:mi>t</mml:mi>
<mml:mi>a</mml:mi>
<mml:mi> </mml:mi>
<mml:mo>=</mml:mo>
<mml:mfrac>
    <mml:mrow>
        <mml:mi>P</mml:mi>
        <mml:mi>L</mml:mi>
    </mml:mrow>
    <mml:mrow>
        <mml:mi>A</mml:mi>
        <mml:mi>E</mml:mi>
        </mml:mrow>
</mml:mfrac>

2 个答案:

答案 0 :(得分:1)

要替换字母,请使用以下代码

var脚本= @“ \ delta =(PL)/(AE)”;

script = script.Replace(“ \ delta”,“ \ u03B4”);}

您将必须识别所有希腊字母,并用等效的UTF16代码替换。

请在下面的网站上找到可用的字母表 https://www.fileformat.info/info/charset/UTF-16/list.htm

答案 1 :(得分:0)

我已经解决了它,2年后...以下方法将输入转义文本转换为格式正确的方程式。然后当调用OMath.Buildup()时,它能够正如人们所期望的那样正确地格式化等式。

关于这个问题的注意事项:我最初选择了MathML路径,这不一定是坏事,但是与我原来的目标相切。此路由使用Word的内置方程式自动更正(花式查找和替换)来生成正确的UTF编码字符。

private string OMathAutoCorrect(string input)
    {
        if (string.IsNullOrEmpty(input)) return null;
        Globals.ThisAddIn.Application.OMathAutoCorrect.UseOutsideOMath = true;
        var retString = input;
        foreach (OMathAutoCorrectEntry ac in Globals.ThisAddIn.Application.OMathAutoCorrect.Entries)
        {
            if (retString.Contains(ac.Name))
            {
                var matchIndex = retString.IndexOf(ac.Name);
                var sb = new StringBuilder();
                //Capture all data prior to the match:
                sb.Append(retString.Substring(0, matchIndex));
                //Add the Match
                sb.Append(ac.Value);
                //Capture all data after the match:
                var indexAfterMatch = matchIndex + ac.Name.Length;
                var remLength = retString.Length - indexAfterMatch;
                sb.Append(retString.Substring(indexAfterMatch, remLength));
                retString = sb.ToString();

            }
            Debug.WriteLine($"{ac.Name}, {ac.Value}, Char#: {ac.Value.Length}");
        }

        Globals.ThisAddIn.Application.OMathAutoCorrect.UseOutsideOMath = false;
        return retString;
    }