Some sentence.... \shortstack[]{a\\b\\c} it produces like
a b Some sentence.... c
But I would like to produce something like this
a Some Sentence... b c
I want to align the "Some sentence....." with be instead of c.
Some sentence.... \shortstack[]{a\\b\\c} it produces like
a b Some sentence.... c
But I would like to produce something like this
a Some Sentence... b c
I want to align the "Some sentence....." with be instead of c.
A matrix perhaps:
Some sentence.... $\matrix{ a \cr b \cr c }$
\bye
\begin{matrix}...\end{matrix} within $...$, not outside math mode, then morbusg's suggestion works. (Without amsmath it works in original syntax.)
– Stefan Kottwitz
Dec 12 '10 at 20:53
This is the error I got
Missing } inserted.
Some sentence.... $\begin{matrix} a \\ b \\ c \end{matrix}$. (It works like all the other environments, pairing a \begin{envname} with and \end{envname}.)
– Antal Spector-Zabusky
Dec 12 '10 at 22:55