Re: create white box (multiple lines) which adapts to the text width?
Otfried Cheong <[email protected]>
| Newsgroups | gmane.comp.graphics.ipe.general |
|---|---|
| Message-ID | <[email protected]> |
On 10/26/2011 08:16 PM, M wrote:
> When I place
> \colorbox{white}{text \par test}
> in a label, it is already pretty close to what I need - I just do not manage
> to get the linebreak.
What about
\colorbox{white}{\begin{minipage}{\textwidth}
text \par \text
\end{minipage}}
Inside a paragraph object, \textwidth is automatically the width you
assigned to the paragraph object.
Otfried