Skip to content

Commit beaa0d1

Browse files
Merge pull request #1722 from syncfusion-content/ES-861360-GitHub-Link
ES 861360 GitHub and API link added in LaTeX
2 parents 6b975a2 + 08f1c8b commit beaa0d1

File tree

1 file changed

+51
-21
lines changed

1 file changed

+51
-21
lines changed

File-Formats/DocIO/Working-with-LaTeX.md

Lines changed: 51 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The .NET Word (DocIO) library allows to create mathematical equation in Word doc
1111

1212
## Accent
1313

14-
Add **accent** equation to a Word document using the LaTeX through **AppendMath** API.
14+
Add **accent** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
1515

1616
The following code example illustrates how to create accent equation using LaTeX in Word document.
1717

@@ -65,6 +65,8 @@ document.Save("Result.docx", FormatType.Docx)
6565
{% endhighlight %}
6666
{% endtabs %}
6767

68+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Accent/.NET).
69+
6870
The following table demonstrates the LaTeX equivalent to professional format accent equations.
6971

7072
<table>
@@ -149,7 +151,7 @@ The following table demonstrates the LaTeX equivalent to professional format acc
149151

150152
## Bar
151153

152-
Add **bar** equation to a Word document using the LaTeX through **AppendMath** API.
154+
Add **bar** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
153155

154156
The following code example illustrates how to create bar equation using LaTeX in Word document.
155157

@@ -203,6 +205,8 @@ document.Save("Result.docx", FormatType.Docx)
203205
{% endhighlight %}
204206
{% endtabs %}
205207

208+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Bar/.NET).
209+
206210
The following table demonstrates the LaTeX equivalent to professional format bar equations.
207211

208212
<table>
@@ -227,7 +231,7 @@ The following table demonstrates the LaTeX equivalent to professional format bar
227231

228232
## Box
229233

230-
Add **box** equation to a Word document using the LaTeX through **AppendMath** API.
234+
Add **box** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
231235

232236
The following code example illustrates how to create box equation using LaTeX in Word document.
233237

@@ -281,6 +285,8 @@ document.Save("Result.docx", FormatType.Docx)
281285
{% endhighlight %}
282286
{% endtabs %}
283287

288+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Box/.NET).
289+
284290
The following table demonstrates the LaTeX equivalent to professional format box equations.
285291

286292
<table>
@@ -300,7 +306,7 @@ The following table demonstrates the LaTeX equivalent to professional format box
300306

301307
## Border Box
302308

303-
Add **border box** equation to a Word document using the LaTeX through **AppendMath** API.
309+
Add **border box** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
304310

305311
The following code example illustrates how to create border box equation using LaTeX in Word document.
306312

@@ -354,6 +360,8 @@ document.Save("Result.docx", FormatType.Docx)
354360
{% endhighlight %}
355361
{% endtabs %}
356362

363+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Border-Box/.NET).
364+
357365
The following table demonstrates the LaTeX equivalent to professional format border box equations.
358366

359367
<table>
@@ -373,7 +381,7 @@ The following table demonstrates the LaTeX equivalent to professional format bor
373381

374382
## Delimiter
375383

376-
Add **delimiter** equation to a Word document using the LaTeX through **AppendMath** API.
384+
Add **delimiter** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
377385

378386
The following code example illustrates how to create delimiter equation using LaTeX in Word document.
379387

@@ -427,6 +435,8 @@ document.Save("Result.docx", FormatType.Docx)
427435
{% endhighlight %}
428436
{% endtabs %}
429437

438+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Delimiter/.NET).
439+
430440
The following table demonstrates the LaTeX equivalent to professional format delimiter equations.
431441

432442
<table>
@@ -581,7 +591,7 @@ The following table demonstrates the LaTeX equivalent to professional format del
581591

582592
## Fraction
583593

584-
Add **fraction** equation to a Word document using the LaTeX through **AppendMath** API.
594+
Add **fraction** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
585595

586596
The following code example illustrates how to create fraction equation using LaTeX in Word document.
587597

@@ -635,6 +645,8 @@ document.Save("Result.docx", FormatType.Docx)
635645
{% endhighlight %}
636646
{% endtabs %}
637647

648+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Fraction/.NET).
649+
638650
The following table demonstrates the LaTeX equivalent to professional format fraction equations.
639651

640652
<table>
@@ -669,7 +681,7 @@ The following table demonstrates the LaTeX equivalent to professional format fra
669681

670682
## Function
671683

672-
Add **function** equation to a Word document using the LaTeX through **AppendMath** API.
684+
Add **function** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
673685

674686
The following code example illustrates how to create function equation using LaTeX in Word document.
675687

@@ -723,6 +735,8 @@ document.Save("Result.docx", FormatType.Docx)
723735
{% endhighlight %}
724736
{% endtabs %}
725737

738+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Function/.NET).
739+
726740
The following table demonstrates the LaTeX equivalent to professional format function equations.
727741

728742
<table>
@@ -887,7 +901,7 @@ The following table demonstrates the LaTeX equivalent to professional format fun
887901

888902
## Group character
889903

890-
Add **group character** equation to a Word document using the LaTeX through **AppendMath** API.
904+
Add **group character** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
891905

892906
The following code example illustrates how to create group character equation using LaTeX in Word document.
893907

@@ -941,6 +955,8 @@ document.Save("Result.docx", FormatType.Docx)
941955
{% endhighlight %}
942956
{% endtabs %}
943957

958+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Group-character/.NET).
959+
944960
The following table demonstrates the LaTeX equivalent to professional format group character equations.
945961

946962
<table>
@@ -965,7 +981,7 @@ The following table demonstrates the LaTeX equivalent to professional format gro
965981

966982
## Limit
967983

968-
Add **limit** equation to a Word document using the LaTeX through **AppendMath** API.
984+
Add **limit** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
969985

970986
The following code example illustrates how to create limit equation using LaTeX in Word document.
971987

@@ -979,7 +995,7 @@ using WordDocument document = new WordDocument();
979995
document.EnsureMinimal();
980996

981997
//Append an limit equation using LaTeX.
982-
document.LastParagraph.AppendMath(@"\lim\belowb{a}");
998+
document.LastParagraph.AppendMath(@"\lim\below{b}{a}");
983999

9841000
//Save the Word document to MemoryStream
9851001
using MemoryStream stream = new MemoryStream();
@@ -996,7 +1012,7 @@ using WordDocument document = new WordDocument();
9961012
document.EnsureMinimal();
9971013

9981014
//Append an limit equation using LaTeX.
999-
document.LastParagraph.AppendMath(@"\lim\belowb{a}");
1015+
document.LastParagraph.AppendMath(@"\lim\below{b}{a}");
10001016

10011017
//Save the Word document.
10021018
document.Save("Result.docx", FormatType.Docx);
@@ -1011,14 +1027,16 @@ Dim document As WordDocument = New WordDocument()
10111027
document.EnsureMinimal()
10121028

10131029
'Append an limit equation using LaTeX.
1014-
document.LastParagraph.AppendMath(@"\lim\belowb{a}")
1030+
document.LastParagraph.AppendMath(@"\lim\below{b}{a}")
10151031

10161032
'Save the Word document.
10171033
document.Save("Result.docx", FormatType.Docx)
10181034

10191035
{% endhighlight %}
10201036
{% endtabs %}
10211037

1038+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Limit/.NET).
1039+
10221040
The following table demonstrates the LaTeX equivalent to professional format limit equations.
10231041

10241042
<table>
@@ -1032,23 +1050,23 @@ The following table demonstrates the LaTeX equivalent to professional format lim
10321050
<tr>
10331051
<td>1.</td>
10341052
<td><img src="WorkingwithMathematicalEquation_images/Limit1.png" alt="Limit equation"></td>
1035-
<td>\lim\belowb{a}</td>
1053+
<td>\lim\below{b}{a}</td>
10361054
</tr>
10371055
<tr>
10381056
<td>2.</td>
10391057
<td><img src="WorkingwithMathematicalEquation_images/Limit2.png" alt="Limit equation"></td>
1040-
<td>\min\belowb{a}</td>
1058+
<td>\min\below{b}{a}</td>
10411059
</tr>
10421060
<tr>
10431061
<td>3.</td>
10441062
<td><img src="WorkingwithMathematicalEquation_images/Limit3.png" alt="Limit equation"></td>
1045-
<td>\max\belowb{a}</td>
1063+
<td>\max\below{b}{a}</td>
10461064
</tr>
10471065
</table>
10481066

10491067
## Matrix
10501068

1051-
Add **matrix** equation to a Word document using the LaTeX through **AppendMath** API.
1069+
Add **matrix** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
10521070

10531071
The following code example illustrates how to create matrix equation using LaTeX in Word document.
10541072

@@ -1102,6 +1120,8 @@ document.Save("Result.docx", FormatType.Docx)
11021120
{% endhighlight %}
11031121
{% endtabs %}
11041122

1123+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Matrix/.NET).
1124+
11051125
The following table demonstrates the LaTeX equivalent to professional format matrix equations.
11061126

11071127
<table>
@@ -1121,7 +1141,7 @@ The following table demonstrates the LaTeX equivalent to professional format mat
11211141

11221142
## N-array
11231143

1124-
Add **N-array** equation to a Word document using the LaTeX through **AppendMath** API.
1144+
Add **N-array** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
11251145

11261146
The following code example illustrates how to create N-array equation using LaTeX in Word document.
11271147

@@ -1175,6 +1195,8 @@ document.Save("Result.docx", FormatType.Docx)
11751195
{% endhighlight %}
11761196
{% endtabs %}
11771197

1198+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/N-array/.NET).
1199+
11781200
The following table demonstrates the LaTeX equivalent to professional format N-array equations.
11791201

11801202
<table>
@@ -1244,7 +1266,7 @@ The following table demonstrates the LaTeX equivalent to professional format N-a
12441266

12451267
## Radical
12461268

1247-
Add **radical** equation to a Word document using the LaTeX through **AppendMath** API.
1269+
Add **radical** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
12481270

12491271
The following code example illustrates how to create radical equation using LaTeX in Word document.
12501272

@@ -1298,6 +1320,8 @@ document.Save("Result.docx", FormatType.Docx)
12981320
{% endhighlight %}
12991321
{% endtabs %}
13001322

1323+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Radical/.NET).
1324+
13011325
The following table demonstrates the LaTeX equivalent to professional format radical equations.
13021326

13031327
<table>
@@ -1322,7 +1346,7 @@ The following table demonstrates the LaTeX equivalent to professional format rad
13221346

13231347
## SubSuperScript
13241348

1325-
Add **SubSuperScript** equation to a Word document using the LaTeX through **AppendMath** API.
1349+
Add **SubSuperScript** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
13261350

13271351
The following code example illustrates how to create SubSuperScript equation using LaTeX in Word document.
13281352

@@ -1376,6 +1400,8 @@ document.Save("Result.docx", FormatType.Docx)
13761400
{% endhighlight %}
13771401
{% endtabs %}
13781402

1403+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/SubSuperScript/.NET).
1404+
13791405
The following table demonstrates the LaTeX equivalent to professional format SubSuperScript equations.
13801406

13811407
<table>
@@ -1400,7 +1426,7 @@ The following table demonstrates the LaTeX equivalent to professional format Sub
14001426

14011427
## Left SubSuperScript
14021428

1403-
Add **Left SubSuperScript** equation to a Word document using the LaTeX through **AppendMath** API.
1429+
Add **Left SubSuperScript** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
14041430

14051431
The following code example illustrates how to create Left SubSuperScript equation using LaTeX in Word document.
14061432

@@ -1454,6 +1480,8 @@ document.Save("Result.docx", FormatType.Docx)
14541480
{% endhighlight %}
14551481
{% endtabs %}
14561482

1483+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Left-SubSuperScript/.NET)
1484+
14571485
The following table demonstrates the LaTeX equivalent to professional format Left SubSuperScript equations.
14581486

14591487
<table>
@@ -1473,7 +1501,7 @@ The following table demonstrates the LaTeX equivalent to professional format Lef
14731501

14741502
## Right SubSuperScript
14751503

1476-
Add **Right SubSuperScript** equation to a Word document using the LaTeX through **AppendMath** API.
1504+
Add **Right SubSuperScript** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API.
14771505

14781506
The following code example illustrates how to create Right SubSuperScript equation using LaTeX in Word document.
14791507

@@ -1527,6 +1555,8 @@ document.Save("Result.docx", FormatType.Docx)
15271555
{% endhighlight %}
15281556
{% endtabs %}
15291557

1558+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Right-SubSuperScript/.NET).
1559+
15301560
The following table demonstrates the LaTeX equivalent to professional format Right SubSuperScript equations.
15311561

15321562
<table>

0 commit comments

Comments
 (0)