I have a problem with a template in Overleaf.
I would like to write my CV in latex of 2 or more pages, but the template allows only one page and crash if I add more sections. Can you help me?
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[vmargin=1.5cm, hmargin=1.5cm]{geometry}
\usepackage[utf8]{inputenc}
\input{MySetup}
%-------------------------------------------------------------------------------------------------------
\begin{document}
%-------------------------------------------------------------------------------------------------------
% Left column
%-------------------------------------------------------------------------------------------------------
\begin{adjustbox}{valign=t}
\begin{minipage}{0.3\textwidth} % Adapt width to your convenience
%----------------------------------------------------
% Please add a photo in 1x1 format
\begin{center}
\begin{tikzpicture}
\clip (0,0) circle (2cm) node {\includegraphics[width=4cm]{Simple-CV/francesco_fantuzzo.jpg}};
\end{tikzpicture}
\MySkip % See MySetup.tex file
%----------------------------------------------------
{\LARGE \bfseries Francesco Fantuzzo}
\MySkip % See MySetup.tex file
Nato il 11 Febbraio 1999\\
Lignano Sabbiadoro -- Italia\\
Domicilio a Padova\\
\MySkip % See MySetup.tex file
\textcolor{ColorTwo}{\faEnvelopeO}
\myhref{mailto:fantuzzo.francesco@gmail.com}{fantuzzo.francesco@gmail.com} \\
\textcolor{ColorTwo}{\faChain}
\myhref{https://www.linkedin.com/in/francesco-fantuzzo-ba67b01a6/}{linkedin}
\end{center}
\vfill
%----------------------------------------------------
\section*{Interessi e obiettivi}
\raggedright
\textcolor{ColorOne}{$\circ$} Raccolta dati e ricerca\\
\textcolor{ColorOne}{$\circ$} Studio di meccanismi economici per mezzo di metodi quantitativi per la ricerca\\
\textcolor{ColorOne}{$\circ$} Analisi dati per aziende per intrercettare movimenti di mercato e abitudini dei consumatori\\
\textcolor{ColorOne}{$\circ$} Temi macroeconomici: debito italiano, pensioni, storia economica, geopolitica
\vfill
%----------------------------------------------------
\section*{Hobby}
\raggedright
\textcolor{ColorOne}{$\circ$} Canottaggio\\
\textcolor{ColorOne}{$\circ$} Arrampicata sportiva\\
\textcolor{ColorOne}{$\circ$} Scacchi\\
\textcolor{ColorOne}{$\circ$} Letteratura italiana\\
\textcolor{ColorOne}{$\circ$} Fotografia\\
\vfill
\end{minipage}
\end{adjustbox}
%
%
%-------------------------------------------------------------------------------------------------------
% Vertical rule
%-------------------------------------------------------------------------------------------------------
%
\hfill
\begin{adjustbox}{valign=t}
\begin{minipage}{0.05\textwidth} % Adapt width to your convenience
\MyVerticalRule % See MySetup.tex file
\end{minipage}
\end{adjustbox}
\hfill
%
%-------------------------------------------------------------------------------------------------------
% Right column
%-------------------------------------------------------------------------------------------------------
\begin{adjustbox}{valign=t}
\begin{minipage}{0.6\textwidth} % Adapt width to your convienience
\section*{Educazione}
\begin{description}
\raggedright
\item[\normalfont \textcolor{ColorOne}{Set. 2019 -- Dic. 2022.}] \textbf{Università degli studi di Padova}\\ \medskip
Triennale in Economia, focus in economia pura
Scelta curriculare del terzo anno in economia pura. Alcuni corsi caratterizzanti sono:
\textcolor{ColorOne}{$\circ$} Macroeconomia\\
\textcolor{ColorOne}{$\circ$} Econometria\\
\textcolor{ColorOne}{$\circ$} Monetary and fiscal policy\\
\raggedright
\item[\normalfont \textcolor{ColorOne}{Set. 2021 -- Dic. 2021.}] \textbf{Zagreb School of economics and Management}\\ \medskip
Erasmus a Zagabria. Alcuni corsi caratterizzanti sono:
\textcolor{ColorOne}{$\circ$} Advanced programming in SQL\\
\textcolor{ColorOne}{$\circ$} Management of Information Systems\\
\textcolor{ColorOne}{$\circ$} Introduction to EU legislation\\
\textcolor{ColorOne}{$\circ$} Financial Institution and Markets\\
\textcolor{ColorOne}{$\circ$} Rhetoric\\
\end{description}
%----------------------------------------------------
\section*{Esperienza}
\begin{description}
\raggedright
\item[\normalfont \textcolor{ColorOne}{Sep. 2017 -- Aug. 2018.}]
\textbf{Your previous job}\\ \medskip
Your previous employer\\
Here you describe what you did before working where you are working now.
\item[\normalfont \textcolor{ColorOne}{Sep. 2012 -- Aug. 2017.}]
\textbf{Your first job}\\ \medskip
Your employer\\
This could be a nice short description of your first job.
\end{description}
%----------------------------------------------------
\section*{Progetti}
\begin{description}
\raggedright
\item Something you want to include in your CV
\end{description}
\MySkip
%----------------------------------------------------
\begin{multicols}{2}
\section*{Coding}
\begin{tabular}{ll}
C++ & \SkillBull{$\bullet \bullet \circ \, \circ$}\\
Python & \SkillBull{$\bullet \bullet \circ \, \circ$}\\
SQL & \SkillBull{$\bullet \circ \circ \, \circ$}\\
\end{tabular}
\vfill\null \columnbreak % Break column for new section
\section*{Languages}
\begin{tabular}{ll}
Italian & \SkillBull{$\bullet \bullet \bullet \, \bullet$}\\
English (B2) & \SkillBull{$\bullet \bullet \circ \, \circ$}\\
\end{tabular}
\end{multicols}
%----------------------------------------------------
\LastUpdate
%----------------------------------------------------
\end{minipage}
\end{adjustbox}
\newpage
\end{document}