So, every time, I try to insert an image, it puts the image at the top of that page or at the top of the next page. However, what if I wanted to insert it where I want it to insert? For example, try the following:
\documentclass[12 pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{textcomp}
\usepackage{wasysym}
\usepackage{amsthm}
\usepackage{array}
\usepackage{calc}
\usepackage{proof}
\usepackage[inline]{asymptote}
\title{Test Document, with default template}
\author{Ahaan S. Rungta}
\date{}
\begin{document}
\maketitle
\pagebreak
Hello, in this lecture, we will prove that $ 2 + 2 = 4 $. So, we use barycentric coordinates, as shown this figure:
\begin{figure}
\centering
\includegraphics{iphoo_logo}
\caption{I don't even need this.}
\end{figure}
\end{document}
Notice what happens; the figure gets inserted at the top of the page. How can I make it appear right where I tell it to appear? Thanks in advance!
\includegraphics[height=<integer>mm]{image_name}. I've arbitrarily used mm as my dimension but other options exist. – LordStryker Oct 29 '13 at 15:47And my concern is something else, anyway. My concern is about the figure going all the way up to the top rather than stay mid-way in the page, where I want it.
– Ahaan S. Rungta Oct 29 '13 at 15:49figureenvironment. See Herbert's answer to the linked question (not the accepted answer) for an example like this. – Alan Munn Oct 29 '13 at 15:53