pbox Latex 與文字表格對齊

pbox Latex 與文字表格對齊

我在背面寫了這段程式碼,得到如圖所示的東西。是否可以將“聯絡資訊”與“部門..”對齊?最簡單的方法是什麼?謝謝。

\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}柱子),但是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}

在此輸入影像描述

相關內容