Compare commits

..

No commits in common. "main" and "v1.0.0" have entirely different histories.
main ... v1.0.0

15 changed files with 382 additions and 418 deletions

View file

@ -1,27 +0,0 @@
name: Build PDF's
on:
push:
branches:
- main
jobs:
build_pdf:
name: Build PDF's
runs-on: docker
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Build English PDF
uses: https://github.com/xu-cheng/latex-action@v3
with:
root_file: marko_korhonen_cv_fi.tex
latexmk_use_xelatex: true
- name: Build Finnish PDF
uses: https://github.com/xu-cheng/latex-action@v3
with:
root_file: marko_korhonen_cv_fi.tex
latexmk_use_xelatex: true

10
.gitignore vendored
View file

@ -1 +1,9 @@
target/ *.synctex.gz
*.log
*.out
*.aux
*.blg
*.bbl
*.bcf
*.run.xml
*.pdf

9
LICENSE Normal file
View file

@ -0,0 +1,9 @@
Copyright (C) 2023, Marko Korhonen (this fork)
Copyright (C) 2017, Marvin Frommhold (fork)
Copyright (C) 2012, Adrien Friggeri (origin)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View file

@ -1,24 +0,0 @@
== The MIT License (MIT)
Copyright (C) {localyear}, Marko Korhonen (this fork)
Copyright (C) 2017, Marvin Frommhold (fork)
Copyright (C) 2012, Adrien Friggeri (origin)
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be included in all copies
or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View file

@ -1,13 +1,14 @@
.PHONY: en fi .PHONY: outputdir en fi pdf
.DEFAULT_GOAL := all
LANGUAGES = en fi en: outputdir
xelatex marko_korhonen_cv_en
biber marko_korhonen_cv_en
xelatex marko_korhonen_cv_en
all: $(LANGUAGES) fi: outputdir
xelatex marko_korhonen_cv_fi
biber marko_korhonen_cv_fi
xelatex marko_korhonen_cv_fi
outputdir: all: en fi
mkdir -p ./target
$(LANGUAGES): outputdir
xelatex --output-directory ./target marko_korhonen_cv_$@
biber --output-directory ./target marko_korhonen_cv_$@
xelatex --output-directory ./target marko_korhonen_cv_$@

View file

@ -1,3 +1,3 @@
= Curriculum Vitae of Marko Korhonen = My CV
Based on the https://github.com/depressiveRobot/friggeri-cv-a4[Friggeri CV template] Based on the https://github.com/depressiveRobot/friggeri-cv-a4[Friggeri CV template]

View file

@ -67,29 +67,26 @@
\RequirePackage[quiet]{fontspec} \RequirePackage[quiet]{fontspec}
\RequirePackage{unicode-math} \RequirePackage{unicode-math}
\defaultfontfeatures{Mapping=tex-text}
\newfontfamily\bodyfont \newfontfamily\bodyfont
[ [BoldFont=texgyreheros-bold.otf,
Path=fonts/,
BoldFont=texgyreheros-bold.otf,
ItalicFont=texgyreheros-italic.otf, ItalicFont=texgyreheros-italic.otf,
BoldItalicFont=texgyreheros-bolditalic.otf BoldItalicFont=texgyreheros-bolditalic.otf]
]{texgyreheros-regular.otf} {texgyreheros-regular.otf}
\newfontfamily\thinfont[]{Lato-Light.ttf}
\newfontfamily\thinfont[Path=fonts/]{Lato-Light.ttf} \newfontfamily\headingfont[]{texgyreheros-bold.otf}
\newfontfamily\headingfont[Path=fonts/]{texgyreheros-bold.otf}
\defaultfontfeatures{Mapping=tex-text}
\setmainfont \setmainfont
[ [Mapping=tex-text, Color=textcolor,
Path=fonts/,
Mapping=tex-text, Color=textcolor,
BoldFont=texgyreheros-bold.otf, BoldFont=texgyreheros-bold.otf,
ItalicFont=texgyreheros-italic.otf, ItalicFont=texgyreheros-italic.otf,
BoldItalicFont=texgyreheros-bolditalic.otf BoldItalicFont=texgyreheros-bolditalic.otf
]{texgyreheros-regular.otf} ]
{texgyreheros-regular.otf}
\setmathfont[Path=fonts/]{texgyreheros-regular.otf} \setmathfont{texgyreheros-regular.otf}
%%%
%%%%%%%%%% %%%%%%%%%%
% Header % % Header %