答案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}