samcarter

Results 194 comments of samcarter

@dbitouze Completely unrelated to the problem you observe and just to make sure you are aware of the possibility to use various overlay specifications for `\item` directly: ``` \documentclass{beamer} \setbeamercovered{dynamic}...

Related: `bidi` now has extensive support for RTL in beamer, see this talk from the TUG22 conference https://www.youtube.com/watch?v=C_1G7IltJYs

As a workaround you can shift all transdurations by 1 (the last transduration will get lost): ``` \documentclass{beamer} %\setbeameroption{show notes} \setbeameroption{show notes on second screen=right} %\setbeameroption{show only notes} \begin{document} \maketitle...

Notes to self: - the problem already occurred in TL2014, so while probably related to #776, not exactly the same - the problem really seem to be the note pages,...

Adding custom modes is not the problem: ``` \documentclass{beamer} \makeatletter \gdef\beamer@currentmode{foo} % comment/uncomment this line \makeatother \begin{document} \begin{frame} abc \only{test} \end{frame} \end{document} ``` Just trying to add them as documentclass...

For the use-case decribed in the question, about creating two different versions of the *same* mode, I would suggest the `beameraudience` package: ``` \documentclass[handout]{beamer} \usepackage[ audience=exthandout ]{beameraudience} \begin{document} \begin{frame} abc...

As a workaround one can modify the colours of all the blocks individually like this: ``` \documentclass{beamer} % block \setbeamercolor{block title}{fg=black,bg=green!50!black} \setbeamercolor{block body}{fg=green!50!black,bg=green!50!black!30!white} % alertblock \setbeamercolor{block title alerted}{fg=black,bg=green!50!white} \setbeamercolor{block body...

I think this is the same situation as https://tex.stackexchange.com/a/478920 ``` \documentclass{beamer} \usepackage[utf8]{inputenc} \usepackage[UKenglish]{babel} \usepackage[default]{lato} \usepackage{eulervm} \usefonttheme[onlymath]{serif} \DeclareMathOperator{\Rey}{Re} \AtBeginDocument{\SetSymbolFont{operators}{normal}{U}{zeur}{m}{n}} \begin{document} \begin{frame} \begin{block}{In block} \begin{equation*} x + y = z Re \end{equation*}...

@thbtppl well, it works seamlessly as long as the default font is used :) However more seriously, I don't know enough about fonts to judge this, but the advantage I...

@elecprog unrelated to your problem, but please don't use two `.5\textwidth` besides each other. This does not take into account the inter-column space and thus the columns will protrude into...