pbox latex 与文本以表格形式对齐

pbox latex 与文本以表格形式对齐

我在 overleaf 上写了这段代码,得到了如图所示的结果。是否可以将“联系信息”与“部门...”对齐?最简单的方法是什么?谢谢。

\begin{tabular}[t]{lll}
\pbox{20cm}{Contact \\ 
            Information} 
& & 
\pbox{20cm}{Department of abc \\ 
            abc University \\ 
            New abc city 00000, Country X \\ \\ 
            Email: blabla.com}
\end{tabular}

在此处输入图片描述

答案1

不知道是什么\pbox意思,我只能猜测。听起来像是\parbox20cm}(或p{20cm}列,但 2 列 20 厘米的列对我来说有点太宽了。

我建议使用makecell包,并使用t对齐方式。如果您想要特定宽度的列,则可以用l类似 的内容替换p{5cm}。但在这种情况下,您可以只使用p{5cm}列而不是\makecell

另一个选择是将每个条目分成单独的行,参见第二个表格。

\documentclass{article}
\usepackage{makecell}
\begin{document}
\noindent
\begin{tabular}{lll}
  \makecell[tl]{Contact \\ 
            Information} 
& & 
\makecell[tl]{Department of abc \\ 
            abc University \\ 
            New abc city 00000, Country X \\ \\ 
            Email: blabla.com}
\end{tabular}
\bigskip

\noindent
\begin{tabular}{lll}
  Contact     & & Department of abc \\ 
  Information & & abc University \\ 
              & & New abc city 00000, Country X \\ \\ 
              & & Email: blabla.com
\end{tabular}

\end{document}

在此处输入图片描述

相关内容