I have one input which has text and image.
Here text is quite lengthy which may occupy 2-3 pages. I want output like
- some text on 1st page
- then image on 2nd page
- then rest of text on 3rd page.
Is it possible to do this automatically?
I have one input which has text and image.
Here text is quite lengthy which may occupy 2-3 pages. I want output like
Is it possible to do this automatically?
The standard way of doing this is embedding the image in a floating figure environment and specifying that it should be positioned on a dedicated float-page with the option p. Place this figure environment roughly after the batch of text after which it should appear. In my simple example, you could even put it before the text-generating \lipsum command. If you want to learn more about this topic, we have a great post expertly explaining float positioning in LaTeX: How to influence the position of float environments like figure and table in LaTeX?
\documentclass{article}
\usepackage{lipsum, mwe} % just for demo contents
\begin{document}
\lipsum[1]
\begin{figure}[p]
\centering
\includegraphics{example-image-10x16}
\caption{This is my image}
\end{figure}
\lipsum[1-14]
\end{document}

[p]to[!p]might be necessary. – yo' Jan 11 '13 at 08:29