I have included the following codes in the \frontmatter.
Code: Select all
\numberwithin{equation}{section}
\numberwithin{figure}{section}
This is a short code demonstrating this problem. It shows "Figure 1.1: Figure One" in Section 1.1 and "Figure 1.1: Figure Two" in Section 1.2.
Code: Select all
\documentclass{memoir}
\usepackage{graphicx}
\usepackage{amsmath, amssymb, amsthm}
\numberwithin{figure}{section}
\begin{document}
\mainmatter
\chapter{Chapter One}
\section{Section One}
\begin{figure}[h]
Figure One
\caption{Figure One}
\end{figure}
\section{Section Two}
\begin{figure}[h]
Figure Two
\caption{Figure Two}
\end{figure}
\end{document}
Code: Select all
renewcommand{\thefigure}{\chapter.\section.\arabic{figure}}