samcarter
samcarter
You can avoid the warning if you give more room for the navigation, but personally I would rather use another font than cluttering half the page with navigation... ``` \documentclass{beamer}...
and a somewhat related discussion: https://github.com/latex3/mathtools/issues/13
With `\part` only the navigation from the current part is shown in the sidebar and subsection 2.2 belongs to the previous part. As a workaround you could repeat the subsection...
You can avoid retyping the subsection name by using something like ``` \part{} \addtocounter{subsection}{-1} \edef\foo{\subsecname} \subsection{\foo} ``` However the problem with automating is that at the time the part command...
Combining `helvet` with the professionalfonts theme will alter the output from sans serif to serif math ``` \documentclass{beamer} \usepackage{helvet} \usepackage{siunitx} \usefonttheme{professionalfonts} \begin{document} \begin{frame} $\Omega abc$ %\unit{\ohm} %\DeclareSIUnit{\ohm}{\text{\ensuremath{\Omega}}} %\unit{\ohm} \end{frame} \end{document}...
As a workaround, you could use ``` \documentclass{beamer} \setbeameroption{show notes on second screen} \makeatletter \patchcmd{\beamer@setupnote}{\begin{enumerate}}{\begin{itemize}}{}{} \patchcmd{\beamer@setupnote}{\end{enumerate}}{\end{itemize}}{}{} \makeatother \begin{document} \begin{frame} \only{1} \only{2} \note[item]{1} \note[item]{2} \end{frame} \end{document} ```
Note to self: Minimal reproducible example ``` \documentclass{beamer} \setbeameroption{show notes on second screen} \begin{document} \begin{frame} \only{2} \note{ \only{2} } \end{frame} \end{document} ```
This problem started somewhere between TL17 and TL18
The problem seems to have started in a5b601498b51f2a17b327e230e928293349ebf7d
This seems to work, but I don't know why this decreasing/increasing of the counter was added in the first place ``` \documentclass{beamer} %\setbeameroption{show notes} \setbeameroption{show notes on second screen=right} %\setbeameroption{show...