Tengo un problema con la sangría en mi CV. El problema es que quiero agregar una segunda fecha como una nueva línea justo debajo de la primera, usando el comando \newline simplemente empuja la sangría hacia la derecha.
Quiero tenerlo así:
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}
Respuesta1
Es difícil decir lo que podría tener o desear según la pregunta. Aquí hay un tiro hacia el 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}