On Mon, Aug 26, 2019 at 10:25 AM Fabrice Couvreur <fabrice1.couvreur@gmail.com> wrote:
Hello,
How to make a frame with an offset shadow as the attached picture
? The text inside the frame is a variable.
Thank you.
Fabrice


frame.png

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Hi,

maybe something like this could work for you:

\startuseMPgraphic{framewithshadow}
path p;
p:=origin--(OverlayWidth,0)--(OverlayWidth,OverlayHeight)--(0,OverlayHeight)--cycle;
fill p shifted (2,-2);
fill p withcolor 0.7white;
draw p;
setbounds currentpicture to p;
\stopuseMPgraphic

\defineoverlay[framewithshadow][\useMPgraphic{framewithshadow}]

\starttext
\framed[background=framewithshadow,offset=4bp]{\bf DM no 7 : Dérivation}
\stoptext

/Mikael