I am new to LaTeX, and I want to create a command that will display my previous positions formatted appropriately in a resume.
The format I am looking for is this:
02.07.2009 - 02.07.2010 Soft Dev, IVM Corp
Sunset, California, USA
Duties included blah blah,
blah.
03.07.2009 - 04.07.2010 Tech Spport, SupOrT inc.
Sunset, California, USA
Responsibilities and duties included blah blah,
blah, and then blah, but somtimes blah and blah,
and MySQL blah and C# and Java blah Python.
where everything on the right should be aligned.
I think I need a command that looks like this:
position(dateFrom, dateTo, position, location)
and then somehow also align the responsibilities/duties section.
Ok here is what I got so far:
\def\position#1-#2 #3@#4{\noindent#1 --- #2: \textbf{#4}, \em{#3}}
which allows me to use it like this:
\position 02.07.2008-02.08.2008 {Software Developer}@{Supre Core Computing Inc.}
\position 22.12.2005-12.01.2007 {Support}@{Telephony Inc.}
However, I still don't know how to make the position (i.e. software developer) align with the following position (support).