我想增加投影仪阴影的重量和颜色。
在 Beamer 中创建带有阴影的块的代码是:
\begin{beamercolorbox}[rounded=true,shadow=true]{title}
blah
\end{beamercolorbox}%
我基本上是在寻找一种获得更多阴影的方法。
谢谢。
答案1
彩色盒子非常适合制作这种盒子。它包括一个库(skins
),其中引入了命令
shadow={<xshift>}{<yshift>}{<offset>}{<options>}
向阴影堆栈添加新阴影。此阴影遵循轮廓,
tcolorbox
但偏移和。该值是与框架轮廓的距离值。正值会缩小阴影,负值会放大阴影。阴影沿给定的 TikZ 的 TikZ 路径填充。
beamer
下一个代码是根据 tcolorbox 用户指南中的示例改编的(更具风格)。
\documentclass{beamer}
\usepackage[skins]{tcolorbox}
\tcbset{enhanced,colback=red!5!white,
colframe=red!75!black,fonttitle=\bfseries,bottomrule=0pt,leftrule=0pt,rightrule=0pt}
\begin{document}
\begin{frame}
\begin{tcolorbox}[title=My own shadow,
shadow={2mm}{-1mm}{0mm}{black!50!white}]
This is a tcolorbox.
\end{tcolorbox}
\par\bigskip
\begin{tcolorbox}[title=Another shadow,
shadow={-1mm}{-2mm}{0mm}{fill=blue,
opacity=0.5}]
This is a tcolorbox.
\end{tcolorbox}
\par\bigskip
\begin{tcolorbox}[title=Double shadow,
shadow={-1.5mm}{-1.5mm}{0mm}{fill=blue,
opacity=0.25},
shadow={1.5mm}{-1.5mm}{0mm}{fill=red,
opacity=0.25}]
This is a tcolorbox.
\end{tcolorbox}
\par\bigskip
\begin{tcolorbox}[title=Far shadow,
shadow={5.5mm}{-3.5mm}{2mm}{fill=black,
opacity=0.25}]
This is a tcolorbox.
\end{tcolorbox}
\end{frame}
\end{document}