I want to have a long table with text and images next to each other. Each row consists of a short paragraph about an image, and an image. The image and the text should be aligned such that the top of the image and the top of the paragraph are at the same height.
Here's what I tried:
\documentclass[11pt]{article}
\usepackage{longtable}
\usepackage{blindtext}
\usepackage[demo]{graphicx}
\begin{document}
\title{Hello world}
\author{Me}
\date{\today}
\maketitle
\begin{longtable}{| p{5cm} | p{5cm} |}
\blindtext & \includegraphics[width=4cm]{foo}\\
\end{longtable}
\end{document}
This results in the following table:
The problem with this is that the image sits on the first line of the second column, and extends way above the first line. How do I fix the table such that the top of the image is at the same height as the top of the first line? (Note that my actual document has multiple paragraphs with an image each.)
After this is fixed, I'd also like to include the source of the image (a short text) below the picture. So the solution should be compatible with this.
I've searched for other answers, but the closest I've come is this: Formatting of a \longtable containing a picture and https://tex.stackexchange.com/a/24688/32655 but I don't think either of those solve my problem.

