如何让“内联” parbox 的顶行与其前面的文本对齐?

如何让“内联” parbox 的顶行与其前面的文本对齐?

我有这个文件:

\documentclass{article}
\begin{document}
$\rightarrow$ \parbox{6cm}{The quick brown fox jumped over the lazy dog. You've eaten pepper? Now drink juice!}
\end{document}

其结果如下:

在此处输入图片描述

我希望箭头与“The quick brown fox”对齐,就好像 parbox 的第一行只是在 之后继续外部段落\rightarrow。 这样做的惯用方法是什么?

答案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您就会得到您想要的。

相关内容