1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib
- {
- public class Math : Item
- {
- //https://www.jianshu.com/p/2ae5376a9267?from=message&isappinstalled=0
- //https://www.compart.com/en/unicode/U+1D59C
- //https://www.fuhaozi.com/unicode/1D/1D510.html
- public MathML mathML { get; set; }
- public HTEXLib.Models.HTEX.ShapeStyle style { get; set; } = new Models.HTEX.ShapeStyle();
- public string shapeType { get; set; }
-
- public Item back { get; set; }
-
- }
- public class MathML {
- public string formula { get; set; }
- public double pitchFamily { get; set; }
- public string typeface { get; set; }
- }
- }
|