我想在演示文稿中为一些图形添加阴影beamer
。到目前为止,我已经找到了fancybox
包。但是,它\shadowbox{}
看起来相当老式:
\documentclass{beamer}
\usepackage{fancybox}
\begin{document}
\begin{frame}
\begin{figure}
\shadowbox{\includegraphics[width= 0.8\textheight]{pic/test.jpg}}
\end{figure}
\end{frame}
\end{document}
我想知道是否有可能创建更平滑的阴影,beamer
因为它们可以在 Powerpoint 中像这样创建:
答案1
包装内tcolorbox
有beamer
带阴影的盒子选项,可用于属于您的情况:
图像位于tcolorbox
:
\documentclass{beamer}
\usepackage{graphicx}
\usepackage[many]{tcolorbox}
\begin{document}
\begin{frame}
\centering
\begin{tcolorbox}[beamer,
width=0.8\textheight,
arc=0pt,
boxsep=0pt,
left=0pt,right=0pt,top=0pt,bottom=0pt,
]
\includegraphics[width=\linewidth]{example-image}
\end{tcolorbox}
\end{frame}
\end{document}