-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to include multiple jobs (promotion) from the same company? #297
Comments
The way I would do it by just having those several jobs even if the company/location is the same. |
Yes, it's a solution. But I'm trying not to exceed 1 page, therefore looking for a more compact form such as: Company Name ........ Location I am playing with the code for this purpose. If I succeed, I will share. |
Ah, I see! That would be nice indeed. |
Hi I would also really appreciate this addition if anyone knows how to do it? |
I guess the following command works for this purpose:
After adding this new command definition to awesome-cv.cls file, you can create an instance of it, for example in the experience.tex file. Here is the order of the fields:
Of course, order of the arguments could be altered. Let me know if this works or not, so that we can improve. |
Not the most elegant solution, but I fixed it by simply adding two cventries without writing the organization and location of the oldest one.
It does look good though, so I'll keep it like this. |
I do the same as @mircoparello, but I defined a new command % Sub-job entry - assumes the organization and place are specified in a preceding cventry
% Usage: \cvsubentry{<position>}{<date>}{<description>}
\newcommand*{\cvsubentry}[3]{\cventry{}{}{#1}{#2}{#3}} Update: I just realized |
I tried using @posquit0's So for now, I'm doing the same as @mircoparello which looks good enough. |
This works if you are promoted in the same location, what if I was promoted in the same company but to a different work location? |
@adnan-azmat This is how I solve it in my own CV: % as \cventry, but squashed up to meet more recent role above; no company/location.
\newcommand{\cventryprevrole}[3]{
\vspace{-3.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{4.5cm} L{\textwidth - 4.5cm}}
\entrydatestyle{#2} & \entrypositionstyle{#1} \\
& \descriptionstyle{#3}
\end{tabular*}
} This could easily be adapted to include (I deliberately removed it for my use) location. For comparison, here's Lines 657 to 670 in db80998
I've been meaning to read through others' suggestions & implementations here and elsewhere before coming up with something to include in Awesome-CV itself to address this. |
I could not figure out how to show multiple jobs (maybe promotion) from the same company? I think Linkedin has a neat structure for this purpose. Is there any opinion for this?
The text was updated successfully, but these errors were encountered: