I found a big list of symbols and the source here. I would like to simply do this: place each command on a new line, and evaluate the command in the first column, and print the command in the second column. Like this:
α \A
β \B
...
I just made those commands up, but essentially that. Print the output next to the command.
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\A --- \begin{verbatim} A \end{verbatim}
\aa --- \begin{verbatim} aa \end{verbatim}
\AA --- \begin{verbatim} AA \end{verbatim}
\AAaleph --- \begin{verbatim} AAaleph \end{verbatim}
\AAayin --- \begin{verbatim} AAayin \end{verbatim}
\AAbeth --- \begin{verbatim} AAbeth \end{verbatim}
\AAcht --- \begin{verbatim} AAcht \end{verbatim}
\AAdaleth --- \begin{verbatim} AAdaleth \end{verbatim}
\AAhe --- \begin{verbatim} AAhe \end{verbatim}
\AAhelmet --- \begin{verbatim} AAhelmet \end{verbatim}
\AAheth --- \begin{verbatim} AAheth \end{verbatim}
\AAkaph --- \begin{verbatim} AAkaph \end{verbatim}
\AAlamed --- \begin{verbatim} AAlamed \end{verbatim}
\Aaleph --- \begin{verbatim} Aaleph \end{verbatim}
\AApe --- \begin{verbatim} AApe \end{verbatim}
\AAqoph --- \begin{verbatim} AAqoph \end{verbatim}
\AAresh --- \begin{verbatim} AAresh \end{verbatim}
\AAsade --- \begin{verbatim} AAsade \end{verbatim}
\Aayin --- \begin{verbatim} Aayin \end{verbatim}
\AAyod --- \begin{verbatim} AAyod \end{verbatim}
\AB --- \begin{verbatim} AB \end{verbatim}
\Abeth --- \begin{verbatim} Abeth \end{verbatim}
\ac --- \begin{verbatim} ac \end{verbatim}
\AC --- \begin{verbatim} AC \end{verbatim}
\end{document}
But it didn't work.
It would also be interesting to know, perhaps preferable, to log the output to the console as it is compiling. Wondering how to do that.
