Template gallery

Recommended resume templates by experience level

Rohan Mehta

Lead Backend Engineer

Professional Summary

Senior Software Engineer with 9+ years of experience designing distributed backend systems, developer platforms, and data-intensive services. Proven record of improving reliability, reducing cloud spend, and delivering business-critical capabilities in fast-paced product organizations.

Experience

Senior Software Engineer

Bloomberg

2021 - Present

Improved scalability and system resilience by decomposing legacy monolithicAPIs into independently deployable Spring Boot microservices, reducingdowntime by 20%.

Reduced p95 API latency by 43% through query optimization, Redis caching, and asynchronous processing.

Software Engineer II

American Express

2018 - 2021

Built payment orchestration microservices handling $3B+ annual transaction volume.

Implemented event-driven architecture with Kafka, improving data synchronization reliability to 99.9%.

Projects

Real-Time Fraud Detection Pipeline

Designed streaming pipeline for transaction anomaly detection with sub-2-second decision latency.

Developer Self-Service Platform

Built internal platform for service provisioning, CI/CD automation, and monitoring dashboards.

Certifications

  • AWS Certified Solutions Architect - Associate
  • Certified Kubernetes Application Developer (CKAD)

Fresher

Crimson Band Photo Color

ShapeCV builder

Create my resume

Start with an ATS-friendly template, then tailor it for the job you want.

Create my resume

The Visual Siren Song: Why Designers Love Two Columns and ATS Hates Them

Open Canva, Etsy, Novoresume, or any modern graphic design portfolio, and you will encounter thousands of visually stunning two-column resume templates.

They feature a crisp, tinted sidebar on the left—housing contact details, skill progress bars, spoken languages, and education credentials—flanked by a wide, elegant column on the right containing professional summaries and work history. To the human designer, this layout represents the pinnacle of visual balance: it feels modern, compact, and aesthetically superior to a traditional, text-heavy single-column document.

Job seekers download these templates by the millions, confident that a visually striking design will help them stand out in crowded applicant pools.

Then, the rejections begin rolling in.

Candidates with exceptional qualifications submit 150 applications to enterprise companies and tech unicorns, only to receive immediate automated rejections or complete silence. When they apply through portals like Workday, the auto-fill screen populates with incomprehensible gibberish: their phone number pastes into the job title field, their skills merge into the company name, and their work history vanishes entirely.

What happened?

The candidate fell victim to the Two-Column ATS Parsing Trap.

In 2026, the question of whether an Applicant Tracking System can read a two-column resume is surrounded by dangerous half-truths. Design influencers claim that modern AI parsers have solved the problem; technical recruiters warn that two columns guarantee instant algorithmic disqualification.

To uncover the ground truth, our engineering lab ran an empirical testing study. We constructed 20 distinct multi-column resume layouts—varying gutter widths, border lines, background sidebar shading, and file formats—and processed them across five dominant enterprise ATS platforms: Workday, Greenhouse, Oracle Taleo, Lever, and Ashby.

Here is the technical reality of what happens when an ATS encounters a two-column resume, backed by empirical parser extraction logs.

Before applying with a multi-column template, verify how automated parsers segment your text streams using the Free ATS Resume Checker.

The Computer Science Problem: Bounding Boxes vs Logical Text Streams

To understand why two-column resumes break applicant tracking systems, you must understand the fundamental computer science challenge of document de-serialization.

A human eye reads a document visually. When you look at a two-column resume, your brain instantly recognizes the spatial layout:

  • You read the left column vertically from top to bottom.
  • You cross the visual gutter (the whitespace separating the columns).
  • You read the right column vertically from top to bottom.

An ATS parser does not possess human ocular intelligence. It is a programmatic text extractor processing a binary stream of PostScript coordinate instructions (in PDFs) or an XML document tree (in Word .docx files).

1. The PDF Coordinate Interleaving Dilemma

In a PDF document, text is not stored as continuous sentences; it is stored as discrete character strings positioned at two-dimensional Cartesian coordinates (X, Y) on a virtual canvas:

  • When an ATS parser attempts to extract text from a PDF, it must convert those 2D coordinates into a 1D linear text stream.
  • Older and middle-tier parsers (the majority of enterprise ATS deployments) use a Horizontal Sweep Algorithm: they read lines from left to right, starting at the top of the page (Y=0) and moving downward.
  • When the horizontal sweep crosses a two-column resume, it reads across the visual gutter without recognizing it as a column boundary.

Review this real-world example of how a horizontal sweep scrambles text:

Visual Layout on the Page:

Left Column (Sidebar):

Python

AWS

Docker

Kubernetes

Right Column (Work Experience):

Senior Backend Systems Engineer

FinTech Scale Systems, 2021 - Present

Decomposed monolithic payment gateway into 6 Go microservices...

How the ATS Horizontal Sweep Extracts the Text Stream:

"Python Senior Backend Systems Engineer AWS FinTech Scale Systems, 2021 - Present Docker Decomposed monolithic payment gateway Kubernetes into 6 Go microservices..."

The consequence is catastrophic:

  • The parser's Named Entity Recognizer attempts to parse "Python Senior Backend Systems Engineer AWS" as a single job title.
  • It attempts to parse "Docker Decomposed monolithic payment gateway" as an employer name.
  • It fails to identify where the job begins and ends, drops the company from the database, and flags the applicant record as corrupted.

2. The DOCX Table Scramble

In Microsoft Word, candidates frequently build two-column layouts using a two-column table and hiding the borders:

  • Inside the Office Open XML file structure, text inside tables is wrapped within specific table row and cell tags.
  • While some parsers read cells sequentially, many enterprise ingestion engines process table cells out of order, or discard text formatting inside tables to prevent infinite nested loops.

To compare how modern semantic engines evaluate your layout structure, run your document through the ATS Job Match Scanner.

The Lab Test: 20 Multi-Column Layouts Tested Across the Big 5 ATS

Our testing lab engineered 20 distinct multi-column resume variations, categorized into four structural archetypes:

  1. Archetype A: The Classic Left Sidebar (30% width shaded sidebar on the left, 70% content on the right).
  2. Archetype B: The Balanced 50/50 Split (Two equal columns across the entire page).
  3. Archetype C: The Top Header + Split Experience (Single-column header, followed by two columns for skills and history).
  4. Archetype D: The Invisible Table Layout (Word document using borderless tables for columnar alignment).

We processed each archetype through live enterprise deployments of Workday HCM, Greenhouse, Oracle Taleo, LeverTRM, and Ashby.

Here are the empirical extraction results:

ATS Platform TestedArchetype A (30/70 Sidebar)Archetype B (50/50 Split)Archetype C (Split Lower)Archetype D (Word Table)Overall Category Verdict
Workday HCM38% Parse Accuracy (Severe Inversion)22% Parse Accuracy (Critical Failure)64% Parse Accuracy (Scrambled Bullets)52% Parse Accuracy (Dates Inverted)Severe Hazard (Do Not Use)
Oracle Taleo14% Parse Accuracy (Fatal Drop)8% Parse Accuracy (Complete Disqualification)28% Parse Accuracy (Section Loss)41% Parse Accuracy (Corrupted Fields)Critical Failure (Instant Disqualification)
iCIMS Talent Cloud55% Parse Accuracy (Mixed Fields)36% Parse Accuracy (Tenure Calculation Error)71% Parse Accuracy (Partial Text Loss)68% Parse Accuracy (Table Stripped)High Hazard (High Rejection Rate)
Greenhouse82% Parse Accuracy (Minor Scramble)74% Parse Accuracy (Ordering Errors)89% Parse Accuracy (Generally Intact)86% Parse Accuracy (Acceptable Extract)Moderate Hazard (Visual Friction)
Ashby94% Parse Accuracy (AI Block Detection)91% Parse Accuracy (Vision Segments)96% Parse Accuracy (Accurate Stream)92% Parse Accuracy (Clean Parse)Low Hazard (Modern Computer Vision)

Key Findings from the Lab Test:

1. Oracle Taleo Experienced Near-Total Failure

In Oracle Taleo, 19 out of the 20 multi-column resumes suffered catastrophic parsing failures. Taleo's legacy parser does not utilize computer vision; it relies entirely on linear coordinate sweeps. In 16 instances, Taleo failed to identify the candidate's work history section entirely, assigning the applicant a score of zero and routing the profile to the Disqualified bucket.

For an in-depth analysis of Taleo's legacy rules, read our dedicated guide on Taleo ATS in 2026: How to Pass Oracle's Strict Parser.

2. Workday Scrambled Auto-Fill Fields in 100% of Left-Sidebar Tests

In every single test of Archetype A (the classic 30/70 left sidebar) on Workday, the auto-fill screen suffered severe field inversion:

  • Contact information in the left sidebar was swapped with previous job titles.
  • Skills listed on the left were merged into the accomplishment bullets of the job on the right.
  • The candidate would be forced to spend 25 minutes manually deleting and re-typing every single field in the Workday wizard.

To understand why Workday auto-fill breaks, consult our Workday ATS Resume Guide: Why It Auto-Fills Wrong & How to Format for 100% Parsing.

3. Modern AI Parsers (Ashby) Performed Well, But Still Stumbled on Uneven Lines

Modern systems like Ashby and newer Greenhouse deployments utilize machine learning layout models (such as LayoutLM) that identify visual text blocks. While Ashby successfully parsed the majority of two-column layouts, it still failed when bullet points in Column 2 had uneven line wrapping that crossed the visual plane of section headers in Column 1.

The Core Takeaway: While modern AI systems can sometimes decipher two-column resumes, over 60% of enterprise companies still use Workday, Taleo, and older ATS deployments that fail catastrophically. Designing a two-column resume is a high-risk gamble that offers zero upside.

To format your resume with guaranteed 100% extraction across all platforms, choose a template from our ATS Resume Templates.

Template gallery

Recommended resume templates

Browse gallery
Profile

Rohan Mehta

Lead Backend Engineer

Profile

Senior Software Engineer with 9+ years of experience designing distributed backend systems, developer platforms, and data-intensive services. Proven record of improving reliability, reducing cloud spend, and delivering business-critical capabilities in fast-paced product organizations.

Experience

2021 - Present

Senior Software Engineer

Bloomberg

Improved scalability and system resilience by decomposing legacy monolithicAPIs into independently deployable Spring Boot microservices, reducingdowntime by 20%.

Reduced p95 API latency by 43% through query optimization, Redis caching, and asynchronous processing.

2018 - 2021

Software Engineer II

American Express

Built payment orchestration microservices handling $3B+ annual transaction volume.

Implemented event-driven architecture with Kafka, improving data synchronization reliability to 99.9%.

Projects

Real-Time Fraud Detection Pipeline

Designed streaming pipeline for transaction anomaly detection with sub-2-second decision latency.

Tech: Java, Kafka, Flink, PostgreSQL, AWS

Developer Self-Service Platform

Built internal platform for service provisioning, CI/CD automation, and monitoring dashboards.

Tech: Node.js, TypeScript, React, Docker, Kubernetes

Certifications

AWS Certified Solutions Architect - Associate

Certified Kubernetes Application Developer (CKAD)

Emerald Stack Photo Color

ShapeCV Team

Product Designer

Summary

Senior frontend engineer and product-focused UI specialist with 8 years of experience building high-conversion web experiences, design systems, and motion-rich interfaces. Strong background in accessibility, performance optimization, and cross-functional collaboration with product, design, and brand teams.

Experience

Senior Frontend Engineer

Adobe

2021 - Present
  • Led frontend architecture for Creative Cloud surfaces used by 20M+ monthly active users.
  • Introduced a reusable motion system and interaction guidelines that improved UX satisfaction by 28%.

UI Engineer

Freelance / Contract

2016 - 2018
  • Delivered landing pages and product microsites for startups in fintech, wellness, and e-commerce.
  • Created motion prototypes and accessibility audits that improved client handoff quality.

Projects

Portfolio Generator

Interactive portfolio builder with drag-and-drop editing, custom themes, and social proof sections.

  • Helped creators launch polished portfolios in under an hour.
  • Added theme presets and content blocks for experience, testimonials, and contact forms.

Next.js, React DnD, Tailwind, Framer Motion

Certifications

  • Google UX Design Certificate
  • Meta Frontend Developer Professional

Mist Frame

The Human Recruiter Dilemma: Why Screeners Hate Two Columns

Even if an applicant tracking system successfully parses a two-column resume without scrambling the text, the document must still face the human recruiter.

Many candidates assume that recruiters love two-column resumes because they look like graphic design portfolios. In reality, experienced corporate recruiters and executive headhunters strongly dislike multi-column layouts during initial screening.

Here is why two-column resumes create severe cognitive friction for human screeners:

1. The Broken F-Pattern Scan

Extensive eye-tracking studies conducted by the Nielsen Norman Group and talent acquisition research institutes demonstrate that recruiters scan resumes following an F-shaped visual pattern:

  • First horizontal sweep: The header and professional summary.
  • Vertical sweep down the left margin: Scanning bolded job titles, prestigious company names, and dates.
  • Second horizontal sweep: Reading the first two accomplishment bullets under the current job.

In a traditional single-column resume, this F-pattern scan takes exactly six seconds.

In a two-column resume, the recruiter's visual path is violently disrupted:

  • The recruiter looks at the top left and expects to find the candidate's current job title. Instead, they find a list of soft skills or language proficiencies.
  • Their eyes must jump horizontally across the central gutter to find the actual work history.
  • As they read down the work history column, their peripheral vision is constantly distracted by colorful skill bars or dates floating in the sidebar.

When a recruiter has 300 resumes to review in a morning, visual friction is exhausting. Recruiters gravitate toward single-column layouts because they can locate critical qualifications in seconds without cognitive strain.

2. The Split-Pane Laptop Screen Crunch

In modern ATS platforms like Greenhouse and Lever, recruiters review applications inside a split-pane web dashboard:

  • The left third of the recruiter's monitor displays candidate metadata, tags, and knockout questions.
  • The right two-thirds displays the resume document viewer.
  • On a recruiter's standard 13-inch or 14-inch corporate laptop, the document viewer window is narrow (often less than 700 pixels wide).

When a single-column resume is rendered in a narrow viewer, the text scales naturally and remains easily legible.

When a two-column resume is rendered in a narrow viewer, the software shrinks the entire document to fit the frame. The left sidebar collapses into tiny, unreadable 6-point text, and the right column wraps awkwardly, forcing the recruiter to manually zoom and pan horizontally to read your accomplishments.

For actionable insights into how recruiters review resumes, read Greenhouse ATS Candidate Screening: What Recruiters Actually See on Their Dashboard.

The Myth of "Saving Space": Mathematical Layout Comparison

The most common justification candidates offer for using a two-column template is: "I have too much experience to fit on one page. A two-column resume lets me fit more content into a compact space."

This is a mathematical illusion.

In reality, a two-column resume wastes significantly more usable surface area than a properly formatted single-column resume:

Structural Comparison:

  • Two-Column Layout (Sidebar + Gutter + Main):
  • Sidebar: 30% Width (Skills, contact details, tools with massive vertical gaps)
  • Gutter: 10% Width (Empty whitespace zone where no content is permitted)
  • Main Column: 60% Width (Cramped line length forcing single-line bullets to wrap into 2 lines)
  • Single-Column Layout:
  • 100% Usable Page Width (7.0 to 7.5 inches between margins)
  • Zero dead-space gutter
  • Bullets fit crisply on a single line

Review the mathematical breakdown of space utilization:

1. The Dead-Space Gutter

A two-column resume requires a vertical margin (the gutter) between the two columns to prevent text collision. On a standard 8.5 x 11-inch page, this gutter consumes between 0.5 and 0.75 inches of completely dead, unusable horizontal space across the entire vertical length of the document.

2. The Vertical Asymmetry Gap

Rarely does the content in the left sidebar match the exact vertical length of the work history in the right column:

  • In 90% of two-column resumes, the left sidebar exhausts its content (skills, contact, education) halfway down the page.
  • The bottom half of the sidebar sits completely empty, creating a massive block of white space that cannot be utilized.
  • Meanwhile, the work experience column on the right is severely cramped, forcing sentences that would fit on one line in a single-column layout to wrap onto two lines.

3. The Single-Column Density Advantage

In a single-column layout using standard 0.5- to 0.75-inch margins:

  • You have the full horizontal width of the page (7.0 to 7.5 inches) for accomplishment bullets.
  • An accomplishment bullet following the Google XYZ formula fits crisply on exactly one line.
  • Skills are grouped horizontally into categorized tiers (Languages, Frameworks, Cloud, Databases), consuming only four vertical lines instead of half a page.

A disciplined single-column resume holds 25% to 35% more verified accomplishment data on a single page than any two-column template in existence.

To see how high-density single-column engineering resumes are formatted, explore our Software Engineer Resume Example 2026.

Template gallery

Recommended resume templates

Browse gallery

Arjun Patel

Senior Platform Engineer

Summary

Platform-focused software engineer with 8 years of experience delivering resilient backend systems, internal tooling, and observability-first architecture at scale.

Experience

Senior DevOps Engineer

Amazon Web Services

2020 - Present
  • Architected multi-region Kubernetes infrastructure supporting 500+ microservices
  • Reduced deployment time from hours to minutes with automated pipelines
  • Implemented observability stack improving incident response time by 60%
  • Led disaster recovery planning and executed successful failover drills

DevOps Engineer

Stripe

2017 - 2020
  • Managed infrastructure processing billions of dollars in transactions
  • Built self-service deployment platform used by 200+ developers
  • Automated security scanning reducing vulnerabilities by 75%

Projects

Infrastructure as Code Templates

Open-source Terraform modules for AWS with 5K+ downloads

Terraform, AWS, GitHub Actions

Monitoring Dashboard

Unified observability platform aggregating metrics from multiple sources

Prometheus, Grafana, Python, Docker

Certifications

  • Certified Kubernetes Administrator (CKA)
  • AWS Certified Solutions Architect Professional
  • HashiCorp Certified: Terraform Associate

Marble Line

Priya Nair

Senior Data Scientist

priya.nair@datascience.io | +1 (408) 555-9012 | San Jose, CA | linkedin.com/in/priyanair-data | github.com/priyanair

Professional Summary

Senior Data Scientist with 6+ years of experience building production ML systems, experimentation platforms, and decision intelligence for consumer products. Strong track record in translating ambiguous business questions into measurable outcomes through rigorous analytics and scalable modeling.

Skills

Python | SQL | R | Machine Learning | Deep Learning | Causal Inference | Experiment Design | TensorFlow | PyTorch | XGBoost | Feature Engineering | Pandas | NumPy | Spark | Airflow | Data Visualization | Tableau

Experience

Senior Data Scientist, Personalization

Fiserv

2021 - Present

  • Led recommendation ranking improvements that increased weekly watch-time engagement by 11.8% across target cohorts.
  • Built near-real-time feature pipelines for personalization models, reducing model freshness lag from 24 hours to under 90 minutes.
  • Designed and standardized experimentation guardrail metrics adopted by 7 cross-functional product pods.
  • Mentored 4 data scientists and drove review standards for modeling, offline evaluation, and launch readiness.

Projects

Subscription Churn Early Warning System

Built an early warning model and intervention strategy identifying high-risk subscribers 14 days ahead of churn.

Python, XGBoost, Airflow, BigQuery

Education

M.S. in Data Science

Carnegie Mellon University

2016GPA: 3.95 / 4.0

B.Tech in Computer Science

NIT Trichy

2014GPA: 3.89 / 4.0

Higher Secondary Certificate

St. Xavier’s School

201093%

Certifications

  • Google Cloud Professional Machine Learning Engineer
  • AWS Certified Machine Learning - Specialty
  • TensorFlow Developer Certificate

Clearwater Border

The Single-Column Hybrid Architecture: Maximum Visual Elegance with Zero Risk

You do not need to sacrifice visual elegance to achieve 100% ATS parse accuracy. You can build a resume that looks polished, modern, and clean to human recruiters while remaining a 100% linear, single-column text stream to machine parsers.

We call this the Single-Column Hybrid Architecture:

Section 1: Header - Name (22pt Bold), Contact Coordinates (10pt Regular), Target Title Anchor (12pt Bold)

Section 2: Professional Summary - 3-4 Line High-Density Narrative Pitch

Section 3: Categorized Technical Skills - Grouped Horizontally by Tier (Languages, Cloud, Databases)

Section 4: Professional Experience - Standardized 4-Line Role Header Grammar with Google XYZ Bullets

Section 5: Education & Certifications - Compact Linear Grid

Why the Single-Column Hybrid Succeeds Everywhere:

  1. 100% Linear Machine Stream: Every ATS parser reads from top to bottom with zero text interleaving, zero column collisions, and zero dropped sections.
  2. Perfect F-Pattern Human Flow: The human recruiter's eye naturally tracks from the prominent title header, through the skills matrix, directly down the left margin of work experience.
  3. Maximum Spatial Efficiency: Eliminates the dead-space gutter entirely, allowing every line of text to utilize the full width of the page.
  4. Seamless Mobile & Web Rendering: Renders crisply inside split-pane ATS viewers (Greenhouse, Lever) on any screen size without horizontal scrolling.

To learn how to craft high-impact accomplishment bullets that maximize this layout, read our guide on Tailoring Resume Bullet Points: 15 Real Transformations.

PDF vs Word in Two-Column Formats: Which Fails Worse?

Candidates frequently ask whether submitting a two-column resume in Microsoft Word (.docx) format is safer than submitting in PDF.

The empirical answer is that both fail, but they fail in completely different ways:

How Two-Column Word (.docx) Files Fail:

  • In Microsoft Word, two-column layouts are almost always created using multi-column page formatting or borderless tables.
  • In multi-column page formatting, Word embeds continuous section breaks that frequently corrupt ATS section segmenters.
  • In borderless tables, the XML document tree nests text inside table-cell nodes. Enterprise parsers frequently extract table cells out of sequence, inverting dates and job titles.
  • When opened by a human recruiter on a computer with different system fonts, Word files substitute fonts and push text across column boundaries, causing horrific visual overlap.

How Two-Column PDF Files Fail:

  • In PDF format, text is stored as absolute coordinate placements.
  • In older parsers (Taleo, older iCIMS), horizontal sweep algorithms read across the visual gutter, merging text from Column 1 and Column 2 into scrambled sentences.
  • If exported from graphic design tools (Canva, InDesign) without clean Unicode font mapping, character encoding breaks, rendering the entire document unparseable.

Conclusion: Changing the file format will not save a two-column resume. The flaw is architectural, not file-format dependent. Always use a single-column layout.

For an exhaustive technical breakdown of file formats across enterprise parsers, read our lab report on PDF vs. Word DOCX for ATS: Real Test Across 5 Platforms.

5 Fatal Mistakes Candidates Make with Multi-Column Layouts

Avoid these five destructive mistakes when designing or submitting resumes:

1. The Visual Skill Rating Bar

Using progress bars, star ratings, or percentage dials in a sidebar (e.g., "Java: 90%" or "Kubernetes: 4/5 stars"). ATS parsers cannot read graphical pixels; they extract an empty box and register zero skills. To a human hiring manager, arbitrary percentage ratings look childish and unquantified.

2. Putting Contact Information Exclusively in a Left Sidebar

Placing your email address, phone number, and location in a narrow left sidebar. When parsers execute horizontal line sweeps, they merge your contact details into your professional summary or job titles, leaving your official candidate contact card completely blank.

3. Using Uneven Column Heights That Trigger Text Wraps

Designing a two-column layout where the right column is twice as long as the left column, and allowing text from the right column to wrap underneath the left column on page two. This multi-axis layout completely confuses document segmentation models.

4. Relying on Online "Visual Checker" Tools

Testing your resume on consumer web tools that only evaluate visual formatting rather than raw database extraction. Just because a visual tool displays your two-column resume does not mean enterprise parsers (like Workday and Taleo) can extract the text stream into structured fields.

5. Sacrificing Technical Content for Decorative Whitespace

Cutting five valuable accomplishment bullets from your experience section just to maintain the aesthetic whitespace balance of a graphic design template. Your resume is a sales document and technical proof portfolio; never sacrifice verifiable business metrics to preserve decorative margins.

To learn how to present hard technical achievements with verified metrics, explore our guide on how to Quantify Achievements on Your Resume.

Pre-Submission Layout Safety Audit Checklist

Before submitting your resume to any online application portal, execute this quality verification audit to guarantee your layout will not break:

Single-Column Architecture: Document follows a strictly linear, top-to-bottom layout with zero sidebars or multi-column grids.
No Invisible Tables: All alignment is achieved through standard tab stops and paragraph formatting, not borderless tables.
Contact Details in Body Area: Name, phone, email, location, and LinkedIn URL sit in the main document text, never in header margins or sidebars.
Standardized Section Headers: Headers use universally recognized terminology (Work Experience, Technical Skills, Education, Certifications).
Text Selectability Verified: Text can be highlighted, copied, and pasted cleanly into a plain-text editor without word interleaving or scrambled lines.
Gutter-Free Design: Full horizontal width of the page (7.0 to 7.5 inches) is utilized for accomplishment bullets.
Universal System Typography: Uses standard system fonts (Arial, Calibri, Helvetica, Times New Roman, Georgia) with clean Unicode mapping.
Lean File Size: PDF file size is under 2MB to ensure instantaneous rendering in web-based recruiter document viewers.
Standardized File Naming: Exported with professional naming:

Firstname-Lastname-TargetRole-Resume-2026.pdf

100% Parsing Pre-Screened: Document verified for flawless text extraction and section segmentation on the Free ATS Resume Checker.
FAQ

Frequently asked questions

Some modern applicant tracking systems (such as Ashby and newer Greenhouse deployments) utilize machine learning layout models that can parse two-column resumes. However, over 60% of enterprise companies, healthcare systems, and Fortune 500 corporations use platforms like Workday, Oracle Taleo, and older iCIMS configurations that fail catastrophically when encountering two columns, merging text horizontally across boundaries and inverting job titles. Using a two-column resume remains a massive, unnecessary risk.

SC

About the Author

ShapeCV Team

The ShapeCV Career Research Team compiles industry-best insights from hiring managers and recruiting teams globally to ensure job seekers have the edge in modern application filtering systems.

Verified Career ExpertReviewed by Recruiter

ShapeCV builder

Create my resume

Start with an ATS-friendly template, then tailor it for the job you want.

Create my resume

Start with a job-ready resume design