In Mikael Öhman's answer to this question, he provides some code for placing an image in math mode as a symbol using the \mathord declaration. I can define a new command in the preamble using this, and it works, but the image is placed on the baseline of the equation.
I want it to be a good deal taller than typical text, so ideally I could use \vcenter to center it vertically. When I do include the centering, the image is treated as if it were as wide as the page, i.e. there are about 6 inches of white space following it. (The image is closely cropped, so the white space is certainly created by LaTeX.
Where is the glitch in my code?
\newcommand{\bone}{\mathord{\includegraphics[scale=0.5]{../images/dog_bone.pdf}}}
LuaLaTeX):! Missing $ inserted. <inserted text> $ l.415 \vcenter {\hbox{\includegraphics[scale=0.27]{./figures/donkey}}}} ?. Any idea how to solve? – nutty about natty Jul 10 '13 at 13:05\vcenterrequires math mode, so just put it in$...$. – Stefan Kottwitz Jul 10 '13 at 13:53