4

I have this set of equations that I need to split into two pages. I'm working on beamer. I tried \allowdisplaybreaks but it didn't work:

\allowdisplaybreaks
\begin{frame}
  \frametitle{Problem GENERALMODEL}
  \tiny
  \begin{subequations}
    \begin{align}
      \label{generalmodel}
      \underset{\substack{z_v \\ c_{lip}, o_{lip}}}{\text{minimize}} & F(z)\\
      \text{subject to }   & z_v = y \\
      & blah \\
      & blah \\
      & blah \\
      & blah \\
      % Break around here
      & blah \\
      & blah \\
      & blah \\
      & blah \\
      & blah \\
    \end{align}
\end{subequations}
\end{frame}

Can anyone suggest any ideas? Thanks.

1 Answers1

5

try:

\documentclass{beamer}
\usepackage{amsmath}
\allowdisplaybreaks

\begin{document}
    \begin{frame}[allowframebreaks]  % <---
\frametitle{Problem GENERAL MODEL}
\Large
\begin{subequations}
\begin{align}\label{generalmodel}
  \underset{\substack{z_v \\ c_{lip}, o_{lip}}}{\text{minimize}} & F(z)\\
  \text{subject to }   & z_v = y \\
  & blah \\
  & blah \\
  & blah \\
  & blah \\
  & blah \\
  & blah \\
  & blah\ 1i \\
  % Break around here
  & blah \\
  & blah \\
  & blah \\
  & blah \\
  & blah \\
  & blah 
\end{align}
\end{subequations}
\end{frame}
\end{document}

enter image description here

is this what you looking for?

Zarko
  • 296,517