Using notes with fullframegraphics
Thanks for building this and making it publicly available! I love it and use it a lot!
The only thing missing for me and I could not get it to work is to add notes to the slide. Any ideas what I need to do for that?
Thanks!
What did you try? I haven't used notes before, but it should be as simple as modifying the definition of
\newcommand{\fullframegraphic}[2][]{%
\begin{frame}[plain]%
...
\end{frame}%
}
to a 3-argument command \newcommand{\fullframegraphic}[3]... and place the %1, %2, %3 placeholders accordingly to your preferred argument order, together with any markup that you need in/around the the frame.
If the command syntax becomes to cumbersome, you could look into what custom environment definitions could do for you. In a nutshell, you can split the contents of your custom markup in two parts, which then replace a
\begin{fullframegraphicwithnotes}{path/to/image}
Place for notes here
\end{fullframegraphicwithnotes}
HTH