乳胶中文本的垂直对齐方式

vertical alignment of text in latex

我正在尝试创建标题页,我想包括一些这样的列表:

\begin{document}
 \centering
    {\Large \textbf{Entity 1:} \quad Some entity 1 \protect\ 
    \textbf{Entity 2:} \quad Some entity 2 \protect\ 
    \textbf{Slightly longer entity:} \quad Some slightly longer entity \protect\
    \textbf{The last entity:} \quad Some entity 3 \par}
\end{document}

但是这会产生 entire lines center-aligned。 而我的目标是让它看起来像 titles right-aligned and text left-aligned。我不知道该怎么做。感谢任何帮助。

使用 tabular:

\documentclass{article}

\begin{document}
 \centering\Large
 \begin{tabular}{rl}
    \textbf{Entity 1:} & Some entity 1\
    \textbf{Entity 2:} & Some entity 2 \
    \textbf{Slightly longer entity:} & Some slightly longer entity\
    \textbf{The last entity:} & Some entity 3\
 \end{tabular}
 
\end{document}