ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Extra shift with ornament
@ 2021-12-17  5:40 Mikael Sundqvist via ntg-context
  2021-12-17  9:05 ` Hans Hagen via ntg-context
  0 siblings, 1 reply; 3+ messages in thread
From: Mikael Sundqvist via ntg-context @ 2021-12-17  5:40 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Mikael Sundqvist

Hi,

When using an ornament on a \startframedtext \stoptextframed the frame
is shifted just a little bit. Can one get rid of that shift? MWE
below.

/Mikael

\defineornament[MyOrn][
  corner={right,bottom},
  location={right,top},
  alternative=b,
  ][
  frame=off,
  ]

\showframe

\starttext
\startframedtext[width=\textwidth,height=2cm]foo\stopframedtext

\MyOrn{bar}{\startframedtext[width=\textwidth,height=2cm]foo\stopframedtext}
\stoptext
___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Extra shift with ornament
  2021-12-17  5:40 Extra shift with ornament Mikael Sundqvist via ntg-context
@ 2021-12-17  9:05 ` Hans Hagen via ntg-context
  2021-12-17 10:08   ` Mikael Sundqvist via ntg-context
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen via ntg-context @ 2021-12-17  9:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Hans Hagen, Mikael Sundqvist

On 12/17/2021 6:40 AM, Mikael Sundqvist via ntg-context wrote:
> Hi,
> 
> When using an ornament on a \startframedtext \stoptextframed the frame
> is shifted just a little bit. Can one get rid of that shift? MWE
> below.
> 
> /Mikael
> 
> \defineornament[MyOrn][
>    corner={right,bottom},
>    location={right,top},
>    alternative=b,
>    ][
>    frame=off,
>    ]
> 
> \showframe
> 
> \starttext
> \startframedtext[width=\textwidth,height=2cm]foo\stopframedtext
> 
> \MyOrn{bar}{\startframedtext[width=\textwidth,height=2cm]foo\stopframedtext}
> \stoptext
framedtext is more for text flow so you get some interferences

\MyOrn
   {bar}
   {\framed
     [offset=overlay,
      align=normal,
      width=\textwidth,
      height=2cm]{foo}}

works but maybe you want this instead:

\defineoverlay
   [MyOrn]
   [\MyOrn
     {\framedtextparameter{MyTitle}}
     {\novrule width \overlaywidth height \overlayheight}]

\defineframedtext
   [MyText]
   [background=MyOrn,width=\textwidth,height=2cm]

\startMyText[MyTitle={oeps}]
    foo
\stopMyText

Hans


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Extra shift with ornament
  2021-12-17  9:05 ` Hans Hagen via ntg-context
@ 2021-12-17 10:08   ` Mikael Sundqvist via ntg-context
  0 siblings, 0 replies; 3+ messages in thread
From: Mikael Sundqvist via ntg-context @ 2021-12-17 10:08 UTC (permalink / raw)
  To: Hans Hagen; +Cc: Mikael Sundqvist, mailing list for ConTeXt users

On Fri, Dec 17, 2021 at 10:05 AM Hans Hagen <j.hagen@xs4all.nl> wrote:
>
> On 12/17/2021 6:40 AM, Mikael Sundqvist via ntg-context wrote:
> > Hi,
> >
> > When using an ornament on a \startframedtext \stoptextframed the frame
> > is shifted just a little bit. Can one get rid of that shift? MWE
> > below.
> >
> > /Mikael
> >
> > \defineornament[MyOrn][
> >    corner={right,bottom},
> >    location={right,top},
> >    alternative=b,
> >    ][
> >    frame=off,
> >    ]
> >
> > \showframe
> >
> > \starttext
> > \startframedtext[width=\textwidth,height=2cm]foo\stopframedtext
> >
> > \MyOrn{bar}{\startframedtext[width=\textwidth,height=2cm]foo\stopframedtext}
> > \stoptext
> framedtext is more for text flow so you get some interferences
>
> \MyOrn
>    {bar}
>    {\framed
>      [offset=overlay,
>       align=normal,
>       width=\textwidth,
>       height=2cm]{foo}}
>
> works but maybe you want this instead:
>
> \defineoverlay
>    [MyOrn]
>    [\MyOrn
>      {\framedtextparameter{MyTitle}}
>      {\novrule width \overlaywidth height \overlayheight}]
>
> \defineframedtext
>    [MyText]
>    [background=MyOrn,width=\textwidth,height=2cm]
>
> \startMyText[MyTitle={oeps}]
>     foo
> \stopMyText
>
> Hans
>
>
> -----------------------------------------------------------------
>                                            Hans Hagen | PRAGMA ADE
>                Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>         tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
> -----------------------------------------------------------------

Thanks, Hans!

You indeed knew what I wanted.

/Mikael
___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-12-17 10:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-17  5:40 Extra shift with ornament Mikael Sundqvist via ntg-context
2021-12-17  9:05 ` Hans Hagen via ntg-context
2021-12-17 10:08   ` Mikael Sundqvist via ntg-context

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).