I want to put some text in between the space between two figure which are side by side. For example "+" between figure 1 and figure 2 and = between figure 2 and figure 3. So it will look like figure 1 + figure 2 = figure 3
Code: Select all
Code, edit and compile here:
\documentclass[12pt]{article}\usepackage[T1]{fontenc}\usepackage{graphicx}\begin{document}\begin{figure}[!htb]\begin{minipage}{0.32\textwidth}\includegraphics[width=\linewidth]{x1}\caption{Prior 1 without trust factor}\label{fig:x1}\end{minipage}\hfill\begin{minipage}{0.32\textwidth}\includegraphics[width=\linewidth]{x2}\caption{Prior 2 without trust factor}\label{fig:x2}\end{minipage}\hfill\begin{minipage}{0.32\textwidth}%\includegraphics[width=\linewidth]{x}\caption{Posterior without trust factor}\label{fig:x}\end{minipage}\end{figure}\end{document}