Extension:Wiki2LaTeX/Development/w2lChars.php
From MediaWiki.org
<?php // $this->addChar('HTMLNAME', 'LATEXCOMAND' [,'UNICODE_DEC_NUMBER']); $this->addChar( '←', '\(\leftarrow{}\)', 8592); $this->addChar( '↑', '\(\uparrow\)', 8593); $this->addChar( '→', '\(\rightarrow{}\)', 8594); $this->addChar( '↓', '\(\downarrow{}\)', 8595); $this->addChar( '↔', '\(\leftrightarrow{}\)', 8596); $this->addChar( '⇐', '\(\Leftarrow{}\)', 8656); $this->addChar( '⇑', '\(\Uparrow\)', 8657); $this->addChar( '⇒', '\(\Rightarrow{}\)', 8658); $this->addChar( '⇓', '\(\Downarrow{}\)', 8659); $this->addChar( '⇔', '\(\Leftrightarrow{}\)', 8660); /* Currencysymbols */ $this->addChar( '€', '{\euro}', 8364); /* Punctation */ $this->addChar( '…', '{\dots}', 8230); /*Quotationmarks */ $this->addChar( '‚', '\glq{}', 8218); $this->addChar( '‘', '\grq{}', 8217); $this->addChar( '„', '\glqq{}', 8222); $this->addChar( '“', '\grqq{}', 8221); $this->addChar('‹', '\flq{}', 8249); $this->addChar('›', '\frq{}', 8250); $this->addChar('«', '\flqq{}', 171); $this->addChar('»', '\frqq{}', 187); $this->addChar( ' ', '~', 160); $this->addChar( '&', '\&', 38); $this->addChar( '§', '{\S}', 167); $this->addChar( '©', '{\copyright}', 169); $this->addChar( 'ç', '\c{c}', 231); $this->addChar( '≈', '\(\approx{}\)', 8776); $this->addChar( '≠', '\(\neq{}\)', 8800); $this->addChar('–', 8211); $this->addChar('—', '---', 8212); $this->addChar('<', '<', 60); $this->addChar('>', '>', 62); $this->addChar('"', '\dq{}', 34);
