diff options
author | Karl Berry <karl@freefriends.org> | 2011-08-26 22:22:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-08-26 22:22:42 +0000 |
commit | 27d845eb760ac861a99420a219473a50a5d4c98d (patch) | |
tree | 505ea99c22f4688f66c9d402385741754a7085f7 /Master/texmf-dist/source/fonts | |
parent | 13c0a602069e9bf1dc330dd271d95d11ec60e621 (diff) |
comfortaa 2.0 (23aug11)
git-svn-id: svn://tug.org/texlive/trunk@23707 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/fonts')
13 files changed, 3037 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/fonts/comfortaa/Makefile b/Master/texmf-dist/source/fonts/comfortaa/Makefile new file mode 100644 index 00000000000..b8d08772c39 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/Makefile @@ -0,0 +1,219 @@ +## Makefile +## Copyright 2011 Mohamed El Morabity +# +# This work may be distributed and/or modified under the conditions of the LaTeX +# Project Public License, either version 1.3 of this license or (at your option) +# any later version. The latest version of this license is in +# http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +# distributions of LaTeX version 2005/12/01 or later. +# +# This work has the LPPL maintenance status `maintained'. +# +# The Current Maintainer of this work is Mohamed El Morabity +# +# This work consists of all files listed in manifest.txt. + +###################### +# Fonts informations # +###################### + +FONT_NAME = comfortaa +FOUNDRY = public +FONT_CODES = fco + +# Supported LaTeX encodings +SUPPORTED_ENCODINGS = ot1 t1 ts1 t2a t2b t2c x2 lgr +# Supported LaTeX encodings containing small caps +SUPPORTED_SC_ENCODINGS = $(filter-out ts1,$(SUPPORTED_ENCODINGS)) +# Custom encodings provided +INPUT_ENCODINGS = $(INPUT_ETX_FILES:$(FONT_NAME)-%.etx=%) + + +##################### +# Installation root # +##################### + +TEXMFHOME = $(shell kpsexpand '$$TEXMFHOME') + + +########### +# Archive # +########### + +ARCHIVE_ROOT = $(FONT_NAME) +ARCHIVE = $(FONT_NAME).zip + + +########### +# Sources # +########### + +TRUETYPE_FILES = $(wildcard *.ttf) + +# Fontinst files +FONTINST_FILE = $(FONT_NAME)-drv.tex +FONTINST_MAP_FILE = $(FONT_NAME)-map.tex + +# Custom Fontinst encoding files +INPUT_ETX_FILES = $(FONT_NAME)-01.etx $(FONT_NAME)-02.etx $(FONT_NAME)-03.etx $(FONT_NAME)-dotlessj.etx +MTX_FILES = $(FONT_NAME)-fixlatin.mtx $(FONT_NAME)-fixtextcomp.mtx $(FONT_NAME)-fixcyrillic.mtx $(FONT_NAME)-fixgreek.mtx $(FONT_NAME)-diacritics.mtx + +STYLE_FILES = $(wildcard *.sty) + +DOCUMENTATION = $(FONT_NAME).tex $(FONT_NAME).pdf $(FONT_NAME)-samples.tex $(FONT_NAME)-samples.pdf README CHANGES + +# Files to be installed in texmf/source +SOURCE_FILES = $(FONTINST_FILE) $(FONTINST_MAP_FILE) $(INPUT_ETX_FILES) $(MTX_FILES) Makefile ttf2type1.pe + + +################### +# Generated files # +################### + +TYPE1_FILES = $(TRUETYPE_FILES:.ttf=.pfb) $(TRUETYPE_FILES:.ttf=-LCDFJ.pfb) +AFM_FILES = $(TYPE1_FILES:.pfb=.afm) + +# Fontinst log file +FONTINST_REC_FILE = $(FONT_NAME)-rec.tex + +# Metrics files +PL_FILES = $(foreach e,$(INPUT_ENCODINGS), \ + $(TRUETYPE_FILES:.ttf=-$(e).pl) \ + $(TRUETYPE_FILES:.ttf=-Slanted-$(e).pl) \ + ) +OUTPUT_MTX_FILES = $(PL_FILES:.pl=.mtx) +VPL_FILES = $(foreach e,$(SUPPORTED_ENCODINGS), \ + $(TRUETYPE_FILES:.ttf=-$(e).vpl) \ + $(TRUETYPE_FILES:.ttf=-Slanted-$(e).vpl) \ + ) \ + $(foreach e,$(SUPPORTED_SC_ENCODINGS), \ + $(TRUETYPE_FILES:.ttf=-SmallCaps-$(e).vpl) \ + $(TRUETYPE_FILES:.ttf=-Slanted-SmallCaps-$(e).vpl) \ + ) +TFM_FILES = $(PL_FILES:.pl=.tfm) $(VPL_FILES:.vpl=.tfm) +VF_FILES = $(VPL_FILES:.vpl=.vf) + +MAP = $(FONT_NAME).map + +# Font definition files +FD_FILES = $(foreach e,$(SUPPORTED_ENCODINGS), \ + $(foreach f,$(FONT_CODES), \ + $(e)$(f).fd \ + ) \ + ) + +# Generated encoding files +ENC_FILES = $(INPUT_ETX_FILES:.etx=.enc) + +# Generated files to be installed +GENERATED_FILES = $(TYPE1_FILES) $(AFM_FILES) $(TFM_FILES) $(VF_FILES) $(MAP) $(FD_FILES) $(ENC_FILES) + + +default: all + + +all: dist + + +dist: $(ARCHIVE) + + +%.pfb %.afm: %.ttf + fontforge ttf2type1.pe $< + + +%-LCDFJ.pfb: %.pfb + t1dotlessj $< $@ + + +%-LCDFJ.afm: %-LCDFJ.pfb + pf2afm $< + + +%.tfm: %.pl + pltotf $< $@ + + +%.tfm: %.vpl + vptovf $^ $ + + +%.vf: %.vpl + vptovf $^ $@ + + +$(FONTINST_REC_FILE): $(AFM_FILES) $(MTX_FILES) $(FONTINST_FILE) + latex $(FONTINST_FILE) + + +$(PL_FILES) $(VPL_FILES): $(FONTINST_REC_FILE) + + +$(MAP): $(FONTINST_REC_FILE) $(FONTINST_MAP_FILE) + latex $(FONTINST_MAP_FILE) + + +$(FD_FILES) $(ENC_FILES): $(MAP) + + +texmf-tree: clean-texmf-tree $(GENERATED_FILES) $(SOURCES_FILES) + mkdir -p $(ARCHIVE_ROOT)/doc/fonts/$(FONT_NAME)/ + mkdir -p $(ARCHIVE_ROOT)/tex/latex/$(FONT_NAME)/ + mkdir -p $(ARCHIVE_ROOT)/fonts/{enc,map}/dvips/$(FONT_NAME)/ + mkdir -p $(ARCHIVE_ROOT)/fonts/{afm,tfm,truetype,type1,vf}/$(FOUNDRY)/$(FONT_NAME)/ + mkdir -p $(ARCHIVE_ROOT)/source/fonts/$(FONT_NAME)/ + cp -p $(DOCUMENTATION) $(ARCHIVE_ROOT)/doc/fonts/$(FONT_NAME)/ + cp -p $(FD_FILES) $(STYLE_FILES) $(ARCHIVE_ROOT)/tex/latex/$(FONT_NAME)/ + cp -p $(ENC_FILES) $(ARCHIVE_ROOT)/fonts/enc/dvips/$(FONT_NAME)/ + cp -p $(MAP) $(ARCHIVE_ROOT)/fonts/map/dvips/$(FONT_NAME)/ + cp -p $(AFM_FILES) $(ARCHIVE_ROOT)/fonts/afm/$(FOUNDRY)/$(FONT_NAME)/ + cp -p $(TFM_FILES) $(ARCHIVE_ROOT)/fonts/tfm/$(FOUNDRY)/$(FONT_NAME)/ + cp -p $(TRUETYPE_FILES) $(ARCHIVE_ROOT)/fonts/truetype/$(FOUNDRY)/$(FONT_NAME)/ + cp -p $(TYPE1_FILES) $(ARCHIVE_ROOT)/fonts/type1/$(FOUNDRY)/$(FONT_NAME)/ + cp -p $(VF_FILES) $(ARCHIVE_ROOT)/fonts/vf/$(FOUNDRY)/$(FONT_NAME)/ + cp -p $(SOURCE_FILES) $(ARCHIVE_ROOT)/source/fonts/$(FONT_NAME)/ + cp -p README $(ARCHIVE_ROOT) + cd $(ARCHIVE_ROOT) && find . -type f > manifest.txt + + +$(ARCHIVE): clean-texmf-tree texmf-tree + zip -r $@ $(ARCHIVE_ROOT) + + +install: texmf-tree + mkdir -p $(TEXMFHOME) + cp -a $(ARCHIVE_ROOT)/* $(TEXMFHOME) + texhash + updmap --enable Map=$(MAP) + + +uninstall: + $(RM) -r $(TEXMFHOME)/doc/latex/$(FONT_NAME)/ + $(RM) -r $(TEXMFHOME)/tex/latex/$(FONT_NAME)/ + $(RM) -r $(TEXMFHOME)/fonts/{enc,map}/dvips/$(FONT_NAME)/ + $(RM) -r $(TEXMFHOME)/fonts/{afm,tfm,type1,vf}/$(FOUNDRY)/$(FONT_NAME)/ + $(RM) -r $(TEXMFHOME)/source/$(FONT_NAME)/ + updmap --disable $(MAP) + texhash + + +clean: clean-texmf-tree + $(RM) $(TYPE1_FILES) $(AFM_FILES) + $(RM) $(FONTINST_REC_FILE) + $(RM) $(PL_FILES) $(TYPE1_FILES:.pfb=.pl) + $(RM) $(OUTPUT_MTX_FILES) $(TYPE1_FILES:.pfb=.mtx) + $(RM) $(VPL_FILES) + $(RM) $(TFM_FILES) + $(RM) $(VF_FILES) + $(RM) $(MAP) + $(RM) $(FD_FILES) + $(RM) $(ENC_FILES) + $(RM) $(ARCHIVE) + $(RM) *~ *.log + + +clean-texmf-tree: + $(RM) -r $(ARCHIVE_ROOT) + + +.PHONY: clean clean-texmf-tree texmf-tree diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-01.etx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-01.etx new file mode 100644 index 00000000000..5ae58b0eda6 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-01.etx @@ -0,0 +1,788 @@ +%% comfortaa-01.etx +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\encoding + +\setslot{space} +\endsetslot + +\setslot{exclam} +\endsetslot + +\setslot{quotedbl} +\endsetslot + +\setslot{numbersign} +\endsetslot + +\setslot{dollar} +\endsetslot + +\setslot{percent} +\endsetslot + +\setslot{ampersand} +\endsetslot + +\setslot{quotesingle} +\endsetslot + +\setslot{parenleft} +\endsetslot + +\setslot{parenright} +\endsetslot + +\setslot{asterisk} +\endsetslot + +\setslot{plus} +\endsetslot + +\setslot{comma} +\endsetslot + +\setslot{hyphen} +\endsetslot + +\setslot{period} +\endsetslot + +\setslot{slash} +\endsetslot + +\setslot{zero} +\endsetslot + +\setslot{one} +\endsetslot + +\setslot{two} +\endsetslot + +\setslot{three} +\endsetslot + +\setslot{four} +\endsetslot + +\setslot{five} +\endsetslot + +\setslot{six} +\endsetslot + +\setslot{seven} +\endsetslot + +\setslot{eight} +\endsetslot + +\setslot{nine} +\endsetslot + +\setslot{colon} +\endsetslot + +\setslot{semicolon} +\endsetslot + +\setslot{less} +\endsetslot + +\setslot{equal} +\endsetslot + +\setslot{greater} +\endsetslot + +\setslot{question} +\endsetslot + +\setslot{at} +\endsetslot + +\setslot{A} +\endsetslot + +\setslot{B} +\endsetslot + +\setslot{C} +\endsetslot + +\setslot{D} +\endsetslot + +\setslot{E} +\endsetslot + +\setslot{F} +\endsetslot + +\setslot{G} +\endsetslot + +\setslot{H} +\endsetslot + +\setslot{I} +\endsetslot + +\setslot{J} +\endsetslot + +\setslot{K} +\endsetslot + +\setslot{L} +\endsetslot + +\setslot{M} +\endsetslot + +\setslot{N} +\endsetslot + +\setslot{O} +\endsetslot + +\setslot{P} +\endsetslot + +\setslot{Q} +\endsetslot + +\setslot{R} +\endsetslot + +\setslot{S} +\endsetslot + +\setslot{T} +\endsetslot + +\setslot{U} +\endsetslot + +\setslot{V} +\endsetslot + +\setslot{W} +\endsetslot + +\setslot{X} +\endsetslot + +\setslot{Y} +\endsetslot + +\setslot{Z} +\endsetslot + +\setslot{bracketleft} +\endsetslot + +\setslot{backslash} +\endsetslot + +\setslot{bracketright} +\endsetslot + +\setslot{asciicircum} +\endsetslot + +\setslot{underscore} +\endsetslot + +\setslot{grave} +\endsetslot + +\setslot{a} +\endsetslot + +\setslot{b} +\endsetslot + +\setslot{c} +\endsetslot + +\setslot{d} +\endsetslot + +\setslot{e} +\endsetslot + +\setslot{f} +\endsetslot + +\setslot{g} +\endsetslot + +\setslot{h} +\endsetslot + +\setslot{i} +\endsetslot + +\setslot{j} +\endsetslot + +\setslot{k} +\endsetslot + +\setslot{l} +\endsetslot + +\setslot{m} +\endsetslot + +\setslot{n} +\endsetslot + +\setslot{o} +\endsetslot + +\setslot{p} +\endsetslot + +\setslot{q} +\endsetslot + +\setslot{r} +\endsetslot + +\setslot{s} +\endsetslot + +\setslot{t} +\endsetslot + +\setslot{u} +\endsetslot + +\setslot{v} +\endsetslot + +\setslot{w} +\endsetslot + +\setslot{x} +\endsetslot + +\setslot{y} +\endsetslot + +\setslot{z} +\endsetslot + +\setslot{braceleft} +\endsetslot + +\setslot{bar} +\endsetslot + +\setslot{braceright} +\endsetslot + +\setslot{asciitilde} +\endsetslot + +\setslot{exclamdown} +\endsetslot + +\setslot{cent} +\endsetslot + +\setslot{sterling} +\endsetslot + +\setslot{currency} +\endsetslot + +\setslot{yen} +\endsetslot + +\setslot{brokenbar} +\endsetslot + +\setslot{section} +\endsetslot + +\setslot{dieresis} +\endsetslot + +\setslot{copyright} +\endsetslot + +\setslot{ordfeminine} +\endsetslot + +\setslot{guillemotleft} +\endsetslot + +\setslot{logicalnot} +\endsetslot + +\setslot{registered} +\endsetslot + +\setslot{macron} +\endsetslot + +\setslot{degree} +\endsetslot + +\setslot{plusminus} +\endsetslot + +\setslot{uni00B2} +\endsetslot + +\setslot{uni00B3} +\endsetslot + +\setslot{acute} +\endsetslot + +\setslot{mu} +\endsetslot + +\setslot{paragraph} +\endsetslot + +\setslot{periodcentered} +\endsetslot + +\setslot{cedilla} +\endsetslot + +\setslot{uni00B9} +\endsetslot + +\setslot{ordmasculine} +\endsetslot + +\setslot{guillemotright} +\endsetslot + +\setslot{onequarter} +\endsetslot + +\setslot{onehalf} +\endsetslot + +\setslot{threequarters} +\endsetslot + +\setslot{questiondown} +\endsetslot + +\setslot{Agrave} +\endsetslot + +\setslot{Aacute} +\endsetslot + +\setslot{Acircumflex} +\endsetslot + +\setslot{Atilde} +\endsetslot + +\setslot{Adieresis} +\endsetslot + +\setslot{Aring} +\endsetslot + +\setslot{AE} +\endsetslot + +\setslot{Ccedilla} +\endsetslot + +\setslot{Egrave} +\endsetslot + +\setslot{Eacute} +\endsetslot + +\setslot{Ecircumflex} +\endsetslot + +\setslot{Edieresis} +\endsetslot + +\setslot{Igrave} +\endsetslot + +\setslot{Iacute} +\endsetslot + +\setslot{Icircumflex} +\endsetslot + +\setslot{Idieresis} +\endsetslot + +\setslot{Eth} +\endsetslot + +\setslot{Ntilde} +\endsetslot + +\setslot{Ograve} +\endsetslot + +\setslot{Oacute} +\endsetslot + +\setslot{Ocircumflex} +\endsetslot + +\setslot{Otilde} +\endsetslot + +\setslot{Odieresis} +\endsetslot + +\setslot{multiply} +\endsetslot + +\setslot{Oslash} +\endsetslot + +\setslot{Ugrave} +\endsetslot + +\setslot{Uacute} +\endsetslot + +\setslot{Ucircumflex} +\endsetslot + +\setslot{Udieresis} +\endsetslot + +\setslot{Yacute} +\endsetslot + +\setslot{Thorn} +\endsetslot + +\setslot{germandbls} +\endsetslot + +\setslot{agrave} +\endsetslot + +\setslot{aacute} +\endsetslot + +\setslot{acircumflex} +\endsetslot + +\setslot{atilde} +\endsetslot + +\setslot{adieresis} +\endsetslot + +\setslot{aring} +\endsetslot + +\setslot{ae} +\endsetslot + +\setslot{ccedilla} +\endsetslot + +\setslot{egrave} +\endsetslot + +\setslot{eacute} +\endsetslot + +\setslot{ecircumflex} +\endsetslot + +\setslot{edieresis} +\endsetslot + +\setslot{igrave} +\endsetslot + +\setslot{iacute} +\endsetslot + +\setslot{icircumflex} +\endsetslot + +\setslot{idieresis} +\endsetslot + +\setslot{eth} +\endsetslot + +\setslot{ntilde} +\endsetslot + +\setslot{ograve} +\endsetslot + +\setslot{oacute} +\endsetslot + +\setslot{ocircumflex} +\endsetslot + +\setslot{otilde} +\endsetslot + +\setslot{odieresis} +\endsetslot + +\setslot{divide} +\endsetslot + +\setslot{oslash} +\endsetslot + +\setslot{ugrave} +\endsetslot + +\setslot{uacute} +\endsetslot + +\setslot{ucircumflex} +\endsetslot + +\setslot{udieresis} +\endsetslot + +\setslot{yacute} +\endsetslot + +\setslot{thorn} +\endsetslot + +\setslot{ydieresis} +\endsetslot + +\setslot{dotlessi} +\endsetslot + +\setslot{circumflex} +\endsetslot + +\setslot{caron} +\endsetslot + +\setslot{uni02C9} +\endsetslot + +\setslot{breve} +\endsetslot + +\setslot{dotaccent} +\endsetslot + +\setslot{ring} +\endsetslot + +\setslot{ogonek} +\endsetslot + +\setslot{tilde} +\endsetslot + +\setslot{hungarumlaut} +\endsetslot + +\setslot{endash} +\endsetslot + +\setslot{emdash} +\endsetslot + +\setslot{quoteleft} +\endsetslot + +\setslot{quoteright} +\endsetslot + +\setslot{quotesinglbase} +\endsetslot + +\setslot{quotedblleft} +\endsetslot + +\setslot{quotedblright} +\endsetslot + +\setslot{quotedblbase} +\endsetslot + +\setslot{dagger} +\endsetslot + +\setslot{daggerdbl} +\endsetslot + +\setslot{bullet} +\endsetslot + +\setslot{ellipsis} +\endsetslot + +\setslot{guilsinglleft} +\endsetslot + +\setslot{guilsinglright} +\endsetslot + +\setslot{fraction} +\endsetslot + +\setslot{franc} +\endsetslot + +\setslot{lira} +\endsetslot + +\setslot{peseta} +\endsetslot + +\setslot{Euro} +\endsetslot + +\setslot{afii61352} +\endsetslot + +\setslot{trademark} +\endsetslot + +\setslot{partialdiff} +\endsetslot + +\setslot{Delta} +\endsetslot + +\setslot{product} +\endsetslot + +\setslot{summation} +\endsetslot + +\setslot{minus} +\endsetslot + +\setslot{radical} +\endsetslot + +\setslot{infinity} +\endsetslot + +\setslot{integral} +\endsetslot + +\setslot{approxequal} +\endsetslot + +\setslot{lessequal} +\endsetslot + +\setslot{greaterequal} +\endsetslot + +\setslot{uniF001} +\endsetslot + +\setslot{uniF002} +\endsetslot + +\setslot{Amacron} +\endsetslot + +\setslot{amacron} +\endsetslot + +\setslot{Abreve} +\endsetslot + +\setslot{abreve} +\endsetslot + +\setslot{Aogonek} +\endsetslot + +\setslot{aogonek} +\endsetslot + +\setslot{Cacute} +\endsetslot + +\setslot{cacute} +\endsetslot + +\setslot{Ccircumflex} +\endsetslot + +\setslot{ccircumflex} +\endsetslot + +\setslot{Cdotaccent} +\endsetslot + +\setslot{cdotaccent} +\endsetslot + +\setslot{Ccaron} +\endsetslot + +\setslot{ccaron} +\endsetslot + +\setslot{Dcaron} +\endsetslot + +\setslot{dcaron} +\endsetslot + +\setslot{Dcroat} +\endsetslot + +\setslot{dcroat} +\endsetslot + +\setslot{Emacron} +\endsetslot + +\setslot{emacron} +\endsetslot + +\setslot{Ebreve} +\endsetslot + +\setslot{ebreve} +\endsetslot + +\setslot{Edotaccent} +\endsetslot + +\endencoding diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-02.etx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-02.etx new file mode 100644 index 00000000000..399ae1b1d68 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-02.etx @@ -0,0 +1,788 @@ +%% comfortaa-02.etx +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\encoding + +\setslot{edotaccent} +\endsetslot + +\setslot{Eogonek} +\endsetslot + +\setslot{eogonek} +\endsetslot + +\setslot{Ecaron} +\endsetslot + +\setslot{ecaron} +\endsetslot + +\setslot{Gcircumflex} +\endsetslot + +\setslot{gcircumflex} +\endsetslot + +\setslot{Gbreve} +\endsetslot + +\setslot{gbreve} +\endsetslot + +\setslot{Gdotaccent} +\endsetslot + +\setslot{gdotaccent} +\endsetslot + +\setslot{Gcommaaccent} +\endsetslot + +\setslot{gcommaaccent} +\endsetslot + +\setslot{Hcircumflex} +\endsetslot + +\setslot{hcircumflex} +\endsetslot + +\setslot{Hbar} +\endsetslot + +\setslot{hbar} +\endsetslot + +\setslot{Itilde} +\endsetslot + +\setslot{itilde} +\endsetslot + +\setslot{Imacron} +\endsetslot + +\setslot{imacron} +\endsetslot + +\setslot{Ibreve} +\endsetslot + +\setslot{ibreve} +\endsetslot + +\setslot{Iogonek} +\endsetslot + +\setslot{iogonek} +\endsetslot + +\setslot{Idotaccent} +\endsetslot + +\setslot{IJ} +\endsetslot + +\setslot{ij} +\endsetslot + +\setslot{Jcircumflex} +\endsetslot + +\setslot{jcircumflex} +\endsetslot + +\setslot{Kcommaaccent} +\endsetslot + +\setslot{kcommaaccent} +\endsetslot + +\setslot{kgreenlandic} +\endsetslot + +\setslot{Lacute} +\endsetslot + +\setslot{lacute} +\endsetslot + +\setslot{Lcommaaccent} +\endsetslot + +\setslot{lcommaaccent} +\endsetslot + +\setslot{Lcaron} +\endsetslot + +\setslot{lcaron} +\endsetslot + +\setslot{Ldot} +\endsetslot + +\setslot{ldot} +\endsetslot + +\setslot{Lslash} +\endsetslot + +\setslot{lslash} +\endsetslot + +\setslot{Nacute} +\endsetslot + +\setslot{nacute} +\endsetslot + +\setslot{Ncommaaccent} +\endsetslot + +\setslot{ncommaaccent} +\endsetslot + +\setslot{Ncaron} +\endsetslot + +\setslot{ncaron} +\endsetslot + +\setslot{napostrophe} +\endsetslot + +\setslot{Eng} +\endsetslot + +\setslot{eng} +\endsetslot + +\setslot{Omacron} +\endsetslot + +\setslot{omacron} +\endsetslot + +\setslot{Obreve} +\endsetslot + +\setslot{obreve} +\endsetslot + +\setslot{Ohungarumlaut} +\endsetslot + +\setslot{ohungarumlaut} +\endsetslot + +\setslot{OE} +\endsetslot + +\setslot{oe} +\endsetslot + +\setslot{Racute} +\endsetslot + +\setslot{racute} +\endsetslot + +\setslot{Rcommaaccent} +\endsetslot + +\setslot{rcommaaccent} +\endsetslot + +\setslot{Rcaron} +\endsetslot + +\setslot{rcaron} +\endsetslot + +\setslot{Sacute} +\endsetslot + +\setslot{sacute} +\endsetslot + +\setslot{Scircumflex} +\endsetslot + +\setslot{scircumflex} +\endsetslot + +\setslot{Scedilla} +\endsetslot + +\setslot{scedilla} +\endsetslot + +\setslot{Scaron} +\endsetslot + +\setslot{scaron} +\endsetslot + +\setslot{Tcommaaccent} +\endsetslot + +\setslot{tcommaaccent} +\endsetslot + +\setslot{Tcaron} +\endsetslot + +\setslot{tcaron} +\endsetslot + +\setslot{Tbar} +\endsetslot + +\setslot{tbar} +\endsetslot + +\setslot{Utilde} +\endsetslot + +\setslot{utilde} +\endsetslot + +\setslot{Umacron} +\endsetslot + +\setslot{umacron} +\endsetslot + +\setslot{Ubreve} +\endsetslot + +\setslot{ubreve} +\endsetslot + +\setslot{Uring} +\endsetslot + +\setslot{uring} +\endsetslot + +\setslot{Uhungarumlaut} +\endsetslot + +\setslot{uhungarumlaut} +\endsetslot + +\setslot{Uogonek} +\endsetslot + +\setslot{uogonek} +\endsetslot + +\setslot{Wcircumflex} +\endsetslot + +\setslot{wcircumflex} +\endsetslot + +\setslot{Ycircumflex} +\endsetslot + +\setslot{ycircumflex} +\endsetslot + +\setslot{Ydieresis} +\endsetslot + +\setslot{Zacute} +\endsetslot + +\setslot{zacute} +\endsetslot + +\setslot{Zdotaccent} +\endsetslot + +\setslot{zdotaccent} +\endsetslot + +\setslot{Zcaron} +\endsetslot + +\setslot{zcaron} +\endsetslot + +\setslot{longs} +\endsetslot + +\setslot{florin} +\endsetslot + +\setslot{Aringacute} +\endsetslot + +\setslot{aringacute} +\endsetslot + +\setslot{AEacute} +\endsetslot + +\setslot{aeacute} +\endsetslot + +\setslot{Oslashacute} +\endsetslot + +\setslot{oslashacute} +\endsetslot + +\setslot{tonos} +\endsetslot + +\setslot{dieresistonos} +\endsetslot + +\setslot{Alphatonos} +\endsetslot + +\setslot{anoteleia} +\endsetslot + +\setslot{Epsilontonos} +\endsetslot + +\setslot{Etatonos} +\endsetslot + +\setslot{Iotatonos} +\endsetslot + +\setslot{Omicrontonos} +\endsetslot + +\setslot{Upsilontonos} +\endsetslot + +\setslot{Omegatonos} +\endsetslot + +\setslot{iotadieresistonos} +\endsetslot + +\setslot{Alpha} +\endsetslot + +\setslot{Beta} +\endsetslot + +\setslot{Gamma} +\endsetslot + +\setslot{uni0394} +\endsetslot + +\setslot{Epsilon} +\endsetslot + +\setslot{Zeta} +\endsetslot + +\setslot{Eta} +\endsetslot + +\setslot{Theta} +\endsetslot + +\setslot{Iota} +\endsetslot + +\setslot{Kappa} +\endsetslot + +\setslot{Lambda} +\endsetslot + +\setslot{Mu} +\endsetslot + +\setslot{Nu} +\endsetslot + +\setslot{Xi} +\endsetslot + +\setslot{Omicron} +\endsetslot + +\setslot{Pi} +\endsetslot + +\setslot{Rho} +\endsetslot + +\setslot{Sigma} +\endsetslot + +\setslot{Tau} +\endsetslot + +\setslot{Upsilon} +\endsetslot + +\setslot{Phi} +\endsetslot + +\setslot{Chi} +\endsetslot + +\setslot{Psi} +\endsetslot + +\setslot{uni03A9} +\endsetslot + +\setslot{Iotadieresis} +\endsetslot + +\setslot{Upsilondieresis} +\endsetslot + +\setslot{alphatonos} +\endsetslot + +\setslot{epsilontonos} +\endsetslot + +\setslot{etatonos} +\endsetslot + +\setslot{iotatonos} +\endsetslot + +\setslot{upsilondieresistonos} +\endsetslot + +\setslot{alpha} +\endsetslot + +\setslot{beta} +\endsetslot + +\setslot{gamma} +\endsetslot + +\setslot{delta} +\endsetslot + +\setslot{epsilon} +\endsetslot + +\setslot{zeta} +\endsetslot + +\setslot{eta} +\endsetslot + +\setslot{theta} +\endsetslot + +\setslot{iota} +\endsetslot + +\setslot{kappa} +\endsetslot + +\setslot{lambda} +\endsetslot + +\setslot{uni03BC} +\endsetslot + +\setslot{nu} +\endsetslot + +\setslot{xi} +\endsetslot + +\setslot{omicron} +\endsetslot + +\setslot{pi} +\endsetslot + +\setslot{rho} +\endsetslot + +\setslot{sigma1} +\endsetslot + +\setslot{sigma} +\endsetslot + +\setslot{tau} +\endsetslot + +\setslot{upsilon} +\endsetslot + +\setslot{phi} +\endsetslot + +\setslot{chi} +\endsetslot + +\setslot{psi} +\endsetslot + +\setslot{omega} +\endsetslot + +\setslot{iotadieresis} +\endsetslot + +\setslot{upsilondieresis} +\endsetslot + +\setslot{omicrontonos} +\endsetslot + +\setslot{upsilontonos} +\endsetslot + +\setslot{omegatonos} +\endsetslot + +\setslot{afii00208} +\endsetslot + +\setslot{underscoredbl} +\endsetslot + +\setslot{quotereversed} +\endsetslot + +\setslot{perthousand} +\endsetslot + +\setslot{minute} +\endsetslot + +\setslot{second} +\endsetslot + +\setslot{exclamdbl} +\endsetslot + +\setslot{uni203E} +\endsetslot + +\setslot{uni207F} +\endsetslot + +\setslot{afii61248} +\endsetslot + +\setslot{afii61289} +\endsetslot + +\setslot{Omega} +\endsetslot + +\setslot{estimated} +\endsetslot + +\setslot{oneeighth} +\endsetslot + +\setslot{threeeighths} +\endsetslot + +\setslot{fiveeighths} +\endsetslot + +\setslot{seveneighths} +\endsetslot + +\setslot{arrowleft} +\endsetslot + +\setslot{arrowup} +\endsetslot + +\setslot{arrowright} +\endsetslot + +\setslot{arrowdown} +\endsetslot + +\setslot{arrowboth} +\endsetslot + +\setslot{arrowupdn} +\endsetslot + +\setslot{arrowupdnbse} +\endsetslot + +\setslot{orthogonal} +\endsetslot + +\setslot{intersection} +\endsetslot + +\setslot{notequal} +\endsetslot + +\setslot{equivalence} +\endsetslot + +\setslot{afii10023} +\endsetslot + +\setslot{afii10051} +\endsetslot + +\setslot{afii10052} +\endsetslot + +\setslot{afii10053} +\endsetslot + +\setslot{afii10054} +\endsetslot + +\setslot{afii10055} +\endsetslot + +\setslot{afii10056} +\endsetslot + +\setslot{afii10057} +\endsetslot + +\setslot{afii10058} +\endsetslot + +\setslot{afii10059} +\endsetslot + +\setslot{afii10060} +\endsetslot + +\setslot{afii10061} +\endsetslot + +\setslot{afii10062} +\endsetslot + +\setslot{afii10145} +\endsetslot + +\setslot{afii10017} +\endsetslot + +\setslot{afii10018} +\endsetslot + +\setslot{afii10019} +\endsetslot + +\setslot{afii10020} +\endsetslot + +\setslot{afii10021} +\endsetslot + +\setslot{afii10022} +\endsetslot + +\setslot{afii10024} +\endsetslot + +\setslot{afii10025} +\endsetslot + +\setslot{afii10026} +\endsetslot + +\setslot{afii10027} +\endsetslot + +\setslot{afii10028} +\endsetslot + +\setslot{afii10029} +\endsetslot + +\setslot{afii10030} +\endsetslot + +\setslot{afii10031} +\endsetslot + +\setslot{afii10032} +\endsetslot + +\setslot{afii10033} +\endsetslot + +\setslot{afii10034} +\endsetslot + +\setslot{afii10035} +\endsetslot + +\setslot{afii10036} +\endsetslot + +\setslot{afii10037} +\endsetslot + +\setslot{afii10038} +\endsetslot + +\setslot{afii10039} +\endsetslot + +\setslot{afii10040} +\endsetslot + +\setslot{afii10041} +\endsetslot + +\setslot{afii10042} +\endsetslot + +\setslot{afii10043} +\endsetslot + +\setslot{afii10044} +\endsetslot + +\setslot{afii10045} +\endsetslot + +\setslot{afii10046} +\endsetslot + +\setslot{afii10047} +\endsetslot + +\setslot{afii10048} +\endsetslot + +\endencoding diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-03.etx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-03.etx new file mode 100644 index 00000000000..08a34c31674 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-03.etx @@ -0,0 +1,263 @@ +%% comfortaa-03.etx +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\encoding + +\setslot{afii10049} +\endsetslot + +\setslot{afii10065} +\endsetslot + +\setslot{afii10066} +\endsetslot + +\setslot{afii10067} +\endsetslot + +\setslot{afii10068} +\endsetslot + +\setslot{afii10069} +\endsetslot + +\setslot{afii10070} +\endsetslot + +\setslot{afii10072} +\endsetslot + +\setslot{afii10073} +\endsetslot + +\setslot{afii10074} +\endsetslot + +\setslot{afii10075} +\endsetslot + +\setslot{afii10076} +\endsetslot + +\setslot{afii10077} +\endsetslot + +\setslot{afii10078} +\endsetslot + +\setslot{afii10079} +\endsetslot + +\setslot{afii10080} +\endsetslot + +\setslot{afii10081} +\endsetslot + +\setslot{afii10082} +\endsetslot + +\setslot{afii10083} +\endsetslot + +\setslot{afii10084} +\endsetslot + +\setslot{afii10085} +\endsetslot + +\setslot{afii10086} +\endsetslot + +\setslot{afii10087} +\endsetslot + +\setslot{afii10088} +\endsetslot + +\setslot{afii10089} +\endsetslot + +\setslot{afii10090} +\endsetslot + +\setslot{afii10091} +\endsetslot + +\setslot{afii10092} +\endsetslot + +\setslot{afii10093} +\endsetslot + +\setslot{afii10094} +\endsetslot + +\setslot{afii10095} +\endsetslot + +\setslot{afii10096} +\endsetslot + +\setslot{afii10097} +\endsetslot + +\setslot{afii10071} +\endsetslot + +\setslot{afii10099} +\endsetslot + +\setslot{afii10100} +\endsetslot + +\setslot{afii10101} +\endsetslot + +\setslot{afii10102} +\endsetslot + +\setslot{afii10103} +\endsetslot + +\setslot{afii10104} +\endsetslot + +\setslot{afii10105} +\endsetslot + +\setslot{afii10106} +\endsetslot + +\setslot{afii10107} +\endsetslot + +\setslot{afii10108} +\endsetslot + +\setslot{afii10109} +\endsetslot + +\setslot{afii10110} +\endsetslot + +\setslot{afii10193} +\endsetslot + +\setslot{afii10050} +\endsetslot + +\setslot{afii10098} +\endsetslot + +\setslot{uni0492} +\endsetslot + +\setslot{uni0493} +\endsetslot + +\setslot{uni0496} +\endsetslot + +\setslot{uni0497} +\endsetslot + +\setslot{uni049A} +\endsetslot + +\setslot{uni049B} +\endsetslot + +\setslot{uni049C} +\endsetslot + +\setslot{uni049D} +\endsetslot + +\setslot{uni04A2} +\endsetslot + +\setslot{uni04A3} +\endsetslot + +\setslot{uni04AE} +\endsetslot + +\setslot{uni04AF} +\endsetslot + +\setslot{uni04B0} +\endsetslot + +\setslot{uni04B1} +\endsetslot + +\setslot{uni04B2} +\endsetslot + +\setslot{uni04B3} +\endsetslot + +\setslot{uni04B8} +\endsetslot + +\setslot{uni04B9} +\endsetslot + +\setslot{uni04BA} +\endsetslot + +\setslot{uni04BB} +\endsetslot + +\setslot{uni04D8} +\endsetslot + +\setslot{afii10846} +\endsetslot + +\setslot{uni04E8} +\endsetslot + +\setslot{uni04E9} +\endsetslot + +\setslot{Wgrave} +\endsetslot + +\setslot{wgrave} +\endsetslot + +\setslot{Wacute} +\endsetslot + +\setslot{wacute} +\endsetslot + +\setslot{Wdieresis} +\endsetslot + +\setslot{wdieresis} +\endsetslot + +\setslot{Ygrave} +\endsetslot + +\setslot{ygrave} +\endsetslot + +\endencoding diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-diacritics.mtx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-diacritics.mtx new file mode 100644 index 00000000000..5b0fbc30172 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-diacritics.mtx @@ -0,0 +1,29 @@ +%% comfortaa-diacritics.mtx +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax +\metrics + +% Fix tilde height +\setint{tildeheight}{\height{tilde}} +\setint{breveheight}{\height{breve}} +\resetglyph{tilde} + \moveup{-\int{tildeheight}} + \moveup{\int{breveheight}} + \glyph{tilde}{1000} + \resetdepth{0} +\endsetglyph + +\endmetrics diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-dotlessj.etx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-dotlessj.etx new file mode 100644 index 00000000000..bc296da349f --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-dotlessj.etx @@ -0,0 +1,23 @@ +%% comfortaa-dotlessj.etx +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\encoding + +\setslot{uni0237} +\endsetslot + +\endencoding diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-drv.tex b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-drv.tex new file mode 100644 index 00000000000..1c594250c96 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-drv.tex @@ -0,0 +1,259 @@ +%% comfortaa-drv.tex +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\input fontinst.sty + + +\setint{slant}{167} +\setint{smallcapsscale}{800} + +\substitutesilent{scit}{scsl} + + +\recordtransforms{comfortaa-rec.tex} + + +\foreach(e){01,02,03} + \transformfont{Comfortaa-Light-\str{e}}{\reencodefont{comfortaa-\str{e}}{\fromafm{Comfortaa-Light}}} + \transformfont{Comfortaa-Light-Slanted-\str{e}}{\slantfont{\int{slant}}\reencodefont{comfortaa-\str{e}}{\fromafm{Comfortaa-Light}}} + \transformfont{Comfortaa-Regular-\str{e}}{\reencodefont{comfortaa-\str{e}}{\fromafm{Comfortaa-Regular}}} + \transformfont{Comfortaa-Regular-Slanted-\str{e}}{\slantfont{\int{slant}}\reencodefont{comfortaa-\str{e}}{\fromafm{Comfortaa-Regular}}} + \transformfont{Comfortaa-Bold-\str{e}}{\reencodefont{comfortaa-\str{e}}{\fromafm{Comfortaa-Bold}}} + \transformfont{Comfortaa-Bold-Slanted-\str{e}}{\slantfont{\int{slant}}\reencodefont{comfortaa-\str{e}}{\fromafm{Comfortaa-Bold}}} +\endfor(e) +\transformfont{Comfortaa-Light-dotlessj}{\reencodefont{comfortaa-dotlessj}{\fromafm{Comfortaa-Light-LCDFJ}}} +\transformfont{Comfortaa-Light-Slanted-dotlessj}{\slantfont{\int{slant}}\reencodefont{comfortaa-dotlessj}{\fromafm{Comfortaa-Light-LCDFJ}}} +\transformfont{Comfortaa-Regular-dotlessj}{\reencodefont{comfortaa-dotlessj}{\fromafm{Comfortaa-Regular-LCDFJ}}} +\transformfont{Comfortaa-Regular-Slanted-dotlessj}{\slantfont{\int{slant}}\reencodefont{comfortaa-dotlessj}{\fromafm{Comfortaa-Regular-LCDFJ}}} +\transformfont{Comfortaa-Bold-dotlessj}{\reencodefont{comfortaa-dotlessj}{\fromafm{Comfortaa-Bold-LCDFJ}}} +\transformfont{Comfortaa-Bold-Slanted-dotlessj}{\slantfont{\int{slant}}\reencodefont{comfortaa-dotlessj}{\fromafm{Comfortaa-Bold-LCDFJ}}} + + +\fontinstcc +\def\fd_family#1#2#3{ + \a_toks{#3} + \edef\lowercase_file{\lowercase{ + \edef\noexpand\lowercase_file{#1#2.fd}}} + \lowercase_file + \open_out{\lowercase_file} + \out_line{\percent_char~Filename:~\lowercase_file} + \out_line{\percent_char~Created~by:~tex~\jobname} + \out_line{\percent_char~Created~using~fontinst~v\fontinstversion} + \out_line{} + \out_line{\percent_char~THIS~FILE~SHOULD~BE~PUT~IN~A~TEX~INPUTS~ + DIRECTORY} + \out_line{} + \out_line{\string\ProvidesFile{\lowercase_file}} + \out_lline{[ + \the\year/ + \ifnum10>\month0\fi\the\month/ + \ifnum10>\day0\fi\the\day\space + Fontinst~v\fontinstversion\space + font~definitions~for~#1/#2. + ]} + \out_line{} + %%% + \out_line{\string\expandafter\string\ifx\string\csname\space comfortaa@scale\string\endcsname\string\relax} + \out_line{\space\space\string\let\string\comfortaa@scale\string\@empty} + \out_line{\string\fi} + \out_line{} + %%% + \out_line{\string\DeclareFontFamily{#1}{#2}{\the\a_toks}} + { + \csname #1-#2\endcsname + \out_line{} + \let\do_shape=\substitute_shape + \csname #1-#2\endcsname + \let\do_shape=\remove_shape + \csname #1-#2\endcsname + } + \x_cs\g_let{#1-#2}\x_relax + \out_line{} + \out_line{\string\endinput} + \close_out{Font~definitions} +} +\normalcc + + +\installfonts +\installfamily{OT1}{fco}{} + +\installfont{Comfortaa-Light-ot1}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1}{OT1}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-ot1}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1}{OT1}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-ot1}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1c}{OT1}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-ot1}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1c}{OT1}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-ot1}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1}{OT1}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-ot1}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1}{OT1}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-ot1}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1c}{OT1}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-ot1}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1c}{OT1}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-ot1}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1}{OT1}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-ot1}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1}{OT1}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-ot1}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1c}{OT1}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-ot1}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{ot1c}{OT1}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{T1}{fco}{} + +\installfont{Comfortaa-Light-t1}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1}{T1}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-t1}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1}{T1}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-t1}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1c}{T1}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-t1}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1c}{T1}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-t1}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1}{T1}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-t1}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1}{T1}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-t1}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1c}{T1}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-t1}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1c}{T1}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-t1}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1}{T1}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-t1}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1}{T1}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-t1}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1c}{T1}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-t1}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixlatin,comfortaa-diacritics,newlatin}{t1c}{T1}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{TS1}{fco}{} + +\installfont{Comfortaa-Light-ts1}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,comfortaa-fixtextcomp,comfortaa-diacritics,textcomp}{ts1}{TS1}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-ts1}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,comfortaa-fixtextcomp,comfortaa-diacritics,textcomp}{ts1}{TS1}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfontas{Comfortaa-Light-ts1}{TS1}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfontas{Comfortaa-Light-Slanted-ts1}{TS1}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-ts1}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,comfortaa-fixtextcomp,comfortaa-diacritics,textcomp}{ts1}{TS1}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-ts1}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,comfortaa-fixtextcomp,comfortaa-diacritics,textcomp}{ts1}{TS1}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfontas{Comfortaa-Regular-ts1}{TS1}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfontas{Comfortaa-Regular-Slanted-ts1}{TS1}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-ts1}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,comfortaa-fixtextcomp,comfortaa-diacritics,textcomp}{ts1}{TS1}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-ts1}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,comfortaa-fixtextcomp,comfortaa-diacritics,textcomp}{ts1}{TS1}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfontas{Comfortaa-Bold-ts1}{TS1}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfontas{Comfortaa-Bold-Slanted-ts1}{TS1}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{T2A}{fco}{} + +\installfont{Comfortaa-Light-t2a}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2a}{T2A}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-t2a}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2a}{T2A}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-t2a}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2ac}{T2A}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-t2a}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2ac}{T2A}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-t2a}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2a}{T2A}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-t2a}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2a}{T2A}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-t2a}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2ac}{T2A}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-t2a}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2ac}{T2A}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-t2a}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2a}{T2A}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-t2a}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2a}{T2A}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-t2a}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2ac}{T2A}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-t2a}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2ac}{T2A}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{T2B}{fco}{} + +\installfont{Comfortaa-Light-t2b}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2b}{T2B}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-t2b}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2b}{T2B}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-t2b}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2bc}{T2B}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-t2b}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2bc}{T2B}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-t2b}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2b}{T2B}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-t2b}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2b}{T2B}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-t2b}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2bc}{T2B}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-t2b}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2bc}{T2B}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-t2b}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2b}{T2B}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-t2b}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2b}{T2B}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-t2b}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2bc}{T2B}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-t2b}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2bc}{T2B}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{T2C}{fco}{} + +\installfont{Comfortaa-Light-t2c}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2c}{T2C}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-t2c}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2c}{T2C}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-t2c}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,Comfortaa-Light-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2cc}{T2C}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-t2c}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,Comfortaa-Light-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2cc}{T2C}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-t2c}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2c}{T2C}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-t2c}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2c}{T2C}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-t2c}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,Comfortaa-Regular-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2cc}{T2C}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-t2c}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,Comfortaa-Regular-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2cc}{T2C}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-t2c}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2c}{T2C}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-t2c}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2c}{T2C}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-t2c}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,Comfortaa-Bold-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2cc}{T2C}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-t2c}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,Comfortaa-Bold-Slanted-dotlessj,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{t2cc}{T2C}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{X2}{fco}{} + +\installfont{Comfortaa-Light-x2}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2}{X2}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-x2}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2}{X2}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-x2}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2c}{X2}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-x2}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2c}{X2}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-x2}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2}{X2}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-x2}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2}{X2}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-x2}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2c}{X2}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-x2}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2c}{X2}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-x2}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2}{X2}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-x2}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2}{X2}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-x2}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2c}{X2}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-x2}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,comfortaa-fixcyrillic,comfortaa-diacritics,newlatin,cyrillic}{x2c}{X2}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\installfonts +\installfamily{LGR}{fco}{} + +\installfont{Comfortaa-Light-lgr}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,comfortaa-fixgreek,newlatin,greek}{lgr-lig}{LGR}{fco}{l}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-lgr}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,comfortaa-fixgreek,newlatin,greek}{lgr-lig}{LGR}{fco}{l}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-SmallCaps-lgr}{Comfortaa-Light-01,Comfortaa-Light-02,Comfortaa-Light-03,comfortaa-fixgreek,newlatin,greek}{lgr-ligc}{LGR}{fco}{l}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Light-Slanted-SmallCaps-lgr}{Comfortaa-Light-Slanted-01,Comfortaa-Light-Slanted-02,Comfortaa-Light-Slanted-03,comfortaa-fixgreek,newlatin,greek}{lgr-ligc}{LGR}{fco}{l}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Regular-lgr}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,comfortaa-fixgreek,newlatin,greek}{lgr-lig}{LGR}{fco}{m}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-lgr}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,comfortaa-fixgreek,newlatin,greek}{lgr-lig}{LGR}{fco}{m}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-SmallCaps-lgr}{Comfortaa-Regular-01,Comfortaa-Regular-02,Comfortaa-Regular-03,comfortaa-fixgreek,newlatin,greek}{lgr-ligc}{LGR}{fco}{m}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Regular-Slanted-SmallCaps-lgr}{Comfortaa-Regular-Slanted-01,Comfortaa-Regular-Slanted-02,Comfortaa-Regular-Slanted-03,comfortaa-fixgreek,newlatin,greek}{lgr-ligc}{LGR}{fco}{m}{scsl}{<->\string\comfortaa@scale} + +\installfont{Comfortaa-Bold-lgr}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,comfortaa-fixgreek,newlatin,greek}{lgr-lig}{LGR}{fco}{b}{n}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-lgr}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,comfortaa-fixgreek,newlatin,greek}{lgr-lig}{LGR}{fco}{b}{sl}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-SmallCaps-lgr}{Comfortaa-Bold-01,Comfortaa-Bold-02,Comfortaa-Bold-03,comfortaa-fixgreek,newlatin,greek}{lgr-ligc}{LGR}{fco}{b}{sc}{<->\string\comfortaa@scale} +\installfont{Comfortaa-Bold-Slanted-SmallCaps-lgr}{Comfortaa-Bold-Slanted-01,Comfortaa-Bold-Slanted-02,Comfortaa-Bold-Slanted-03,comfortaa-fixgreek,newlatin,greek}{lgr-ligc}{LGR}{fco}{b}{scsl}{<->\string\comfortaa@scale} + +\endinstallfonts + + +\endrecordtransforms +\bye diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixcyrillic.mtx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixcyrillic.mtx new file mode 100644 index 00000000000..6431f944c81 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixcyrillic.mtx @@ -0,0 +1,498 @@ +%% comfortaa-fixcyrillic.tex +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\metrics + +\resetglyph{macron} + \glyph{uni02C9}{1000} +\endresetglyph + +\ifisglyph{uni0237}\then + \resetglyph{dotlessj} + \glyph{uni0237}{1000} + \endresetglyph +\fi + +\resetglyph{fi} + \glyph{uniF001}{1000} +\endresetglyph + +\resetglyph{fl} + \glyph{uniF002}{1000} +\endresetglyph + +\resetglyph{CYRGUP} + \glyph{afii10050}{1000} +\endresetglyph + +\resetglyph{CYRGHCRS} + \glyph{uni0492}{1000} +\endresetglyph + +\resetglyph{CYRDJE} + \glyph{afii10051}{1000} +\endresetglyph + +\resetglyph{CYRTSHE} + \glyph{afii10060}{1000} +\endresetglyph + +\resetglyph{CYRSHHA} + \glyph{uni04BA}{1000} +\endresetglyph + +\resetglyph{CYRZHDSC} + \glyph{uni0496}{1000} +\endresetglyph + +\resetglyph{CYRLJE} + \glyph{afii10058}{1000} +\endresetglyph + +\resetglyph{CYRYI} + \glyph{afii10056}{1000} +\endresetglyph + +\resetglyph{CYRKDSC} + \glyph{uni049A}{1000} +\endresetglyph + +\resetglyph{CYRKVCRS} + \glyph{uni049C}{1000} +\endresetglyph + +\resetglyph{CYRNDSC} + \glyph{uni04A2}{1000} +\endresetglyph + +\resetglyph{CYRDZE} + \glyph{afii10054}{1000} +\endresetglyph + +\resetglyph{CYROTLD} + \glyph{uni04E8}{1000} +\endresetglyph + +\resetglyph{CYRUSHRT} + \glyph{afii10062}{1000} +\endresetglyph + +\resetglyph{CYRY} + \glyph{uni04AE}{1000} +\endresetglyph + +\resetglyph{CYRYHCRS} + \glyph{uni04B0}{1000} +\endresetglyph + +\resetglyph{CYRHDSC} + \glyph{uni04B2}{1000} +\endresetglyph + +\resetglyph{CYRDZHE} + \glyph{afii10145}{1000} +\endresetglyph + +\resetglyph{CYRCHVCRS} + \glyph{uni04B8}{1000} +\endresetglyph + +\resetglyph{CYRIE} + \glyph{afii10053}{1000} +\endresetglyph + +\resetglyph{CYRSCHWA} + \glyph{uni04D8}{1000} +\endresetglyph + +\resetglyph{CYRNJE} + \glyph{afii10059}{1000} +\endresetglyph + +\resetglyph{CYRYO} + \glyph{afii10023}{1000} +\endresetglyph + +\resetglyph{numero} + \glyph{afii61352}{1000} +\endresetglyph + +\resetglyph{cyrgup} + \glyph{afii10098}{1000} +\endresetglyph + +\resetglyph{cyrghcrs} + \glyph{uni0493}{1000} +\endresetglyph + +\resetglyph{cyrdje} + \glyph{afii10099}{1000} +\endresetglyph + +\resetglyph{cyrtshe} + \glyph{afii10108}{1000} +\endresetglyph + +\resetglyph{cyrshha} + \glyph{uni04BB}{1000} +\endresetglyph + +\resetglyph{cyrzhdsc} + \glyph{uni0497}{1000} +\endresetglyph + +\resetglyph{cyrlje} + \glyph{afii10106}{1000} +\endresetglyph + +\resetglyph{cyryi} + \glyph{afii10104}{1000} +\endresetglyph + +\resetglyph{cyrkdsc} + \glyph{uni049B}{1000} +\endresetglyph + +\resetglyph{cyrkvcrs} + \glyph{uni049D}{1000} +\endresetglyph + +\resetglyph{cyrndsc} + \glyph{uni04A3}{1000} +\endresetglyph + +\resetglyph{cyrdze} + \glyph{afii10102}{1000} +\endresetglyph + +\resetglyph{cyrotld} + \glyph{uni04E9}{1000} +\endresetglyph + +\resetglyph{cyrushrt} + \glyph{afii10110}{1000} +\endresetglyph + +\resetglyph{cyry} + \glyph{uni04AF}{1000} +\endresetglyph + +\resetglyph{cyryhcrs} + \glyph{uni04B1}{1000} +\endresetglyph + +\resetglyph{cyrhdsc} + \glyph{uni04B3}{1000} +\endresetglyph + +\resetglyph{cyrdzhe} + \glyph{afii10193}{1000} +\endresetglyph + +\resetglyph{cyrchvcrs} + \glyph{uni04B9}{1000} +\endresetglyph + +\resetglyph{cyrie} + \glyph{afii10101}{1000} +\endresetglyph + +\resetglyph{cyrschwa} + \glyph{afii10846}{1000} +\endresetglyph + +\resetglyph{cyrnje} + \glyph{afii10107}{1000} +\endresetglyph + +\resetglyph{cyryo} + \glyph{afii10071}{1000} +\endresetglyph + +\resetglyph{CYRA} + \glyph{afii10017}{1000} +\endresetglyph + +\resetglyph{CYRB} + \glyph{afii10018}{1000} +\endresetglyph + +\resetglyph{CYRV} + \glyph{afii10019}{1000} +\endresetglyph + +\resetglyph{CYRG} + \glyph{afii10020}{1000} +\endresetglyph + +\resetglyph{CYRD} + \glyph{afii10021}{1000} +\endresetglyph + +\resetglyph{CYRE} + \glyph{afii10022}{1000} +\endresetglyph + +\resetglyph{CYRZH} + \glyph{afii10024}{1000} +\endresetglyph + +\resetglyph{CYRZ} + \glyph{afii10025}{1000} +\endresetglyph + +\resetglyph{CYRI} + \glyph{afii10026}{1000} +\endresetglyph + +\resetglyph{CYRISHRT} + \glyph{afii10027}{1000} +\endresetglyph + +\resetglyph{CYRK} + \glyph{afii10028}{1000} +\endresetglyph + +\resetglyph{CYRL} + \glyph{afii10029}{1000} +\endresetglyph + +\resetglyph{CYRM} + \glyph{afii10030}{1000} +\endresetglyph + +\resetglyph{CYRN} + \glyph{afii10031}{1000} +\endresetglyph + +\resetglyph{CYRO} + \glyph{afii10032}{1000} +\endresetglyph + +\resetglyph{CYRP} + \glyph{afii10033}{1000} +\endresetglyph + +\resetglyph{CYRR} + \glyph{afii10034}{1000} +\endresetglyph + +\resetglyph{CYRS} + \glyph{afii10035}{1000} +\endresetglyph + +\resetglyph{CYRT} + \glyph{afii10036}{1000} +\endresetglyph + +\resetglyph{CYRU} + \glyph{afii10037}{1000} +\endresetglyph + +\resetglyph{CYRF} + \glyph{afii10038}{1000} +\endresetglyph + +\resetglyph{CYRH} + \glyph{afii10039}{1000} +\endresetglyph + +\resetglyph{CYRC} + \glyph{afii10040}{1000} +\endresetglyph + +\resetglyph{CYRCH} + \glyph{afii10041}{1000} +\endresetglyph + +\resetglyph{CYRSH} + \glyph{afii10042}{1000} +\endresetglyph + +\resetglyph{CYRSHCH} + \glyph{afii10043}{1000} +\endresetglyph + +\resetglyph{CYRHRDSN} + \glyph{afii10044}{1000} +\endresetglyph + +\resetglyph{CYRERY} + \glyph{afii10045}{1000} +\endresetglyph + +\resetglyph{CYRSFTSN} + \glyph{afii10046}{1000} +\endresetglyph + +\resetglyph{CYREREV} + \glyph{afii10047}{1000} +\endresetglyph + +\resetglyph{CYRYU} + \glyph{afii10048}{1000} +\endresetglyph + +\resetglyph{CYRYA} + \glyph{afii10049}{1000} +\endresetglyph + +\resetglyph{cyra} + \glyph{afii10065}{1000} +\endresetglyph + +\resetglyph{cyrb} + \glyph{afii10066}{1000} +\endresetglyph + +\resetglyph{cyrv} + \glyph{afii10067}{1000} +\endresetglyph + +\resetglyph{cyrg} + \glyph{afii10068}{1000} +\endresetglyph + +\resetglyph{cyrd} + \glyph{afii10069}{1000} +\endresetglyph + +\resetglyph{cyre} + \glyph{afii10070}{1000} +\endresetglyph + +\resetglyph{cyrzh} + \glyph{afii10072}{1000} +\endresetglyph + +\resetglyph{cyrz} + \glyph{afii10073}{1000} +\endresetglyph + +\resetglyph{cyri} + \glyph{afii10074}{1000} +\endresetglyph + +\resetglyph{cyrishrt} + \glyph{afii10075}{1000} +\endresetglyph + +\resetglyph{cyrk} + \glyph{afii10076}{1000} +\endresetglyph + +\resetglyph{cyrl} + \glyph{afii10077}{1000} +\endresetglyph + +\resetglyph{cyrm} + \glyph{afii10078}{1000} +\endresetglyph + +\resetglyph{cyrn} + \glyph{afii10079}{1000} +\endresetglyph + +\resetglyph{cyro} + \glyph{afii10080}{1000} +\endresetglyph + +\resetglyph{cyrp} + \glyph{afii10081}{1000} +\endresetglyph + +\resetglyph{cyrr} + \glyph{afii10082}{1000} +\endresetglyph + +\resetglyph{cyrs} + \glyph{afii10083}{1000} +\endresetglyph + +\resetglyph{cyrt} + \glyph{afii10084}{1000} +\endresetglyph + +\resetglyph{cyru} + \glyph{afii10085}{1000} +\endresetglyph + +\resetglyph{cyrf} + \glyph{afii10086}{1000} +\endresetglyph + +\resetglyph{cyrh} + \glyph{afii10087}{1000} +\endresetglyph + +\resetglyph{cyrc} + \glyph{afii10088}{1000} +\endresetglyph + +\resetglyph{cyrch} + \glyph{afii10089}{1000} +\endresetglyph + +\resetglyph{cyrsh} + \glyph{afii10090}{1000} +\endresetglyph + +\resetglyph{cyrshch} + \glyph{afii10091}{1000} +\endresetglyph + +\resetglyph{cyrhrdsn} + \glyph{afii10092}{1000} +\endresetglyph + +\resetglyph{cyrery} + \glyph{afii10093}{1000} +\endresetglyph + +\resetglyph{cyrsftsn} + \glyph{afii10094}{1000} +\endresetglyph + +\resetglyph{cyrerev} + \glyph{afii10095}{1000} +\endresetglyph + +\resetglyph{cyryu} + \glyph{afii10096}{1000} +\endresetglyph + +\resetglyph{cyrya} + \glyph{afii10097}{1000} +\endresetglyph + +\resetglyph{CYRII} + \glyph{afii10055}{1000} +\endresetglyph + +\resetglyph{CYRJE} + \glyph{afii10057}{1000} +\endresetglyph + +\resetglyph{cyrii} + \glyph{afii10103}{1000} +\endresetglyph + +\resetglyph{cyrje} + \glyph{afii10105}{1000} +\endresetglyph + +\endmetrics diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixgreek.mtx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixgreek.mtx new file mode 100644 index 00000000000..03e36596a6e --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixgreek.mtx @@ -0,0 +1,40 @@ +%% comfortaa-fixgreek.tex +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\metrics + +\resetglyph{euro} + \glyph{Euro}{1000} +\endresetglyph + +\resetglyph{macron} + \glyph{uni02C9}{1000} +\endresetglyph + +\resetglyph{Delta} + \glyph{uni0394}{1000} +\endresetglyph + +\resetglyph{Omega} + \glyph{uni03A9}{1000} +\endresetglyph + +\resetglyph{mu} + \glyph{uni03BC}{1000} +\endresetglyph + +\endmetrics diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixlatin.mtx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixlatin.mtx new file mode 100644 index 00000000000..db064fa4582 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixlatin.mtx @@ -0,0 +1,44 @@ +%% comfortaa-fixlatin.tex +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\metrics + +\resetglyph{Delta} + \glyph{uni0394}{1000} +\endresetglyph + +\resetglyph{Omega} + \glyph{uni03A9}{1000} +\endresetglyph + +\resetglyph{fi} + \glyph{uniF001}{1000} +\endresetglyph + +\resetglyph{fl} + \glyph{uniF002}{1000} +\endresetglyph + +\resetglyph{macron} + \glyph{uni02C9}{1000} +\endresetglyph + +\resetglyph{dotlessj} + \glyph{uni0237}{1000} +\endresetglyph + +\endmetrics diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixtextcomp.mtx b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixtextcomp.mtx new file mode 100644 index 00000000000..7e502708f5a --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-fixtextcomp.mtx @@ -0,0 +1,40 @@ +%% comfortaa-fixtextcomp.tex +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\relax + +\metrics + +\resetglyph{macron} + \glyph{uni02C9}{1000} +\endresetglyph + +\resetglyph{numero} + \glyph{afii61352}{1000} +\endresetglyph + +\resetglyph{twosuperior} + \glyph{uni00B2}{1000} +\endresetglyph + +\resetglyph{threesuperior} + \glyph{uni00B3}{1000} +\endresetglyph + +\resetglyph{onesuperior} + \glyph{uni00B9}{1000} +\endresetglyph + +\endmetrics diff --git a/Master/texmf-dist/source/fonts/comfortaa/comfortaa-map.tex b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-map.tex new file mode 100644 index 00000000000..45e1cc098d9 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/comfortaa-map.tex @@ -0,0 +1,24 @@ +%% comfortaa-map.etx +%% Copyright 2011 Mohamed El Morabity +% +% This work may be distributed and/or modified under the conditions of the LaTeX +% Project Public License, either version 1.3 of this license or (at your option) +% any later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +% distributions of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Mohamed El Morabity +% +% This work consists of all files listed in manifest.txt. + +\input finstmsc.sty + +\resetstr{PSfontsuffix}{.pfb} + +\adddriver{dvips}{comfortaa.map} +\input comfortaa-rec.tex +\donedrivers + +\bye diff --git a/Master/texmf-dist/source/fonts/comfortaa/ttf2type1.pe b/Master/texmf-dist/source/fonts/comfortaa/ttf2type1.pe new file mode 100644 index 00000000000..47286fe2180 --- /dev/null +++ b/Master/texmf-dist/source/fonts/comfortaa/ttf2type1.pe @@ -0,0 +1,22 @@ +#!/usr/bin/env fontforge +## ttf2ype1.pe +## Copyright 2011 Mohamed El Morabity +# +# This work may be distributed and/or modified under the conditions of the LaTeX +# Project Public License, either version 1.3 of this license or (at your option) +# any later version. The latest version of this license is in +# http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all +# distributions of LaTeX version 2005/12/01 or later. +# +# This work has the LPPL maintenance status `maintained'. +# +# The Current Maintainer of this work is Mohamed El Morabity +# +# This work consists of all files listed in manifest.txt. + +i=1 +while (i < $argc) + Open($argv[i]) + Generate($argv[i]:r + ".pfb") + i = i+1 +endloop |