diff options
author | Karl Berry <karl@freefriends.org> | 2019-11-17 22:38:08 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-11-17 22:38:08 +0000 |
commit | 90e1ba09ab610723f7a2f6105968320efdaadb20 (patch) | |
tree | 65f5ae7d790c3973f2d55ff9b5469f1d87e6ca21 /Master/texmf-dist/tex | |
parent | 2c8ac8ef9cbdc8719a0381c5ab6754a4eeabf566 (diff) |
lexend (17nov19)
git-svn-id: svn://tug.org/texlive/trunk@52844 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex')
8 files changed, 97 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/lexend/LexendDeca.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendDeca.fontspec new file mode 100644 index 00000000000..f245904c5d1 --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendDeca.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendDeca] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/LexendExa.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendExa.fontspec new file mode 100644 index 00000000000..9b73a7c505d --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendExa.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendExa] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/LexendGiga.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendGiga.fontspec new file mode 100644 index 00000000000..a0ad975511c --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendGiga.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendGiga] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/LexendMega.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendMega.fontspec new file mode 100644 index 00000000000..eb76cc54dcc --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendMega.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendMega] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/LexendPeta.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendPeta.fontspec new file mode 100644 index 00000000000..02c800e47dd --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendPeta.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendPeta] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/LexendTera.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendTera.fontspec new file mode 100644 index 00000000000..70e648846c1 --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendTera.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendTera] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/LexendZetta.fontspec b/Master/texmf-dist/tex/latex/lexend/LexendZetta.fontspec new file mode 100644 index 00000000000..02052e0f397 --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/LexendZetta.fontspec @@ -0,0 +1,8 @@ +\defaultfontfeatures[LexendZetta] + { + Extension = {.ttf}, + UprightFont = {*-Regular}, + Ligatures=TeX, + AutoFakeBold, + AutoFakeSlant + } diff --git a/Master/texmf-dist/tex/latex/lexend/lexend.sty b/Master/texmf-dist/tex/latex/lexend/lexend.sty new file mode 100644 index 00000000000..d18aee15c18 --- /dev/null +++ b/Master/texmf-dist/tex/latex/lexend/lexend.sty @@ -0,0 +1,41 @@ +% lexend +% The Lexend fonts for XeLaTeX and LuaLaTeX through fontspec +% +% (c) Yannick Schinko +% +%% This program can be redistributed and/or modified under the terms +%% of the LaTeX Project Public License Distributed from CTAN archives +%% in directory macros/latex/base/lppl.txt. +% +\NeedsTeXFormat{LaTeX2e}[1994/06/01] +\ProvidesPackage{lexend} + [2019/11/16 0.1.1.51 The Lexend fonts for XeLaTeX and LuaLaTeX through fontspec] + +\RequirePackage{expl3} +\RequirePackage{fontspec} + + +% Font list +\def\LexendVariants{ +LexendDeca,% +LexendExa,% +LexendGiga,% +LexendMega,% +LexendPeta,% +LexendTera,% +LexendZetta% +} + +% Font aliases +%% Iterate over all known fonts and create aliases +\ExplSyntaxOn +\clist_map_inline:Nn \LexendVariants { \exp_args:Nc \newfontfamily { #1 } { #1 } } +\ExplSyntaxOff + +% Set main fonts +\setmainfont{LexendDeca} +\setsansfont{LexendGiga} + +\endinput +%% +%% End of file lexend.sty. |