Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
billryan committed Oct 8, 2016
2 parents 5d66c45 + 3657c78 commit 6ff2d1f
Show file tree
Hide file tree
Showing 11 changed files with 2,205 additions and 636 deletions.
Binary file added avatar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
668 changes: 50 additions & 618 deletions fontawesome.sty

Large diffs are not rendered by default.

731 changes: 731 additions & 0 deletions fontawesomesymbols-generic.tex

Large diffs are not rendered by default.

637 changes: 637 additions & 0 deletions fontawesomesymbols-pdftex.tex

Large diffs are not rendered by default.

634 changes: 634 additions & 0 deletions fontawesomesymbols-xeluatex.tex

Large diffs are not rendered by default.

Binary file added fonts/fontawesome/opentype/FontAwesome.otf
Binary file not shown.
14 changes: 14 additions & 0 deletions latexmkrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# uncomment the # before $ to enable PDF update automatically
# see man latexmk for more info

## Usage
# latexmk -xelatex -gg -silent -pvc

## Mac OS X - Skim
$pdf_previewer = 'osascript -e "set theFile to POSIX file \"%S\" as alias" -e "set thePath to POSIX path of theFile" -e "tell application \"Skim\"" -e "open theFile" -e "end tell"';
$pdf_update_method = 4;
$pdf_update_command = 'osascript -e "set theFile to POSIX file \"%S\" as alias" -e "set thePath to POSIX path of theFile" -e "tell application \"Skim\"" -e "set theDocs to get documents whose path is thePath" -e "try" -e "if (count of theDocs) > 0 then revert theDocs" -e "end try" -e "open theFile" -e "end tell"';

## GNU/Linux - Evince

## Windows - Sumatra
10 changes: 4 additions & 6 deletions resume-zh_CN.tex
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@

\name{你的大名}

% {E-mail}{mobilephone}{homepage}
% be careful of _ in emaill address
\contactInfo{my\_[email protected]}{(+86) 131-221-87xxx}{http://www.yuanbin.me}
% {E-mail}{mobilephone}
% keep the last empty braces!
%\contactInfo{[email protected]}{(+86) 131-221-87xxx}{}
\basicInfo{
\email{[email protected]} \textperiodcentered\
\phone{(+86) 131-221-87xxx} \textperiodcentered\
\linkedin[billryan8]{https://www.linkedin.com/in/billryan8}}

\section{\faGraduationCap\ 教育背景}
\datedsubsection{\textbf{上海交通大学}, 上海}{2013 -- 至今}
Expand Down
51 changes: 45 additions & 6 deletions resume.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
\RequirePackage{xltxtra}
% use xifthen
\RequirePackage{xifthen}
% use progress bar for skill
\RequirePackage{progressbar}
% use hyperlink for email and url
\RequirePackage{hyperref}
\RequirePackage{url}
\urlstyle{tt}
% use fontawesome
\RequirePackage{fontawesome}
% use xcolor for customizing color
Expand Down Expand Up @@ -71,12 +77,45 @@
\vspace{1.25ex}
}

\newcommand{\contactInfo}[3]{
\centerline{\sffamily\large{\faEnvelope\ {#1} \textperiodcentered\ \faPhone\ {#2}}
\ifthenelse{\isempty{#3}}%
{ } % if {#3} is empty
{\textperiodcentered\ \faLink\ {#3} } % homepage, no space before \text...
}
% defines one's name
% usage: \name{<name>}
\newcommand{\nameTest}[1]{
{\large\scshape{#1}}
}

% defines one's email
% usage: \email{<email>}
\newcommand{\email}[1]{\faEnvelope\ \href{mailto:#1}{#1}}
% defines one's phone
% usage: \phone{<phone>}
\newcommand{\phone}[1]{\faPhone\ {#1}}
% defines one's linkedin
% usage: \linkedin{<linkedin>}
\newcommand{\linkedin}[2][]{\faLinkedin\
\ifthenelse{\isempty{#1}}%
{\href{#2}{#2}}
{\href{#2}{#1}}}
% defines one's GitHub
% usage: \github{<github>}
\newcommand{\github}[2][]{\faGithub\
\ifthenelse{\isempty{#1}}%
{\href{#2}{#2}}
{\href{#2}{#1}}}
% defines one's homepage
% usage: \homepage{<homepage>}
\newcommand{\homepage}[2][]{\faLink\
\ifthenelse{\isempty{#1}}%
{\href{#2}{#2}}
{\href{#2}{#1}}}

% defines progress bar with text
% usage: \pbar[3][width]{Text}{percentage}
\newcommand{\pbar}[3][10em]{{#2}\
\progressbar[heightr=1, width=#1, borderwidth=0pt, roundnessr=0.45, filledcolor=green!40, subdivisions=1]{#3}
}

\newcommand{\basicInfo}[1]{
\centerline{\sffamily\large{#1}}
\vspace{1.5ex}
}

Expand Down
10 changes: 4 additions & 6 deletions resume.tex
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@

\name{Bin Yuan}

% {E-mail}{mobilephone}{homepage}
% be careful of _ in emaill address
\contactInfo{my\_[email protected]}{(+86) 131-221-87xxx}{http://www.yuanbin.me}
% {E-mail}{mobilephone}
% keep the last empty braces!
%\contactInfo{[email protected]}{(+86) 131-221-87xxx}{}
\basicInfo{
\email{[email protected]} \textperiodcentered\
\phone{(+86) 131-221-87xxx} \textperiodcentered\
\linkedin[billryan8]{https://www.linkedin.com/in/billryan8}}

\section{\faGraduationCap\ Education}
\datedsubsection{\textbf{Shanghai Jiao Tong University (SJTU)}, Shanghai, China}{2013 -- Present}
Expand Down
86 changes: 86 additions & 0 deletions resume_photo.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
% !TEX program = xelatex

\documentclass{resume}
\usepackage{graphicx}
\usepackage{tabu}
\usepackage{multirow}
%\usepackage{zh_CN-Adobefonts_external} % Simplified Chinese Support using external fonts (./fonts/zh_CN-Adobe/)
%\usepackage{zh_CN-Adobefonts_internal} % Simplified Chinese Support using system fonts

\begin{document}
\pagenumbering{gobble} % suppress displaying page number

\Large{
\begin{tabu}{ c l r }
\multirow{5}{1in}{\includegraphics[width=0.88in]{avatar}} & \scshape{Bin Yuan} & \pbar{Python}{0.75} \\
& \email{[email protected]} & \pbar{Scala}{0.5} \\
& \phone{(+86) 131-221-87xxx} & \pbar{Linux}{0.7} \\
& \linkedin[billryan8]{https://www.linkedin.com/in/billryan8} & \pbar{Flask}{0.5} \\
& \github[github.com/billryan]{https://github.com/billryan} & \pbar{Javascript}{0.5}
\end{tabu}
}

\section{\faGraduationCap\ Education}
\datedsubsection{\textbf{Shanghai Jiao Tong University (SJTU)}, Shanghai, China}{2013 -- Present}
\textit{Master student} in Electronics Engineering (EE), expected March 2016
\datedsubsection{\textbf{Xidian University}, Shaanxi, China}{2009 -- 2013}
\textit{B.S.} in Electronics Engineering (EE)

\section{\faUsers\ Experience}
\datedsubsection{\textbf{FLAG Inc.} California, America}{2012 -- Present}
\role{Summer Intern}{Manager: xxx}
Brief introduction: xxx.
\begin{itemize}
\item Implemented xxx feature
\item Optimized xxx 5\%
\item xxx
\end{itemize}

\datedsubsection{\textbf{xxx Projects}}{Jan. 2015 -- Present}
\role{C, Python, Django, Linux}{Individual Projects, collaborated with xxx}
Brief introduction: xxx
\begin{itemize}
\item Implemented xxx feature
\item Optimized xxx 5\%
\item xxx
\end{itemize}

\datedsubsection{\textbf{\LaTeX\ résumé template}}{May. 2015 -- Present}
\role{\LaTeX, Maintainer}{Individual Projects}
An elegant \LaTeX\ résumé template, https://github.com/billryan/resume
\begin{itemize}
\item Easy to be further customized or extended
\item Full support for unicode characters (e.g. CJK) with \XeLaTeX\
\item FontAwesome 4.5.0 support
\end{itemize}

% Reference Test
%\datedsubsection{\textbf{Paper Title\cite{zaharia2012resilient}}}{May. 2015}
%An xxx optimized for xxx\cite{verma2015large}
%\begin{itemize}
% \item main contribution
%\end{itemize}

% \section{\faCogs\ Skills}
% \begin{itemize}[parsep=0.5ex]
% \item Programming Languages: C == Python > C++ > Java
% \item Platform: Linux
% \item Development: Web, xxx
% \end{itemize}

% \section{\faHeartO\ Honors and Awards}
% \datedline{\textit{\nth{1} Prize}, Award on xxx }{Jun. 2013}
% \datedline{Other awards}{2015}

\section{\faInfo\ Miscellaneous}
\begin{itemize}[parsep=0.5ex]
\item Blog: http://your.blog.me
\item GitHub: https://github.com/username
\item Languages: English - Fluent, Mandarin - Native speaker
\end{itemize}

%% Reference
%\newpage
%\bibliographystyle{IEEETran}
%\bibliography{mycite}
\end{document}

0 comments on commit 6ff2d1f

Please sign in to comment.