CSharpMath 0.5.1
dotnet add package CSharpMath --version 0.5.1
NuGet\Install-Package CSharpMath -Version 0.5.1
<PackageReference Include="CSharpMath" Version="0.5.1" />
paket add CSharpMath --version 0.5.1
#r "nuget: CSharpMath, 0.5.1"
// Install CSharpMath as a Cake Addin
#addin nuget:?package=CSharpMath&version=0.5.1
// Install CSharpMath as a Cake Tool
#tool nuget:?package=CSharpMath&version=0.5.1
The core of the C# math rendering engine - CSharpMath.
Can display beautiful math equations and symbols from the LaTeX format.
Needs a front end to function.
Currently, front ends exist for Avalonia, iOS, SkiaSharp and Xamarin.Forms.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- System.Memory (>= 4.5.4)
- System.Runtime.CompilerServices.Unsafe (>= 4.6.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on CSharpMath:
Package | Downloads |
---|---|
CSharpMath.Editor
The base code for a What You See Is What You Get math editor. |
|
CSharpMath.Ios
The iOS front end for CSharpMath. |
|
CSharpMath.Evaluation
Can convert CSharpMath.Atom.MathList parsed from LaTeX with CSharpMath.Atom.LaTeXParser into actual mathematical expressions that are evaluatable with AngouriMath. Supports arithmetic, trigonometry, symbolic simplification and expansion, as well as matrices, sets, and equation solving. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.5.1 | 21,900 | 5/5/2021 |
0.5.0 | 1,273 | 4/20/2021 |
0.5.0-beta | 5,247 | 11/1/2020 |
0.5.0-alpha4 | 5,524 | 8/3/2020 |
0.5.0-alpha3 | 624 | 8/3/2020 |
0.5.0-alpha2.2 | 220 | 8/2/2020 |
0.5.0-alpha2.1 | 190 | 8/2/2020 |
0.5.0-alpha | 425 | 8/2/2020 |
0.4.2 | 11,174 | 4/15/2020 |
0.4.1 | 1,061 | 4/14/2020 |
0.4.0 | 3,868 | 4/10/2020 |
0.4.0-beta | 784 | 4/3/2020 |
0.4.0-alpha | 637 | 3/18/2020 |
0.3.0 | 1,616 | 12/19/2019 |
0.3.0-beta3 | 875 | 11/8/2019 |
0.3.0-beta2 | 601 | 11/4/2019 |
0.3.0-beta | 704 | 9/8/2019 |
0.3.0-alpha | 661 | 8/23/2019 |
0.2.0 | 3,775 | 1/22/2019 |
0.2.0-beta1 | 916 | 1/5/2019 |
0.2.0-alpha3 | 933 | 11/24/2018 |
0.2.0-alpha2 | 863 | 11/17/2018 |
0.2.0-alpha | 848 | 11/6/2018 |
0.1.5 | 1,208 | 1/1/2019 |
0.1.4 | 1,113 | 12/5/2018 |
0.1.3 | 1,104 | 11/11/2018 |
0.1.2 | 1,165 | 10/21/2018 |
0.1.1 | 1,126 | 10/13/2018 |
0.1.0 | 1,176 | 10/6/2018 |
0.1.0-rc.3 | 1,220 | 10/1/2018 |
0.1.0-rc.2 | 514 | 9/21/2018 |
0.1.0-rc.1 | 497 | 9/19/2018 |
0.1.0-rc.0 | 532 | 9/14/2018 |
0.1.0-pre8 | 1,133 | 8/26/2018 |
0.1.0-pre7 | 973 | 8/16/2018 |
0.1.0-pre6 | 914 | 8/8/2018 |
0.1.0-pre5 | 910 | 7/27/2018 |
0.1.0-pre4 | 941 | 7/20/2018 |
0.1.0-pre3 | 1,023 | 7/17/2018 |
0.1.0-pre2 | 949 | 7/14/2018 |
0.1.0-pre10 | 938 | 9/6/2018 |
0.1.0-pre1 | 961 | 6/28/2018 |
0.0.0 | 962 | 12/29/2017 |
# 0.5.1 Evaluation Update Quickfix
## Changes from v0.5.0 (Recently merged first)
## 🚀 Features
<details><summary>Provide workaround for #192 (#193) @Happypig375</summary><table><td>
So that
```cs
class RussianBreakingEngine : Typography.TextBreak.EngBreakingEngine {
public override bool CanHandle(char c) => c is >= '\u0400' and <= '\u052f'; // Unicode Cyrillic and Cyrillic Supplement
}
CSharpMath.Rendering.Text.TextLaTeXParser.AdditionalBreakingEngines.Add(new RussianBreakingEngine());
```
can be used for #192 while awaiting Typography support.
</td></table></details>
## Contributors
@Happypig375