I am an engineer who is passionate about the design, analysis, and operation of space systems and imaging technologies.
This repository is the source code used to generate my resume.
I have omitted my home address, phone number, and email address from the public version of this document in the interest of privacy.
The TeX class and document layout may be used as a template under the LPPL license. Forks of this repository are welcome.
To compile this document from source:
- Ensure the following LaTeX packages are installed.
- titlesec (customize header styles)
- geometry (page layout)
- hyperref (insert hyperlinks)
- fancyhdr (fancy header and footer)
- lastpage (reference number of pages in doc)
- enumitem (fancy lists)
- url (insert links)
- fontenc (T1 font encoding)
- lmodern (use Latin Modern Sans Serif)
- fontawesome (high quality web icons)
- Clone this repository
git clone git@github.com:philiplinden/resume.git
- Compile
resume.tex
with your preferred TeX compiler.
Tectonic is my preferred TeX compiler.
- Visit the website for installation instructions.
- Add
tectonic
or its install directory to your$PATH
and restart VS Code.
LaTeX Workshop is the VS Code extension I use for TeX editing.
- Open the
Extensions
view in VS Code. - Install
LaTeX Workshop
.
With Tectonic and LaTeX Workshop installed, add the following to your VS Code settings.json
.
"latex-workshop.latex.recipes": [
{
"name": "tectonic", // shows up in the recipe list
"tools": [
"tectonic" // points to the entry below for execution
]
}
],
"latex-workshop.latex.tools": [
{
"name": "tectonic",
"command": "tectonic",
"args": [
"-X", // use the V2 CLI
"compile", // just compile the tex, don't use Tectonic.toml
"%DOC%.tex"
],
"env": {}
}
]
The tectonic
recipe will now be available in LaTeX Workshop. for compiling .tex
files. See the
Tectonic V2 CLI docs for more
information.