ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Metapost: I only need a little bit padding
@ 2014-04-05 13:48 Jan Heinen
  2014-04-05 14:34 ` Peter Rolf
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Heinen @ 2014-04-05 13:48 UTC (permalink / raw)
  To: ntg-context

I want to have a rectangle (box) with a word in it (i.g. 
"Headline). And all should be rotated 90°.
Below I found a solution I am quite happy with. How can I 
get a little bit more padding around the text in the box?

You can copy the example to http://live.contextgarden.net/  
- it is running:

\startuseMPgraphic{rotatedHeadline}
% Text "Headline" in a box which is rotated
draw btex {\strut\tfd Headline} etex;

% rectangle with rounded corners
path p;
p := llcorner currentpicture+(0mm,3mm){down}..{right}llcorner
currentpicture+(3mm,0mm)--
lrcorner currentpicture+(-3mm,0mm){right}..{up}lrcorner
currentpicture+(0mm,3mm)--
urcorner currentpicture+(0mm,-3mm){up}..{left}urcorner
currentpicture+(-3mm,0mm)--
ulcorner currentpicture+(3mm,0mm){left}..{down}ulcorner
currentpicture+(0mm,-3mm)--cycle;
pickup pencircle scaled 0.5pt;
clip currentpicture to p;
draw p;
currentpicture := currentpicture rotated 90;
\stopuseMPgraphic


\starttext
\useMPgraphic{rotatedHeadline}
\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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Metapost: I only need a little bit padding
  2014-04-05 13:48 Metapost: I only need a little bit padding Jan Heinen
@ 2014-04-05 14:34 ` Peter Rolf
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Rolf @ 2014-04-05 14:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi Jan,

Am 05.04.2014 15:48, schrieb Jan Heinen:
> \startuseMPgraphic{rotatedHeadline}
> % Text "Headline" in a box which is rotated
> draw btex {\strut\tfd Headline} etex;

setbounds currentpicture to boundingbox currentpicture enlarged 2mm;

The following code is based on the boundingbox, so just make it bigger
beforehand.

> 
> % rectangle with rounded corners
> path p;
> p := llcorner currentpicture+(0mm,3mm){down}..{right}llcorner
> currentpicture+(3mm,0mm)--
> lrcorner currentpicture+(-3mm,0mm){right}..{up}lrcorner
> currentpicture+(0mm,3mm)--
> urcorner currentpicture+(0mm,-3mm){up}..{left}urcorner
> currentpicture+(-3mm,0mm)--
> ulcorner currentpicture+(3mm,0mm){left}..{down}ulcorner
> currentpicture+(0mm,-3mm)--cycle;
> pickup pencircle scaled 0.5pt;
> clip currentpicture to p;
> draw p;
> currentpicture := currentpicture rotated 90;
> \stopuseMPgraphic
> 
> 
> \starttext
> \useMPgraphic{rotatedHeadline}
> \stoptext

Best wishes,  Peter
___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

end of thread, other threads:[~2014-04-05 14:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-05 13:48 Metapost: I only need a little bit padding Jan Heinen
2014-04-05 14:34 ` Peter Rolf

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).