[壊れやすい] メモを入手するにはどうすればいいですか?

[壊れやすい] メモを入手するにはどうすればいいですか?

Easylist を使用してスライド ノートにドット ポイントを作成したいと考えています。Easylist はそれに最適です。

そこで私は以下を使用しました:

\documentclass{beamer}
\setbeameroption{show notes}
\usepackage[at]{easylist}
\begin{document}
\begin{frame}[fragile] {What is Domain Adaptation?} 
    \begin{easylist}[itemize]   
        @ \emph{Problem Domain:} An area expertise needed to solve a particular problem
        @@ Neural nets work within a problem domain
        @ What if we could transfer knowledge from one problem domain to another
        @ \emph{Source Domain:} the domain we are transferring ideas from
        @ \emph{Target Domain:} the domain we actually want to solve
    \end{easylist}
    \note{\begin{easylist}[itemize] 
            @ Primates Transfer Knowledge %\footfullcite{braun2010structure}
            @@ After solving one Food box puzzle
            @@ Are much better as solving other food box puzzle that is completely different    
            @ \emph{Source Domain:} Basket Ball
            @ \emph{Target Domain:} Soccer
            @ This does actually work for soccer and basketball 
            %\footfullcite{lopez2009role}
        \end{easylist}}
    \end{frame}
\end{document}

ご覧のとおり、これはメインフレームでは正常に動作しましたが、配布資料フレームでは動作しませんでした。配布資料フレームで動作させるにはどうすればよいですか?

スライド

これを実現する方法は、 のビーマー テンプレートを通常のフレームではなくフレームnote pageを中心に構築するように再定義することだと考えています。fragile

関連情報