I'm making a list and next to each element of the list I want to put a picture of that element, I'm trying to use tabular, and with that the picture is next to the text, but I want the text to be centered in the middle, not at the bottom of the picture. Here is what I tried:
\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{cc}
$A_n:\ y^2-x^{n+1}=0$ & \includegraphics[width=60mm]{images/An szing.pdf} \\
& \\
$D_n$ & \includegraphics[width=60mm]{images/D_n szing.pdf}\\
\end{tabular}
\end{document}
Any help is appreciated, and also sorry if my question is not well put together, first time here.


