Skip to content

Add Manrope variable font #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Oct 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ $(PROJ).pdf: lkmpg.tex
pdflatex -shell-escape $< 2>/dev/null >/dev/null
rm -rf _minted-$(PROJ)

html: lkmpg.tex html.cfg
html: lkmpg.tex html.cfg assets/Manrope_variable.ttf
sed $ 's/\t/ /g' lkmpg.tex > lkmpg-for-ht.tex
make4ht --shell-escape --utf8 --format html5 --config html.cfg --output-dir html lkmpg-for-ht.tex "fn-in"
ln -sf lkmpg-for-ht.html html/index.html
cp assets/Manrope_variable.ttf html/Manrope_variable.ttf
rm -f lkmpg-for-ht.tex lkmpg-for-ht.xref lkmpg-for-ht.tmp lkmpg-for-ht.html lkmpg-for-ht.css lkmpg-for-ht.4ct lkmpg-for-ht.4tc lkmpg-for-ht.dvi lkmpg-for-ht.lg lkmpg-for-ht.idv lkmpg*.svg lkmpg-for-ht.log lkmpg-for-ht.aux
rm -rf _minted-$(PROJ) _minted-lkmpg-for-ht

Expand All @@ -21,4 +22,4 @@ clean:
rm -f *.dvi *.aux *.log *.ps *.pdf *.out lkmpg.bbl lkmpg.blg lkmpg.lof lkmpg.toc
rm -rf html

.PHONY: html
.PHONY: html
Binary file added assets/Manrope_variable.ttf
Binary file not shown.
6 changes: 6 additions & 0 deletions html.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
overflow-x: hidden;
}}

\Css{@font-face {
font-family: Manrope;
src: url(Manrope_variable.ttf);
}}

\Css{body {
max-width: 55rem;
box-sizing: border-box;
Expand All @@ -24,6 +29,7 @@ color: \#0060DF;

\Css{p, a {
font-size: 1.2rem;
font-family: Manrope;
}}

\Css{p + pre {
Expand Down