Skip to content

Commit 4832cec

Browse files
Merge pull request #2025 from syncfusion-content/ES-881044-Add-March-KB-links
ES-881044 - Add March 2024 published KB links to corresponding UG pages in DocIO and Presentation
2 parents a21201d + 74d110e commit 4832cec

File tree

9 files changed

+94
-10
lines changed

9 files changed

+94
-10
lines changed

File-Formats/DocIO/Charts/Chart-Axis.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ control: DocIO
66
documentation: UG
77
---
88

9-
# Chart Axis
9+
# Chart Axis in Word document
1010

1111
Charts typically have two axes that are used to measure and categorize data.
1212
- Horizontal axis (also known as category axis or x axis).
@@ -670,4 +670,7 @@ chart.PrimaryCategoryAxis.CategoryLabels = chart.ChartData[2, 1, 11, 1];
670670
chart.PrimaryCategoryAxis.CategoryLabels = chart.ChartData(2, 1, 11, 1)
671671

672672
{% endhighlight %}
673-
{% endtabs %}
673+
{% endtabs %}
674+
675+
## See Also
676+
* [How to set the X-axis label position of the chart in the ASP.NET Core Word document?](https://support.syncfusion.com/kb/article/15443/how-to-set-the-x-axis-label-position-of-the-chart-in-the-aspnet-core-word-document?)

File-Formats/DocIO/Convert-Word-Document-to-PDF-in-Blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,4 +348,4 @@ N> To convert Word to PDF, it is necessary to access the font stream internally.
348348

349349
Click [here](https://www.syncfusion.com/document-processing/word-framework/blazor) to explore the rich set of Syncfusion Word library (DocIO) features.
350350

351-
An online sample link to [convert Word document to PDF](https://blazor.syncfusion.com/demos/word/word-to-pdf?theme=fluent) in Blazor.
351+
An online sample link to [convert Word document to PDF](https://blazor.syncfusion.com/demos/word/word-to-pdf?theme=fluent) in Blazor.

File-Formats/DocIO/Working-with-Find-and-Replace.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1675,3 +1675,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
16751675
* [How to find and replace a text with chart in Word document?](https://support.syncfusion.com/kb/article/13951/how-to-find-and-replace-a-text-with-chart-in-word-document)
16761676
* [How to find and replace a text with hyperlink in Word document?](https://support.syncfusion.com/kb/article/13954/how-to-find-and-replace-a-text-with-hyperlink-in-word-document)
16771677
* [How to find and replace a text with Table of Contents (TOC) in Word document?](https://support.syncfusion.com/kb/article/13958/how-to-find-and-replace-a-text-with-table-of-contents-toc-in-word-document)
1678+
* [How to replace text in a Word document with HTML in ASP.NET Core?](https://support.syncfusion.com/kb/article/15520/how-to-replace-text-in-a-word-document-with-html-in-aspnet-core?)

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

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,80 @@ The following table demonstrates the LaTeX equivalent to professional format del
594594
</tr>
595595
</table>
596596

597+
## Equation Array
598+
599+
Add **equation array** 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.
600+
601+
The following code example illustrates how to create an equation array using LaTeX in Word document.
602+
603+
{% tabs %}
604+
{% highlight c# tabtitle="C# [Cross-platform]" %}
605+
606+
// Create a new Word document.
607+
using WordDocument document = new WordDocument();
608+
609+
//Add one section and one paragraph to the document.
610+
document.EnsureMinimal();
611+
612+
//Append an box equation using LaTeX.
613+
document.LastParagraph.AppendMath(@"\eqarray{a@&b}");
614+
615+
//Save the Word document to MemoryStream
616+
using MemoryStream stream = new MemoryStream();
617+
document.Save(stream, FormatType.Docx);
618+
619+
{% endhighlight %}
620+
{% highlight c# tabtitle="C# [Windows-specific]" %}
621+
622+
// Create a new Word document.
623+
using WordDocument document = new WordDocument();
624+
625+
//Add one section and one paragraph to the document.
626+
document.EnsureMinimal();
627+
628+
//Append an box equation using LaTeX.
629+
document.LastParagraph.AppendMath(@"\eqarray{a@&b}");
630+
631+
//Save the Word document.
632+
document.Save("Result.docx", FormatType.Docx);
633+
634+
{% endhighlight %}
635+
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
636+
637+
' Create a new Word document.
638+
Dim document As WordDocument = New WordDocument()
639+
640+
'Add one section and one paragraph to the document.
641+
document.EnsureMinimal()
642+
643+
'Append an box equation using LaTeX.
644+
document.LastParagraph.AppendMath(@"\eqarray{a@&b}");
645+
646+
'Save the Word document.
647+
document.Save("Result.docx", FormatType.Docx)
648+
649+
{% endhighlight %}
650+
{% endtabs %}
651+
652+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Mathematical-Equation/LaTeX-equations/Equation-array/.NET).
653+
654+
The following table demonstrates the LaTeX equivalent to professional format equation array.
655+
656+
<table>
657+
<thead>
658+
<tr>
659+
<th width="20%">S.No</th>
660+
<th width="40%">Professional</th>
661+
<th width="40%">LaTeX</th>
662+
</tr>
663+
</thead>
664+
<tr>
665+
<td>1.</td>
666+
<td><img src="WorkingwithMathematicalEquation_images/EquationArray1.png" alt="Equation array"></td>
667+
<td>\eqarray{a@&b}</td>
668+
</tr>
669+
</table>
670+
597671
## Fraction
598672

599673
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.
584 Bytes
Loading

File-Formats/Presentation/Charts/Chart-Axis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ control: PowerPoint
66
documentation: UG
77
---
88

9-
# Chart Axis
9+
# Chart Axis in PowerPoint
1010

1111
Charts typically have two axes that are used to measure and categorize data.
1212
- Horizontal axis (also known as category axis or x axis).

File-Formats/Presentation/Convert-PowerPoint-to-Image-in-Blazor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ using Syncfusion.PresentationRenderer;
8787
{% endhighlight %}
8888
{% endtabs %}
8989

90-
Step 9: Create a new MemoryStream method with name as **ConvertPPTXtoImage** in **PowerPointService** class and include the following code snippet to **convert a PowerPoint to image in Blazor Server app**.
90+
Step 9: Create a new MemoryStream method with name as **ConvertPPTXToImage** in **PowerPointService** class and include the following code snippet to **convert a PowerPoint to image in Blazor Server app**.
9191

9292
{% tabs %}
9393
{% highlight c# tabtitle="C#" %}
@@ -315,4 +315,4 @@ N> Even though PowerPoint library works in WASM app, it is recommended to use se
315315

316316
Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/blazor) to explore the rich set of Syncfusion PowerPoint Library (Presentation) features.
317317

318-
An online sample link to [convert PowerPoint Presentation to image](https://blazor.syncfusion.com/demos/powerpoint/pptx-to-image?theme=fluent) in Blazor.
318+
An online sample link to [convert PowerPoint Presentation to image](https://blazor.syncfusion.com/demos/powerpoint/pptx-to-image?theme=fluent) in Blazor.

File-Formats/Presentation/Working-with-Charts.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ documentation: UG
77
---
88
# Working with charts using various operations
99

10-
To quickly start creating a chart in a PowerPoint Presentation using .NET PowerPoint libray, please check out this video:
10+
To quickly start creating a chart in a PowerPoint Presentation using .NET PowerPoint library, please check out this video:
1111
{% youtube "https://www.youtube.com/watch?v=z2yD83HWIrQ" %}
1212

1313
## Creating a Chart from scratch
@@ -711,7 +711,7 @@ To convert chart in PowerPoint slide as an image, refer the below dependencies i
711711
Platform(s)
712712
</th>
713713
<th width="40%">
714-
NuGets for Chart to Image
714+
NuGet for Chart to Image
715715
</th>
716716
<th width="40%">
717717
Assemblies for Chart to image
@@ -2093,4 +2093,5 @@ The following Chart types are supported in Presentation.
20932093
* Surface_NoColor_Contour
20942094

20952095
## See Also
2096-
* [How to set same number of intervals for Primary and Secondary ValueAxis?](https://support.syncfusion.com/kb/article/11366/how-to-set-same-number-of-intervals-for-primary-and-secondary-valueaxis-in-winforms-presentation)
2096+
* [How to set same number of intervals for Primary and Secondary ValueAxis?](https://support.syncfusion.com/kb/article/11366/how-to-set-same-number-of-intervals-for-primary-and-secondary-valueaxis-in-winforms-presentation)
2097+
* [How to create a chart and save as an image using ASP.NET Core Presentation library?](https://support.syncfusion.com/kb/article/15499/how-to-create-a-chart-and-save-as-an-image-using-aspnet-core-presentation-library?)

File-Formats/Presentation/Working-with-images.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,4 +467,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
467467
* [How to crop an image in a Presentation using C#?](https://support.syncfusion.com/kb/article/15431/how-to-crop-an-image-in-a-presentation-using-c)
468468
* [How to extract the cropped image from Presentation in C#?](https://support.syncfusion.com/kb/article/15451/how-to-extract-the-cropped-image-from-presentation-in-c)
469469
* [How to crop and insert image in Presentation in C#?](https://support.syncfusion.com/kb/article/15432/how-to-crop-and-insert-image-in-presentation-in-c)
470-
* [How to remove the crop from image in Presentation using C#?](https://support.syncfusion.com/kb/article/15435/how-to-remove-the-crop-from-image-in-presentation-using-c)
470+
* [How to remove the crop from image in Presentation using C#?](https://support.syncfusion.com/kb/article/15435/how-to-remove-the-crop-from-image-in-presentation-using-c)
471+
* [How to crop an image in ASP.NET Core Presentation using C#?](https://support.syncfusion.com/kb/article/15431/how-to-crop-an-image-in-aspnet-core-presentation-using-c?)
472+
* [How to crop and insert image in ASP.NET Core Presentation in C#?](https://support.syncfusion.com/kb/article/15432/how-to-crop-and-insert-image-in-aspnet-core-presentation-in-c?)
473+
* [How to extract the cropped image from ASP.NET Core Presentation in C#?](https://support.syncfusion.com/kb/article/15451/how-to-extract-the-cropped-image-from-aspnet-core-presentation-in-c?)
474+
* [How to remove the crop from image in ASP.NET Core Presentation using C#?](https://support.syncfusion.com/kb/article/15435/how-to-remove-the-crop-from-image-in-aspnet-core-presentation-using-c?)
475+
* [How to extract the cropped image from WinForms Presentation in C#?](https://support.syncfusion.com/kb/article/15533/how-to-extract-the-cropped-image-from-winforms-presentation-in-c?)

0 commit comments

Comments
 (0)