How does one scale the images and also vertically centre align the images.
Relevant Research:
I have looked at the following links to better understand and try out their recommendations:
- LaTeX \includegraphics and textline
- Centering an image vertically
- Vertical alignment of subfigures LATEX
MWE:
\documentclass{report}
\usepackage{pifont}
\usepackage{float}
\usepackage[x11names]{xcolor}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{tabularx}
\renewcommand{\tabularxcolumn}[1]{>{\small\centering\arraybackslash}p{#1}}
\makeatother
\newcommand*\bigrightArrow[1][0pt]{\color{black!40}\raisebox{#1}{\scalebox{2.4}[3.6]{\ding{225}}}}
\makeatletter
\begin{document}
Some text \textbf{above} the image.
\begin{figure}[H]
\centering
\begin{tabularx}{\textwidth}{@{}XcXcX@{}}
\subcaptionbox{text 1}{\includegraphics[width=\linewidth]{example-image-a}}
&
\bigrightArrow[20pt]
&
\subcaptionbox{text 2}{\includegraphics[width=\linewidth]{example-image-b}}
&
\bigrightArrow[20pt]
&
\subcaptionbox{text 3}{\includegraphics[width=\linewidth]{example-image-c}}
\\
\end{tabularx}
\end{figure}
Some text \textbf{underneath} the image.
\end{document}
Current Output:
Ideal Output:
Question:
How does one:
- vertically align an image within the above MWE
- scale an image within the above MWE




tabularxwith 3Xtype columns? They will then be of equal width but your desired screen shot seems to indicate the last one should be smaller. – Sep 12 '19 at 02:37floatrowormakecellfor that. – Sep 12 '19 at 02:50