对齐内容

对齐内容

我是 LaTeX 的新手,遇到了一个小问题......

有没有办法定义它自动对齐到最远的第二列对象? 或者换句话说: 第二列应自动与第一列中最长对象之间的定义空间(橙色箭头)对齐。

截屏

以下是源代码的链接:https://www.overleaf.com/read/rgskjktntgdf

在此先感谢您的帮助!

安德烈亚斯

答案1

表格环境可以实现这一点。在 altacv 中,可以像这样使用:

\personalinfo{
  \begin{tabular}{ll}
      \phone{+xx xxx xx xx}
        & \mailaddress{Example Street 168, 9999 Town} \\

      \email{[email protected]}
        & \location{XYZ, Switzerland} \\

      \linkedin{linkedin.com/in/xyzxyzxyzxyzxyz}
        & \birthdate{Born dd.mm.yyyy in XYZ, Switzerland}
  \end{tabular}
}

只需确保文本不太宽,以免干扰图片。

答案2

只需使用制表符

xxxxxxxxxxxxxxxxxxxxxxxx 的长度可以根据单词间的距离而变化

在此处输入图片描述

\documentclass{article}
\begin{document}
     \newcommand{\signature}{\begin{tabbing}\\


 xxxx\=x\=xxxxxxxxxxxxxxxxxxxxxxxx\=xxxxxxxxxxxxxxxxxxxx \kill\\
 \>xxx A        \>      \>Street No \\
  \>andreas      \>     \>Switzerland

    \end{tabbing}}
\signature
\end{document}

相关内容