more Unicode->Latex conversions

Latex output now depends on the "mathabx" package.
This commit is contained in:
Matthew Flatt 2015-03-19 12:43:06 -06:00
parent 5a752f5022
commit 46e637d019
2 changed files with 7 additions and 2 deletions

View File

@ -1009,8 +1009,8 @@
[(#\”) "{''}"] [(#\”) "{''}"]
[(#\u2013) "{--}"] [(#\u2013) "{--}"]
[(#\u2014) "{---}"] [(#\u2014) "{---}"]
[(#\) "$\\langle$"] [(#\#\) "$\\langle$"] ; [MATHEMATICAL] LEFT ANGLE BRACKET
[(#\) "$\\rangle$"] [(#\#\) "$\\rangle$"] ; [MATHEMATICAL] RIGHT ANGLE BRACKET
[(#\∞) "$\\infty$"] [(#\∞) "$\\infty$"]
[(#\⇓) "$\\Downarrow$"] [(#\⇓) "$\\Downarrow$"]
[(#\↖) "$\\nwarrow$"] [(#\↖) "$\\nwarrow$"]
@ -1168,6 +1168,8 @@
[(#\u2079) "$^9$"] [(#\u2079) "$^9$"]
[(#\u207a) "$^+$"] [(#\u207a) "$^+$"]
[(#\u207b) "$^-$"] [(#\u207b) "$^-$"]
[(#\⋖) "$\\precdot$"]
[(#\⋗) "$\\succdot$"]
[(#\⋮) "\\vdots"] [(#\⋮) "\\vdots"]
[(#\⋱) "$\\ddots$"] [(#\⋱) "$\\ddots$"]
[(#\⋯) "$\\cdots$"] [(#\⋯) "$\\cdots$"]

View File

@ -4,6 +4,9 @@
\usepackage{hyperref} \usepackage{hyperref}
\renewcommand{\rmdefault}{ptm} \renewcommand{\rmdefault}{ptm}
\usepackage{relsize} \usepackage{relsize}
\usepackage{mathabx}
% Avoid conflicts between "mathabx" and "wasysym":
\let\leftmoon\relax \let\rightmoon\relax \let\fullmoon\relax \let\newmoon\relax \let\diameter\relax
\usepackage{wasysym} \usepackage{wasysym}
\usepackage{textcomp} \usepackage{textcomp}
\usepackage{framed} \usepackage{framed}