I am writing a letter that looks like
\documentstyle[11pt]{letter}
\signature{Janet Chen \\ Stanford University Mathematical Organization}
...
The "Stanford University Mathematical Organization" part in the signature
always gets broken into two lines; is there a way to prevent this?
Thanks,
Janet
I'd rather use \mbox - unless you want that frame you get with \fbox...
Greetings, Thomas
--
Thomas Lotze
T.L...@tpi.uni-jena.<CUT-IT>.de - thomas.lotze@gmx.<CUT-IT>.net
\signature{Janet Chen \\ \mbox{Stanford University Mathematical
Organization}}
should work. But have a look at overfull hboxes... (which is "text
lines too long to fit on a single paper line")
Axel.
Sent via Deja.com http://www.deja.com/
Before you buy.
>I am writing a letter that looks like
>
>\documentstyle[11pt]{letter}
>\signature{Janet Chen \\ Stanford University Mathematical Organization}
>...
>
>The "Stanford University Mathematical Organization" part in the signature
>always gets broken into two lines; is there a way to prevent this?
The \closing command puts the contents declared in \signature in a
\parbox whose width is 0.5\textwidth because that \parbox is indented by
0.5\textwidth. Keeping all of "Stanford University Mathematical
Organization" on the same line will cause it to overflow into the margin.
There are a number of solutions:
1. Use \signature{Janet Chen \\ \rlap{Stanford ...}} if You don't mind
the line extending beyond the margin.
2. Do the following:
\setlength{\longindentation}{0.35} % default is 0.5\textwidth
\setlength{\indentedwidth}{\textwidth}
\addtolength{\indentedwidth}{-\longindentation}
3. Increase \textwidth:
\addtolength{\oddsidemargin}{-50pt} % line was 49pt too long
\addtolength{\textwidth}{100pt}
% must recalculated the following
\setlength{\longindentation}{0.5\textwidth}
\setlength{\indentedwidth}{\textwidth}
\addtolength{\indentedwidth}{-\longindentation}
Dewey Yin
ddw...@sunwise.uwaterloo.ca