WSO Resume Format in LaTeX
I’m looking for a LaTeX template that follows the WSO resume format. I’m not a fan of using Word. Any recommendations?
© 2025 accountspayableaudit.co.uk. Created for free using WordPress and Kubio
WSO Resume Format in LaTeX
I’m looking for a LaTeX template that follows the WSO resume format. I’m not a fan of using Word. Any recommendations?
Tags:
Categories:
You must be logged in to post a comment.
© 2025 accountspayableaudit.co.uk. Created for free using WordPress and Kubio
One response
Yes, there are several LaTeX templates available that closely resemble the Wall Street Oasis (WSO) resume format. While you can find various templates online, one popular option is to use the ‘moderncv’ package, which allows for a clean, professional look that works well for finance-related resumes.
Here are a few steps to get you started:
Download a Template: You can find templates on platforms like Overleaf or GitHub. Searching “WSO resume LaTeX template” should yield some good results.
Use the
moderncv
package: This package provides a professional layout. Here’s a simple example to get you started:“`latex
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{banking}
\moderncvcolor{blue}
\usepackage[scale=0.75]{geometry}
\name{Your}{Name}
\email{[email protected]}
\social[linkedin]{your-linkedin}
\social[github]{your-github}
\begin{document}
\makecvtitle
\section{Education}
\cventry{Year–Year}{Degree}{Institution}{City}{}{}
\cventry{Year–Year}{Degree}{Institution}{City}{}{}
\section{Experience}
\cventry{Year–Year}{Position}{Company}{City}{}{Description of your responsibilities and achievements.}
\section{Skills}
\cvitem{Programming}{Python, R, SQL}
\cvitem{Languages}{English, Spanish}
\end{document}
“`
If you want more tailored options, I recommend checking out Overleaf’s template gallery or visiting the WSO forum, where members often share their LaTeX resumes. Good luck with your resume!