0

enter image description hereenter image description here Can anyone help me with the positioning of the image in Project description?

moewe
  • 175,683

1 Answers1

2

try the following:

\documentclass{ieeetran}
\usepackage[demo]{graphicx}
\usepackage{stfloats} % for positioning of figure* on the same page
\usepackage{tabularx}
\usepackage{subcaption}

%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\usepackage{lipsum}

\begin{document}
\section{Introduction}
\lipsum[1]
\begin{figure*}[b]
  \setkeys{Gin}{width=0.9\linewidth}
\begin{subfigure}{0.2\linewidth}\centering
    \includegraphics{T1.png}
\caption{First subfigure}
\end{subfigure}%
\begin{subfigure}{0.2\linewidth}\centering
    \includegraphics{T2.png}
\caption{Second subfigure}
\end{subfigure}%
\begin{subfigure}{0.2\linewidth}\centering
    \includegraphics{T3.png}
\caption{Third subfigure}
\end{subfigure}%
\begin{subfigure}{0.2\linewidth}\centering
    \includegraphics{T4.png}
\caption{Fourth subfigure}
\end{subfigure}%
\begin{subfigure}{0.2\linewidth}\centering
    \includegraphics{T5.png}
\caption{Fifth subfigure}
\end{subfigure}
\caption{Input Images}
\end{figure*}
\lipsum
\end{document}

(it is follow-up answer to your previous question. actually it cover also this question)

enter image description here

Zarko
  • 296,517