Document Classes ⇒ Beamer: how to surround frames with a border in article md.?
-
- Posts: 3
- Joined: Thu Sep 11, 2008 5:47 pm
Beamer: how to surround frames with a border in article md.?
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Beamer: how to surround frames with a border in article md.?
--jeff.
-
- Posts: 1
- Joined: Fri Jul 05, 2024 3:49 pm
Beamer: how to surround frames with a border in article md.?
\usepackage{tcolorbox}
\mode<article>{\setbeamertemplate{frame begin}{\begin{tcolorbox}[colback=white, colframe=gray,]} \setbeamertemplate{frame end}{\end{tcolorbox}}}