How I manage my CV with Markdown, Pandoc, Python, and LaTeX

Luca Franceschini
2 min readAug 18, 2022

--

I had a first world problem. While applying for projects, many recruiters ask for the CV in Word format. They want to import it in their system or adapt it to a standard template. But I don’t have my CV in docx, because I wrote it in LaTeX with the moderncv package.

The simplest solution would have been to switch to a Word template. Having converted to the school of LaTeX, this was intellectually unfeasible. I needed another solution.

First I tried converting the tex file to docx, the results were underwhelming. Either most of the CV was missing or the formatting was all over the place. I also tried converting the pdf to docx and got similar results. Converters don’t really know how to interpret moderncv’s format.

Another option was having a separate docx CV with a simpler format. The recruiters just need a convenient way to copy my information. It doesn’t need to be pretty as long as it’s consistent with my pdf CV. This would have been acceptable, but then I would need to keep the tex and docx CVs consistent manually.

I decided to go one step further: write the CV in markdown and let a script generate the rest.

Since moderncv’s template has a simple structure, I could replicate it easily. Pandoc converts markdown to docx perfectly. It doesn’t look as good as LaTeX’s pdf, but is functional for a recruiter to copy over the necessary information.

I wrote a Python script to convert the markdown CV to tex. The tex file was like the original and is then converted to pdf with pdflatex. I then wrapped up all the necessary commands in a PowerShell script.

Now I just need to keep my CV up to date in markdown and run one script to get the LaTeX pdf and the simpler docx. If this can be useful to you, I created a template to clone.

Originally published at https://lucaf.eu on August 18, 2022.

--

--