mathvariant-4-ref.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>More mathvariant tests</title>
  5. </head>
  6. <body>
  7. <math>
  8. <mrow>
  9. <!-- mathvariant on characters that are already in the Mathematical
  10. AlphanumericSymbols or are exceptions (should not have any
  11. effect).-->
  12. <mtext>&#x1d49c;</mtext>
  13. <mtext>&#x212c;</mtext>
  14. <!-- mathvariant on characters for which there is no equivalent mathvariant
  15. form in Unicode (should not have any effect) -->
  16. <mtext>&#x00e1;</mtext>
  17. </mrow>
  18. </math>
  19. <p>
  20. <math>
  21. <mrow>
  22. <!-- mathvariant on multi-char token elements (should apply to all the
  23. characters) -->
  24. <mtext>&#x1d670;&#x1d670;&#x1d670;</mtext>
  25. </mrow>
  26. </math>
  27. <p>
  28. <math>
  29. <mrow>
  30. <!-- mathvariant on mstyle (should apply to all token element descendants
  31. like single-char mi, mtext etc) -->
  32. <mtext mathvariant="sans-serif">cos</mtext>
  33. <mo>&#x2061;</mo>
  34. <mi mathvariant="sans-serif">x</mi>
  35. </mrow>
  36. </math>
  37. <p>
  38. <math>
  39. <mrow>
  40. <!-- mathvariant on math (should apply to all token element descendants
  41. like single-char mi, mtext etc) -->
  42. <mtext mathvariant="sans-serif">cos</mtext>
  43. <mo>&#x2061;</mo>
  44. <mi mathvariant="sans-serif">x</mi>
  45. </mrow>
  46. </math>
  47. </body>
  48. </html>