How to Generate the Mathematical Formula for the Left Half of a Mathematical Formula with Parentheses Using Aspose.Slides for .NET?

I want to generate the following formula
Snipaste_2023-12-25_08-37-33.png (2.0 KB)

in LaTeX: $\left(x\right.$
$\left{ \begin{array}{l}x+y=5\ 5x+8y=55\end{array}\right.$, how can I do that

@comepeng,
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): SLIDESNET-44373

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@comepeng,
Our developers have reviewed your requirements. Please try using the following code example:

using (Presentation pres = new Presentation())
{
    MathBlock mathBlock = new MathBlock();

    mathBlock.Add(new MathematicalText("(x "));

    MathDelimiter delimiter = new MathDelimiter(new MathArray(new IMathElement[] {
        new MathematicalText("&x + y = 5"),
        new MathematicalText("&5x + 8y = 55"),
    }));
    delimiter.BeginningCharacter = '{';
    delimiter.EndingCharacter = '\0';
    mathBlock.Add(delimiter);

    IAutoShape shape = pres.Slides[0].Shapes.AddMathShape(10, 20, 100, 100);
    var mathParagraph = ((MathPortion)shape.TextFrame.Paragraphs[0].Portions[0]).MathParagraph;
    mathParagraph.Add(mathBlock);

    pres.Save("output.pptx", SaveFormat.Pptx);
}

More examples: PowerPoint Math Equations|Aspose.Slides Documentation