我怎样才能复制这个例子?

我怎样才能复制这个例子?

我对 LaTeX 还比较陌生,用它制作了一些(漂亮的)文档。然而,今天我遇到了一个难题,我似乎无论如何都无法复制下面显示的示例。我曾尝试搜索这个特定问题,但没有成功。因此,我请求社区提供支持!

在此处输入图片描述

答案1

以下是一个建议pmatrix

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
D_{i,t} = \begin{pmatrix}
\ln(\text{Deal value}) \\
\text{Loan Maturity} \\
\text{Loan Type} \\
\text{Credit Rating of the Loan} \\
\text{Coupon Rate}
\end{pmatrix}
\end{equation}
\end{document}

如果想避免在每行中使用\text,则tabular可以使用 。请注意使用@{}来删除每行开头和结尾处的空格。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
D_{i,t} = \left(\begin{tabular}{ @{} c @{} }
$\ln(\text{Deal value})$ \\
Loan Maturity \\
Loan Type \\
Credit Rating of the Loan \\
Coupon Rate
\end{tabular}\right)
\end{equation}
\end{document}

在此处输入图片描述

相关内容