I am rather new to Latex and I am using it to build my Resume. I encountered two problems: the first one concerns the dates that overflow in the margins, while the second one is I think an embedded comma after the Master that I don't know how to remove. Do you have any idea how can I fix these two problems? Code :
\documentclass[11pt,a4paper,sans]{moderncv}
% modern themes
\moderncvstyle{banking}
% character encoding
\usepackage[utf8]{inputenc}
% adjust the page margins
\usepackage[scale=0.94]{geometry}
\usepackage{import}
% personal data
\name{John Doe}{}
\phone[mobile]{123456789}
\email{whatever@gmail.com}
\begin{document}
\makecvtitle
\section{Education}
\vspace{0pt}
\begin{itemize}
\setlength\itemsep{3pt}
\item{\cventry{}{Master in Whatever}{Random University | \normalfont Random place}{\normalfont 09/2021 - 03/2023}{\textit{}}{}}
\textbf{Coursework:} Random Courses
\vspace{4pt}
\end{itemize}
\end{document}
itemizeon acventry. Theitemizeenvironment indents all of its entries, shifting everything to the right. It is also not needed for a\cventryas they are already opitmized for the respective layouts you choose. – Markus G. Jun 10 '21 at 11:00{}s of the\cventry, like so:\cventry{}{Master in Whatever}{Random University | \normalfont Random place}{\normalfont 09/2021 - 03/2023}{}{\textbf{Coursework:} Random Courses}In your case the\textit{}command causes the comma, because the{}is not empty and non-empty braces are treated as text, hence the comma. – Markus G. Jun 10 '21 at 11:04itemizeplease see my answer here: https://tex.stackexchange.com/a/392894/16550 – Mensch Jun 10 '21 at 11:38