v.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*************************************************************
  2. *
  3. * MathJax/jax/output/HTML-CSS/entities/v.js
  4. *
  5. * Copyright (c) 2010-2013 The MathJax Consortium
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. */
  20. (function (MATHML) {
  21. MathJax.Hub.Insert(MATHML.Parse.Entity,{
  22. 'VDash': '\u22AB',
  23. 'Vbar': '\u2AEB',
  24. 'Vcy': '\u0412',
  25. 'Vdashl': '\u2AE6',
  26. 'Verbar': '\u2016',
  27. 'Vert': '\u2016',
  28. 'VerticalLine': '\u007C',
  29. 'VerticalSeparator': '\u2758',
  30. 'VeryThinSpace': '\u200A',
  31. 'vArr': '\u21D5',
  32. 'vBar': '\u2AE8',
  33. 'vBarv': '\u2AE9',
  34. 'vDash': '\u22A8',
  35. 'vangrt': '\u299C',
  36. 'varepsilon': '\u03F5',
  37. 'varkappa': '\u03F0',
  38. 'varnothing': '\u2205',
  39. 'varphi': '\u03D5',
  40. 'varpi': '\u03D6',
  41. 'varpropto': '\u221D',
  42. 'varr': '\u2195',
  43. 'varrho': '\u03F1',
  44. 'varsigma': '\u03C2',
  45. 'varsubsetneq': '\u228A\uFE00',
  46. 'varsubsetneqq': '\u2ACB\uFE00',
  47. 'varsupsetneq': '\u228B\uFE00',
  48. 'varsupsetneqq': '\u2ACC\uFE00',
  49. 'vartheta': '\u03D1',
  50. 'vartriangleleft': '\u22B2',
  51. 'vartriangleright': '\u22B3',
  52. 'vcy': '\u0432',
  53. 'vdash': '\u22A2',
  54. 'vee': '\u2228',
  55. 'veeeq': '\u225A',
  56. 'verbar': '\u007C',
  57. 'vert': '\u007C',
  58. 'vltri': '\u22B2',
  59. 'vnsub': '\u2282\u20D2',
  60. 'vnsup': '\u2283\u20D2',
  61. 'vprop': '\u221D',
  62. 'vrtri': '\u22B3',
  63. 'vsubnE': '\u2ACB\uFE00',
  64. 'vsubne': '\u228A\uFE00',
  65. 'vsupnE': '\u2ACC\uFE00',
  66. 'vsupne': '\u228B\uFE00',
  67. 'vzigzag': '\u299A'
  68. });
  69. MathJax.Ajax.loadComplete(MATHML.entityDir+"/v.js");
  70. })(MathJax.InputJax.MathML);