I would like to create a timeline by using latex, however different than the examples over the internet, I want my timeline to have images representing the certain times. You can check my perfectly drawn timeline on paint.
I tried to achieve this however, images were too small, and could not be able put the above the timeline:
\begin{tikzpicture}[x=3.5cm,nodes={text width=3cm,align=left}]
\draw[black,->,thick,>=latex,line cap=rect]
(0,0) -- (3.5,0);
\foreach \Xc in {0,...,3}
{
\draw[black,thick]
(\Xc,0) -- ++(0,5pt);
}
\node[below,align=left,anchor=north,inner xsep=0pt,color=black]
at (0,0)
{Hint is given};
\node[below,align=left,anchor=north,inner xsep=0pt]
at (1,0)
{Robot directs correct hole with Gaze Cue};
\node[below,align=left,anchor=north,inner xsep=0pt]
at (2,0)
{Partipicant drives the screw to the correct Hole};
\node[below,align=left,anchor=north,inner xsep=0pt]
at (3,0)
{\includegraphics[width=.25\textwidth]{figures/ExperimentArchitecture.png} Robot nods its head};
\end{tikzpicture}
Which looks like below:




\includegraphicsinside nodes and you’re done. ;) – Archange Oct 16 '21 at 11:30