英文履歴書をLaTeXで書くときは moderncv で書いてみよう

moderncv とは

 \LaTeX を使って英文履歴書を書くときに便利なパッケージ。

ホームページはこちら: https://www.ctan.org/pkg/moderncv

テンプレート

ChatGPTで生成した。TexShop バージョン 5.14 で動作確認済。

\photo[70pt][0.4pt]{picture} %optional

はプロフィール写真が無ければコメントアウトする。

\documentclass[11pt,a4paper]{moderncv}

% ModernCV themes
\moderncvstyle{classic} 
\moderncvcolor{blue} 

% Adjust the page margins
\usepackage[scale=0.75]{geometry}

% Personal information
\name{First name}{Last name}
\title{Resume title (optional)}
\address{Street, City, Country}
\phone[mobile]{Your phone number}
\email{Your email}
\homepage{Your website or portfolio (optional)}
\photo[70pt][0.4pt]{picture} %optional
\quote{Some personal quote (optional)}

\begin{document}
\makecvtitle

\section{Education}
\cventry{Year--Year}{Degree}{Institution}{City}{\textit{Grade}}{Description}  
\cventry{Year--Year}{Degree}{Institution}{City}{\textit{Grade}}{Description}

\section{Master thesis}
\cvitem{Title}{Your thesis title}
\cvitem{Supervisors}{Your supervisors}
\cvitem{Description}{Short thesis abstract}

\section{Experience}
\subsection{Vocational}
\cventry{Year--Year}{Job title}{Employer}{City}{}{General description no longer than 1--2 lines.\newline{}Detailed achievements:%
\begin{itemize}%
\item Achievement 1;
\item Achievement 2, with sub-achievements:
  \begin{itemize}%
  \item Sub-achievement (a);
  \item Sub-achievement (b), with sub-sub-achievements (don't do this!);
    \begin{itemize}
    \item Sub-sub-achievement i;
    \item Sub-sub-achievement ii;
    \item Sub-sub-achievement iii;
    \end{itemize}
  \item Sub-achievement (c);
  \end{itemize}
\item Achievement 3.
\end{itemize}}
\cventry{Year--Year}{Job title}{Employer}{City}{}{Description line 1\newline{}Description line 2}

\section{Languages}
\cvitemwithcomment{Language 1}{Skill level}{Comment}
\cvitemwithcomment{Language 2}{Skill level}{Comment}
\cvitemwithcomment{Language 3}{Skill level}{Comment}

\section{Computer skills}
\cvdoubleitem{Category 1}{Comment}{Category 4}{Comment}
\cvdoubleitem{Category 2}{Comment}{Category 5}{Comment}
\cvdoubleitem{Category 3}{Comment}{Category 6}{Comment}

\section{Interests}
\cvitem{Hobby 1}{Description}
\cvitem{Hobby 2}{Description}
\cvitem{Hobby 3}{Description}

\end{document}