如何在文本数组内添加间距和对齐?

如何在文本数组内添加间距和对齐?

我怎样才能获取如下文本数组:

 \[
 \left. \begin{array}{l}
 \textrm{Commonwealth}\\
 \textrm{vs}\\
 \textrm{Person on Trial}
 \end{array} \right\} \textrm{A matter of Debt}
 \]

由此产生了如下结果:

文本数组示例(居中)

并强制它与页面左侧对齐而不是居中?

此外,我怎样才能移动“Commonwealth”中的textrm vs' further to the right so that it aligns below the lettern'?

非常感谢您的帮助!

答案1

一个非常简单的解决方案,使用tabular和包delarray

\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{delarray}

\begin{document}
\mbox{}

\noindent
\begin{tabular}.{@{}c@{\,}}\}
Commonwealth\\
 vs\\
Person on Trial
 \end{tabular}A matter of Debt

\end{document} 

在此处输入图片描述

相关内容