评论

评论

有多种可能的情况可以得到多线方程,但我正在寻找多线\text{...}元素。例如:

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{equation}
  a^3 + b^3 \neq c^3 \text{ I have discovered a truly marvelous proof of this,\\which this margin is too narrow to contain.}
\end{equation}

\end{document}

有没有办法把这么长的文字分成两行?\\这里不行。

答案1

评论

要为给定大小的文本保留一个框,请使用\parbox宏。

\parbox[position]{width}{text}
  • position(可选):LaTeX 将定位框,使其中心与周围文本对齐。可能的值可以是tb

  • width(强制):指定宽度。宽度需要一个单位,如、、em等...cmex

  • text(可以为空):当然是您的文本。

请记住,框内的多行文本需要适合段落,因此会严重扰乱您的间距!

执行

\documentclass{article}
\pagestyle{empty}
\begin{document}
\begin{equation}
    a^3 + b^3 \neq c^3 \; \parbox{15em}{I have discovered a truly marvelous proof of this,\\which this margin is too narrow to contain.}
\end{equation}
\end{document}

输出

在此处输入图片描述

相关内容