[Tex/LaTex] Error Undefined control sequence. \end{frame} in the beamer

beamer

I don't know what is wrong in code.

\begin{frame}{Introdução}
\justifying
O espalhamento elástico da luz é classificado em dois tipos, a depender do tamanho da partícula espalhadora:

\begin{itemize}
    \begin{block}
        \item espalhamento Mie: 
        \begin{itemize}
            \subitem dimensões das partículas espalhadoras são da mesma ordem ou maiores que o comprimento de onda da
            luz;
        \end{itemize}
    \end{block}
    \begin{block}
        \item espalhamento Rayleigh:
        \begin{itemize}
            \subitem dimensões das partículas espalhadoras são muito menores que o comprimento de onda da luz;
        \end{itemize}
    \end{block}
    \end{itemize}

          \end{frame}

Best Answer

thanks to @Eric Scöerg.

In the block environment, the heading of the argument block is mandatory(Forced).

% def in: beamerbaselocalstructure.sty

\newenvironment<>{block}[1]{%
    \begin{actionenv}#2%
      \def\insertblocktitle{#1}%
      \par%
      \usebeamertemplate{block begin}}
    {\par%
      \usebeamertemplate{block end}%
    \end{actionenv}}

Minimal code:

\documentclass{beamer}

\begin{document}
\begin{frame}

\begin{block}{}
text
\end{block}

\end{frame}
\end{document}

Your file:

\documentclass{beamer}
\usepackage{ragged2e}% for \justifying

\usetheme{Warsaw}

\begin{document}


\begin{frame}{Introdução}
\justifying
O espalhamento elástico da luz é classificado em dois tipos, a depender do tamanho da partícula espalhadora:

 \begin{block}{}
\begin{itemize}
\item espalhamento Mie: 
\begin{itemize}
\item dimensões das partículas espalhadoras são da mesma ordem ou maiores que o comprimento de onda da luz;
\end{itemize}
\end{itemize}
\end{block}

\begin{block}{title}
\begin{itemize}
\item espalhamento Rayleigh:
\begin{itemize}
\item dimensões das partículas espalhadoras são muito menores que o comprimento de onda da luz;
\end{itemize}
\end{itemize}
\end{block}

\end{frame}


\end{document}

Output:

enter image description here

See LaTeX/List Structures And Beamer theme gallery.