<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Thejus sunny</title>
    <description>The latest articles on Forem by Thejus sunny (@thejus).</description>
    <link>https://forem.com/thejus</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3812861%2F9a6c06fb-b499-4dfd-bd60-22ad7132e3a6.jpg</url>
      <title>Forem: Thejus sunny</title>
      <link>https://forem.com/thejus</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/thejus"/>
    <language>en</language>
    <item>
      <title>The LaTeX Resume Problem: Why Engineers Spend More Time on Formatting Than Content</title>
      <dc:creator>Thejus sunny</dc:creator>
      <pubDate>Thu, 19 Mar 2026 19:12:11 +0000</pubDate>
      <link>https://forem.com/thejus/the-latex-resume-problem-why-engineers-spend-more-time-on-formatting-than-content-4cfi</link>
      <guid>https://forem.com/thejus/the-latex-resume-problem-why-engineers-spend-more-time-on-formatting-than-content-4cfi</guid>
      <description>&lt;p&gt;&lt;em&gt;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.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;What follows is a ritual thousands of software engineers perform every job search cycle. You dig through Overleaf projects named &lt;code&gt;resume_final_v3_ACTUAL_FINAL&lt;/code&gt;. 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.&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;




&lt;h2&gt;
  
  
  The time audit nobody wants to do
&lt;/h2&gt;

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

&lt;blockquote&gt;
&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;— r/cscareerquestions&lt;/p&gt;
&lt;/blockquote&gt;

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




&lt;h2&gt;
  
  
  The LaTeX tax: greatest hits
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. The compilation error spiral
&lt;/h3&gt;

&lt;p&gt;You added one line to your experience section. Now nothing compiles.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\resumeItem&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;Led migration of monolithic API to microservices,
  reducing p99 latency by 40&lt;span class="c"&gt;%}  % forgot to escape %&lt;/span&gt;

! Missing &lt;span class="p"&gt;$&lt;/span&gt;&lt;span class="nb"&gt; inserted.
l.&lt;/span&gt;&lt;span class="m"&gt;47&lt;/span&gt;&lt;span class="nb"&gt; ...reducing p&lt;/span&gt;&lt;span class="m"&gt;99&lt;/span&gt;&lt;span class="nb"&gt; latency by &lt;/span&gt;&lt;span class="m"&gt;40&lt;/span&gt;&lt;span class="c"&gt;%}&lt;/span&gt;&lt;span class="nb"&gt;
&lt;/span&gt;&lt;span class="c"&gt;% A single unescaped % sign. 20 mins of debugging. Zero content improved.&lt;/span&gt;&lt;span class="nb"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. The "make it fit" spiral
&lt;/h3&gt;

&lt;p&gt;Your resume is one line too long. So begins the grand tradition of &lt;code&gt;\vspace&lt;/code&gt; micro-adjustments:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\vspace&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;-7pt&lt;span class="p"&gt;}&lt;/span&gt;  &lt;span class="c"&gt;% after name&lt;/span&gt;
&lt;span class="k"&gt;\vspace&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;-5pt&lt;span class="p"&gt;}&lt;/span&gt;  &lt;span class="c"&gt;% before experience&lt;/span&gt;
&lt;span class="k"&gt;\vspace&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;-3pt&lt;span class="p"&gt;}&lt;/span&gt;  &lt;span class="c"&gt;% between jobs&lt;/span&gt;
&lt;span class="c"&gt;% Three weeks later you add one bullet point.&lt;/span&gt;
&lt;span class="c"&gt;% Everything overflows. You recalibrate everything.&lt;/span&gt;
&lt;span class="c"&gt;% You question your life choices.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Package conflicts
&lt;/h3&gt;

&lt;p&gt;You add one package. Three others break.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tex"&gt;&lt;code&gt;&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;fontawesome5&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;fontspec&lt;span class="p"&gt;}&lt;/span&gt;       &lt;span class="c"&gt;% now you need XeLaTeX&lt;/span&gt;
&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="na"&gt;[T1]&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;fontenc&lt;span class="p"&gt;}&lt;/span&gt;    &lt;span class="c"&gt;% conflicts with fontspec&lt;/span&gt;

! LaTeX Error: Option clash for package fontenc.
&lt;span class="c"&gt;% You switch to XeLaTeX. fontawesome5 breaks.&lt;/span&gt;
&lt;span class="c"&gt;% It's 1 AM. You still haven't updated your job title.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;— Hacker News&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  The ATS problem nobody talks about
&lt;/h2&gt;

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

&lt;blockquote&gt;
&lt;p&gt;I switched from my custom LaTeX resume to a plain Google Docs template and my response rate &lt;strong&gt;tripled&lt;/strong&gt;. Three years of tweaking that LaTeX template and it was literally working against me.&lt;/p&gt;

&lt;p&gt;— r/experienceddevs&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  What actually gets you interviews
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What engineers spend time on:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fixing compilation errors&lt;/li&gt;
&lt;li&gt;Adjusting &lt;code&gt;\vspace&lt;/code&gt; values&lt;/li&gt;
&lt;li&gt;Resolving package conflicts&lt;/li&gt;
&lt;li&gt;Making content fit on one page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What actually gets interviews:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Quantified impact statements&lt;/li&gt;
&lt;li&gt;Relevant keywords for ATS matching&lt;/li&gt;
&lt;li&gt;Strong action verbs&lt;/li&gt;
&lt;li&gt;Tailored content per application&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;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 &lt;code&gt;\vspace&lt;/code&gt; values is a &lt;strong&gt;local maximum&lt;/strong&gt;. The global maximum is spending that time on content.&lt;/p&gt;




&lt;h2&gt;
  
  
  What a modern resume workflow should look like
&lt;/h2&gt;

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




&lt;h2&gt;
  
  
  Why I built Rejectless
&lt;/h2&gt;

&lt;p&gt;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. &lt;strong&gt;Two days. Zero improvement to content.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.rejectless.app" rel="noopener noreferrer"&gt;Rejectless&lt;/a&gt; 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.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The next time you're adjusting &lt;code&gt;\vspace&lt;/code&gt; 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.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;→ &lt;a href="https://www.rejectless.app/jakes-resume-builder" rel="noopener noreferrer"&gt;Try the Rejectless builder free&lt;/a&gt; — no LaTeX required.&lt;/em&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  career #webdev #beginners #productivity
&lt;/h1&gt;

</description>
      <category>career</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
