├── .github └── FUNDING.yml ├── .travis.yml ├── D.png ├── LICENSE ├── Makefile ├── README.md ├── fonts ├── EBGaramond-Initials.otf ├── EBGaramond-InitialsF1.otf ├── EBGaramond-InitialsF2.otf ├── EBGaramond08-Italic.otf ├── EBGaramond08-Regular.otf ├── EBGaramond08-SC.otf ├── EBGaramond12-AllSC.otf ├── EBGaramond12-Bold.otf ├── EBGaramond12-Italic.otf ├── EBGaramond12-Regular.otf └── EBGaramond12-SC.otf ├── geneve_1564.tex ├── geneve_1564_modern.tex ├── images ├── D.png ├── D_big.png ├── D_big_vectorized.png ├── D_big_vectorized.svg ├── D_big_vectorized_cleaned.png ├── D_vectorized.svg └── genese_heading.pdf ├── lettrine.cfg ├── livres ├── genese.tex └── genese │ ├── chapitre1.tex │ ├── chapitre2.tex │ └── intro.tex └── mt-EBGaramond.cfg /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [raphink] 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/.travis.yml -------------------------------------------------------------------------------- /D.png: -------------------------------------------------------------------------------- 1 | images/D.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/README.md -------------------------------------------------------------------------------- /fonts/EBGaramond-Initials.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond-Initials.otf -------------------------------------------------------------------------------- /fonts/EBGaramond-InitialsF1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond-InitialsF1.otf -------------------------------------------------------------------------------- /fonts/EBGaramond-InitialsF2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond-InitialsF2.otf -------------------------------------------------------------------------------- /fonts/EBGaramond08-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond08-Italic.otf -------------------------------------------------------------------------------- /fonts/EBGaramond08-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond08-Regular.otf -------------------------------------------------------------------------------- /fonts/EBGaramond08-SC.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond08-SC.otf -------------------------------------------------------------------------------- /fonts/EBGaramond12-AllSC.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond12-AllSC.otf -------------------------------------------------------------------------------- /fonts/EBGaramond12-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond12-Bold.otf -------------------------------------------------------------------------------- /fonts/EBGaramond12-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond12-Italic.otf -------------------------------------------------------------------------------- /fonts/EBGaramond12-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond12-Regular.otf -------------------------------------------------------------------------------- /fonts/EBGaramond12-SC.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/fonts/EBGaramond12-SC.otf -------------------------------------------------------------------------------- /geneve_1564.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/geneve_1564.tex -------------------------------------------------------------------------------- /geneve_1564_modern.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/geneve_1564_modern.tex -------------------------------------------------------------------------------- /images/D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/D.png -------------------------------------------------------------------------------- /images/D_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/D_big.png -------------------------------------------------------------------------------- /images/D_big_vectorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/D_big_vectorized.png -------------------------------------------------------------------------------- /images/D_big_vectorized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/D_big_vectorized.svg -------------------------------------------------------------------------------- /images/D_big_vectorized_cleaned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/D_big_vectorized_cleaned.png -------------------------------------------------------------------------------- /images/D_vectorized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/D_vectorized.svg -------------------------------------------------------------------------------- /images/genese_heading.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/images/genese_heading.pdf -------------------------------------------------------------------------------- /lettrine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/lettrine.cfg -------------------------------------------------------------------------------- /livres/genese.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/livres/genese.tex -------------------------------------------------------------------------------- /livres/genese/chapitre1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/livres/genese/chapitre1.tex -------------------------------------------------------------------------------- /livres/genese/chapitre2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/livres/genese/chapitre2.tex -------------------------------------------------------------------------------- /livres/genese/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/livres/genese/intro.tex -------------------------------------------------------------------------------- /mt-EBGaramond.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphink/geneve_1564/HEAD/mt-EBGaramond.cfg --------------------------------------------------------------------------------