I want to insert text in a defined (= set with a number, not just "bottom", "center" or "top") vertical position at the side of a figure. I managed to insert text at the side, but I can't figure out how to set the vertical position. Ideally, I would like to add different lines of text on the same side, each one with its position.
Here's what I did:
\documentclass{article}
\begin{document}
\begin{figure}[h]
text on the left side
\includegraphics[width=0.5\textwidth]{image}
\end{figure}
\end{document}
Alternatively, I can insert text and figure in a tabular, but again I don't know how to set the vertical position of the text:
\documentclass{article}
\usepackage[demo]{graphicx}
\begin{document}
\begin{center}
\begin{tabular}{cc}
text on the left & \includegraphics[width=0.5\textwidth]{image}
\end{tabular}
\end{center}
\end{document}



graphbox: http://tex.stackexchange.com/a/350374/5239 – Marco Daniel Feb 20 '17 at 16:23