-
Notifications
You must be signed in to change notification settings - Fork 1
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
4d5a863
commit 3b087fe
Showing
5 changed files
with
165 additions
and
57 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
cv/ | ||
|
||
## Core latex/pdflatex auxiliary files: | ||
*.aux | ||
|
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": [ | ||
"james-yu.latex-workshop" | ||
], | ||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
"unwantedRecommendations": [] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"latex-workshop.latex.tools": [ | ||
// Compilation tools and commands | ||
{ | ||
"name": "xelatex", | ||
"command": "xelatex", | ||
"args": [ | ||
"-synctex=1", | ||
"-interaction=nonstopmode", | ||
"-file-line-error", | ||
"-pdf", | ||
"%DOCFILE%" | ||
] | ||
}, | ||
{ | ||
"name": "pdflatex", | ||
"command": "pdflatex", | ||
"args": [ | ||
"-synctex=1", | ||
"-interaction=nonstopmode", | ||
"-file-line-error", | ||
"%DOCFILE%" | ||
] | ||
}, | ||
{ | ||
"name": "bibtex", | ||
"command": "bibtex", | ||
"args": [ | ||
"%DOCFILE%" | ||
] | ||
} | ||
], | ||
"latex-workshop.latex.recipes": [ | ||
{ | ||
"name": "xelatex 🔃", | ||
"tools": [ | ||
"xelatex" | ||
], | ||
}, | ||
{ | ||
"name": "pdflatex 🔃", | ||
"tools": [ | ||
"pdflatex" | ||
] | ||
}, | ||
{ | ||
"name": "xelatex➞bibtex➞xelatex.2x 🔃", | ||
"tools": [ | ||
"xelatex", | ||
"bibtex", | ||
"xelatex", | ||
"xelatex" | ||
] | ||
}, | ||
{ | ||
"name": "pdflatex➞bibtex➞pdflatex.2x 🔃", | ||
"tools": [ | ||
"pdflatex", | ||
"bibtex", | ||
"pdflatex", | ||
"pdflatex" | ||
] | ||
} | ||
], | ||
} |
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 |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# LaTeX CV available in PDF -> Check the link in the "About" section of this repository | ||
# LaTeX CV | ||
|
||
### GitHub action | ||
The CV is available in PDF. Check the link in the "About" section of this repository. | ||
|
||
## Pre-requisites | ||
|
||
On MacOS, install: | ||
|
||
```bash | ||
brew install --cask mactex | ||
brew install latexindent | ||
brew install texlive | ||
``` | ||
|
||
## GitHub action | ||
|
||
The github action used to convert LaTeX document into PDF can be found in the GitHub [marketplace](https://github.com/marketplace/actions/latex2pdf). |
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