我想写一个如下形式的公式
$$ A = B \times C $$
其中 $A$ 是一些长短语,例如“在我们知道这个和那个的情况下,这样做的边际效用”,而 $B$ 和 $C$ 是类似的短语。问题是文本 $A、B、C$ 向右延伸,我想将每个文本限制为页面水平长度的 1/4 左右,并允许它们向下延伸,以留出足够的空间来容纳短语。任何帮助都将不胜感激。
答案1
怎么样:
\documentclass{article}
\usepackage{array,ragged2e}
\newcolumntype{P}{>{\RaggedRight\arraybackslash}p{0.25\textwidth}}
\begin{document}
\[
\left(\begin{array}{P}
the marginal utility of doing so and so given this and that
\end{array}\right)
=
\left(\begin{array}{P}
the marginal utility of doing so and so given this and that
\end{array}\right)
\times
\left(\begin{array}{P}
the marginal utility of doing so and so given this and that
\end{array}\right)
\]
\end{document}
P
三个环境中使用的列类型定义array
为占用 的宽度0.25\textwidth
,它允许自动换行,并且其内容排版为右对齐(而不是完全对齐),同时允许连字符。如果连字符不合适,请替换\RaggedRight
为\raggedright
。如果您希望材料居中而不是右对齐,请替换\RaggedRight
为\Centering
(或\raggedright
替换为\centering
)。
答案2
\[
\parbox{.25\textwidth}{something...}
=
\parbox{.25\textwidth}{something...}
\times
\parbox{.25\textwidth}{something...}
\]