LaTeX CV 缩进帮助

LaTeX CV 缩进帮助

我在简历缩进方面遇到了问题。问题是,我想在第一个日期的正下方添加第二个日期作为换行符,使用 \newline 命令只会将缩进推到右侧。

我希望它像这样:

Summer 2017,
2016, 2015

代码:

\section{Work Experience}
\begin{tabular}{r|p{11cm}}

\textsc{Summer 2017 } 
& Summer Intern at \textsc{Lehman Brothers}, \emph{Capital Markets}\\
&\footnotesize{Received pre-placed offer from the Exotics Trading Desk as a result of very positive review. Rated ``\emph{truly distinctive}'' for Analytical Skills and Teamwork.}
\end{tabular}

答案1

根据这个问题,很难说你可能有什么或想要什么。这是一剂强心针。

johnd简历表格

\documentclass{article}
\usepackage{array}
\setlength{\parindent}{0pt}
\begin{document}
\section{Work Experience}
\begin{tabular}{@{}>{\scshape\raggedright}p{.20\linewidth}p{.75\linewidth}@{}}
    Summer 2017, 2016, \par 2015 
    & Summer Intern at \textsc{Lehman Brothers},
    \emph{Capital Markets}\par
    {\footnotesize Received pre-placed offer from the Exotics
        Trading Desk as a result of very positive review.
        Rated ``\emph{truly distinctive}'' for Analytical
    Skills and Teamwork.}
\end{tabular}
\end{document}

相关内容