samcarter
samcarter
@josephwright so we probably have to distinguish between the cases where only notes are shown and where notes are shown together with the slides
You can avoid the problem with ``` % !TeX TS-program = lualatex \documentclass{beamer} \usepackage{fontspec} \setbeamercovered{transparent=0} \begin{document} \begin{frame}{Test} \begin{itemize}[] \item This will appear on the first slide. \item This will appear...
yes, but that's what the code in your question was using. For other transparencies, you can overlay it with a semi-transparent shape, e.g. https://tex.stackexchange.com/a/354033/36296 ``` % !TeX TS-program = lualatex...
Why don't you want the professionalfonts theme if you want to use a professional font?
The situation for mtpro and mtpro2 is different. In the default sans serif mode, beamers font replacement is **not** switched off for them. Doing the same for stix2 would result...
As a workaround to show a toc for all parts: ``` \documentclass{beamer} \makeatletter \AtBeginPart{% \addtocontents{parttoc}{\protect\beamer@partintoc{\the\c@part}{\beamer@partnameshort}{\the\c@page}}% } \newcommand{\parttableofcontents}{\@starttoc{parttoc}} \newcommand{\beamer@partintoc}[3]{#2\par\tableofcontents[part=#1]\par} \makeatother \begin{document} \begin{frame} \parttableofcontents \end{frame} \part{part1} \section{section name1} \begin{frame} abc \end{frame} \part{part2}...
Sorry for that! As a workaround, you could use ``` \ProvidesClass{notetest}[testversion] \LoadClass{beamer} \DeclareOption{lecture}{ % % No notes % Some new commands go here } \newif\ifnotes \DeclareOption{notes}{ % % Notes %...
Personally, I would use a minipage of fixed height instead of overprint. This is the most powerful tool to get the alignment you want ``` \documentclass{beamer} \usepackage{mwe} \begin{document} \begin{frame} \hrulefill{}...
The spurious comma is added by beamer in https://github.com/josephwright/beamer/blob/master/base/beamerbaselocalstructure.sty#L493 (the `\bbx@tempa` adds it) (no solution, just to locate the problem)
related question: https://tex.stackexchange.com/q/160404/36296