Estou tendo problemas com o recuo no meu currículo. O problema é que quero adicionar uma segunda data como uma nova linha logo abaixo da primeira, usando o comando \newline apenas empurra o recuo para a direita.
Eu quero que seja assim:
Summer 2017,
2016, 2015
Código:
\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}
Responder1
É difícil dizer o que você pode ter ou querer com base na pergunta. Aqui está um tiro no azul.
\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}