I am using \begin{framed} ... \end{framed} in my presentation, does anyone know how to make the frame dashed?
Asked
Active
Viewed 3,152 times
5
1 Answers
11
Here a solution with mdframed
\documentclass[english]{beamer}
\usepackage[style=1]{mdframed}[2011/08/22]
\begin{document}
\begin{frame}
\begin{mdframed}[tikzsetting={draw=blue,dashed,line width=2pt,dash pattern = on 10pt off 3pt},linecolor=yellow,backgroundcolor=yellow,outerlinewidth=1pt]
Text Text Text Text Text Text Text Text
\end{mdframed}
\begin{mdframed}[tikzsetting={draw=blue,dashed,line width=2pt,dash pattern = on 10pt off 3pt},linecolor=yellow,backgroundcolor=yellow,outerlinewidth=1pt]
Text Text Text Text Text Text Text Text
Text Text Text Text Text Text Text Text
Text Text Text Text Text Text Text Text
Text Text Text Text Text Text Text Text
\end{mdframed}
\end{frame}
\end{document}
Sorry for the advertising.

EDIT: You can define the special environment in the header with the following code:
\newmdenv[tikzsetting={draw=blue,dashed,line width=2pt,dash pattern = on 10pt off 3pt},%
linecolor=yellow,backgroundcolor=yellow,outerlinewidth=1pt]{beamerframe}
Now you can use the environment as usual.
\begin{beamerframe}
Text Text Text Text Text Text Text Text
\end{beamerframe}
Marco Daniel
- 95,681
-
-
What do you use? TexLive or MikTeX and which version do you have? – Marco Daniel Aug 29 '11 at 17:44
-
If I type
latex -versionin a terminal, it returnsTeX Live 2009/Debian. And I am using Emacs and LaTeX... – SoftTimur Aug 29 '11 at 19:47 -
THe example works only with Texlive 2011 and the newest version of
mdframed. Forbeameryou can use a solution of the threat which is linked by doncherry in the comment above. – Marco Daniel Aug 29 '11 at 19:57
framed, this doesn't seem to be a feature natively supported by the package. – doncherry Aug 29 '11 at 17:25