答案1
您可以使用\parbox[t]
选项来实现所需的效果。还有[c]
(默认)和[b]
选项。
代码:
\documentclass{article}
\begin{document}
$\rightarrow$ \parbox[t]{6cm}{The quick brown fox jumped over the lazy dog. You've eaten pepper? Now drink juice!}
\bigskip
$\rightarrow$ \parbox[c]{6cm}{The quick brown fox jumped over the lazy dog. You've eaten pepper? Now drink juice!}
\bigskip
$\rightarrow$ \parbox[b]{6cm}{The quick brown fox jumped over the lazy dog. You've eaten pepper? Now drink juice!}
\end{document}
答案2
只需添加[t]
,\parbox
您就会得到您想要的。