Hi and welcome to the forum.
By default, page numbers and headings are placed in headers when using memoir class, except for the first page of a chapter on which the page number is placed in the footer, centered. I don't think it has anything to do with figures. You can change that by (re)defining page styles either using memoir's own mechanism (as in the example below), or using
fancyhdr package. But, since you haven't provided a full compilable
Minimal Working Example (MWE), we can only be guessing if page style was the problem. Here's a simple example to get you going. If you need anything else, ask. Also, you might search the forum for instructions how to change page styles as well as memoir's (chapter 7) and/or fancyhdr's documentation. Happy LaTeXing
Code: Select all
\documentclass{memoir}
\usepackage[demo]{graphicx}% “Demo” option is for testing only; remove it to include real pictures
\makepagestyle{main}% A new page style for “normal” pages
\makeoddfoot{main}{}{\thepage}{}% Footer for odd pages
\makeevenfoot{main}{}{\thepage}{}% Footer for even pages
\pagestyle{main}% Activate the style
\begin{document}
\chapter{A chapter}
\section{A section}
Some example text\clearpage
Some example text\clearpage
Some example text\clearpage
\begin{figure}
\centering
\includegraphics[width=110mm]{somethin.eps}
\caption{somethin something}
\label{fig:somethin}
\end{figure}
\end{document}