I am looking for a very specific symbol contained in the Mathematica font set: the raw unaltered single quote (see Is there a way to get "dumb" single quote in math mode?)
In the following code,
\documentclass[a4,10pt]{article}
\usepackage{amsmath, amssymb}
\usepackage[uprightmonomath]{wrisym}
\DeclareMathVersion{monobold}
\SetSymbolFont{letters}{monobold}{OML}{wcrum}{b}{n}
\SetSymbolFont{operators}{monobold}{OT1}{wcrr}{b}{n}
\SetSymbolFont{symbols}{monobold}{OMS}{wcry}{b}{n}
\DeclareMathSymbol{\singleGlyph}{\mathord}{symbols}{5}
\begin{document}
Mathematica glyph:
\mathversion{monobold}$\singleGlyph$\mathversion{normal}
\end{document}
I am able to inspect all the glyphs in the wrisym package one by one if I change the final integer (the 5) in the command
\DeclareMathSymbol{\singleGlyph}{\mathord}{symbols}{5}
to some other integer 6, 7, 8, ... then recompiling to see what the
glyph looks like. But this is exceedingly time-consuming.
Is there a way to generate a document containing all the symbols/glyphs available in the font (including the integer associated with them)? That way I can just pick the glyph I need.


\usepackage{fonttable} ... \xfonttable{OMS}{wcry}{b}{n}, but this assumes that your glyph is encoded, if not you should look e.g. in the afm-file (if there is one). – Ulrike Fischer Jul 07 '16 at 08:21