-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: add another coverletter example
- Loading branch information
1 parent
1709d64
commit 0b7481e
Showing
4 changed files
with
48 additions
and
2 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
typst compile -f png $PSScriptRoot/../template/resume.typ $PSScriptRoot/../assets/images/resume.png | ||
typst compile -f png $PSScriptRoot/../template/coverletter.typ $PSScriptRoot/../assets/images/coverletter.png | ||
typst compile -f png $PSScriptRoot/../template/coverletter2.typ $PSScriptRoot/../assets/images/coverletter2.png | ||
|
||
oxipng.exe $PSScriptRoot/../assets/images/* |
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,44 @@ | ||
#import "@preview/modern-cv:0.2.0":* | ||
|
||
#show: coverletter.with( | ||
author: ( | ||
firstname: "John", | ||
lastname: "Smith", | ||
email: "[email protected]", | ||
phone: "(+1) 111-111-1111", | ||
github: "DeveloperPaul123", | ||
linkedin: "John Smith", | ||
address: "111 Example St. Apt. 111, Example City, EX 11111", | ||
positions: ( | ||
"Software Engineer", | ||
"Full Stack Developer" | ||
) | ||
), | ||
profile_picture: none | ||
) | ||
|
||
#hiring-entity-info( | ||
entity_info: ( | ||
target: "Company Recruitement Team", | ||
name: "Google, Inc.", | ||
street_address: "1600 AMPHITHEATRE PARKWAY", | ||
city: "MOUNTAIN VIEW, CA 94043" | ||
) | ||
) | ||
|
||
#letter-heading( | ||
job_position: "Software Engineer", | ||
addressee: "Sir or Madame" | ||
) | ||
|
||
#coverletter-content[ | ||
#lorem(100) | ||
] | ||
|
||
#coverletter-content[ | ||
#lorem(90) | ||
] | ||
|
||
#coverletter-content[ | ||
#lorem(110) | ||
] |