Is there a way to force a line break inside a math mode text?
My example:
\[
\underbrace{....}_\text{Some long text that should be multiline}
\]
Trying
\text{Some long text that\\ should be multiline}
Didn't do the trick.
|
Is there a way to force a line break inside a math mode text? My example:
Trying
Didn't do the trick. |
||||
|
You can use the
|
|||
|
|
Example:
|
|||
|
|
|
|||
|
|
|
Another possibility:
|
||||
|
|
|
A simple
|
|||
|
|
\` fails inside\text`. If you look through the code,\textwill insert an\hboxfor the content when in math mode. TeX sets\hboxmaterial in a mode where paragraphs are ignored, so there will never be a break inside the argument of the\textmacro. – Joseph Wright♦ Dec 21 '10 at 13:55