I use a Latex template for my resume and it always worked great. I recently reinstalled TeXstudio in one of my computers and now the resume shows up all in bold, for no apparent reason. In Overleaf, it also compiles in bold. When I compile the exact same file on my older computer, it compiles as it should.
I'd appreciate any help in understanding how I can avoid the bold font. Thank you in advance.
Edit: I updated the code below, now it should be working. I also uploaded the resume.cls file in https://easyupload.io/7u4u3n
\documentclass{resume}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{ucs}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry}
\usepackage{amsmath}
\usepackage{eurosym}
\usepackage{datetime}
\newdateformat{monthyeardate}{
\monthname[\THEMONTH], \THEYEAR}
\newcommand{\tab}[1]{\hspace{.2667\textwidth}\rlap{#1}}
\newcommand{\itab}[1]{\hspace{0em}\rlap{#1}}
\name{\LARGE\textsc{Person X}}
\vspace*{-0.75cm}
\address{\textit{Last updated: \monthyeardate\today}}
\usepackage{multicol}
\begin{document}
\begin{center}
\begin{minipage}[t]{0.74\textwidth}
Phone: \\
Email: \\
Homepage: \\
\end{minipage}
\begin{minipage}[t]{0.25\textwidth}
\end{minipage}
\end{center}
\begin{rSection}{Academic positions}
{\bf University X} \hfill {2022 - }
\\ Assistant Professor
\end{rSection}
\begin{rSection}{Education}
{\bf University Y} \hfill {2015 - 2020}
\\ PhD in Physics
\end{rSection}
\end{document}
! LaTeX Error: There's no line here to endfrom the misplaced\\also do not useucspackge with current latex. Note texlive does not have aresume.clsyou may have different versions on the two machines the log file will show versions. – David Carlisle Dec 14 '22 at 00:29