Latex 多列使底部列文本左对齐

Latex 多列使底部列文本左对齐

在此处输入图片描述

我该如何修复底行,以便底行上的所有文本都浮动到左侧?

我的代码:

  \vspace{-1pt}\item
    \begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r}
      \textbf{Lorem Ipsum university} & Lorem Ipsum location \\
      \small PhD. in Electrical Engineering \& Computer Science & \textit{\small Aug. 2019 -- Present} \\
      \small GPA: 4.0/4.0 \\
      \multicolumn{2}{l} Lorem ipsum testing testing
    \end{tabular*}\vspace{-5pt}
    

答案1

你省略了括号

在此处输入图片描述

\documentclass{article}

\begin{document}

\begin{itemize}
\vspace{-1pt}\item
    \begin{tabular*}{\linewidth}[t]{l@{\extracolsep{\fill}}r}
      \textbf{Lorem Ipsum university} & Lorem Ipsum location \\
      \small PhD. in Electrical Engineering \& Computer Science & \textit{\small Aug. 2019 -- Present} \\
      \small GPA: 4.0/4.0 \\
      \multicolumn{2}{l}{Lorem ipsum testing testing}
    \end{tabular*}\vspace{-5pt}
\end{itemize}
\end{document}

相关内容