Document ClassesBeamer: how to surround frames with a border in article md.?

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
pfroehlich
Posts: 3
Joined: Thu Sep 11, 2008 5:47 pm

Beamer: how to surround frames with a border in article md.?

Post by pfroehlich »

Hi,

I use the beamer class to generate lecture slides and a handout document from the same source. Handouts are prepared with article mode.

The frame template can manipulated in article mode by
\setbeamertemplate{frame begin}
and
\setbeamerteampalte{frame end}

I'd like to make the frame appear with a solid black border in the handout (but not use \includeslide which brings in unnecessary navigations aids etc.). I've been trying something like \fbox{\begin{minipage} for frame begin and \end{minipage}} for frame end, but can't get it to work.

Thank your very much for any suggestions!

Regards
Peter

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics
jrummel
Posts: 1
Joined: Mon Jul 06, 2009 11:38 pm

Re: Beamer: how to surround frames with a border in article md.?

Post by jrummel »

Peter: Did you ever get an answer to this question? I think I would like to do the same thing - have the slides set off with some marking so that the "notes" text stands out from the slides a bit more.

--jeff.
rlridenour
Posts: 1
Joined: Fri Jul 05, 2024 3:49 pm

Beamer: how to surround frames with a border in article md.?

Post by rlridenour »

I know it's 15 years late, but in case anyone stumbles onto this, here's what I do. Add these lines to the beamer article preamble:

\usepackage{tcolorbox}

\mode<article>{\setbeamertemplate{frame begin}{\begin{tcolorbox}[colback=white, colframe=gray,]} \setbeamertemplate{frame end}{\end{tcolorbox}}}
Post Reply