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

根據這個問題很難說出你可能擁有或想要什麼。這是一個藍色的鏡頭。

約翰履歷表格

\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}

相關內容