들여쓰기가 포함된 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}

관련 정보