Ich habe ein Problem mit der Einrückung in meinem Lebenslauf. Das Problem ist, dass ich ein zweites Datum als neue Zeile direkt unter dem ersten einfügen möchte. Mit dem Befehl \newline wird die Einrückung einfach nach rechts verschoben.
Ich möchte es so haben:
Summer 2017,
2016, 2015
Code:
\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}
Antwort1
Schwer zu sagen, was Sie aufgrund der Frage haben oder wollen könnten. Hier ist ein Schuss ins Blaue.
\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}