samcarter

Results 194 comments of samcarter

(maybe I need a second github account - all this talking to myself makes me sound crazy)

I'm wondering if using a modified bibliography environment from the numeric style wouldn't be a better approach, e.g. https://github.com/samcarter/beamer/commit/66205aa0c07c682beaff6cbb32360beb233cc70e @moewew What do you think?

@moewew Thank you so much for your analysis and all this information!

That's a known side effect of using pgfpages. You can avoid the problem by placing the notes on the right or below the slides.

@dbitouze > AFAICS, the drawback of environments defined by `\newenvironment{slide}[1][]{\begin{frame}[fragile,environment=slide]}{\end{frame}}` is that they can not be resumed with `\againframe` This works if you actually pass the optional argument on to...

If at all possible, I would avoid changing the hypersetup for beamer. This would influence all kinds of elements like navigation symbols, head- and footlines ... Why not underline the...

How about defining a new command instead of `\href` that underlines them?

Could you make a MWE? Maybe one can find some workaround?

You could add the underline to the definition of the `\ref...*` commands: ``` \documentclass{beamer} \usepackage{tcolorbox} \tcbuselibrary{documentation} \makeatletter \ExplSyntaxOn \DeclareDocumentCommand\tcb@ref@doc{msm}{% \hyperref[#1:#3]{\ttfamily\underline{\ref*{#1:#3}}% \IfBooleanTF{#2}{}{% \ifnum\getpagerefnumber{#1:#3}=\thepage% \else% \textsuperscript{\ding{213}\,\kvtcb@text@pageshort\,\pageref*{#1:#3}}% \fi}}% } \ExplSyntaxOff \makeatother \begin{document} \begin{frame}...

A quick workaround: ``` \documentclass{beamer} \setbeamercovered{transparent} \newenvironment{myalertenv}{\only{\setbeamercolor{itemize \beameritemnestingprefix item}{fg=alerted text.fg}\color{alerted text.fg}}}{} \begin{document} \begin{frame} \begin{itemize}[] \item item 1 \begin{itemize} \item item1.1 \item item1.2 \end{itemize} \item item2 \end{itemize} \end{frame} \end{document} ``` ![document](https://user-images.githubusercontent.com/43832342/144844360-61eafde2-c1f6-4885-baa2-03c3cd3e755f.gif)