我正在尝试使用 overleaf 模板更新我的简历,该模板在表格中列出了“教育”项目,具体代码如下。我希望所有列(尤其是右侧列)的文本都对齐到顶部,但似乎[t]
没有任何效果。我该如何实现顶部对齐?
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcommand*{\cventrymsci}[4]{%
\vspace{-2.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{tabular*}{\textwidth}[t]{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
\ifempty{#2#3}
{\entrytitlestyle{#1} & \entrydatestyle{#4} \\}
{\entrytitlestyle{#1} & \entrylocationstyle{#2} \\
\entrypositionstyle{#4} & \entrydatestyle{#3} \\}
%\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\end{tabular*}%
答案1
您使用m
垂直居中的列,您需要p
顶部对齐 parboxes 的默认列类型。