From 4e193b0656c736e8f0fdf6f4d1b71f3dc8156de6 Mon Sep 17 00:00:00 2001 From: "anburasan.saravanan@syncfusion.com" Date: Wed, 24 Jan 2024 20:20:16 +0530 Subject: [PATCH] Resolved curly braces --- File-Formats/DocIO/Working-with-LaTeX.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/File-Formats/DocIO/Working-with-LaTeX.md b/File-Formats/DocIO/Working-with-LaTeX.md index e5a76cd42..4b60fefa3 100644 --- a/File-Formats/DocIO/Working-with-LaTeX.md +++ b/File-Formats/DocIO/Working-with-LaTeX.md @@ -313,6 +313,7 @@ The following code example illustrates how to create border box equation using L {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" %} +{% raw %} // Create a new Word document. using WordDocument document = new WordDocument(); @@ -326,10 +327,11 @@ document.LastParagraph.AppendMath(@"\boxed{{x}^{2}+{y}^{2}={z}^{2}}"); using MemoryStream stream = new MemoryStream(); document.Save(stream, FormatType.Docx); - +{% endraw %} {% endhighlight %} {% highlight c# tabtitle="C# [Windows-specific]" %} +{% raw %} // Create a new Word document. using WordDocument document = new WordDocument(); @@ -342,9 +344,11 @@ document.LastParagraph.AppendMath(@"\boxed{{x}^{2}+{y}^{2}={z}^{2}}"); //Save the Word document. document.Save("Result.docx", FormatType.Docx); +{% endraw %} {% endhighlight %} {% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} +{% raw %} ' Create a new Word document. Dim document As WordDocument = New WordDocument() @@ -357,6 +361,7 @@ document.LastParagraph.AppendMath(@"\boxed{{x}^{2}+{y}^{2}={z}^{2}}") 'Save the Word document. document.Save("Result.docx", FormatType.Docx) +{% endraw %} {% endhighlight %} {% endtabs %} @@ -375,7 +380,7 @@ The following table demonstrates the LaTeX equivalent to professional format bor 1. Border Box equation -\boxed{{x}^{2}+{y}^{2}={z}^{2}} +{% raw %}\boxed{{x}^{2}+{y}^{2}={z}^{2}}{% endraw %}