maruku 0.4.2.1 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. data/bin/maruku +66 -20
  2. data/bin/marutest +12 -2
  3. data/docs/changelog.html +188 -23
  4. data/docs/changelog.md +128 -5
  5. data/docs/entity_test.html +245 -240
  6. data/docs/entity_test.md +2 -0
  7. data/docs/exd.html +181 -23
  8. data/docs/index.html +130 -349
  9. data/docs/markdown_syntax.html +55 -51
  10. data/docs/maruku.html +130 -349
  11. data/docs/maruku.md +154 -339
  12. data/docs/math.md +143 -0
  13. data/docs/proposal.html +16 -12
  14. data/lib/maruku.rb +6 -3
  15. data/lib/maruku/attributes.rb +7 -2
  16. data/lib/maruku/defaults.rb +27 -27
  17. data/lib/maruku/errors_management.rb +10 -9
  18. data/lib/maruku/ext/diagrams/diagrams.rb +8 -0
  19. data/lib/maruku/ext/diagrams/grid.rb +78 -0
  20. data/lib/maruku/ext/diagrams/inspect.rb +11 -0
  21. data/lib/maruku/ext/diagrams/layout.rb +105 -0
  22. data/lib/maruku/ext/diagrams/parser.rb +219 -0
  23. data/lib/maruku/ext/diagrams/structures.rb +168 -0
  24. data/lib/maruku/ext/diagrams/to_html.rb +37 -0
  25. data/lib/maruku/ext/diagrams/to_latex.rb +308 -0
  26. data/lib/maruku/ext/diagrams/unittest.rb +123 -0
  27. data/lib/maruku/ext/math.rb +11 -0
  28. data/lib/maruku/ext/math/elements.rb +26 -0
  29. data/lib/maruku/ext/math/mathml_engines/blahtex.rb +108 -0
  30. data/lib/maruku/ext/math/mathml_engines/itex2mml.rb +29 -0
  31. data/lib/maruku/ext/math/mathml_engines/none.rb +20 -0
  32. data/lib/maruku/ext/math/mathml_engines/ritex.rb +24 -0
  33. data/lib/maruku/ext/math/parsing.rb +82 -0
  34. data/lib/maruku/ext/math/to_html.rb +178 -0
  35. data/lib/maruku/ext/math/to_latex.rb +21 -0
  36. data/lib/maruku/helpers.rb +11 -0
  37. data/lib/maruku/input/charsource.rb +1 -1
  38. data/lib/maruku/input/extensions.rb +68 -0
  39. data/lib/maruku/input/html_helper.rb +91 -60
  40. data/lib/maruku/input/parse_block.rb +10 -9
  41. data/lib/maruku/input/parse_doc.rb +21 -13
  42. data/lib/maruku/input/parse_span_better.rb +19 -8
  43. data/lib/maruku/input/type_detection.rb +5 -3
  44. data/lib/maruku/output/to_html.rb +236 -67
  45. data/lib/maruku/output/to_latex.rb +69 -26
  46. data/lib/maruku/output/to_latex_entities.rb +14 -2
  47. data/lib/maruku/output/to_s.rb +8 -0
  48. data/lib/maruku/structures.rb +1 -1
  49. data/lib/maruku/tests/benchmark.rb +2 -2
  50. data/lib/maruku/tests/new_parser.rb +13 -5
  51. data/lib/maruku/version.rb +1 -1
  52. data/lib/sort_prof.rb +22 -0
  53. data/tests/diagrams/diagrams.md +54 -0
  54. data/tests/math/syntax.md +46 -0
  55. data/tests/math_usage/document.md +13 -0
  56. data/tests/unittest/attributes/attributes.md +50 -6
  57. data/tests/unittest/easy.md +1 -1
  58. data/tests/unittest/email.md +3 -3
  59. data/tests/unittest/entities.md +12 -7
  60. data/tests/unittest/escaping.md +4 -4
  61. data/tests/unittest/extra_table1.md +3 -1
  62. data/tests/unittest/footnotes.md +5 -5
  63. data/tests/unittest/headers.md +3 -3
  64. data/tests/unittest/images.md +7 -7
  65. data/tests/unittest/inline_html.md +51 -5
  66. data/tests/unittest/links.md +7 -7
  67. data/tests/unittest/list2.md +1 -1
  68. data/tests/unittest/lists.md +1 -1
  69. data/tests/unittest/lists_after_paragraph.md +1 -1
  70. data/tests/unittest/lists_ol.md +1 -1
  71. data/tests/unittest/math/equations.md +82 -0
  72. data/tests/unittest/math/inline.md +80 -0
  73. data/tests/unittest/math/table.md +51 -0
  74. data/tests/unittest/math/table2.md +67 -0
  75. data/tests/unittest/misc_sw.md +24 -24
  76. data/tests/unittest/notyet/ticks.md +1 -1
  77. data/tests/unittest/references/long_example.md +2 -2
  78. data/tests/unittest/smartypants.md +4 -4
  79. data/tests/unittest/xml.md +68 -0
  80. data/tests/unittest/xml2.md +36 -0
  81. data/tests/unittest/xml3.md +52 -0
  82. data/tests/unittest/xml_instruction.md +5 -5
  83. metadata +33 -4
  84. data/docs/a.html +0 -6
  85. data/docs/char.html +0 -1924
@@ -1,9 +1,14 @@
1
- <?xml version='1.0' encoding='utf-8'?>
2
- <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
3
- 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
4
- <html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'><head><meta content='text/html; charset=utf-8' http-equiv='Content-type' /><title>List of symbols supported by Maruku</title></head><body>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC
3
+ "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
4
+ "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
5
+ <html xmlns:svg='http://www.w3.org/2000/svg' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
6
+ <head><meta content='application/xhtml+xml;charset=utf-8' http-equiv='Content-type' /><title>List of symbols supported by Maruku</title></head>
7
+ <body>
5
8
  <h1 id='list_of_symbols_supported_by_maruku'>List of symbols supported by Maruku</h1>
6
- <?maruku all = []
9
+ <?maruku MaRuKu::Out::Latex.need_entity_table
10
+
11
+ all = []
7
12
  ENTITY_TABLE.each do |k, e|
8
13
  if k.kind_of? String
9
14
  all << (h=md_code("&#{e.html_entity};")) <<
@@ -16,238 +21,238 @@
16
21
  end
17
22
  end
18
23
  @doc.children.push md_par(all)?>
19
- <p><code style='background-color: #eef;'>&amp;oslash;</code> &oslash; (<code style='background-color: #ffe;'>\o</code>)
20
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;iexcl;</code> &iexcl; (<code style='background-color: #ffe;'>\textexclamdown</code>)
21
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;szlig;</code> &szlig; (<code style='background-color: #ffe;'>\ss</code>)
22
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ETH;</code> &ETH; (<code style='background-color: #ffe;'>$\eth$</code>)
23
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Oslash;</code> &Oslash; (<code style='background-color: #ffe;'>\O</code>)
24
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Yuml;</code> &Yuml; (<code style='background-color: #ffe;'>\&quot;Y</code>)
25
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rho;</code> &rho; (<code style='background-color: #ffe;'>$\rho$</code>)
26
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;psi;</code> &psi; (<code style='background-color: #ffe;'>$\psi$</code>)
27
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ecirc;</code> &ecirc; (<code style='background-color: #ffe;'>\^e</code>)
28
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;OElig;</code> &OElig; (<code style='background-color: #ffe;'>\OE</code>)
29
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;euml;</code> &euml; (<code style='background-color: #ffe;'>\&quot;e</code>)
30
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;aelig;</code> &aelig; (<code style='background-color: #ffe;'>\ae</code>)
31
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Theta;</code> &Theta; (<code style='background-color: #ffe;'>$\Theta$</code>)
32
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Mu;</code> &Mu; (<code style='background-color: #ffe;'>$M$</code>)
33
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;alefsym;</code> &alefsym; (<code style='background-color: #ffe;'>$\aleph$</code>)
34
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;acirc;</code> &acirc; (<code style='background-color: #ffe;'>\^a</code>)
35
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;piv;</code> &piv; (<code style='background-color: #ffe;'>$\varpi$</code>)
36
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;egrave;</code> &egrave; (<code style='background-color: #ffe;'>\`e</code>)
37
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;not;</code> &not; (<code style='background-color: #ffe;'>$\neg$</code>)
38
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Egrave;</code> &Egrave; (<code style='background-color: #ffe;'>\`E</code>)
39
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;para;</code> &para; (<code style='background-color: #ffe;'>\P</code>)
40
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ugrave;</code> &ugrave; (<code style='background-color: #ffe;'>\`u</code>)
41
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Yacute;</code> &Yacute; (<code style='background-color: #ffe;'>\&apos;Y</code>)
42
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lsquo;</code> &lsquo; (<code style='background-color: #ffe;'>`</code>)
43
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Phi;</code> &Phi; (<code style='background-color: #ffe;'>$\Phi$</code>)
44
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;euro;</code> &euro; (<code style='background-color: #ffe;'>\euro</code>)
45
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;icirc;</code> &icirc; (<code style='background-color: #ffe;'>\^i</code>)
46
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;iacute;</code> &iacute; (<code style='background-color: #ffe;'>\&apos;i</code>)
47
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rArr;</code> &rArr; (<code style='background-color: #ffe;'>$\Rightarrow$</code>)
48
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ntilde;</code> &Ntilde; (<code style='background-color: #ffe;'>\~N</code>)
49
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sim;</code> &sim; (<code style='background-color: #ffe;'>$\sim$</code>)
50
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sup1;</code> &sup1; (<code style='background-color: #ffe;'>$^1$</code>)
51
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;amp;</code> &amp; (<code style='background-color: #ffe;'>\&amp;</code>)
52
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;thetasym;</code> &thetasym; (<code style='background-color: #ffe;'>$\vartheta$</code>)
53
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sup2;</code> &sup2; (<code style='background-color: #ffe;'>$^2$</code>)
54
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;pi;</code> &pi; (<code style='background-color: #ffe;'>$\pi$</code>)
55
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Gamma;</code> &Gamma; (<code style='background-color: #ffe;'>$\Gamma$</code>)
56
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;trade;</code> &trade; (<code style='background-color: #ffe;'>$^{\rm TM}$</code>)
57
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sup3;</code> &sup3; (<code style='background-color: #ffe;'>$^3$</code>)
58
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Omicron;</code> &Omicron; (<code style='background-color: #ffe;'>$O$</code>)
59
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Iuml;</code> &Iuml; (<code style='background-color: #ffe;'>\&quot;I</code>)
60
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;THORN;</code> &THORN; (<code style='background-color: #ffe;'>\Thorn</code>)
61
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;radic;</code> &radic; (<code style='background-color: #ffe;'>$\surd$</code>)
62
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;forall;</code> &forall; (<code style='background-color: #ffe;'>$\forall$</code>)
63
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;kappa;</code> &kappa; (<code style='background-color: #ffe;'>$\kappa$</code>)
64
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sect;</code> &sect; (<code style='background-color: #ffe;'>\S</code>)
65
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Eta;</code> &Eta; (<code style='background-color: #ffe;'>$H$</code>)
66
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Otilde;</code> &Otilde; (<code style='background-color: #ffe;'>\~O</code>)
67
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Uuml;</code> &Uuml; (<code style='background-color: #ffe;'>\&quot;U</code>)
68
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;int;</code> &int; (<code style='background-color: #ffe;'>$\int$</code>)
69
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Tau;</code> &Tau; (<code style='background-color: #ffe;'>$T$</code>)
70
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;larr;</code> &larr; (<code style='background-color: #ffe;'>$\leftarrow$</code>)
71
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ugrave;</code> &Ugrave; (<code style='background-color: #ffe;'>\`U</code>)
72
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;tilde;</code> &tilde; (<code style='background-color: #ffe;'>\textasciitilde</code>)
73
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;darr;</code> &darr; (<code style='background-color: #ffe;'>$\downarrow$</code>)
74
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Pi;</code> &Pi; (<code style='background-color: #ffe;'>$\Pi$</code>)
75
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;exist;</code> &exist; (<code style='background-color: #ffe;'>$\exists$</code>)
76
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lowast;</code> &lowast; (<code style='background-color: #ffe;'>$\ast$</code>)
77
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rsaquo;</code> &rsaquo; (<code style='background-color: #ffe;'>\guilsinglright</code>)
78
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;middot;</code> &middot; (<code style='background-color: #ffe;'>$\cdot$</code>)
79
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;crarr;</code> &crarr; (<code style='background-color: #ffe;'>$\hookleftarrow$</code>)
80
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ucirc;</code> &Ucirc; (<code style='background-color: #ffe;'>\^U</code>)
81
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Epsilon;</code> &Epsilon; (<code style='background-color: #ffe;'>$E$</code>)
82
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;thorn;</code> &thorn; (<code style='background-color: #ffe;'>\thorn</code>)
83
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ntilde;</code> &ntilde; (<code style='background-color: #ffe;'>\~n</code>)
84
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;raquo;</code> &raquo; (<code style='background-color: #ffe;'>\guillemotright</code>)
85
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;harr;</code> &harr; (<code style='background-color: #ffe;'>$\leftrightarrow$</code>)
86
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;part;</code> &part; (<code style='background-color: #ffe;'>$\partial$</code>)
87
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;atilde;</code> &atilde; (<code style='background-color: #ffe;'>\~a</code>)
88
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ccedil;</code> &ccedil; (<code style='background-color: #ffe;'>\c{c}</code>)
89
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Acirc;</code> &Acirc; (<code style='background-color: #ffe;'>\^A</code>)
90
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;otilde;</code> &otilde; (<code style='background-color: #ffe;'>\~o</code>)
91
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;uArr;</code> &uArr; (<code style='background-color: #ffe;'>$\Uparrow$</code>)
92
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;diams;</code> &diams; (<code style='background-color: #ffe;'>$\diamondsuit$</code>)
93
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;upsilon;</code> &upsilon; (<code style='background-color: #ffe;'>$\upsilon$</code>)
94
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Euml;</code> &Euml; (<code style='background-color: #ffe;'>\&quot;E</code>)
95
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;asymp;</code> &asymp; (<code style='background-color: #ffe;'>$\approx$</code>)
96
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ne;</code> &ne; (<code style='background-color: #ffe;'>$\neq$</code>)
97
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rceil;</code> &rceil; (<code style='background-color: #ffe;'>$\rceil$</code>)
98
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sdot;</code> &sdot; (<code style='background-color: #ffe;'>$\cdot$</code>)
99
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;beta;</code> &beta; (<code style='background-color: #ffe;'>$\beta$</code>)
100
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ni;</code> &ni; (<code style='background-color: #ffe;'>$\ni$</code>)
101
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ouml;</code> &ouml; (<code style='background-color: #ffe;'>\&quot;o</code>)
102
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Atilde;</code> &Atilde; (<code style='background-color: #ffe;'>\~A</code>)
103
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;minus;</code> &minus; (<code style='background-color: #ffe;'>$-$</code>)
104
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ccedil;</code> &Ccedil; (<code style='background-color: #ffe;'>\c{C}</code>)
105
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;igrave;</code> &igrave; (<code style='background-color: #ffe;'>\`i</code>)
106
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;brvbar;</code> &brvbar; (<code style='background-color: #ffe;'>\brokenvert</code>)
107
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;acute;</code> &acute; (<code style='background-color: #ffe;'>&apos;</code>)
108
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sigmaf;</code> &sigmaf; (<code style='background-color: #ffe;'>$\varsigma$</code>)
109
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;weierp;</code> &weierp; (<code style='background-color: #ffe;'>$\wp$</code>)
110
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Auml;</code> &Auml; (<code style='background-color: #ffe;'>\&quot;A</code>)
111
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;apos;</code> &#39; (<code style='background-color: #ffe;'>&apos;</code>)
112
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;micro;</code> &micro; (<code style='background-color: #ffe;'>$\mu$</code>)
113
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Icirc;</code> &Icirc; (<code style='background-color: #ffe;'>\^I</code>)
114
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;xi;</code> &xi; (<code style='background-color: #ffe;'>$\xi$</code>)
115
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;clubs;</code> &clubs; (<code style='background-color: #ffe;'>$\clubsuit$</code>)
116
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;bull;</code> &bull; (<code style='background-color: #ffe;'>$\bullet$</code>)
117
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ecirc;</code> &Ecirc; (<code style='background-color: #ffe;'>\^E</code>)
118
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Kappa;</code> &Kappa; (<code style='background-color: #ffe;'>$K$</code>)
119
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;times;</code> &times; (<code style='background-color: #ffe;'>$\times$</code>)
120
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Zeta;</code> &Zeta; (<code style='background-color: #ffe;'>$Z$</code>)
121
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;empty;</code> &empty; (<code style='background-color: #ffe;'>$\emptyset$</code>)
122
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;image;</code> &image; (<code style='background-color: #ffe;'>$\Im$</code>)
123
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Oacute;</code> &Oacute; (<code style='background-color: #ffe;'>\&apos; O</code>)
124
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;nu;</code> &nu; (<code style='background-color: #ffe;'>$\nu$</code>)
125
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Xi;</code> &Xi; (<code style='background-color: #ffe;'>$\Xi$</code>)
126
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Igrave;</code> &Igrave; (<code style='background-color: #ffe;'>\`I</code>)
127
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ndash;</code> &ndash; (<code style='background-color: #ffe;'>--</code>)
128
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;and;</code> &and; (<code style='background-color: #ffe;'>$\wedge$</code>)
129
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;prime;</code> &prime; (<code style='background-color: #ffe;'>$\prime$</code>)
130
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;omicron;</code> &omicron; (<code style='background-color: #ffe;'>$o$</code>)
131
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;iota;</code> &iota; (<code style='background-color: #ffe;'>$\iota$</code>)
132
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ang;</code> &ang; (<code style='background-color: #ffe;'>$\angle$</code>)
133
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;chi;</code> &chi; (<code style='background-color: #ffe;'>$\chi$</code>)
134
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ge;</code> &ge; (<code style='background-color: #ffe;'>$\geq$</code>)
135
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lang;</code> &lang; (<code style='background-color: #ffe;'>$\langle$</code>)
136
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;le;</code> &le; (<code style='background-color: #ffe;'>$\leq$</code>)
137
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rdquo;</code> &rdquo; (<code style='background-color: #ffe;'>&apos;&apos;</code>)
138
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;otimes;</code> &otimes; (<code style='background-color: #ffe;'>$\otimes$</code>)
139
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Nu;</code> &Nu; (<code style='background-color: #ffe;'>$N$</code>)
140
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;real;</code> &real; (<code style='background-color: #ffe;'>$\Re$</code>)
141
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lfloor;</code> &lfloor; (<code style='background-color: #ffe;'>$\lfloor$</code>)
142
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rsquo;</code> &rsquo; (<code style='background-color: #ffe;'>&apos;</code>)
143
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;equiv;</code> &equiv; (<code style='background-color: #ffe;'>$\equiv$</code>)
144
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;aacute;</code> &aacute; (<code style='background-color: #ffe;'>\&apos;a</code>)
145
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;permil;</code> &permil; (<code style='background-color: #ffe;'>\permil</code>)
146
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sigma;</code> &sigma; (<code style='background-color: #ffe;'>$\sigma$</code>)
147
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;oacute;</code> &oacute; (<code style='background-color: #ffe;'>\&apos;o</code>)
148
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;supe;</code> &supe; (<code style='background-color: #ffe;'>$\supseteq$</code>)
149
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ordf;</code> &ordf; (<code style='background-color: #ffe;'>\textordfeminine</code>)
150
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Beta;</code> &Beta; (<code style='background-color: #ffe;'>$B$</code>)
151
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;hearts;</code> &hearts; (<code style='background-color: #ffe;'>$\heartsuit$</code>)
152
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Rho;</code> &Rho; (<code style='background-color: #ffe;'>$P$</code>)
153
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Psi;</code> &Psi; (<code style='background-color: #ffe;'>$\Psi$</code>)
154
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;oelig;</code> &oelig; (<code style='background-color: #ffe;'>\oe</code>)
155
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;AElig;</code> &AElig; (<code style='background-color: #ffe;'>\AE</code>)
156
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;spades;</code> &spades; (<code style='background-color: #ffe;'>$\spadesuit$</code>)
157
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;oline;</code> &oline; (<code style='background-color: #ffe;'>-</code>)
158
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;mdash;</code> &mdash; (<code style='background-color: #ffe;'>---</code>)
159
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ocirc;</code> &ocirc; (<code style='background-color: #ffe;'>\^o</code>)
160
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Scaron;</code> &Scaron; (<code style='background-color: #ffe;'>\v{S}</code>)
161
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;gt;</code> &gt; (<code style='background-color: #ffe;'>$&gt;$</code>)
162
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;omega;</code> &omega; (<code style='background-color: #ffe;'>$\omega$</code>)
163
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;phi;</code> &phi; (<code style='background-color: #ffe;'>$\phi$</code>)
164
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ordm;</code> &ordm; (<code style='background-color: #ffe;'>\textordmasculine</code>)
165
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;copy;</code> &copy; (<code style='background-color: #ffe;'>\copyright</code>)
166
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;infin;</code> &infin; (<code style='background-color: #ffe;'>$\infty$</code>)
167
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Aacute;</code> &Aacute; (<code style='background-color: #ffe;'>\&apos;A</code>)
168
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rarr;</code> &rarr; (<code style='background-color: #ffe;'>$\rightarrow$</code>)
169
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lt;</code> &lt; (<code style='background-color: #ffe;'>$&lt;$</code>)
170
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;cong;</code> &cong; (<code style='background-color: #ffe;'>$\cong$</code>)
171
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;eta;</code> &eta; (<code style='background-color: #ffe;'>$\eta$</code>)
172
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;curren;</code> &curren; (<code style='background-color: #ffe;'>\currency</code>)
173
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;tau;</code> &tau; (<code style='background-color: #ffe;'>$\tau$</code>)
174
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;oplus;</code> &oplus; (<code style='background-color: #ffe;'>$\oplus$</code>)
175
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;cap;</code> &cap; (<code style='background-color: #ffe;'>$\cap$</code>)
176
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Iota;</code> &Iota; (<code style='background-color: #ffe;'>$I$</code>)
177
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Sigma;</code> &Sigma; (<code style='background-color: #ffe;'>$\Sigma$</code>)
178
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;frac34;</code> &frac34; (<code style='background-color: #ffe;'>$\frac{3}{4}$</code>)
179
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;scaron;</code> &scaron; (<code style='background-color: #ffe;'>\v{s}</code>)
180
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;eth;</code> &eth; (<code style='background-color: #ffe;'>$\eth$</code>)
181
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;aring;</code> &aring; (<code style='background-color: #ffe;'>\aa</code>)
182
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lArr;</code> &lArr; (<code style='background-color: #ffe;'>$\Leftarrow$</code>)
183
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;epsilon;</code> &epsilon; (<code style='background-color: #ffe;'>$\epsilon$</code>)
184
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;dArr;</code> &dArr; (<code style='background-color: #ffe;'>$\Downarrow$</code>)
185
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;alpha;</code> &alpha; (<code style='background-color: #ffe;'>$\alpha$</code>)
186
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;cent;</code> &cent; (<code style='background-color: #ffe;'>\cent</code>)
187
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Lambda;</code> &Lambda; (<code style='background-color: #ffe;'>$\Lambda$</code>)
188
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;loz;</code> &loz; (<code style='background-color: #ffe;'>$\lozenge$</code>)
189
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;yen;</code> &yen; (<code style='background-color: #ffe;'>\textyen</code>)
190
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;uuml;</code> &uuml; (<code style='background-color: #ffe;'>\&quot;u</code>)
191
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Eacute;</code> &Eacute; (<code style='background-color: #ffe;'>\&apos;E</code>)
192
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ocirc;</code> &Ocirc; (<code style='background-color: #ffe;'>\^O</code>)
193
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;nbsp;</code> &nbsp; (<code style='background-color: #ffe;'>~</code>)
194
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;reg;</code> &reg; (<code style='background-color: #ffe;'>\textregistered</code>)
195
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;cup;</code> &cup; (<code style='background-color: #ffe;'>$\cup$</code>)
196
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;frasl;</code> &frasl; (<code style='background-color: #ffe;'>/</code>)
197
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Uacute;</code> &Uacute; (<code style='background-color: #ffe;'>\&apos;U</code>)
198
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;hArr;</code> &hArr; (<code style='background-color: #ffe;'>$\Leftrightarrow$</code>)
199
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;delta;</code> &delta; (<code style='background-color: #ffe;'>$\delta$</code>)
200
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ouml;</code> &Ouml; (<code style='background-color: #ffe;'>\&quot;O</code>)
201
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ograve;</code> &ograve; (<code style='background-color: #ffe;'>\`o</code>)
202
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Ograve;</code> &Ograve; (<code style='background-color: #ffe;'>\`O</code>)
203
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;quot;</code> &quot; (<code style='background-color: #ffe;'>&quot;</code>)
204
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;uarr;</code> &uarr; (<code style='background-color: #ffe;'>$\uparrow$</code>)
205
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;yuml;</code> &yuml; (<code style='background-color: #ffe;'>\&quot;y</code>)
206
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;or;</code> &or; (<code style='background-color: #ffe;'>$\vee$</code>)
207
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Omega;</code> &Omega; (<code style='background-color: #ffe;'>$\Omega$</code>)
208
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Agrave;</code> &Agrave; (<code style='background-color: #ffe;'>\`A</code>)
209
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lambda;</code> &lambda; (<code style='background-color: #ffe;'>$\lambda$</code>)
210
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;prod;</code> &prod; (<code style='background-color: #ffe;'>$\prod$</code>)
211
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;laquo;</code> &laquo; (<code style='background-color: #ffe;'>\guillemotleft</code>)
212
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;eacute;</code> &eacute; (<code style='background-color: #ffe;'>\&apos;e</code>)
213
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;plusmn;</code> &plusmn; (<code style='background-color: #ffe;'>$\pm$</code>)
214
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;uacute;</code> &uacute; (<code style='background-color: #ffe;'>\&apos;u</code>)
215
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lsaquo;</code> &lsaquo; (<code style='background-color: #ffe;'>\guilsinglleft</code>)
216
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Aring;</code> &Aring; (<code style='background-color: #ffe;'>\AA</code>)
217
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;frac12;</code> &frac12; (<code style='background-color: #ffe;'>$\frac{1}{2}$</code>)
218
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;dagger;</code> &dagger; (<code style='background-color: #ffe;'>\dag</code>)
219
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;gamma;</code> &gamma; (<code style='background-color: #ffe;'>$\gamma$</code>)
220
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;frac14;</code> &frac14; (<code style='background-color: #ffe;'>$\frac{1}{4}$</code>)
221
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Alpha;</code> &Alpha; (<code style='background-color: #ffe;'>$A$</code>)
222
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;there4;</code> &there4; (<code style='background-color: #ffe;'>$\therefore$</code>)
223
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rang;</code> &rang; (<code style='background-color: #ffe;'>$\rangle$</code>)
224
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sub;</code> &sub; (<code style='background-color: #ffe;'>$\subset$</code>)
225
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;rfloor;</code> &rfloor; (<code style='background-color: #ffe;'>$\rfloor$</code>)
226
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;isin;</code> &isin; (<code style='background-color: #ffe;'>$\in$</code>)
227
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;iuml;</code> &iuml; (<code style='background-color: #ffe;'>\&quot;i</code>)
228
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;lceil;</code> &lceil; (<code style='background-color: #ffe;'>$\lceil$</code>)
229
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;theta;</code> &theta; (<code style='background-color: #ffe;'>$\theta$</code>)
230
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;deg;</code> &deg; (<code style='background-color: #ffe;'>\textdegree</code>)
231
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;notin;</code> &notin; (<code style='background-color: #ffe;'>$\notin$</code>)
232
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;agrave;</code> &agrave; (<code style='background-color: #ffe;'>\`a</code>)
233
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;prop;</code> &prop; (<code style='background-color: #ffe;'>$\propto$</code>)
234
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Dagger;</code> &Dagger; (<code style='background-color: #ffe;'>\ddag</code>)
235
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ucirc;</code> &ucirc; (<code style='background-color: #ffe;'>\^u</code>)
236
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Chi;</code> &Chi; (<code style='background-color: #ffe;'>$X$</code>)
237
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;zeta;</code> &zeta; (<code style='background-color: #ffe;'>$\zeta$</code>)
238
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sum;</code> &sum; (<code style='background-color: #ffe;'>$\sum$</code>)
239
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;nabla;</code> &nabla; (<code style='background-color: #ffe;'>$\nabla$</code>)
240
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Iacute;</code> &Iacute; (<code style='background-color: #ffe;'>\&apos;I</code>)
241
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Upsilon;</code> &Upsilon; (<code style='background-color: #ffe;'>$Y$</code>)
242
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;sup;</code> &sup; (<code style='background-color: #ffe;'>$\supset$</code>)
243
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;auml;</code> &auml; (<code style='background-color: #ffe;'>\&quot;a</code>)
244
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;ldquo;</code> &ldquo; (<code style='background-color: #ffe;'>``</code>)
245
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;Delta;</code> &Delta; (<code style='background-color: #ffe;'>$\Delta$</code>)
246
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;circ;</code> &circ; (<code style='background-color: #ffe;'>\textasciicircum</code>)
247
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;pound;</code> &pound; (<code style='background-color: #ffe;'>\pounds</code>)
248
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;yacute;</code> &yacute; (<code style='background-color: #ffe;'>\&apos;y</code>)
249
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;perp;</code> &perp; (<code style='background-color: #ffe;'>$\perp$</code>)
250
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;mu;</code> &mu; (<code style='background-color: #ffe;'>$\mu$</code>)
251
- &nbsp;&nbsp;&nbsp;<code style='background-color: #eef;'>&amp;hellip;</code> &hellip; (<code style='background-color: #ffe;'>\ldots</code>)
252
- &nbsp;&nbsp;&nbsp;</p>
253
- <div class='maruku_signature'><hr /><span style='font-size: small; font-style: italic'>Created by <a href='http://maruku.rubyforge.org' title='Maruku: a Markdown interpreter for Ruby'>Maruku</a> at 13:45 on Thursday, January 11st, 2007.</span></div></body></html>
24
+ <p><code style='background-color: #eef;'>&amp;oslash;</code> &#248; (<code style='background-color: #ffe;'>\o</code>)
25
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;iexcl;</code> &#161; (<code style='background-color: #ffe;'>\textexclamdown</code>)
26
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;szlig;</code> &#223; (<code style='background-color: #ffe;'>\ss</code>)
27
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ETH;</code> &#208; (<code style='background-color: #ffe;'>$\eth$</code>)
28
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Oslash;</code> &#216; (<code style='background-color: #ffe;'>\O</code>)
29
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Yuml;</code> &#376; (<code style='background-color: #ffe;'>\&quot;Y</code>)
30
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rho;</code> &#961; (<code style='background-color: #ffe;'>$\rho$</code>)
31
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;psi;</code> &#968; (<code style='background-color: #ffe;'>$\psi$</code>)
32
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ecirc;</code> &#234; (<code style='background-color: #ffe;'>\^e</code>)
33
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;OElig;</code> &#338; (<code style='background-color: #ffe;'>\OE</code>)
34
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;euml;</code> &#235; (<code style='background-color: #ffe;'>\&quot;e</code>)
35
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;aelig;</code> &#230; (<code style='background-color: #ffe;'>\ae</code>)
36
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Theta;</code> &#920; (<code style='background-color: #ffe;'>$\Theta$</code>)
37
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Mu;</code> &#924; (<code style='background-color: #ffe;'>$M$</code>)
38
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;alefsym;</code> &#8501; (<code style='background-color: #ffe;'>$\aleph$</code>)
39
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;acirc;</code> &#226; (<code style='background-color: #ffe;'>\^a</code>)
40
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;piv;</code> &#982; (<code style='background-color: #ffe;'>$\varpi$</code>)
41
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;egrave;</code> &#232; (<code style='background-color: #ffe;'>\`e</code>)
42
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;not;</code> &#172; (<code style='background-color: #ffe;'>$\neg$</code>)
43
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Egrave;</code> &#200; (<code style='background-color: #ffe;'>\`E</code>)
44
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;para;</code> &#182; (<code style='background-color: #ffe;'>\P</code>)
45
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ugrave;</code> &#249; (<code style='background-color: #ffe;'>\`u</code>)
46
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Yacute;</code> &#221; (<code style='background-color: #ffe;'>\&apos;Y</code>)
47
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lsquo;</code> &#8216; (<code style='background-color: #ffe;'>`</code>)
48
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Phi;</code> &#934; (<code style='background-color: #ffe;'>$\Phi$</code>)
49
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;euro;</code> &#8364; (<code style='background-color: #ffe;'>\euro</code>)
50
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;icirc;</code> &#238; (<code style='background-color: #ffe;'>\^i</code>)
51
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;iacute;</code> &#237; (<code style='background-color: #ffe;'>\&apos;i</code>)
52
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rArr;</code> &#8658; (<code style='background-color: #ffe;'>$\Rightarrow$</code>)
53
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ntilde;</code> &#209; (<code style='background-color: #ffe;'>\~N</code>)
54
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sim;</code> &#8764; (<code style='background-color: #ffe;'>$\sim$</code>)
55
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sup1;</code> &#185; (<code style='background-color: #ffe;'>$^1$</code>)
56
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;amp;</code> &#38; (<code style='background-color: #ffe;'>\&amp;</code>)
57
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;thetasym;</code> &#977; (<code style='background-color: #ffe;'>$\vartheta$</code>)
58
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sup2;</code> &#178; (<code style='background-color: #ffe;'>$^2$</code>)
59
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;pi;</code> &#960; (<code style='background-color: #ffe;'>$\pi$</code>)
60
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Gamma;</code> &#915; (<code style='background-color: #ffe;'>$\Gamma$</code>)
61
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;trade;</code> &#8482; (<code style='background-color: #ffe;'>$^{\rm TM}$</code>)
62
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sup3;</code> &#179; (<code style='background-color: #ffe;'>$^3$</code>)
63
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Omicron;</code> &#927; (<code style='background-color: #ffe;'>$O$</code>)
64
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Iuml;</code> &#207; (<code style='background-color: #ffe;'>\&quot;I</code>)
65
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;THORN;</code> &#222; (<code style='background-color: #ffe;'>\Thorn</code>)
66
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;radic;</code> &#8730; (<code style='background-color: #ffe;'>$\surd$</code>)
67
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;forall;</code> &#8704; (<code style='background-color: #ffe;'>$\forall$</code>)
68
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;kappa;</code> &#954; (<code style='background-color: #ffe;'>$\kappa$</code>)
69
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sect;</code> &#167; (<code style='background-color: #ffe;'>\S</code>)
70
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Eta;</code> &#919; (<code style='background-color: #ffe;'>$H$</code>)
71
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Otilde;</code> &#213; (<code style='background-color: #ffe;'>\~O</code>)
72
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Uuml;</code> &#220; (<code style='background-color: #ffe;'>\&quot;U</code>)
73
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;int;</code> &#8747; (<code style='background-color: #ffe;'>$\int$</code>)
74
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Tau;</code> &#932; (<code style='background-color: #ffe;'>$T$</code>)
75
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;larr;</code> &#8592; (<code style='background-color: #ffe;'>$\leftarrow$</code>)
76
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ugrave;</code> &#217; (<code style='background-color: #ffe;'>\`U</code>)
77
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;tilde;</code> &#732; (<code style='background-color: #ffe;'>\textasciitilde</code>)
78
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;darr;</code> &#8595; (<code style='background-color: #ffe;'>$\downarrow$</code>)
79
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Pi;</code> &#928; (<code style='background-color: #ffe;'>$\Pi$</code>)
80
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;exist;</code> &#8707; (<code style='background-color: #ffe;'>$\exists$</code>)
81
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lowast;</code> &#8727; (<code style='background-color: #ffe;'>$\ast$</code>)
82
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rsaquo;</code> &#8250; (<code style='background-color: #ffe;'>\guilsinglright</code>)
83
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;middot;</code> &#183; (<code style='background-color: #ffe;'>$\cdot$</code>)
84
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;crarr;</code> &#8629; (<code style='background-color: #ffe;'>$\hookleftarrow$</code>)
85
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ucirc;</code> &#219; (<code style='background-color: #ffe;'>\^U</code>)
86
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Epsilon;</code> &#917; (<code style='background-color: #ffe;'>$E$</code>)
87
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;thorn;</code> &#254; (<code style='background-color: #ffe;'>\thorn</code>)
88
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ntilde;</code> &#241; (<code style='background-color: #ffe;'>\~n</code>)
89
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;raquo;</code> &#187; (<code style='background-color: #ffe;'>\guillemotright</code>)
90
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;harr;</code> &#8596; (<code style='background-color: #ffe;'>$\leftrightarrow$</code>)
91
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;part;</code> &#8706; (<code style='background-color: #ffe;'>$\partial$</code>)
92
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;atilde;</code> &#227; (<code style='background-color: #ffe;'>\~a</code>)
93
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ccedil;</code> &#231; (<code style='background-color: #ffe;'>\c{c}</code>)
94
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Acirc;</code> &#194; (<code style='background-color: #ffe;'>\^A</code>)
95
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;otilde;</code> &#245; (<code style='background-color: #ffe;'>\~o</code>)
96
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;uArr;</code> &#8657; (<code style='background-color: #ffe;'>$\Uparrow$</code>)
97
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;diams;</code> &#9830; (<code style='background-color: #ffe;'>$\diamondsuit$</code>)
98
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;upsilon;</code> &#965; (<code style='background-color: #ffe;'>$\upsilon$</code>)
99
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Euml;</code> &#203; (<code style='background-color: #ffe;'>\&quot;E</code>)
100
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;asymp;</code> &#8776; (<code style='background-color: #ffe;'>$\approx$</code>)
101
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ne;</code> &#8800; (<code style='background-color: #ffe;'>$\neq$</code>)
102
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rceil;</code> &#8968; (<code style='background-color: #ffe;'>$\rceil$</code>)
103
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sdot;</code> &#8901; (<code style='background-color: #ffe;'>$\cdot$</code>)
104
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;beta;</code> &#946; (<code style='background-color: #ffe;'>$\beta$</code>)
105
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ni;</code> &#8715; (<code style='background-color: #ffe;'>$\ni$</code>)
106
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ouml;</code> &#246; (<code style='background-color: #ffe;'>\&quot;o</code>)
107
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Atilde;</code> &#195; (<code style='background-color: #ffe;'>\~A</code>)
108
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;minus;</code> &#8722; (<code style='background-color: #ffe;'>$-$</code>)
109
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ccedil;</code> &#199; (<code style='background-color: #ffe;'>\c{C}</code>)
110
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;igrave;</code> &#236; (<code style='background-color: #ffe;'>\`i</code>)
111
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;brvbar;</code> &#166; (<code style='background-color: #ffe;'>\brokenvert</code>)
112
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;acute;</code> &#180; (<code style='background-color: #ffe;'>&apos;</code>)
113
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sigmaf;</code> &#962; (<code style='background-color: #ffe;'>$\varsigma$</code>)
114
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;weierp;</code> &#8472; (<code style='background-color: #ffe;'>$\wp$</code>)
115
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Auml;</code> &#196; (<code style='background-color: #ffe;'>\&quot;A</code>)
116
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;apos;</code> &#39; (<code style='background-color: #ffe;'>&apos;</code>)
117
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;micro;</code> &#181; (<code style='background-color: #ffe;'>$\mu$</code>)
118
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Icirc;</code> &#206; (<code style='background-color: #ffe;'>\^I</code>)
119
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;xi;</code> &#958; (<code style='background-color: #ffe;'>$\xi$</code>)
120
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;clubs;</code> &#9827; (<code style='background-color: #ffe;'>$\clubsuit$</code>)
121
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;bull;</code> &#8226; (<code style='background-color: #ffe;'>$\bullet$</code>)
122
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ecirc;</code> &#202; (<code style='background-color: #ffe;'>\^E</code>)
123
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Kappa;</code> &#922; (<code style='background-color: #ffe;'>$K$</code>)
124
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;times;</code> &#215; (<code style='background-color: #ffe;'>$\times$</code>)
125
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Zeta;</code> &#918; (<code style='background-color: #ffe;'>$Z$</code>)
126
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;empty;</code> &#8709; (<code style='background-color: #ffe;'>$\emptyset$</code>)
127
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;image;</code> &#8465; (<code style='background-color: #ffe;'>$\Im$</code>)
128
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Oacute;</code> &#211; (<code style='background-color: #ffe;'>\&apos; O</code>)
129
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;nu;</code> &#957; (<code style='background-color: #ffe;'>$\nu$</code>)
130
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Xi;</code> &#926; (<code style='background-color: #ffe;'>$\Xi$</code>)
131
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Igrave;</code> &#204; (<code style='background-color: #ffe;'>\`I</code>)
132
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ndash;</code> &#8211; (<code style='background-color: #ffe;'>--</code>)
133
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;and;</code> &#8743; (<code style='background-color: #ffe;'>$\wedge$</code>)
134
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;prime;</code> &#8242; (<code style='background-color: #ffe;'>$\prime$</code>)
135
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;omicron;</code> &#959; (<code style='background-color: #ffe;'>$o$</code>)
136
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;iota;</code> &#953; (<code style='background-color: #ffe;'>$\iota$</code>)
137
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ang;</code> &#8736; (<code style='background-color: #ffe;'>$\angle$</code>)
138
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;chi;</code> &#967; (<code style='background-color: #ffe;'>$\chi$</code>)
139
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ge;</code> &#8805; (<code style='background-color: #ffe;'>$\geq$</code>)
140
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lang;</code> &#9002; (<code style='background-color: #ffe;'>$\langle$</code>)
141
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;le;</code> &#8804; (<code style='background-color: #ffe;'>$\leq$</code>)
142
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rdquo;</code> &#8221; (<code style='background-color: #ffe;'>&apos;&apos;</code>)
143
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;otimes;</code> &#8855; (<code style='background-color: #ffe;'>$\otimes$</code>)
144
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Nu;</code> &#925; (<code style='background-color: #ffe;'>$N$</code>)
145
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;real;</code> &#8476; (<code style='background-color: #ffe;'>$\Re$</code>)
146
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lfloor;</code> &#8970; (<code style='background-color: #ffe;'>$\lfloor$</code>)
147
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rsquo;</code> &#8217; (<code style='background-color: #ffe;'>&apos;</code>)
148
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;equiv;</code> &#8801; (<code style='background-color: #ffe;'>$\equiv$</code>)
149
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;aacute;</code> &#225; (<code style='background-color: #ffe;'>\&apos;a</code>)
150
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;permil;</code> &#8240; (<code style='background-color: #ffe;'>\permil</code>)
151
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sigma;</code> &#963; (<code style='background-color: #ffe;'>$\sigma$</code>)
152
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;oacute;</code> &#243; (<code style='background-color: #ffe;'>\&apos;o</code>)
153
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;supe;</code> &#8839; (<code style='background-color: #ffe;'>$\supseteq$</code>)
154
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ordf;</code> &#170; (<code style='background-color: #ffe;'>\textordfeminine</code>)
155
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Beta;</code> &#914; (<code style='background-color: #ffe;'>$B$</code>)
156
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;hearts;</code> &#9829; (<code style='background-color: #ffe;'>$\heartsuit$</code>)
157
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Rho;</code> &#929; (<code style='background-color: #ffe;'>$P$</code>)
158
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Psi;</code> &#936; (<code style='background-color: #ffe;'>$\Psi$</code>)
159
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;oelig;</code> &#339; (<code style='background-color: #ffe;'>\oe</code>)
160
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;AElig;</code> &#198; (<code style='background-color: #ffe;'>\AE</code>)
161
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;spades;</code> &#9824; (<code style='background-color: #ffe;'>$\spadesuit$</code>)
162
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;oline;</code> &#8254; (<code style='background-color: #ffe;'>-</code>)
163
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;mdash;</code> &#8212; (<code style='background-color: #ffe;'>---</code>)
164
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ocirc;</code> &#244; (<code style='background-color: #ffe;'>\^o</code>)
165
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Scaron;</code> &#352; (<code style='background-color: #ffe;'>\v{S}</code>)
166
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;gt;</code> &#62; (<code style='background-color: #ffe;'>$&gt;$</code>)
167
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;omega;</code> &#969; (<code style='background-color: #ffe;'>$\omega$</code>)
168
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;phi;</code> &#966; (<code style='background-color: #ffe;'>$\phi$</code>)
169
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ordm;</code> &#186; (<code style='background-color: #ffe;'>\textordmasculine</code>)
170
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;copy;</code> &#169; (<code style='background-color: #ffe;'>\copyright</code>)
171
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;infin;</code> &#8734; (<code style='background-color: #ffe;'>$\infty$</code>)
172
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Aacute;</code> &#193; (<code style='background-color: #ffe;'>\&apos;A</code>)
173
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rarr;</code> &#8594; (<code style='background-color: #ffe;'>$\rightarrow$</code>)
174
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lt;</code> &#60; (<code style='background-color: #ffe;'>$&lt;$</code>)
175
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;cong;</code> &#8773; (<code style='background-color: #ffe;'>$\cong$</code>)
176
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;eta;</code> &#951; (<code style='background-color: #ffe;'>$\eta$</code>)
177
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;curren;</code> &#164; (<code style='background-color: #ffe;'>\currency</code>)
178
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;tau;</code> &#964; (<code style='background-color: #ffe;'>$\tau$</code>)
179
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;oplus;</code> &#8853; (<code style='background-color: #ffe;'>$\oplus$</code>)
180
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;cap;</code> &#8746; (<code style='background-color: #ffe;'>$\cap$</code>)
181
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Iota;</code> &#921; (<code style='background-color: #ffe;'>$I$</code>)
182
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Sigma;</code> &#931; (<code style='background-color: #ffe;'>$\Sigma$</code>)
183
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;frac34;</code> &#190; (<code style='background-color: #ffe;'>$\frac{3}{4}$</code>)
184
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;scaron;</code> &#353; (<code style='background-color: #ffe;'>\v{s}</code>)
185
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;eth;</code> &#240; (<code style='background-color: #ffe;'>$\eth$</code>)
186
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;aring;</code> &#229; (<code style='background-color: #ffe;'>\aa</code>)
187
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lArr;</code> &#8656; (<code style='background-color: #ffe;'>$\Leftarrow$</code>)
188
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;epsilon;</code> &#949; (<code style='background-color: #ffe;'>$\epsilon$</code>)
189
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;dArr;</code> &#8659; (<code style='background-color: #ffe;'>$\Downarrow$</code>)
190
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;alpha;</code> &#945; (<code style='background-color: #ffe;'>$\alpha$</code>)
191
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;cent;</code> &#162; (<code style='background-color: #ffe;'>\cent</code>)
192
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Lambda;</code> &#923; (<code style='background-color: #ffe;'>$\Lambda$</code>)
193
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;loz;</code> &#9674; (<code style='background-color: #ffe;'>$\lozenge$</code>)
194
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;yen;</code> &#165; (<code style='background-color: #ffe;'>\textyen</code>)
195
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;uuml;</code> &#252; (<code style='background-color: #ffe;'>\&quot;u</code>)
196
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Eacute;</code> &#201; (<code style='background-color: #ffe;'>\&apos;E</code>)
197
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ocirc;</code> &#212; (<code style='background-color: #ffe;'>\^O</code>)
198
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;nbsp;</code> &#160; (<code style='background-color: #ffe;'>~</code>)
199
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;reg;</code> &#174; (<code style='background-color: #ffe;'>\textregistered</code>)
200
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;cup;</code> &#8745; (<code style='background-color: #ffe;'>$\cup$</code>)
201
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;frasl;</code> &#8260; (<code style='background-color: #ffe;'>/</code>)
202
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Uacute;</code> &#218; (<code style='background-color: #ffe;'>\&apos;U</code>)
203
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;hArr;</code> &#8660; (<code style='background-color: #ffe;'>$\Leftrightarrow$</code>)
204
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;delta;</code> &#948; (<code style='background-color: #ffe;'>$\delta$</code>)
205
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ouml;</code> &#214; (<code style='background-color: #ffe;'>\&quot;O</code>)
206
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ograve;</code> &#242; (<code style='background-color: #ffe;'>\`o</code>)
207
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Ograve;</code> &#210; (<code style='background-color: #ffe;'>\`O</code>)
208
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;quot;</code> &#34; (<code style='background-color: #ffe;'>&quot;</code>)
209
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;uarr;</code> &#8593; (<code style='background-color: #ffe;'>$\uparrow$</code>)
210
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;yuml;</code> &#255; (<code style='background-color: #ffe;'>\&quot;y</code>)
211
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;or;</code> &#8744; (<code style='background-color: #ffe;'>$\vee$</code>)
212
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Omega;</code> &#937; (<code style='background-color: #ffe;'>$\Omega$</code>)
213
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Agrave;</code> &#192; (<code style='background-color: #ffe;'>\`A</code>)
214
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lambda;</code> &#955; (<code style='background-color: #ffe;'>$\lambda$</code>)
215
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;prod;</code> &#8719; (<code style='background-color: #ffe;'>$\prod$</code>)
216
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;laquo;</code> &#171; (<code style='background-color: #ffe;'>\guillemotleft</code>)
217
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;eacute;</code> &#233; (<code style='background-color: #ffe;'>\&apos;e</code>)
218
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;plusmn;</code> &#177; (<code style='background-color: #ffe;'>$\pm$</code>)
219
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;uacute;</code> &#250; (<code style='background-color: #ffe;'>\&apos;u</code>)
220
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lsaquo;</code> &#8249; (<code style='background-color: #ffe;'>\guilsinglleft</code>)
221
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Aring;</code> &#197; (<code style='background-color: #ffe;'>\AA</code>)
222
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;frac12;</code> &#189; (<code style='background-color: #ffe;'>$\frac{1}{2}$</code>)
223
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;dagger;</code> &#8224; (<code style='background-color: #ffe;'>\dag</code>)
224
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;gamma;</code> &#947; (<code style='background-color: #ffe;'>$\gamma$</code>)
225
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;frac14;</code> &#188; (<code style='background-color: #ffe;'>$\frac{1}{4}$</code>)
226
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Alpha;</code> &#913; (<code style='background-color: #ffe;'>$A$</code>)
227
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;there4;</code> &#8756; (<code style='background-color: #ffe;'>$\therefore$</code>)
228
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rang;</code> &#9001; (<code style='background-color: #ffe;'>$\rangle$</code>)
229
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sub;</code> &#8834; (<code style='background-color: #ffe;'>$\subset$</code>)
230
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;rfloor;</code> &#8971; (<code style='background-color: #ffe;'>$\rfloor$</code>)
231
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;isin;</code> &#8712; (<code style='background-color: #ffe;'>$\in$</code>)
232
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;iuml;</code> &#239; (<code style='background-color: #ffe;'>\&quot;i</code>)
233
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;lceil;</code> &#8969; (<code style='background-color: #ffe;'>$\lceil$</code>)
234
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;theta;</code> &#952; (<code style='background-color: #ffe;'>$\theta$</code>)
235
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;deg;</code> &#176; (<code style='background-color: #ffe;'>\textdegree</code>)
236
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;notin;</code> &#8713; (<code style='background-color: #ffe;'>$\notin$</code>)
237
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;agrave;</code> &#224; (<code style='background-color: #ffe;'>\`a</code>)
238
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;prop;</code> &#8733; (<code style='background-color: #ffe;'>$\propto$</code>)
239
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Dagger;</code> &#8225; (<code style='background-color: #ffe;'>\ddag</code>)
240
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ucirc;</code> &#251; (<code style='background-color: #ffe;'>\^u</code>)
241
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Chi;</code> &#935; (<code style='background-color: #ffe;'>$X$</code>)
242
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;zeta;</code> &#950; (<code style='background-color: #ffe;'>$\zeta$</code>)
243
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sum;</code> &#8721; (<code style='background-color: #ffe;'>$\sum$</code>)
244
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;nabla;</code> &#8711; (<code style='background-color: #ffe;'>$\nabla$</code>)
245
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Iacute;</code> &#205; (<code style='background-color: #ffe;'>\&apos;I</code>)
246
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Upsilon;</code> &#933; (<code style='background-color: #ffe;'>$Y$</code>)
247
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;sup;</code> &#8835; (<code style='background-color: #ffe;'>$\supset$</code>)
248
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;auml;</code> &#228; (<code style='background-color: #ffe;'>\&quot;a</code>)
249
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;ldquo;</code> &#8220; (<code style='background-color: #ffe;'>``</code>)
250
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;Delta;</code> &#916; (<code style='background-color: #ffe;'>$\Delta$</code>)
251
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;circ;</code> &#710; (<code style='background-color: #ffe;'>\textasciicircum</code>)
252
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;pound;</code> &#163; (<code style='background-color: #ffe;'>\pounds</code>)
253
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;yacute;</code> &#253; (<code style='background-color: #ffe;'>\&apos;y</code>)
254
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;perp;</code> &#8869; (<code style='background-color: #ffe;'>$\perp$</code>)
255
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;mu;</code> &#956; (<code style='background-color: #ffe;'>$\mu$</code>)
256
+ &#160;&#160;&#160;<code style='background-color: #eef;'>&amp;hellip;</code> &#8230; (<code style='background-color: #ffe;'>\ldots</code>)
257
+ &#160;&#160;&#160;</p>
258
+ <div class='maruku_signature'><hr /><span style='font-size: small; font-style: italic'>Created by <a href='http://maruku.rubyforge.org' title='Maruku: a Markdown-superset interpreter for Ruby'>Maruku</a> at 14:11 on Tuesday, January 23rd, 2007.</span></div></body></html>