答案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}