mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
Initial release: AI-powered job application framework
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
committed by
Mads Lorentzen
co-authored by
Claude Opus 4.6
commit
c66d599d75
@@ -0,0 +1,171 @@
|
||||
%% Example CV - [YOUR_NAME]
|
||||
%% Comprehensive overview of all competencies, experience, and achievements.
|
||||
%% Use as a master reference when tailoring role-specific CVs.
|
||||
%%
|
||||
%% SETUP: Run /setup to populate this with your actual information.
|
||||
%% Compile with: pdflatex main_example.tex
|
||||
|
||||
\documentclass[11pt,a4paper,sans]{moderncv}
|
||||
\moderncvstyle{banking}
|
||||
\moderncvcolor{blue}
|
||||
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
colorlinks=true,
|
||||
linkcolor=blue,
|
||||
filecolor=magenta,
|
||||
urlcolor=blue,
|
||||
pdftitle={[YOUR_NAME] - CV},
|
||||
pdfpagemode=FullScreen,
|
||||
}
|
||||
\usepackage[scale=0.80]{geometry}
|
||||
\usepackage{import}
|
||||
|
||||
% personal data
|
||||
\name{[First]}{[Last]}
|
||||
\address{[Your Address, City, Country]}{}{}
|
||||
\phone[mobile]{[+XX XXXXXXXXXX]}
|
||||
\email{[your.email@example.com]}
|
||||
\extrainfo{\href{[https://linkedin.com/in/your-profile]}{LinkedIn}, \href{[https://github.com/your-username]}{GitHub}}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\makecvtitle
|
||||
|
||||
% ============================================================
|
||||
% PROFILE STATEMENT
|
||||
% ============================================================
|
||||
|
||||
\vspace{6pt}
|
||||
\small{[Write a 3-5 line profile statement tailored to the role you're applying for. Focus on what makes you uniquely qualified. Example: "Data scientist with a PhD in [field] and X years of industry experience. Combines deep domain expertise in [domain] with strong applied machine learning and Python development skills. Experienced in developing end-to-end ML pipelines, from data ingestion to stakeholder-facing dashboards."]}
|
||||
|
||||
% ============================================================
|
||||
% CORE COMPETENCIES
|
||||
% ============================================================
|
||||
|
||||
\section{Core Competencies}
|
||||
\vspace{1pt}
|
||||
\begin{itemize}
|
||||
|
||||
\item \textbf{[Skill Category 1]}: [Specific skills, frameworks, tools. Be concrete.]
|
||||
\vspace{1pt}
|
||||
|
||||
\item \textbf{[Skill Category 2]}: [Specific skills, frameworks, tools.]
|
||||
\vspace{1pt}
|
||||
|
||||
\item \textbf{[Skill Category 3]}: [Specific skills, frameworks, tools.]
|
||||
\vspace{1pt}
|
||||
|
||||
\item \textbf{[Skill Category 4]}: [Domain expertise, methods, approaches.]
|
||||
\vspace{1pt}
|
||||
|
||||
\item \textbf{[Skill Category 5]}: [Tools, platforms, software.]
|
||||
|
||||
\end{itemize}
|
||||
|
||||
% ============================================================
|
||||
% PROFESSIONAL EXPERIENCE
|
||||
% ============================================================
|
||||
|
||||
\section{Professional Experience}
|
||||
\vspace{3pt}
|
||||
\begin{itemize}
|
||||
|
||||
% --- Most Recent Role ---
|
||||
\item{\cventry{[YYYY--Present]}{[Job Title]}{[Company]}{[City, Country]}{}{\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item [Achievement or responsibility 1 - be specific, use numbers where possible]
|
||||
\vspace{1pt}
|
||||
\item [Achievement or responsibility 2]
|
||||
\vspace{1pt}
|
||||
\item [Achievement or responsibility 3]
|
||||
\vspace{1pt}
|
||||
\item [Achievement or responsibility 4]
|
||||
\end{itemize}}}
|
||||
|
||||
\vspace{3pt}
|
||||
|
||||
% --- Previous Role ---
|
||||
\item{\cventry{[YYYY--YYYY]}{[Job Title]}{[Company]}{[City, Country]}{}{\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item [Achievement or responsibility 1]
|
||||
\vspace{1pt}
|
||||
\item [Achievement or responsibility 2]
|
||||
\vspace{1pt}
|
||||
\item [Achievement or responsibility 3]
|
||||
\end{itemize}}}
|
||||
|
||||
\vspace{3pt}
|
||||
|
||||
% --- Earlier Role ---
|
||||
\item{\cventry{[YYYY--YYYY]}{[Job Title]}{[Company]}{[City, Country]}{}{\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item [Achievement or responsibility 1]
|
||||
\vspace{1pt}
|
||||
\item [Achievement or responsibility 2]
|
||||
\end{itemize}}}
|
||||
|
||||
\end{itemize}
|
||||
|
||||
% ============================================================
|
||||
% EDUCATION
|
||||
% ============================================================
|
||||
|
||||
\section{Education}
|
||||
\vspace{1pt}
|
||||
\begin{itemize}
|
||||
|
||||
\item{\cventry{[YYYY--YYYY]}{[Degree] in [Field]}{[Institution]}{[City, Country]}{}{\vspace{1pt}
|
||||
Thesis: ``[Thesis Title].'' [Brief description of research focus.]
|
||||
}}
|
||||
|
||||
\vspace{3pt}
|
||||
|
||||
\item{\cventry{[YYYY--YYYY]}{[Degree] in [Field]}{[Institution]}{[City, Country]}{}{\vspace{1pt}
|
||||
[Brief description or key topics.]
|
||||
}}
|
||||
|
||||
\end{itemize}
|
||||
|
||||
% ============================================================
|
||||
% LANGUAGES
|
||||
% ============================================================
|
||||
|
||||
\section{Languages}
|
||||
\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item [Language 1] (native), [Language 2] (fluent), [Language 3] (intermediate).
|
||||
\end{itemize}
|
||||
|
||||
% ============================================================
|
||||
% PUBLICATIONS (optional)
|
||||
% ============================================================
|
||||
|
||||
\section{Publications}
|
||||
\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item [Author(s)] ([Year]). [Title]. [Journal/Conference]. \href{[DOI_URL]}{DOI link}
|
||||
\end{itemize}
|
||||
|
||||
% ============================================================
|
||||
% HONORS AND AWARDS (optional)
|
||||
% ============================================================
|
||||
|
||||
\section{Honors and Awards}
|
||||
\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item{\textbf{[Award Name]} -- [Event/Organization] ([Year]).}
|
||||
\end{itemize}
|
||||
|
||||
% ============================================================
|
||||
% REFERENCES
|
||||
% ============================================================
|
||||
|
||||
\section{References}
|
||||
\vspace{1pt}
|
||||
\begin{itemize}
|
||||
\item{Available upon request.}
|
||||
\end{itemize}
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user