Recently, I'm learning how to use Mathematica, and I want to make some notes with LaTeX. I noticed that Mathematica have provide a function "TeXForm", but when dealing with this:
the output is \text{Graph}[\{a\unicode{f3d5}b\}]
I know what the \unicode{} command is, because when I use "ExportString" in the Mathematica, I got
%% AMS-LaTeX Created with the Wolfram Language : www.wolfram.com
\documentclass{article}
\usepackage{amsmath, amssymb, graphics, setspace}
\newcommand{\mathsym}[1]{{}}
\newcommand{\unicode}[1]{{}}
\newcounter{mathematicapage}
\begin{document}
\[\text{Graph}[\{a\unicode{f3d5}b\}]\]
\end{document}
However, when I when I generated the pdf file, I got only
It is obvious that the symbol between a and b isn't displayed.
Then I looked up for the Unicode f3d5 in the font MathematicaMono (the font mathematica used to display symbols), I found the symbol I want, but how can I put this symbol (or character) into my pdf file, that is, how to apply this symbol to the latex environment displaymath.
By the way, I'm using WinEdt10.1, with MiKTeX and PDFTeXify (PDFLaTeX, LuaLaTeX, XeLaTeX or others are also available).



\unicodeso it prints something (right now it does not); and it would be useful to use eitherxelatexorlualatexto compile. – jon Feb 15 '17 at 03:46\unicode{f3d5}to make a suitable arrow. – David Carlisle Feb 15 '17 at 11:44XeLaTeXwith package fontspec and the command\symbol. There is a small problem: I'd like to make it a new command using\newcommand{\unicode}{\textnormal{\fontspec{MathematicaMono}\symbol{"#1}}}or\newcommand{\unicode}{\textnormal{\fontspec{MathematicaMono}^^^^#1}}, but neither of them works. The first one can not recognize the lower case likef3d5. And the second one tries to convert^^^^#1to a Unicode char, causing compile error. If there is a solution can solve them? – liurui39660 Feb 15 '17 at 16:03\unicodeto insert these symbols easily ,(two atempts are shown above), because the Mathematica can only generate code points in lowercases, that is, it can only generatef3d5, but notF3D5, which can be used by\symboldirectly, and I can't find such a command to convert an parameter into its uppercase. – liurui39660 Feb 15 '17 at 16:30\symbol{"#1}try\uppercase{\symbol{"#1}}. – Bruno Le Floch Feb 16 '17 at 16:59