LaTeX CV インデントに関するヘルプ

LaTeX CV インデントに関するヘルプ

履歴書のインデントに問題があります。問題は、最初の日付のすぐ下に改行として 2 番目の日付を追加したいのですが、\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}

関連情報