Add letter output to Makefile
Added simple creation of motivation letter to make outputs. Uses quarto just like the cv creation, using the letter.qmd file as its base. Will be included in running a general `make` command.
This commit is contained in:
parent
16e6234dac
commit
c4e7e72ef5
1 changed files with 7 additions and 3 deletions
10
Makefile
10
Makefile
|
@ -1,9 +1,13 @@
|
||||||
.PHONY: all clean
|
.PHONY: clean
|
||||||
|
|
||||||
all: cv
|
all: resume_*.qmd templates/jb2resume.latex letter.qmd templates/letter.latex
|
||||||
|
poetry run quarto render
|
||||||
|
|
||||||
cv: resume_de.qmd resume_en.qmd templates/jb2resume.latex
|
cv: resume_de.qmd resume_en.qmd templates/jb2resume.latex
|
||||||
poetry run quarto render
|
poetry run quarto render resume_de.qmd resume_en.qmd
|
||||||
|
|
||||||
|
letter: letter.qmd templates/letter.latex
|
||||||
|
poetry run quarto render letter.qmd
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *CV.aux *CV.bcf *CV.log *CV.out *CV.run.xml *CV.pdf short_CV.tex long_CV.tex *CV.bbl *CV.blg *yaml_CV.md
|
rm -f *CV.aux *CV.bcf *CV.log *CV.out *CV.run.xml *CV.pdf short_CV.tex long_CV.tex *CV.bbl *CV.blg *yaml_CV.md
|
||||||
|
|
Loading…
Reference in a new issue