Using the following latex commands, i have been able to run the latex file, but i am unable to include these figures between desired text lines. Almost all the figures are being sequentially arranged(which is not desirable) skipping the text lines between them.This is my latex file:
\documentclass{article} \usepackage{graphicx}
\begin{document}
\begin{figure} \centering \includegraphics[height=6.6em]{example-image}
\caption{An example image\label{eximg}} \end{figure}
Some text, see Figure \ref{eximg}.
\end{document}
How to include these figures between desired text lines?
figureis to allow the content to move. Your last question (where that document comes from) was already a duplicate but I answered as you were new but this really is the most common question of all, I'll link you to duplicates. – David Carlisle Mar 16 '19 at 07:24