Skip to content

Commit 08545e5

Browse files
authored
Merge pull request #100 from StefRe/fix/pacifico_font
Add missing font Pacifico
2 parents b1825a8 + 8e20e99 commit 08545e5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ Beginner handout [(download pdf)](https://matplotlib.org/cheatsheets/handout-beg
2727
or https://github.com/adobe-fonts/source-sans-pro/tree/release/OTF
2828
* `fonts/source-serif-pro/*` : See https://fonts.google.com/specimen/Source+Serif+Pro
2929
or https://github.com/adobe-fonts/source-serif-pro/tree/release/OTF
30-
* `fonts/delicious-123/*` : See https://www.exljbris.com/delicious.html
30+
* `fonts/eb-garamond/*` : See https://bitbucket.org/georgd/eb-garamond/src/master
31+
* `fonts/pacifico/*` : See https://fonts.google.com/download?family=Pacifico
3132

3233
On Linux, with `make` installed, the fonts can be set up with the following command:
3334
```shell

fonts/Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FONT_DIRS := eb-garamond roboto roboto-mono roboto-slab source-code-pro source-sans-pro source-serif-pro
1+
FONT_DIRS := eb-garamond roboto roboto-mono roboto-slab source-code-pro source-sans-pro source-serif-pro pacifico
22

33
EB_GARAMOND_ZIP := https://bitbucket.org/georgd/eb-garamond/downloads/EBGaramond-0.016.zip
44
ROBOTO_ZIP := https://github.com/googlefonts/roboto/releases/download/v2.138/roboto-unhinted.zip
@@ -7,6 +7,7 @@ ROBOTO_SLAB_ZIP := https://github.com/googlefonts/robotoslab/archive/a65e6d
77
SOURCE_CODE_PRO_ZIP := https://github.com/adobe-fonts/source-code-pro/releases/download/2.038R-ro%2F1.058R-it%2F1.018R-VAR/OTF-source-code-pro-2.038R-ro-1.058R-it.zip
88
SOURCE_SANS_PRO_ZIP := https://github.com/adobe-fonts/source-sans/releases/download/2.045R-ro%2F1.095R-it/source-sans-pro-2.045R-ro-1.095R-it.zip
99
SOURCE_SERIF_PRO_ZIP := https://github.com/adobe-fonts/source-serif/releases/download/3.001R/source-serif-pro-3.001R.zip
10+
PACIFICO_ZIP := https://fonts.google.com/download?family=Pacifico
1011

1112
UNZIP_FLAGS := -x "__MACOSX/*"
1213

@@ -24,6 +25,7 @@ all: sources
2425
cd source-code-pro && unzip -j /tmp/source-code-pro.zip "*.otf" $(UNZIP_FLAGS)
2526
cd source-sans-pro && unzip -j /tmp/source-sans-pro.zip "source-sans-pro-2.045R-ro-1.095R-it/OTF/*.otf" $(UNZIP_FLAGS)
2627
cd source-serif-pro && unzip -j /tmp/source-serif-pro.zip "source-serif-pro-3.001R/OTF/*.otf" $(UNZIP_FLAGS)
28+
cd pacifico && unzip -j /tmp/pacifico.zip "*.ttf" $(UNZIP_FLAGS)
2729

2830
.PHONY: sources
2931
sources:
@@ -34,6 +36,7 @@ sources:
3436
wget $(SOURCE_CODE_PRO_ZIP) -O /tmp/source-code-pro.zip
3537
wget $(SOURCE_SANS_PRO_ZIP) -O /tmp/source-sans-pro.zip
3638
wget $(SOURCE_SERIF_PRO_ZIP) -O /tmp/source-serif-pro.zip
39+
wget $(PACIFICO_ZIP) -O /tmp/pacifico.zip
3740

3841
.PHONY: clean
3942
clean:

0 commit comments

Comments
 (0)