【问题标题】:vertical alignment of text in latex乳胶中文本的垂直对齐
【发布时间】:2020-12-13 02:44:21
【问题描述】:

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

\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。我不知道该怎么做。任何帮助表示赞赏。

【问题讨论】:

标签: text latex text-alignment


【解决方案1】:

使用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}

【讨论】:

  • 这正是我所需要的。非常感谢。
猜你喜欢
  • 2011-05-07
  • 2019-12-16
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-01-17
  • 1970-01-01
相关资源
最近更新 更多