答案1
您的格式目标中的术语“左对齐”可以有多种解释。希望以下两种可能性之一能够满足您的目标。
右侧解决方案中的适当字距调整量取决于所使用的数学字体和字体大小。
\documentclass{article}
\usepackage{mathtools} % for 'matrix*' environment
\begin{document}
\[
\begin{matrix*}[l]
\left\{\begin{matrix*}[l] abc \\ def \end{matrix*}\right.\\
ghi\\
jkl
\end{matrix*}
\qquad\text{or}\qquad
\begin{matrix*}[l]
\left\{\begin{matrix*}[l] abc \\ def \end{matrix*}\right.\\
% Kerning amount found by trial and error:
\mkern13.5mu ghi\\
\mkern13.5mu jkl
\end{matrix*}
\]
\end{document}