在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):thehale/expressive-resume开源软件地址(OpenSource Url):https://github.com/thehale/expressive-resume开源编程语言(OpenSource Language):TeX 99.7%开源软件介绍(OpenSource Introduction):Expressive ResumeA beautiful resume/cover letter LaTeX template pair that are extraordinarily easy to use. Why Expressive Resume?? Most LaTeX resume/cover letter templates start with 100-200 lines of formatting code (or more) that you have to scroll through before you can focus on writing the contents of your resume/cover letter. With Expressive Resume, you simply specify the Additionally, Expressive Resume is written in LaTeX2e, so it is compatible with most LaTeX typesetting engines. QuickstartThe recommended way to use Expressive Resume is via the included "VS Code devcontainer" which has LaTeX pre-installed in an sandboxed environment compatible with Windows, Linux, and MacOS. If you already have LaTeX installed, you can clone the repository and skip straight to Create Your Expressive Resume. Installation + SetupStart by making sure Docker and VS Code (including the Remote Containers Extension) are installed on your machine. Then create a copy of Expressive Resume and open it in VS Code:
git clone https://github.com/YOUR_GITHUB_USERNAME/expressive-resume.git
cd expressive-resume
code . VS Code should prompt you to Reopen in Container. Accept that prompt.
Create Your Expressive ResumeCreate an empty Use a \documentclass{ExpressiveResume}
\begin{document}
% You will write your resume here.
\end{document} Create your resume header with the \resumeheader[
firstname=, % Your first name
middleinitial=, % Your middle initial
lastname=, % Your last name
email=, % Your email
phone=, % Your phone number, formatted as XXX-XXX-XXXX
linkedin=, % Your LinkedIn handle (without the @)
github=, % Your GitHub handle (without the @)
city=, % Your city of residence (ignored if no `state` is given)
state=, % Your state of residence
qrcode=, % the path to a qr code to show in the top right corner
fixobjectivespacing= % Recommended when using both a qrcode and an `objective`
] If you want a summary/objective statement in your resume, that's easy to add. \objective{
% Write your objective statement here.
} Adding experiences and achievements is also straightforward. \experience{Position}{Organization}{Start Date}{End Date}{
\achievement{
% Describe your achievement here
}
\achievement{
% Describe another achievement here.
}
} You can also easily add inline highlights for the technologies and skills relevant to the job position you are applying for. \tech{
% Name your familiar technology or skill
} And that's it! Take a look at the resume example
to see just how cleanly all of these pieces work together in a simple, readable
Create Your Expressive Cover LetterCreate an empty Use a \documentclass{ExpressiveCoverLetter}
\begin{document}
% You will write your cover letter here.
\end{document} Create your cover letter header with the \coverletterheader[
firstname=, % Your first name
middleinitial=, % Your middle initial
lastname=, % Your last name
email=, % Your email
phone=, % Your phone number, formatted as XXX-XXX-XXXX
linkedin=, % Your LinkedIn handle (without the @)
github=, % Your GitHub handle (without the @)
city=, % Your city of residence (ignored if no `state` is given)
state=, % Your state of residence
] From there, just write out the text of your cover letter, using a blank line between paragraphs. You can also easily add inline highlights for the technologies and skills relevant to the job position you are applying for. \tech{
% Name your familiar technology or skill
} And that's it! Take a look at the cover letter
example to see just how cleanly all of these
pieces work together in a simple, readable ExamplesExample Expressive Resume\documentclass{ExpressiveResume}
% ----- Resume -----
\begin{document}
% ----- Name + Contact Information -----
\resumeheader[
firstname=John,
middleinitial=N,
lastname=Doe,
[email protected],
phone=123-456-7890,
github=johndoe,
city=Town,
state=State,
qrcode=./images/qr.png,
fixobjectivespacing=true
]
\objective{A software engineering graduate with 2 years of work
experience at various internships \\ seeking opportunities to develop
web/mobile applications for Company XYZ.}
% ----- Education -----
\section{Education}
\experience{Bachelor of Science}{Software Engineering}{Aug 2018}{May 2022}{
\hfill GPA: 4.00 \newline
Fabulous Honors College \newline
Super Duper University, Town, State \newline
}
% ----- Work Experience -----
\section{Work Experience}
\experience{Summer Intern}{Radiant Software Systems}{Aug 2021}{May 2021}{
\achievement{
Developed a mobile app in \tech{React Native} that was
downloaded 100k times on Google Play.
}
\achievement{
Collaborated in an \tech{Agile/Scrum} team of 8 engineers to
deliver new features every 2 weeks.
}
}
% ----- Technical Projects -----
\section{Technical Projects}
\experience{Expressive Resume}{Personal Project}{Nov 2021}{Dec 2021}{
\achievement{
Created a \tech{\LaTeX} class that makes it easy for anyone to
quickly create a beautiful resume and cover letter.
}
}
\end{document} Example Expressive Cover Letter\documentclass{ExpressiveCoverLetter}
\begin{document}
\coverletterheader[
firstname=John,
middleinitial=N,
lastname=Doe,
[email protected],
phone=123-456-7890,
github=johndoe,
city=Town,
state=State
]
\vspace{0.25in}
\today
\vspace{0.15in}
To whom it may concern:
Lorem ipsum dolor sit amet ...
Sincerely,
\vspace{.15in}
John Doe
\end{document} |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论