[Tex/LaTex] Change itemize symbol in a Beamer note

beameritemize

I'd like to change the symbols used for itemize lists inside beamer notes. Setting for example \setbeamertemplate{itemize item}[triangle] affects only my itemize lists outside of notes (besides the styles for those outside are different than for those in notes).

How can I change the symbols used for itemize lists inside notes?

Best Answer

You could include the following commands in the preamble:

\AtBeginNote{\setbeamertemplate{itemize item}[triangle] \par}
\AtEndNote{\par}

(The \par commands are there to make sure that there's no unwanted run-in from the preceding text into the note text, and vice versa.)