答案1
不知道這\pbox
代表什麼,我只能猜測。聽起來像一根\parbox20cm}
(或p{20cm}
柱子),但是20公分的2根柱子對我來說看起來有點太寬了。
我建議使用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}