问题列表左对齐,答案右对齐

问题列表左对齐,答案右对齐

我试图在乳胶中输入类似这样的内容:

在此处输入图片描述

这是我的一个新手尝试,我知道这可能很糟糕,但我还是新手。我只是无法让前导文本(姓名、出生日期、性别、地址等)左对齐。

\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}

\section*{PERSONAL DETAILS}
\begin{flalign*}
\text{Name}                      &\quad \text{: Name}&\\
\text{Date of Birth}             &\quad \text{: Date}&\\
\text{Sex}                       &\quad \text{: Male}&\\
\text{Address}                   &\quad \text{: Address}&
\end{flalign*}
\end{document}

但它输出的是类似这样的内容,而不是我想要的: 在此处输入图片描述

答案1

用于tabular表格:

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}

\section*{PERSONAL DETAILS}
\begin{tabular}{l l}%< the l aligns left
Name                      &: Name\\
Date of Birth             &: Date\\
Sex                       &: Male\\
Address                   &: Address
\end{tabular}
\end{document}

相关内容