Is it possible to place 4 images in an 2x2 grid? I don't want to float them, I don't want any captions. Each image should have the same width.
Edit:
Thanks for all the answers. After trying it out, I realized, that I forgot to ask one point:
Suppose I have a counter like this:
\newcounter{eqn}
\renewcommand*{\theeqn}{\alph{eqn})}
\newcommand{\num}{\refstepcounter{eqn}\text{\theeqn}\;}
Now I want to add \num before each picture, the enumeration should be displayed above to the left of each image.

