我想创建一个命令,它接受 3 个参数,图标路径、标题和公司,并像 LinkedIn 一样呈现结果。理想情况下,文本的高度应根据图像高度自动计算
当前解决方案
\newcommand{\CompanyEntry}[6]{
\noindent
\begin{tabular}{@{}m{#2}@{\hspace{10pt}}l@{\hspace{10pt}}r@{}}
\raisebox{-0.5\height}{\includegraphics[width=#2,height=#2,keepaspectratio]{#1}} &
\begin{tabular}[t]{@{}l@{}}
\textbf{#3} \\ #4 \\
\end{tabular} &
% \hspace{11cm}
\begin{tabular}[t]{@{}r@{}}
#5 \\ #6 \\
\end{tabular} \\
\end{tabular}
\vspace{5pt}
}
问题在于日期和地点没有正确对齐