
Awesome Phd Cv
Generate ATS-safe industry resumes or full academic CVs in LaTeX when you are applying to faculty roles, big tech, or consulting as a solo builder.
Overview
Awesome PhD CV is an agent skill for the Grow phase that guides LaTeX CV and resume template selection for PhD students and researchers, including ATS industry and full academic formats.
Install
npx skills add https://github.com/aradotso/trending-skills --skill awesome-phd-cvWhat is this skill?
- Three template families: Awesome-CV (multi-page academic), Jake's one-page ATS industry, Deedy two-column tech resume
- Engine guidance: pdfLaTeX for Jake's ATS format; XeLaTeX for Awesome-CV and Deedy
- Covers academic-to-industry conversion and faculty/postdoc application layouts
- Prereq checklist for full TeX installs on macOS, Linux, and Windows
- Curated ara.so Daily 2026 Skills collection focused on PhD, postdoc, and researcher workflows
- 3 distinct template families: Awesome-CV, Jake's format, Deedy format
Adoption & trust: 839 installs on skills.sh; 31 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You need a credible LaTeX CV or resume but do not know which template, engine, or layout matches faculty hiring versus ATS-scanned industry applications.
Who is it for?
Postdocs and PhD students switching between academic CVs and one-page industry resumes aimed at ATS and big tech.
Skip if: Builders who want a no-LaTeX portfolio site, Notion resume, or generic cover-letter copy without TeX tooling.
When should I use this skill?
Triggers include help making a PhD CV in LaTeX, academic CV templates, ATS-safe LaTeX resume, faculty applications, Deedy or Jake's templates, and academic-to-industry conversion.
What do I get? / Deliverables
You leave with a matched template path (Awesome-CV, Jake's, or Deedy), TeX setup steps, and a structure ready to compile for your target role.
- Selected template path and engine choice
- Compile-ready LaTeX CV or resume structure
Recommended Skills
Journey fit
Canonical shelf is Grow because CVs and resumes compound your professional distribution story after you have something to ship—not primary product build work. Content fits polished, reusable career artifacts (resume/CV files) you publish or submit in hiring and speaking pipelines.
How it compares
Template-and-engine playbook for LaTeX CVs, not a WYSIWYG resume builder or LinkedIn profile optimizer.
Common Questions / FAQ
Who is awesome-phd-cv for?
PhD students, postdocs, and researchers—including solo builders applying to faculty, industry SWE, or experienced tech roles—who want proven LaTeX CV templates.
When should I use awesome-phd-cv?
Use it in Grow when refreshing career content for applications, and in Launch when distribution depends on a polished CV; also when converting an academic CV to an ATS-safe industry resume before interviews.
Is awesome-phd-cv safe to install?
Review the Security Audits panel on this Prism page and inspect the skill bundle before letting an agent run shell or filesystem steps on your machine.
SKILL.md
READMESKILL.md - Awesome Phd Cv
# Awesome PhD CV > Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection. A curated collection of LaTeX CV/resume templates for PhD students, postdocs, and researchers. Covers three distinct use cases: ATS-safe industry resumes (Jake's format), high-density two-column resumes (Deedy format), and full multi-page academic CVs (Awesome-CV format). --- ## What This Project Provides | Template | Use Case | Engine | Columns | Pages | |----------|----------|--------|---------|-------| | `research-cv/` (Awesome-CV) | Faculty, postdoc, academic CV | XeLaTeX | 1 | Multi | | `jakes-format/` | Industry SWE, big tech, ATS-critical | pdfLaTeX | 1 | 1 | | `deedy-format/` | Experienced tech professionals | XeLaTeX | 2 | 1 | --- ## Installation & Setup ### Prerequisites Install a full TeX distribution: ```bash # macOS brew install --cask mactex # Ubuntu/Debian sudo apt-get install texlive-full # Windows — download MiKTeX from https://miktex.org/ ``` For XeLaTeX templates (Awesome-CV, Deedy), ensure font packages are available: ```bash # Ubuntu sudo apt-get install fonts-font-awesome texlive-xetex ``` ### Clone the Repo ```bash git clone https://github.com/LimHyungTae/Awesome-PhD-CV.git cd Awesome-PhD-CV ``` --- ## Template 1: Jake's Format (Industry / ATS-Safe) **File:** `jakes-format/resume.tex` **Engine:** pdfLaTeX — no custom fonts, no multi-column, passes ATS parsers at Google, Meta, Amazon, Apple, Microsoft. ### Compile ```bash cd jakes-format pdflatex resume.tex ``` ### Key Commands in Jake's Format ```latex % Section header \section{Experience} % Job/project entry \resumeSubheading {Company or Institution Name}{City, Country} {Your Title}{Start Date -- End Date} \resumeItemListStart \resumeItem{Built X system achieving Y metric on Z dataset/platform.} \resumeItem{Deployed model to production serving N requests/day.} \resumeItemListEnd % Education entry (same command) \resumeSubheading {Massachusetts Institute of Technology}{Cambridge, MA} {Postdoctoral Associate, CSAIL}{Jan 2025 -- Present} % Skills section \resumeSubHeadingListStart \resumeSubItem{Languages}{Python, C++, CUDA, Bash} \resumeSubItem{Frameworks}{PyTorch, ROS2, Open3D, PCL} \resumeSubHeadingListEnd ``` ### Full Minimal Example: Jake's Format ```latex \documentclass[letterpaper,11pt]{article} \usepackage{latexsym} \usepackage[empty]{fullpage} \usepackage{titlesec} \usepackage{marvosym} \usepackage[usenames,dvipsnames]{color} \usepackage{verbatim} \usepackage{enumitem} \usepackage[hidelinks]{hyperref} \usepackage{fancyhdr} \usepackage[english]{babel} \usepackage{tabularx} \pagestyle{fancy} \fancyhf{} \fancyfoot{} \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0pt} \addtolength{\oddsidemargin}{-0.5in} \addtolength{\evensidemargin}{-0.5in} \addtolength{\textwidth}{1in} \addtolength{\topmargin}{-.5in} \addtolength{\textheight}{1.0in} \urlstyle{same} \raggedbottom \raggedright \setlength{\tabcolsep}{0in} % Section formatting \titleformat{\section}{ \vspace{-4pt}\scshape\raggedright\large }{}{0em}{}[\color{black}\titlerule \vspace{-5pt}] % Custom commands \newcommand{\resumeItem}[1]{\item\small{#1 \vspace{-2pt}}} \newcommand{\resumeSubheading}[4]{ \vspace{-2pt}\item \begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r} \textbf{#1} & #2 \\ \textit{\small#3} & \textit{\small #4} \\ \end{tabular*}\vspace{-7pt} } \newcommand{\resumeItemListStart}{\begin{itemize}} \newcommand{\resumeItemL