WSO resume format on Latex

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:

One response

  1. 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:

    1. Download a Template: You can find templates on platforms like Overleaf or GitHub. Searching “WSO resume LaTeX template” should yield some good results.

    2. 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}
    “`

    1. Customize it: Modify the sections and formatting to fit your experience and the specific requirements of the WSO resume format. Focus on clarity and conciseness.

    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!

Leave a Reply