Math.cs 733 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HTEXLib
  5. {
  6. public class Math : Item
  7. {
  8. //https://www.jianshu.com/p/2ae5376a9267?from=message&isappinstalled=0
  9. //https://www.compart.com/en/unicode/U+1D59C
  10. //https://www.fuhaozi.com/unicode/1D/1D510.html
  11. public MathML mathML { get; set; }
  12. public HTEXLib.Models.HTEX.ShapeStyle style { get; set; } = new Models.HTEX.ShapeStyle();
  13. public string shapeType { get; set; }
  14. public Item back { get; set; }
  15. }
  16. public class MathML {
  17. public string formula { get; set; }
  18. public double pitchFamily { get; set; }
  19. public string typeface { get; set; }
  20. }
  21. }