У меня проблема с отступом в моем 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}