Why Bad LaTeX Gets Rejected by ATS
Many engineers assume compiling LaTeX automatically guarantees ATS compliance. In reality, bad LaTeX configurations can be just as fatal as complex Canva tables.
When a PDF is parsed by Workday or Greenhouse, the parser extracts raw glyphs and text streams. Common pitfalls like non-standard ligatures (e.g. ffi rendering as a single special character), nested tabular environments, or rasterized fonts cause the parser to produce garbled text.
The 5 Golden Rules of ATS LaTeX Resumes
1. Never Use Multi-Column Tabular Layouts for Experience
Avoid \begin{tabular} for job descriptions and dates. Parsers often read tables horizontally across columns rather than vertically within a section, mixing dates with job titles. Instead, use \titlesec or styled paragraph breaks with \hfill.
2. Use Standard T1 Font Encoding
Always include \usepackage[T1]{fontenc} and \usepackage[utf8]{inputenc}. This guarantees standard 8-bit characters and searchable ASCII text in compiled PDF streams.
3. Configure Hyperref Cleanly
Hyperlinks must display readable URLs (e.g. linkedin.com/in/name) rather than obscure anchor text (e.g. [Link]), because text-only parsers strip the hyperlink target while leaving the visible string.
4. Standardize Margins with Geometry
Use \usepackage[margin=0.75in]{geometry}. Margins below 0.5 inches risk printer clipping and confuse optical bounding-box analyzers.
5. Avoid Icon Packages in Header Blocks
Icons from packages like fontawesome5 often compile as unrecognized Unicode symbols. Use clean plain text separators like $|$ or $\cdot$.
Minimal ATS-Proof LaTeX Boilerplate
Showing example for: General / Other — change this anytime from the field selector in the header.
\documentclass[10pt, letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[margin=0.75in]{geometry}
\usepackage{titlesec}
\usepackage[hidelinks]{hyperref}
\pagestyle{empty}
\titlespacing*{\section}{0pt}{10pt}{4pt}
\begin{document}
\begin{center}
{\LARGE \textbf{Jordan Smith}}\\[4pt]
\small jordan.smith@example.com $|$ (555) 123-4567 $|$ linkedin.com/in/jordansmith $|$ Berkeley, CA
\end{center}
\section*{Core Skills}
\textbf{Tools:} Microsoft Excel, Salesforce CRM, Project Management\\
\textbf{Focus:} Process Improvement, Stakeholder Management
\section*{Experience}
\textbf{Operations Coordinator} \hfill Jan 2024 -- Present\\
\textit{Northbridge Logistics} \hfill Berkeley, CA
\begin{itemize}
\item Redesigned the weekly scheduling workflow, reducing scheduling errors by 25\% across a 30-person team.
\item Renegotiated vendor contracts for office operations, reducing annual costs by \$18,000.
\end{itemize}
\end{document}