编程之外:使用Latex/Tex创建自己的简历。

来源:互联网 发布:淘宝erp系统哪个好 编辑:程序博客网 时间:2024/06/05 18:17



http://www.cnblogs.com/aoaoblogs/archive/2013/01/24/2874595.html 


使用Latex/Tex创建自己的简历。

正在折腾Latex,看到篇博客Creating a Resume Using LaTeX, 于是也把自己的简历用Latex重新写了一遍,好处就是可以使用git来管理自己的简历版本了,比word舒服多了。

这里所用的res.cls来源于Using the LaTeX Resume Templates。

细节就不写了,最终写出来的效果是这样的。里面的内容大部分是真的,改掉了一些和隐私密切相关的东西。

或者可以下载pdf文件

Tex文件如下(这里不好拷贝的话,可以去这里下载整个文件)

\documentclass[line,margin,UTF8]{res}
\usepackage{xcolor}
\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent}   % uses new century schoolbook postscript font
 
\usepackage{enumitem}
 
\usepackage[hyperfootnotes=true,pdfborder={0 0 0}]{hyperref} 
\hypersetup{pdfborder=0 0 0}
\usepackage{CJKutf8}
\AtBeginDvi{\input{zhwinfonts}}
 
\renewcommand\thefootnote{\textcolor{red}{\arabic{footnote}}}
 
\makeindex
 
\begin{document}
\name{Aoao
\begin{CJK*}{UTF8}{zhsong}
(嗷嗷)
\end{CJK*} }
 
\address{Aoao@Abc.Com}
\address{136-123-45678}
 
\begin{resume} 
\section{OBJECTIVE}
A position in the field of computer with special interests in graphic, media or driver.
 
\section{EDUCATION}
 {\sl Master of Computer Science} \\
 University of ABC \\
 200X $\sim$ 200X \\
[10pt]
 {\sl Bachelor of Computer Science} \\
 University of ABC \\
 199X $\sim$ 200X
 
\section{EXPERIENCE}
 {\bf XXX R\&D Ltd, Shanghai, PRC \hfill July 200X $\sim$ Present}
 \vspace{3pt}
 \begin{itemize}
\item \makebox[7cm][l]{\textit{Windows Graphic Driver Developer\hfil}} 200X $\sim$ Present
    \vspace{-3pt}
    \begin{itemize}
        \item {\bf Over} five years graphic driver development experience on Vista/Win7/Win8 for four hardware platforms.
        \item {\bf Focus} on media module(DXVA2); understand popular media players' pipeline.
        \item {\bf Known} Windows Display Driver Mode(WDDM) very well; delivery the training multiple timesfor dozens of audiences
        \item {\bf Master} at various diagnostic tools: Windbg, Xperf, GpuView, Vtune \ldots
    \end{itemize}
\item \makebox[7cm][l]{\textit{C Compiler Validation\hfil}} 200X $\sim$ 200X
    \vspace{-3pt}
    \begin{itemize}
        \item {\bf Maintain} automatic testing system used by more than hundred persons and containing 20k+ test cases.
        \item {\bf Design} test cases for optimized code debugging feature of the compiler.The compiler is designed for an embedding platform. It's impossible to load un-optimized binary in its limited memory, so the compiler has to support debugging optimized code.
    \end{itemize}
 
 \end{itemize}
 
 \section{SKILLS}
 \begin{itemize}
 \item C
 \item C++\footnote{\textit{C++ is a horrible language.} No body can master it, I'm just no bad.I don't know Templates and C++11.}
 \item Windbg, GpuView, Vtune
 \item Intel IA-32 Architectures
 \item DirectX Video Acceleration(DXVA)
 \item Windows Display Driver Model(WDDM)
 \end{itemize}
 
\section{FAVOURITES\footnotemark}
 \begin{itemize}
 \item Go
 \item Lua
 \item Python
 \item Haskell
 \item CUDA,OpenCL
 \end{itemize}
\footnotetext{My favourites are skills that I'm not professional at, but feel interesting. I'm learning or going to learn them, so it would be a plus to me if new position uses them}
%\section{PATENTS}
%One patent filed for Intel work
  
\end{resume}   
\end{document}
 

0 0