CSharpMath.Forms
0.5.1
Install-Package CSharpMath.Forms -Version 0.5.1
dotnet add package CSharpMath.Forms --version 0.5.1
<PackageReference Include="CSharpMath.Forms" Version="0.5.1" />
paket add CSharpMath.Forms --version 0.5.1
#r "nuget: CSharpMath.Forms, 0.5.1"
// Install CSharpMath.Forms as a Cake Addin
#addin nuget:?package=CSharpMath.Forms&version=0.5.1
// Install CSharpMath.Forms as a Cake Tool
#tool nuget:?package=CSharpMath.Forms&version=0.5.1
The Xamarin.Forms front end for CSharpMath.
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 |
.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 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- CSharpMath.SkiaSharp (>= 0.5.1)
- SkiaSharp.Views.Forms (>= 1.68.0)
- Xamarin.Forms (>= 4.3.0.908675)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on CSharpMath.Forms:
Repository | Stars |
---|---|
verybadcat/CSharpMath
LaTeX. in C#. (ported from the wonderful iosMath project).
|
Version | Downloads | Last updated |
---|---|---|
0.5.1 | 716 | 5/5/2021 |
0.5.0 | 244 | 4/20/2021 |
0.5.0-beta | 326 | 11/1/2020 |
0.5.0-alpha4 | 1,459 | 8/3/2020 |
0.5.0-alpha3 | 257 | 8/3/2020 |
0.5.0-alpha2.2 | 177 | 8/3/2020 |
0.4.2 | 2,177 | 4/15/2020 |
0.4.1 | 321 | 4/14/2020 |
0.4.0.1 | 3,106 | 4/11/2020 |
0.4.0 | 346 | 4/10/2020 |
0.4.0-beta | 306 | 4/3/2020 |
0.4.0-alpha | 290 | 3/18/2020 |
0.3.0 | 472 | 12/19/2019 |
0.3.0-beta3 | 294 | 11/8/2019 |
0.3.0-beta2 | 290 | 11/4/2019 |
0.3.0-beta | 341 | 9/8/2019 |
0.3.0-alpha | 337 | 8/23/2019 |
0.2.1 | 790 | 4/24/2019 |
0.2.0 | 518 | 1/22/2019 |
0.2.0-beta1 | 536 | 1/5/2019 |
0.2.0-alpha3 | 475 | 11/24/2018 |
0.2.0-alpha2 | 462 | 11/17/2018 |
0.2.0-alpha | 463 | 11/6/2018 |
0.1.5 | 494 | 1/1/2019 |
0.1.4 | 527 | 12/5/2018 |
0.1.3 | 562 | 11/11/2018 |
0.1.2 | 561 | 10/21/2018 |
0.1.1 | 529 | 10/13/2018 |
0.1.0 | 552 | 10/6/2018 |
0.1.0-rc.3 | 357 | 10/1/2018 |
0.1.0-rc.2 | 415 | 9/21/2018 |
0.1.0-rc.1 | 367 | 9/19/2018 |
0.1.0-rc.0 | 375 | 9/14/2018 |
0.1.0-pre9 | 522 | 8/31/2018 |
0.1.0-pre8.2 | 381 | 8/26/2018 |
0.1.0-pre8.1 | 401 | 8/26/2018 |
0.1.0-pre8 | 526 | 8/26/2018 |
0.1.0-pre7 | 635 | 8/16/2018 |
0.1.0-pre6 | 585 | 8/8/2018 |
0.1.0-pre5 | 574 | 7/27/2018 |
0.1.0-pre4 | 553 | 7/20/2018 |
0.1.0-pre3 | 619 | 7/17/2018 |
0.1.0-pre2 | 690 | 7/14/2018 |
0.1.0-pre10 | 562 | 9/6/2018 |
0.1.0-pre1 | 667 | 6/28/2018 |
# 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