Framed

From Wiki
Revision as of 02:44, 3 November 2006 by Adityam (talk | contribs) (→‎Preventing hyphenation: autowidth=force)
Jump to navigation Jump to search

TODO: the page devoted to all kinds of framed stuff (See: To-Do List)


Preventing hyphenation

One can prevent hypenation inside a frame by passing nothypenated option to align. It is also a good idea to add verytolerant and strectch options.

\startcombination[2*1]
{\framed
   [width=5cm,
    align={flushleft}]
   {\input ward \endgraf}}
{flushleft}
{\framed
   [width=5cm,
    align={flushleft,nothyphenated,verytolerant}] % maybe also stretch
   {\input ward \endgraf}}
{flushleft,\crlf nothypenated, \crlf verytolerant}
\stopcombination

Specify the width no longer than needed

I want to specify the maximum width of a frame. If the size of the 

box is smaller than the maximum width, I want a tight box. This can be done using the autowidth=force</cmd> option to framed.

\defineframed
   [tightframed][width=5cm,autowidth=force,align=middle]

\tightframed{Small}

\tightframed{A really really long line that is split at 5cm}

Similar topics