Curricula Vitae / Résumés ⇒ How to have multiple job titles under the same workplace using Modern CV Style Banking?
-
- Posts: 1
- Joined: Mon Aug 09, 2021 8:04 pm
How to have multiple job titles under the same workplace using Modern CV Style Banking?
This is what the code looks like in the main file, and I haven't edited the Moderncvstylebanking file. Can someone help?
Thanks!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mbox{}
\subsection{Experience}
\cventry{May 2021 - Present}{Job Title 1 }{Current Workplace }{ Work Location}{}{\begin{itemize}
\setlength\itemsep{.2em}
\setlength\itemindent{25pt}
\item task 1
\item task 2
\item task 3
\end{itemize}}
\cventry{August 2020 - April 2021}{Job Title 2 }{Current Workplace}{Work Location}{}{\begin{itemize}
\setlength\itemsep{.2em}
\setlength\itemindent{25pt}
\item task 1
\item task 2
\item task 3
\end{itemize}}
\cventry{July 2019 - August 2020}{Job Title 2 }{Current Workplace}{Work Location}{}{\begin{itemize} \setlength\itemsep{.2em}
\setlength\itemindent{25pt}
\item task 1
\item task 2
\item task 3
\end{itemize}}
- Attachments
-
- latex.JPG (31.14 KiB) Viewed 24935 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to have multiple job titles under the same workplace using Modern CV Style Banking?
Without a

One possibility would be to add the bold line in the definition of the
\cventry
command only if both arguments are given. The command and its (re)definition can be copied into the preamble and changed to preserve the content of the already named banking style file of your TeX distribution.Code: Select all
\renewcommand*{\cventry}[7][.25em]{
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r}%
\ifboolexpr{% moderncv.cls loads etoolbox package
test {\notblank{#4}}
and
test {\notblank{#5}}
}{%
{\bfseries #4} & {\bfseries #5} \\%
}{}%
{\itshape #3\ifthenelse{\equal{#6}{}}{}{, #6}} & {\itshape #2}\\%
\end{tabular*}%
\ifx&%
\else{\\\vbox{\small#7}}\fi%
\par\addvspace{#1}}