I have a document with some problems in the positions of the last images. I copied the code here and after that, I copy the warnings that I get:
\documentclass[journal]{IEEEtran}
%\usepackage{cite}
\usepackage{graphicx}
%\usepackage{caption}
\usepackage{subcaption}
\usepackage{epstopdf}
\usepackage[cmex10]{amsmath}
%\usepackage{footnote}
%\usepackage{setspace}
%\usepackage[framemethod=tikz]{mdframed}
\usepackage{upquote}
\begin{document}
\IEEEpeerreviewmaketitle
\section{Introduction}
\IEEEPARstart whatever
whatever
\begin{figure}[ht]
\centering
\includegraphics[width=75mm]{uno.eps}
\caption{uno (5 paths, length 31 m-sequence)
}
\label{fig:uno}
\end{figure}
text text text
\begin{figure}[ht]
\centering
\includegraphics[width=75mm]{dos.eps}
\caption{dos
}
\label{fig:dos}
\end{figure}
text text text:
\begin{figure}[ht]
\centering
\includegraphics[width=75mm]{tres.eps}
\caption{tres
}
\label{fig:tres}
\end{figure}
text text:
\begin{figure}[ht]
\centering
\includegraphics[width=75mm]{cuatro.eps}
\caption{cuatro
}
\label{fig:cuatro}
\end{figure}
text text text:
\begin{figure}[ht]
\centering
\includegraphics[width=75mm]{cinco.eps}
\caption{cinco
}
\label{fig:cinco}
\end{figure}
\end{document}
This is the warning:
LaTeX Warning: 'h' float specifier changed to 'ht'
Please, let me know if you need more details. Thank you!
has specifier. – Torbjørn T. Jul 23 '15 at 11:39figureenvironment does. It is a floating environment, meaning that LaTeX will move it around to avoid just such bad page breaks, that would leave you with a lot of extra whitespace at the bottom of a page. – Torbjørn T. Jul 23 '15 at 11:51figure~\ref{fig:uno} shows ...) to refer to the figures. There are several ways of restricting this though, see Keeping tables/figures close to where they are mentioned. For example as mentioned in this answer you can add\usepackage{float}and useHas the float specifier, that disables floating. Another option is to not use a float at all, see for example this question. – Torbjørn T. Jul 23 '15 at 12:08