Re: files in attachment
 
Why is the (local) interline space (set to 30pt or 2ex) so small compared to the frame's local (switched to 38pt) bodyfont ?
 
At first I thought it was related to \setupbodyfont but \setupbodyfont[38pt] doesn't make a difference.
 
How do you get the (local) interline spacing (pt or ex) in proportion to the local (switched to) bodyfont ?
 
Alan

On Sat, Jan 3, 2009 at 7:29 PM, Wolfgang Schuster <schuster.wolfgang@googlemail.com> wrote:

Am 03.01.2009 um 18:12 schrieb Alan STONE:


Hi,

How do you get a uniform line spacing in the following frames where it's not the case ?

\setuplayout[header=0pt,footer=0pt]

\def\myFrameSetupA{\setupframed[width=\textwidth,frame=on,top=\vss,bottom=\vss,align=middle]}
\def\myFrameSetupB{\setupframed[width=\textwidth,frame=on,location=middle,align=middle,offset=15pt]}

\def\myFrameTextA{Text\\In A\\Frame}
\def\myFrameTextB{Text\blank[medium]In A\blank[medium]Frame}


Add a \par after the last line.

\def\myFrameTextA{Text\\In A\\Frame\par}
\def\myFrameTextB{Text\blank[medium]In A\blank[medium]Frame\par}

Wolfgang