maruku 0.4.0 → 0.4.1

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 (87) hide show
  1. data/bin/maruku +74 -22
  2. data/bin/marutest +15 -3
  3. data/docs/{changelog-0.3.md → changelog.md} +47 -18
  4. data/docs/entity_test.html +253 -0
  5. data/docs/entity_test.md +21 -0
  6. data/docs/index.html +124 -31
  7. data/docs/markdown_syntax.html +46 -46
  8. data/docs/maruku.html +124 -31
  9. data/docs/maruku.md +47 -9
  10. data/docs/proposal.html +4 -4
  11. data/lib/maruku.rb +1 -0
  12. data/lib/maruku/defaults.rb +1 -1
  13. data/lib/maruku/helpers.rb +4 -4
  14. data/lib/maruku/input/parse_block.rb +39 -33
  15. data/lib/maruku/input/parse_doc.rb +57 -3
  16. data/lib/maruku/input/parse_span_better.rb +28 -8
  17. data/lib/maruku/input/rubypants.rb +225 -0
  18. data/lib/maruku/input/type_detection.rb +1 -0
  19. data/lib/maruku/output/to_html.rb +46 -47
  20. data/lib/maruku/output/to_latex.rb +166 -45
  21. data/lib/maruku/output/to_latex_entities.rb +75 -43
  22. data/lib/maruku/string_utils.rb +21 -19
  23. data/lib/maruku/structures.rb +21 -12
  24. data/lib/maruku/structures_inspect.rb +12 -3
  25. data/lib/maruku/tests/new_parser.rb +2 -1
  26. data/lib/maruku/version.rb +1 -1
  27. data/tests/unittest/abbreviations.md +8 -8
  28. data/tests/unittest/attributes/attributes.md +10 -10
  29. data/tests/unittest/attributes/circular.md +4 -4
  30. data/tests/unittest/attributes/default.md +3 -3
  31. data/tests/unittest/blank.md +2 -2
  32. data/tests/unittest/blanks_in_code.md +12 -12
  33. data/tests/unittest/code.md +4 -4
  34. data/tests/unittest/code2.md +7 -6
  35. data/tests/unittest/code3.md +16 -16
  36. data/tests/unittest/easy.md +4 -4
  37. data/tests/unittest/email.md +4 -4
  38. data/tests/unittest/encoding/iso-8859-1.md +2 -2
  39. data/tests/unittest/encoding/utf-8.md +2 -2
  40. data/tests/unittest/entities.md +20 -20
  41. data/tests/unittest/escaping.md +16 -16
  42. data/tests/unittest/extra_dl.md +17 -7
  43. data/tests/unittest/extra_header_id.md +11 -11
  44. data/tests/unittest/extra_table1.md +4 -4
  45. data/tests/unittest/footnotes.md +38 -28
  46. data/tests/unittest/headers.md +6 -6
  47. data/tests/unittest/hrule.md +6 -6
  48. data/tests/unittest/images.md +18 -16
  49. data/tests/unittest/inline_html.md +7 -29
  50. data/tests/unittest/inline_html2.md +3 -3
  51. data/tests/unittest/links.md +7 -27
  52. data/tests/unittest/list1.md +9 -8
  53. data/tests/unittest/list2.md +15 -12
  54. data/tests/unittest/list3.md +16 -14
  55. data/tests/unittest/list4.md +4 -4
  56. data/tests/unittest/lists.md +33 -29
  57. data/tests/unittest/lists_after_paragraph.md +36 -36
  58. data/tests/unittest/lists_ol.md +43 -38
  59. data/tests/unittest/misc_sw.md +172 -156
  60. data/tests/unittest/notyet/escape.md +8 -8
  61. data/tests/unittest/notyet/header_after_par.md +6 -6
  62. data/tests/unittest/notyet/ticks.md +4 -4
  63. data/tests/unittest/notyet/triggering.md +21 -21
  64. data/tests/unittest/olist.md +5 -5
  65. data/tests/unittest/one.md +1 -1
  66. data/tests/unittest/paragraph.md +1 -1
  67. data/tests/unittest/paragraph_rules/dont_merge_ref.md +1 -1
  68. data/tests/unittest/paragraph_rules/tab_is_blank.md +2 -2
  69. data/tests/unittest/paragraphs.md +5 -5
  70. data/tests/unittest/recover/recover_links.md +2 -2
  71. data/tests/unittest/references/long_example.md +27 -19
  72. data/tests/unittest/smartypants.md +148 -0
  73. data/tests/unittest/syntax_hl.md +14 -14
  74. data/tests/unittest/test.md +2 -2
  75. data/tests/unittest/wrapping.md +8 -8
  76. data/tests/unittest/xml_instruction.md +82 -0
  77. metadata +149 -160
  78. data/docs/TOFIX.html +0 -22
  79. data/docs/TOFIX.md +0 -3
  80. data/docs/changelog-0.2.13.html +0 -30
  81. data/docs/changelog-0.2.13.md +0 -6
  82. data/docs/changelog-0.3.html +0 -113
  83. data/docs/faq.html +0 -57
  84. data/docs/faq.md +0 -32
  85. data/docs/hidden_o_n_squared.md +0 -10
  86. data/docs/todo.html +0 -40
  87. data/docs/todo.md +0 -9
data/bin/maruku CHANGED
@@ -1,33 +1,85 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'maruku'
4
+ require 'optparse'
5
+
6
+ export = :html
7
+
8
+ OptionParser.new do |opts|
9
+ opts.banner = "Usage: maruku [options] [file1.md [file2.md ..."
10
+
11
+ opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
12
+ MaRuKu::Globals[:verbose] = v end
13
+ opts.on("-u", "--[no-]unsafe", "Use unsafe features") do |v|
14
+ MaRuKu::Globals[:unsafe_features] = v end
4
15
 
5
- if File.basename($0) =~ /^maruku/
6
- # If we are given filenames, convert each file
7
- if not ARGV.empty?
8
- ARGV.each do |f|
9
- puts "Opening #{f}"
10
16
 
11
- # read file content
12
- input = File.open(f,'r').read
13
-
14
- # create Maruku
15
- doc = Maruku.new(input, {:on_error=>:warning})
16
- # convert to a complete html document
17
- html = doc.to_html_document( {:indent => -1})
17
+
18
+ opts.on_tail("--pdf", "Write PDF" ) do export = :pdf end
19
+ opts.on_tail("--html", "Write HTML") do export = :html end
20
+ opts.on_tail("--tex", "Write LaTeX" ) do export = :tex end
21
+
22
+ opts.on_tail("--version", "Show version") do
23
+ puts OptionParser::Version.join('.')
24
+ exit
25
+ end
26
+
27
+ opts.on_tail("-h", "--help", "Show this message") do
28
+ puts opts
29
+ exit
30
+ end
31
+
32
+ end.parse!
33
+
34
+ #p ARGV
35
+ #p MaRuKu::Globals
36
+
37
+ # If we are given filenames, convert each file
38
+ if not ARGV.empty?
39
+ ARGV.each do |f|
40
+
41
+ # read file content
42
+ input = File.open(f,'r').read
43
+
44
+ $stderr.puts "Reading from #{f}"
18
45
 
19
- # write to file
20
- dir = File.dirname(f)
21
- filename = File.basename(f, File.extname(f)) + ".html"
46
+ # create Maruku
47
+ doc = Maruku.new(input, {:on_error=>:warning})
48
+
22
49
 
23
- out_xml = File.join(dir, filename)
24
- File.open(out_xml,'w') do |f| f.puts html end
50
+ out=""; prefix = "?"
51
+ case export
52
+ when :html
53
+ prefix='html'
54
+ out = doc.to_html_document( {:indent => -1})
55
+ when :pdf, :tex
56
+ prefix='tex'
57
+ out = doc.to_latex_document
58
+ when :markdown
59
+ prefix='pretty_md'
60
+ out = doc.to_markdown
61
+ end
62
+
63
+ # write to file
64
+ dir = File.dirname(f)
65
+ job = File.join(dir, File.basename(f, File.extname(f)))
66
+ filename = job + "." + prefix
67
+
68
+ $stderr.puts "Writing to #{filename}"
69
+ File.open(filename,'w') do |f| f.puts out end
70
+
71
+ if export == :pdf
72
+ cmd = "pdflatex '#{job}' -interaction=nonstopmode "+
73
+ "'-output-directory=#{dir}' "
74
+ # run twice for cross references
75
+ system cmd
76
+ system cmd
25
77
  end
26
- else
27
- # else, act as a filter
28
- data = $stdin.read
29
- puts Maruku.new(data, {:on_error=>:warning}).to_html
30
78
  end
79
+
80
+ else
81
+ # else, act as a filter
82
+ data = $stdin.read
83
+ puts Maruku.new(data, {:on_error=>:warning}).to_html
31
84
  end
32
85
 
33
-
data/bin/marutest CHANGED
@@ -9,6 +9,7 @@ def marker(x)
9
9
  "\n*** Output of #{x} ***\n"
10
10
  end
11
11
 
12
+ # a = expected b = found
12
13
  def equals(a, b)
13
14
  a = a.split("\n")
14
15
  b = b.split("\n")
@@ -18,8 +19,19 @@ def equals(a, b)
18
19
  lb = b[i]
19
20
  if la != lb
20
21
  puts "\n"
21
- puts "Line #{i}:\n#{la.inspect}\n"
22
- puts "#{lb.inspect}\n"
22
+
23
+ def write_lines(i, j, lines, prefix, i_star)
24
+ i = [i, 0].max
25
+ j = [j, lines.size-1].min
26
+ for a in i..j
27
+ l = lines[a].gsub(/\t/,' ')
28
+ puts ("%s %3d" % [prefix, a]) +
29
+ (a==i_star ? " -->" : " ")+lines[a]
30
+ end
31
+ end
32
+
33
+ write_lines(i-3, i+3, a, "expected", i )
34
+ write_lines(i-3, i+3, b, " found", i )
23
35
  return false
24
36
  end
25
37
  end
@@ -121,7 +133,7 @@ def run_test(filename, its_ok, verbose=true)
121
133
 
122
134
 
123
135
  TOTEST.each do |x|
124
- if not equals(actual[x], expected[x])
136
+ if not equals(expected[x], actual[x])
125
137
  if its_ok.include? x
126
138
  expected[x] = actual[x]
127
139
  $stdout.write " relax:#{x} "
@@ -1,23 +1,52 @@
1
- css: style.css
2
1
 
3
- Release notes - version 0.3.0 (January 3rd, 2007)
4
- -------------------------------------------------
2
+ #### Changes in 0.4.1 aka "Typographer" ####
5
3
 
6
- Note: Maruku seems to be very robust, nevertheless it is still beta-level
7
- software. So if you want to use it in production environments, please
8
- check back in a month or so, while we squash the remaining bugs.
4
+ * Implemented SmartyPants support:
9
5
 
10
- In the meantime, feel free to toy around, and please signal problems,
11
- request features, by [contacting me][contact] or using the [tracker][tracker].
12
- For issues about the Markdown syntax itself and improvements to it,
13
- please write to the [Markdown-discuss mailing list][markdown-discuss].
6
+ 'Twas a "test" to 'remember' -- in the '90s
7
+ --- while I was <<ok>>. She was 6\"12\'.
8
+ > 'Twas a "test" to 'remember' -- in the '90s --- while I was <<ok>>.
9
+ > She was 6\"12\'.
14
10
 
15
- Have fun!
11
+ I adapted the code from RubyPants.
12
+
13
+ * Server directives between `<? ?>` are properly preserved.
14
+ * Changes in LaTeX export:
15
+
16
+ * Now Japanese text rendering sort of works, using the following packages:
17
+
18
+ \usepackage[C40]{fontenc}
19
+ \usepackage[cjkjis]{ucs}
20
+ \usepackage[utf8x]{inputenc}
21
+
22
+ Nevertheless, I could only get bitmap fonts working -- probably it's a problem
23
+ with my setup.
24
+
25
+ A quick test: 日本、中国、ひらがな、カタカナ。
26
+
27
+ * Fixed bugs in rendering of immediate links.
28
+ * External packages are `require`d only if needed.
29
+ * More symbols supported.
30
+ See the symbol list
31
+ [in HTML](http://maruku.rubyforge.org/entity_test.html) and
32
+ [in PDF](http://maruku.rubyforge.org/entity_test.pdf).
16
33
 
17
- Changes in 0.3.0:
34
+
35
+ #### Changes in 0.4 ####
36
+
37
+ * First implementation of [the new meta-data syntax][meta].
38
+ * General refactorization of the code and much cleaner error reporting.
39
+ * Created [the RDOC documentation][rdoc].
40
+ * The `add_whitespace` method took too much time -- it was O(n^2).
41
+ * Added unit-tests for block-level elements.
42
+
43
+ [rdoc]: http://maruku.rubyforge.org/rdoc/
44
+ [meta]: http://maruku.rubyforge.org/proposal.html
45
+
46
+ #### Changes in 0.3 ####
18
47
 
19
48
  * A real parser is used instead of a regexp-based system, also for span-level
20
- elements..
49
+ elements.
21
50
 
22
51
  Now Maruku is almost 2x faster than Bluecloth, while having more features.
23
52
 
@@ -76,9 +105,9 @@ Immediate TODO-list:
76
105
 
77
106
  * Support for images in PDF.
78
107
 
108
+ #### Changes in 0.2.13 ####
79
109
 
80
- [proposal]: http://maruku.rubyforge.org/
81
- [contact]: http://www.dis.uniroma1.it/~acensi/contact.html
82
- [markdown-discuss]: http://six.pairlist.net/mailman/listinfo/markdown-discuss
83
- [tracker]: http://rubyforge.org/tracker/?group_id=2795
84
-
110
+ - better handling of inline HTML code.
111
+ - Handle HTML comments.
112
+ - Sanitizes HR and IMG tags if you don't close them.
113
+ - documentation included in HTML format
@@ -0,0 +1,253 @@
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>
5
+ <h1 id='list_of_symbols_supported_by_maruku'>List of symbols supported by Maruku</h1>
6
+ <?maruku all = []
7
+ ENTITY_TABLE.each do |k, e|
8
+ if k.kind_of? String
9
+ all << (h=md_code("&#{e.html_entity};")) <<
10
+ " " << md_entity(e.html_entity) <<
11
+ " (" << (l=md_code(e.latex_string)) << ") \n" <<
12
+ md_entity('nbsp')<<md_entity('nbsp')<<md_entity('nbsp')
13
+
14
+ h.attributes[:code_background_color] = '#eef'
15
+ l.attributes[:code_background_color] = '#ffe'
16
+ end
17
+ end
18
+ @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> &apos; (<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 23:18 on Monday, January 08th, 2007.</span></div></body></html>