我没有尝试用文字或 MWE 来描述,而是上传了所需结果的图片。我知道如何创建\frac{}{} \text{}, ^{}
此分数的所有组件(例如),除了每段文本超过两行的方式。
有什么建议么?
答案1
通过环境的简单方法tabular
:
\documentclass{article}
\begin{document}
\begin{displaymath}
\frac{
\left(
\begin{tabular}{@{}c@{}}
some text\\
here
\end{tabular}
\right)
\times
\left(
\begin{tabular}{@{}c@{}}
some more\\
here
\end{tabular}
\right)^a
}{
\left(
\begin{tabular}{@{}c@{}}
and even more\\
text down here
\end{tabular}
\right)^b
}
\end{displaymath}
\end{document}
pmatrix
更加优雅的包装环境amsmath
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
\frac{
\begin{pmatrix}
\text{some text}\\
\text{here}
\end{pmatrix}
\times
\begin{pmatrix}
\text{some more}\\
\text{here}
\end{pmatrix}^a
}{
\begin{pmatrix}
\text{and even more}\\
\text{text down here}
\end{pmatrix}^b
}
\end{gather*}
\end{document}