summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/fonts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-10-22 19:50:34 +0000
committerKarl Berry <karl@freefriends.org>2017-10-22 19:50:34 +0000
commit96c2540c6bcd6585ee23a0d384bea78715befec8 (patch)
treedd87910eedf88fd235e1765624a5792a78381a9d /Master/texmf-dist/source/fonts
parent1923fbdd566d36646dad0367759fbb0989a89d99 (diff)
lato (22oct17)
git-svn-id: svn://tug.org/texlive/trunk@45576 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/fonts')
-rw-r--r--Master/texmf-dist/source/fonts/lato/Makefile220
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-01.etx788
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-02.etx74
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-dotlessj.etx23
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-drv.tex192
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-fixlatin.mtx28
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-fixtextcomp.mtx64
-rw-r--r--Master/texmf-dist/source/fonts/lato/lato-map.tex24
-rw-r--r--Master/texmf-dist/source/fonts/lato/ttf2type1.pe22
9 files changed, 0 insertions, 1435 deletions
diff --git a/Master/texmf-dist/source/fonts/lato/Makefile b/Master/texmf-dist/source/fonts/lato/Makefile
deleted file mode 100644
index 06ff6ac94e4..00000000000
--- a/Master/texmf-dist/source/fonts/lato/Makefile
+++ /dev/null
@@ -1,220 +0,0 @@
-## 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 = lato
-FOUNDRY = public
-FONT_CODES = fla
-
-# Supported LaTeX encodings
-SUPPORTED_ENCODINGS = ot1 t1 ts1
-# 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)-dotlessj.etx
-MTX_FILES = $(FONT_NAME)-fixlatin.mtx $(FONT_NAME)-fixtextcomp.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) \
- )
-OUTPUT_MTX_FILES = $(PL_FILES:.pl=.mtx)
-VPL_FILES = $(foreach e,$(SUPPORTED_ENCODINGS), \
- $(TRUETYPE_FILES:.ttf=-$(e).vpl) \
- ) \
- $(foreach e,$(SUPPORTED_SC_ENCODINGS), \
- $(TRUETYPE_FILES:.ttf=-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 $<
- # BUGFIX: fix FontName to the name of the file
- sed -i "s/^FontName .*/FontName $*/" $*.afm
-
-
-%-LCDFJ.pfb: %.pfb
- t1dotlessj $< $@
-
-
-%-LCDFJ.afm: %-LCDFJ.pfb
- pf2afm $<
- # BUGFIX: fix FontName to the name of the file
- sed -i "s/^FontName .*/FontName $*/" $*.afm
-
-
-%.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/lato/lato-01.etx b/Master/texmf-dist/source/fonts/lato/lato-01.etx
deleted file mode 100644
index 5ba67652f40..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-01.etx
+++ /dev/null
@@ -1,788 +0,0 @@
-%% lato-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{uni00A0}
-\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{uni00AD}
-\endsetslot
-
-\setslot{registered}
-\endsetslot
-
-\setslot{macron}
-\endsetslot
-
-\setslot{degree}
-\endsetslot
-
-\setslot{plusminus}
-\endsetslot
-
-\setslot{twosuperior}
-\endsetslot
-
-\setslot{threesuperior}
-\endsetslot
-
-\setslot{acute}
-\endsetslot
-
-\setslot{mu}
-\endsetslot
-
-\setslot{paragraph}
-\endsetslot
-
-\setslot{periodcentered}
-\endsetslot
-
-\setslot{cedilla}
-\endsetslot
-
-\setslot{onesuperior}
-\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{Aogonek}
-\endsetslot
-
-\setslot{aogonek}
-\endsetslot
-
-\setslot{Cacute}
-\endsetslot
-
-\setslot{cacute}
-\endsetslot
-
-\setslot{Eogonek}
-\endsetslot
-
-\setslot{eogonek}
-\endsetslot
-
-\setslot{dotlessi}
-\endsetslot
-
-\setslot{Lslash}
-\endsetslot
-
-\setslot{lslash}
-\endsetslot
-
-\setslot{Nacute}
-\endsetslot
-
-\setslot{nacute}
-\endsetslot
-
-\setslot{OE}
-\endsetslot
-
-\setslot{oe}
-\endsetslot
-
-\setslot{Sacute}
-\endsetslot
-
-\setslot{sacute}
-\endsetslot
-
-\setslot{Scaron}
-\endsetslot
-
-\setslot{scaron}
-\endsetslot
-
-\setslot{Ydieresis}
-\endsetslot
-
-\setslot{Zacute}
-\endsetslot
-
-\setslot{zacute}
-\endsetslot
-
-\setslot{Zdotaccent}
-\endsetslot
-
-\setslot{zdotaccent}
-\endsetslot
-
-\setslot{Zcaron}
-\endsetslot
-
-\setslot{zcaron}
-\endsetslot
-
-\setslot{florin}
-\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{pi}
-\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{perthousand}
-\endsetslot
-
-\setslot{guilsinglleft}
-\endsetslot
-
-\setslot{guilsinglright}
-\endsetslot
-
-\setslot{fraction}
-\endsetslot
-
-\setslot{Euro}
-\endsetslot
-
-\setslot{trademark}
-\endsetslot
-
-\setslot{Omega}
-\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{notequal}
-\endsetslot
-
-\setslot{lessequal}
-\endsetslot
-
-\endencoding
diff --git a/Master/texmf-dist/source/fonts/lato/lato-02.etx b/Master/texmf-dist/source/fonts/lato/lato-02.etx
deleted file mode 100644
index cdfeebdbcad..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-02.etx
+++ /dev/null
@@ -1,74 +0,0 @@
-%% lato-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{greaterequal}
-\endsetslot
-
-\setslot{lozenge}
-\endsetslot
-
-\setslot{uni2669}
-\endsetslot
-
-\setslot{fi}
-\endsetslot
-
-\setslot{fl}
-\endsetslot
-
-\setslot{undercommaaccent}
-\endsetslot
-
-\setslot{grave.case}
-\endsetslot
-
-\setslot{dieresis.case}
-\endsetslot
-
-\setslot{macron.case}
-\endsetslot
-
-\setslot{acute.case}
-\endsetslot
-
-\setslot{circumflex.case}
-\endsetslot
-
-\setslot{caron.case}
-\endsetslot
-
-\setslot{breve.case}
-\endsetslot
-
-\setslot{dotaccent.case}
-\endsetslot
-
-\setslot{ring.case}
-\endsetslot
-
-\setslot{tilde.case}
-\endsetslot
-
-\setslot{hungarumlaut.case}
-\endsetslot
-
-\setslot{caron.salt}
-\endsetslot
-
-\endencoding
diff --git a/Master/texmf-dist/source/fonts/lato/lato-dotlessj.etx b/Master/texmf-dist/source/fonts/lato/lato-dotlessj.etx
deleted file mode 100644
index 7a478df26eb..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-dotlessj.etx
+++ /dev/null
@@ -1,23 +0,0 @@
-%% lato-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/lato/lato-drv.tex b/Master/texmf-dist/source/fonts/lato/lato-drv.tex
deleted file mode 100644
index 5e6b91062a2..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-drv.tex
+++ /dev/null
@@ -1,192 +0,0 @@
-%% lato-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{smallcapsscale}{800}
-
-\substitutesilent{scsl}{scit}
-\substitutesilent{l}{l}
-
-
-\recordtransforms{lato-rec.tex}
-
-
-\foreach(e){01,02}
- \transformfont{Lato-Hai-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-Hai}}}
- \transformfont{Lato-HaiIta-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-HaiIta}}}
- \transformfont{Lato-Lig-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-Lig}}}
- \transformfont{Lato-LigIta-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-LigIta}}}
- \transformfont{Lato-Reg-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-Reg}}}
- \transformfont{Lato-RegIta-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-RegIta}}}
- \transformfont{Lato-Bol-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-Bol}}}
- \transformfont{Lato-BolIta-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-BolIta}}}
- \transformfont{Lato-Bla-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-Bla}}}
- \transformfont{Lato-BlaIta-\str{e}}{\reencodefont{lato-\str{e}}{\fromafm{Lato-BlaIta}}}
-\endfor(e)
-\transformfont{Lato-Hai-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-Hai-LCDFJ}}}
-\transformfont{Lato-HaiIta-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-HaiIta-LCDFJ}}}
-\transformfont{Lato-Lig-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-Lig-LCDFJ}}}
-\transformfont{Lato-LigIta-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-LigIta-LCDFJ}}}
-\transformfont{Lato-Reg-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-Reg-LCDFJ}}}
-\transformfont{Lato-RegIta-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-RegIta-LCDFJ}}}
-\transformfont{Lato-Bol-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-Bol-LCDFJ}}}
-\transformfont{Lato-BolIta-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-BolIta-LCDFJ}}}
-\transformfont{Lato-Bla-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-Bla-LCDFJ}}}
-\transformfont{Lato-BlaIta-dotlessj}{\reencodefont{lato-dotlessj}{\fromafm{Lato-BlaIta-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 lato@scale\string\endcsname\string\relax}
- \out_line{\space\space\string\let\string\lato@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}{fla}{}
-
-\installfont{Lato-Hai-ot1}{Lato-Hai-01,Lato-Hai-02,Lato-Hai-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{el}{n}{<->\string\lato@scale}
-\installfont{Lato-HaiIta-ot1}{Lato-HaiIta-01,Lato-HaiIta-02,Lato-HaiIta-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{el}{it}{<->\string\lato@scale}
-\installfont{Lato-Hai-SmallCaps-ot1}{Lato-Hai-01,Lato-Hai-02,Lato-Hai-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{el}{sc}{<->\string\lato@scale}
-\installfont{Lato-HaiIta-SmallCaps-ot1}{Lato-HaiIta-01,Lato-HaiIta-02,Lato-HaiIta-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{el}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Lig-ot1}{Lato-Lig-01,Lato-Lig-02,Lato-Lig-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{l}{n}{<->\string\lato@scale}
-\installfont{Lato-LigIta-ot1}{Lato-LigIta-01,Lato-LigIta-02,Lato-LigIta-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{l}{it}{<->\string\lato@scale}
-\installfont{Lato-Lig-SmallCaps-ot1}{Lato-Lig-01,Lato-Lig-02,Lato-Lig-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{l}{sc}{<->\string\lato@scale}
-\installfont{Lato-LigIta-SmallCaps-ot1}{Lato-LigIta-01,Lato-LigIta-02,Lato-LigIta-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{l}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Reg-ot1}{Lato-Reg-01,Lato-Reg-02,Lato-Reg-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{m}{n}{<->\string\lato@scale}
-\installfont{Lato-RegIta-ot1}{Lato-RegIta-01,Lato-RegIta-02,Lato-RegIta-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{m}{it}{<->\string\lato@scale}
-\installfont{Lato-Reg-SmallCaps-ot1}{Lato-Reg-01,Lato-Reg-02,Lato-Reg-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{m}{sc}{<->\string\lato@scale}
-\installfont{Lato-RegIta-SmallCaps-ot1}{Lato-RegIta-01,Lato-RegIta-02,Lato-RegIta-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{m}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Bol-ot1}{Lato-Bol-01,Lato-Bol-02,Lato-Bol-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{b}{n}{<->\string\lato@scale}
-\installfont{Lato-BolIta-ot1}{Lato-BolIta-01,Lato-BolIta-02,Lato-BolIta-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{b}{it}{<->\string\lato@scale}
-\installfont{Lato-Bol-SmallCaps-ot1}{Lato-Bol-01,Lato-Bol-02,Lato-Bol-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{b}{sc}{<->\string\lato@scale}
-\installfont{Lato-BolIta-SmallCaps-ot1}{Lato-BolIta-01,Lato-BolIta-02,Lato-BolIta-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{b}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Bla-ot1}{Lato-Bla-01,Lato-Bla-02,Lato-Bla-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{eb}{n}{<->\string\lato@scale}
-\installfont{Lato-BlaIta-ot1}{Lato-BlaIta-01,Lato-BlaIta-02,Lato-BlaIta-dotlessj,lato-fixlatin,newlatin}{ot1}{OT1}{fla}{eb}{it}{<->\string\lato@scale}
-\installfont{Lato-Bla-SmallCaps-ot1}{Lato-Bla-01,Lato-Bla-02,Lato-Bla-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{eb}{sc}{<->\string\lato@scale}
-\installfont{Lato-BlaIta-SmallCaps-ot1}{Lato-BlaIta-01,Lato-BlaIta-02,Lato-BlaIta-dotlessj,lato-fixlatin,newlatin}{ot1c}{OT1}{fla}{eb}{scit}{<->\string\lato@scale}
-
-\endinstallfonts
-
-
-\installfonts
-\installfamily{T1}{fla}{}
-
-\installfont{Lato-Hai-t1}{Lato-Hai-01,Lato-Hai-02,Lato-Hai-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{el}{n}{<->\string\lato@scale}
-\installfont{Lato-HaiIta-t1}{Lato-HaiIta-01,Lato-HaiIta-02,Lato-HaiIta-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{el}{it}{<->\string\lato@scale}
-\installfont{Lato-Hai-SmallCaps-t1}{Lato-Hai-01,Lato-Hai-02,Lato-Hai-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{el}{sc}{<->\string\lato@scale}
-\installfont{Lato-HaiIta-SmallCaps-t1}{Lato-HaiIta-01,Lato-HaiIta-02,Lato-HaiIta-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{el}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Lig-t1}{Lato-Lig-01,Lato-Lig-02,Lato-Lig-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{l}{n}{<->\string\lato@scale}
-\installfont{Lato-LigIta-t1}{Lato-LigIta-01,Lato-LigIta-02,Lato-LigIta-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{l}{it}{<->\string\lato@scale}
-\installfont{Lato-Lig-SmallCaps-t1}{Lato-Lig-01,Lato-Lig-02,Lato-Lig-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{l}{sc}{<->\string\lato@scale}
-\installfont{Lato-LigIta-SmallCaps-t1}{Lato-LigIta-01,Lato-LigIta-02,Lato-LigIta-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{l}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Reg-t1}{Lato-Reg-01,Lato-Reg-02,Lato-Reg-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{m}{n}{<->\string\lato@scale}
-\installfont{Lato-RegIta-t1}{Lato-RegIta-01,Lato-RegIta-02,Lato-RegIta-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{m}{it}{<->\string\lato@scale}
-\installfont{Lato-Reg-SmallCaps-t1}{Lato-Reg-01,Lato-Reg-02,Lato-Reg-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{m}{sc}{<->\string\lato@scale}
-\installfont{Lato-RegIta-SmallCaps-t1}{Lato-RegIta-01,Lato-RegIta-02,Lato-RegIta-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{m}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Bol-t1}{Lato-Bol-01,Lato-Bol-02,Lato-Bol-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{b}{n}{<->\string\lato@scale}
-\installfont{Lato-BolIta-t1}{Lato-BolIta-01,Lato-BolIta-02,Lato-BolIta-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{b}{it}{<->\string\lato@scale}
-\installfont{Lato-Bol-SmallCaps-t1}{Lato-Bol-01,Lato-Bol-02,Lato-Bol-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{b}{sc}{<->\string\lato@scale}
-\installfont{Lato-BolIta-SmallCaps-t1}{Lato-BolIta-01,Lato-BolIta-02,Lato-BolIta-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{b}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Bla-t1}{Lato-Bla-01,Lato-Bla-02,Lato-Bla-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{eb}{n}{<->\string\lato@scale}
-\installfont{Lato-BlaIta-t1}{Lato-BlaIta-01,Lato-BlaIta-02,Lato-BlaIta-dotlessj,lato-fixlatin,newlatin}{t1}{T1}{fla}{eb}{it}{<->\string\lato@scale}
-\installfont{Lato-Bla-SmallCaps-t1}{Lato-Bla-01,Lato-Bla-02,Lato-Bla-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{eb}{sc}{<->\string\lato@scale}
-\installfont{Lato-BlaIta-SmallCaps-t1}{Lato-BlaIta-01,Lato-BlaIta-02,Lato-BlaIta-dotlessj,lato-fixlatin,newlatin}{t1c}{T1}{fla}{eb}{scit}{<->\string\lato@scale}
-
-\endinstallfonts
-
-
-\installfonts
-\installfamily{TS1}{fla}{}
-
-\installfont{Lato-Hai-ts1}{Lato-Hai-01,Lato-Hai-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{el}{n}{<->\string\lato@scale}
-\installfont{Lato-HaiIta-ts1}{Lato-HaiIta-01,Lato-HaiIta-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{el}{it}{<->\string\lato@scale}
-\installfontas{Lato-Hai-ts1}{TS1}{fla}{el}{sc}{<->\string\lato@scale}
-\installfontas{Lato-HaiIta-ts1}{TS1}{fla}{el}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Lig-ts1}{Lato-Lig-01,Lato-Lig-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{l}{n}{<->\string\lato@scale}
-\installfont{Lato-LigIta-ts1}{Lato-LigIta-01,Lato-LigIta-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{l}{it}{<->\string\lato@scale}
-\installfontas{Lato-Lig-ts1}{TS1}{fla}{l}{sc}{<->\string\lato@scale}
-\installfontas{Lato-LigIta-ts1}{TS1}{fla}{l}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Reg-ts1}{Lato-Reg-01,Lato-Reg-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{m}{n}{<->\string\lato@scale}
-\installfont{Lato-RegIta-ts1}{Lato-RegIta-01,Lato-RegIta-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{m}{it}{<->\string\lato@scale}
-\installfontas{Lato-Reg-ts1}{TS1}{fla}{m}{sc}{<->\string\lato@scale}
-\installfontas{Lato-RegIta-ts1}{TS1}{fla}{m}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Bol-ts1}{Lato-Bol-01,Lato-Bol-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{b}{n}{<->\string\lato@scale}
-\installfont{Lato-BolIta-ts1}{Lato-BolIta-01,Lato-BolIta-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{b}{it}{<->\string\lato@scale}
-\installfontas{Lato-Bol-ts1}{TS1}{fla}{b}{sc}{<->\string\lato@scale}
-\installfontas{Lato-BolIta-ts1}{TS1}{fla}{b}{scit}{<->\string\lato@scale}
-
-\installfont{Lato-Bla-ts1}{Lato-Bla-01,Lato-Bla-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{eb}{n}{<->\string\lato@scale}
-\installfont{Lato-BlaIta-ts1}{Lato-BlaIta-01,Lato-BlaIta-02,lato-fixtextcomp,textcomp}{ts1}{TS1}{fla}{eb}{it}{<->\string\lato@scale}
-\installfontas{Lato-Bla-ts1}{TS1}{fla}{eb}{sc}{<->\string\lato@scale}
-\installfontas{Lato-BlaIta-ts1}{TS1}{fla}{eb}{scit}{<->\string\lato@scale}
-
-\endinstallfonts
-
-
-\endrecordtransforms
-\bye
diff --git a/Master/texmf-dist/source/fonts/lato/lato-fixlatin.mtx b/Master/texmf-dist/source/fonts/lato/lato-fixlatin.mtx
deleted file mode 100644
index 9f7d8d5ca09..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-fixlatin.mtx
+++ /dev/null
@@ -1,28 +0,0 @@
-%% lato-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
-
-\unsetglyph{Delta}
-
-\unsetglyph{Omega}
-
-\resetglyph{dotlessj}
- \glyph{uni0237}{1000}
-\endresetglyph
-
-\endmetrics
diff --git a/Master/texmf-dist/source/fonts/lato/lato-fixtextcomp.mtx b/Master/texmf-dist/source/fonts/lato/lato-fixtextcomp.mtx
deleted file mode 100644
index ebe5abd27f6..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-fixtextcomp.mtx
+++ /dev/null
@@ -1,64 +0,0 @@
-%% lato-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{capitalgrave}
- \glyph{grave.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalacute}
- \glyph{acute.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalcircumflex}
- \glyph{circumflex.case}{1000}
-\endresetglyph
-
-\resetglyph{capitaltilde}
- \glyph{tilde.case}{1000}
-\endresetglyph
-
-\resetglyph{capitaldieresis}
- \glyph{dieresis.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalhungarumlaut}
- \glyph{hungarumlaut.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalring}
- \glyph{ring.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalcaron}
- \glyph{caron.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalbreve}
- \glyph{breve.case}{1000}
-\endresetglyph
-
-\resetglyph{capitalmacron}
- \glyph{macron.case}{1000}
-\endresetglyph
-
-\resetglyph{capitaldotaccent}
- \glyph{dotaccent.case}{1000}
-\endresetglyph
-
-\endmetrics
diff --git a/Master/texmf-dist/source/fonts/lato/lato-map.tex b/Master/texmf-dist/source/fonts/lato/lato-map.tex
deleted file mode 100644
index afdb62092e2..00000000000
--- a/Master/texmf-dist/source/fonts/lato/lato-map.tex
+++ /dev/null
@@ -1,24 +0,0 @@
-%% lato-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}{lato.map}
-\input lato-rec.tex
-\donedrivers
-
-\bye
diff --git a/Master/texmf-dist/source/fonts/lato/ttf2type1.pe b/Master/texmf-dist/source/fonts/lato/ttf2type1.pe
deleted file mode 100644
index 47286fe2180..00000000000
--- a/Master/texmf-dist/source/fonts/lato/ttf2type1.pe
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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