我想知道如何在文本周围添加一个带有灰色阴影和彩色背景的方框。我可以只添加阴影或背景,但不能将两者结合起来。
谢谢。
答案1
由于您似乎是这些丑陋工作的新手(如果不是,请原谅),请有一个好的开始。从开始tcolorbox
。详细信息可以在手册中找到,可以通过texdoc tcolorbox
从命令提示符/终端运行获得。请记住,如果您查看手册,会发现阴影种类繁多。
\documentclass{article}
\usepackage{kantlipsum}
\usepackage[svgnames]{xcolor}
\usepackage[many]{tcolorbox}
\newtcolorbox{mybox}[1][]{
drop shadow southeast,
enhanced,colback=red!5!white,colframe=red!75!black,
#1
}
\newtcolorbox{fancybox}[1][]{
enhanced,drop fuzzy midday shadow,
boxrule=1pt,arc=4pt,boxsep=0pt,
left=.5em,right=.5em,top=1ex,bottom=1ex,
colback=olive,#1
}
\newtcolorbox{myotherbox}[1][]{%nobeforeafter,
enhanced,frame hidden,boxrule=0pt,interior style={top color=green!10!white,
bottom color=green!10!white,middle color=green!50!yellow},
fuzzy halo=3mm with gray,#1}
\begin{document}
\begin{fancybox}
\kant[1]
\end{fancybox}
\bigskip
\begin{mybox}
\kant[2]
\end{mybox}
\bigskip
\begin{myotherbox}
\kant[3]
\end{myotherbox}
\end{document}