forked from runphilrun/resume
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e34d3f
commit 787ea70
Showing
2 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,12 @@ space systems and imaging technologies. | |
* [Resume](https://github.com/philiplinden/resume/blob/master/resume.pdf) | ||
|
||
## This Repository | ||
This repository is the source code used to generate my resume. | ||
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 | ||
The TeX class and document layout may be used as a template under the | ||
[LPPL](https://tldrlegal.com/license/latex-project-public-license-v1.3c-(lppl-1.3c)) | ||
license. Forks of this repository are welcome. | ||
|
||
|
@@ -31,33 +31,41 @@ To compile this document from source: | |
9. lmodern (use Latin Modern Sans Serif) | ||
10. fontawesome (high quality web icons) | ||
2. Clone this repository `git clone [email protected]:philiplinden/resume.git` | ||
3. Compile `resume.tex` | ||
1. In [tectonic](https://tectonic-typesetting.github.io/en-US/): `tectonic -X compile resume.tex` | ||
3. Compile `resume.tex` with your preferred TeX compiler. | ||
|
||
To use Tectonic with VS Code and LaTeX Workshop, add the following to your | ||
`settings.json`. | ||
### Tectonic in VS Code | ||
[Tectonic](https://tectonic-typesetting.github.io/) is my preferred TeX compiler. | ||
1. Visit the website for installation instructions. | ||
2. Add `tectonic` or its install directory to your `$PATH` and restart VS Code. | ||
|
||
[LaTeX Workshop](https://github.com/James-Yu/LaTeX-Workshop) is the VS Code extension I use for TeX editing. | ||
1. Open the `Extensions` view in VS Code. | ||
2. Install `LaTeX Workshop`. | ||
|
||
With Tectonic and LaTeX Workshop installed, add the following to your VS Code `settings.json`. | ||
```json | ||
"latex-workshop.latex.recipes": [ | ||
{ | ||
"name": "tectonic", | ||
"name": "tectonic", // shows up in the recipe list | ||
"tools": [ | ||
"tectonic" | ||
"tectonic" // points to the entry below for execution | ||
] | ||
} | ||
], | ||
"latex-workshop.latex.tools": [ | ||
{ | ||
"name": "tectonic", | ||
"command": "tectonic", | ||
"args": [ | ||
"args": [ | ||
"-X", // use the V2 CLI | ||
"compile", // just compile the tex, don't use Tectonic.toml | ||
"%DOC%.tex" | ||
"%DOC%.tex" | ||
], | ||
"env": {} | ||
} | ||
] | ||
``` | ||
The `tectonic` recipe will now be available in LaTeX Workshop | ||
for compiling `.tex` files. See the [Tectonic V2 CLI docs](https://tectonic-typesetting.github.io/book/latest/v2cli/compile.html) | ||
for more information. | ||
|
||
The `tectonic` recipe will now be available in LaTeX Workshop. for compiling `.tex` files. See the | ||
[Tectonic V2 CLI docs](https://tectonic-typesetting.github.io/book/latest/v2cli/compile.html) for more | ||
information. |
Binary file not shown.