DEV Community

Thejus sunny
Thejus sunny

Posted on • Originally published at rejectless.app

The LaTeX Resume Problem: Why Engineers Spend More Time on Formatting Than Content

It's Sunday night. You found a job posting that actually excites you - the stack is right, the team seems great. Application deadline is tomorrow. You open your resume to update it and... you haven't touched the LaTeX source in eight months.

What follows is a ritual thousands of software engineers perform every job search cycle. You dig through Overleaf projects named resume_final_v3_ACTUAL_FINAL. You try to compile. It doesn't compile. You spend the next two hours not writing about your accomplishments — but fighting package versions, margin calculations, and mysterious vertical spacing that appeared out of nowhere.

By the time it compiles cleanly, you're too exhausted to think critically about whether the content actually sells your experience. The formatting won. Again.


The time audit nobody wants to do

A recurring thread on r/cscareerquestions asked engineers to estimate time spent on formatting versus content. The results were brutal:

I spent an entire Saturday getting my LaTeX resume to compile after upgrading TeX Live. Six hours. I changed maybe two bullet points of actual content.

— r/cscareerquestions

The median answer: for every 45 minutes spent improving content, engineers spend 3–4 hours on formatting and layout. Some reported ratios as high as 10:1 during major overhauls. That's not a workflow. That's a tax.


The LaTeX tax: greatest hits

1. The compilation error spiral

You added one line to your experience section. Now nothing compiles.

\resumeItem{Led migration of monolithic API to microservices,
  reducing p99 latency by 40%}  % forgot to escape %

! Missing $ inserted.
l.47 ...reducing p99 latency by 40%}
% A single unescaped % sign. 20 mins of debugging. Zero content improved.
Enter fullscreen mode Exit fullscreen mode

2. The "make it fit" spiral

Your resume is one line too long. So begins the grand tradition of \vspace micro-adjustments:

\vspace{-7pt}  % after name
\vspace{-5pt}  % before experience
\vspace{-3pt}  % between jobs
% Three weeks later you add one bullet point.
% Everything overflows. You recalibrate everything.
% You question your life choices.
Enter fullscreen mode Exit fullscreen mode

3. Package conflicts

You add one package. Three others break.

\usepackage{fontawesome5}
\usepackage{fontspec}       % now you need XeLaTeX
\usepackage[T1]{fontenc}    % conflicts with fontspec

! LaTeX Error: Option clash for package fontenc.
% You switch to XeLaTeX. fontawesome5 breaks.
% It's 1 AM. You still haven't updated your job title.
Enter fullscreen mode Exit fullscreen mode

I'm a staff engineer at a FAANG company. I build distributed systems handling millions of requests per second. I cannot get my LaTeX resume to stop adding 3pt of space before my education section.

— Hacker News


The ATS problem nobody talks about

After all that time perfecting your layout — precise spacing, custom fonts, carefully aligned columns — there's a real chance the ATS can't read it properly. LaTeX PDFs fragment text in ways that confuse automated extraction. Custom fonts may lack proper Unicode mappings. Ligatures can turn fi into an unrecognizable glyph.

I switched from my custom LaTeX resume to a plain Google Docs template and my response rate tripled. Three years of tweaking that LaTeX template and it was literally working against me.

— r/experienceddevs


What actually gets you interviews

What engineers spend time on:

  • Fixing compilation errors
  • Adjusting \vspace values
  • Resolving package conflicts
  • Making content fit on one page

What actually gets interviews:

  • Quantified impact statements
  • Relevant keywords for ATS matching
  • Strong action verbs
  • Tailored content per application

The formatting trap is insidious because we're problem-solvers by nature. A LaTeX error is a puzzle, and puzzles are satisfying to solve. But optimising your \vspace values is a local maximum. The global maximum is spending that time on content.


What a modern resume workflow should look like

  1. Formatting is a solved problem — pick a template, your content fills it, done. No compilation, no spacing hacks.
  2. ATS compatibility is guaranteed — engineered for machine readability from the start, not reverse-engineered from a typesetting system built for academic papers.
  3. Updates take 5 minutes, not 2 hours — add a new role, tweak a bullet, export PDF, done.
  4. The tool helps you improve content — flagging weak bullets, missing metrics, vague phrasing.

Why I built Rejectless

The breaking point: one of us spent an entire weekend migrating a resume from one LaTeX template to another because the original used a deprecated package. The new template looked almost identical. Two days. Zero improvement to content.

Rejectless eliminates the formatting tax entirely. The builder renders Jake's Resume template pixel-perfect, ATS-compatible, every time — no compilation, no errors. The lint engine then analyses your content the way an ATS would, flagging weak phrasing and missing metrics before you submit.

The next time you're adjusting \vspace values at midnight, ask yourself: is this making my resume more likely to get me an interview? Your time is worth more than debugging compilation errors.

Try the Rejectless builder free — no LaTeX required.


career #webdev #beginners #productivity

Top comments (2)

Collapse
 
george_matl_6f32fbdd38359 profile image
George • Edited

The ultimate irony of the engineering resume: spending 10 hours on the 'infrastructure' and 10 minutes on the 'documentation' (the actual experience). If we spent half as much time on impact-driven bullet points as we do on kerning, we’d all be Lead Devs by now. Quality read!

Collapse
 
thejus profile image
Thejus sunny

Exactly this! And it gets worse when tailoring. Most engineers end up manually duplicating and scrambling the same resume for every role. LaTeX overhead plus tailoring chaos is a full day's work before you've even applied.