This is a followup to this.
Code:
\documentclass[12pt]{beamer}
\usepackage{amsmath}
\usepackage{pgfpages}
\pgfpagesuselayout{resize to}[a4paper,landscape]
%\pgfpagesuselayout{2 on 1}[a4paper]
%\usetheme{Singapore}
\usetheme{Boadilla}
\usepackage{bm}
%\usefonttheme[?options?]{structuresmallcapsserif}
%\definecolor{beamer@blendedblue}{RGB}{203,140,55} % changed this
\definecolor{beamer@blendedblue}{RGB}{0,102,102} % changed this
%\definecolor{beamer@blendedblue}{RGB}{0,153,153} % changed this
\usefonttheme{professionalfonts} %To get the accents aligned correctly, albeit in Computer Modern Roman
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{blocks}[rounded][shadow=true]
\begin{document}
%-----------------------------------------------------------------New slide ----------------------------------------------------%
\begin{frame}{Sample}
\setcounter{equation}{10}
\begin{subequations}%\label{freeze}
Hi:
\begin{align}
a + b &= c\\
d + e &= f
\end{align}
Hi
\begin{equation}
a = 1
\end{equation}
\end{subequations}
\end{frame}
%-----------------------------------------------------------------New slide ----------------------------------------------------%
\begin{frame}{Sample}
\begin{subequations}%\label{freeze}
Hi:
\begin{align}
a + b &= c\\
d + e &= f
\end{align}
Hi
\begin{equation}
a = 1
\end{equation}
\end{subequations}
\end{frame}
\end{document}
Output:
Right now, the number increments and the letters start over. I want the equation labels in the second slide to be (11d), (11e), and (11f). How to do this?




subequationsgroup and use\intertext. – barbara beeton Jun 11 '20 at 23:59