summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/fontspec/fontspec.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-11-05 22:03:43 +0000
committerKarl Berry <karl@freefriends.org>2017-11-05 22:03:43 +0000
commitfadf897731beed45903c8aa6dd643dafd0e33da5 (patch)
tree4893f081b85951f4336152d0ee039ce167342aea /Master/texmf-dist/tex/latex/fontspec/fontspec.lua
parent96df06aed2adaad19e3e14d6665b2ffc507a2b9c (diff)
fontspec (5nov17)
git-svn-id: svn://tug.org/texlive/trunk@45697 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/fontspec/fontspec.lua')
-rw-r--r--Master/texmf-dist/tex/latex/fontspec/fontspec.lua33
1 files changed, 15 insertions, 18 deletions
diff --git a/Master/texmf-dist/tex/latex/fontspec/fontspec.lua b/Master/texmf-dist/tex/latex/fontspec/fontspec.lua
index 7c34ab65c5b..5b7d7fc5ad3 100644
--- a/Master/texmf-dist/tex/latex/fontspec/fontspec.lua
+++ b/Master/texmf-dist/tex/latex/fontspec/fontspec.lua
@@ -7,21 +7,30 @@
-- fontspec.dtx (with options: `lua')
-- fontspec-lua.dtx (with options: `lua')
-- ------------------------------------------------
--- The FONTSPEC package for XeLaTeX/LuaLaTeX
--- (C) 2004--2017 Will Robertson and Khaled Hosny
--- License information appended.
+-- The FONTSPEC package <wspr.io/fontspec>
-- ------------------------------------------------
+-- Copyright 2004-2017 Will Robertson, LPPL "maintainer"
+-- Copyright 2009-2013 Khaled Hosny
+-- ------------------------------------------------
+-- This package is free software and may be redistributed and/or modified under
+-- the conditions of the LaTeX Project Public License, version 1.3c or higher
+-- (your choice): <http://www.latex-project.org/lppl/>.
+-- ------------------------------------------------
+-- ^^A%% fontspec.dtx -- part of FONTSPEC <wspr.io/fontspec>
+
fontspec = fontspec or {}
local fontspec = fontspec
fontspec.module = {
name = "fontspec",
- version = "2.6e",
- date = "2017/09/27",
+ version = "2.6f",
+ date = "2017/11/05",
description = "Font selection for XeLaTeX and LuaLaTeX",
author = "Khaled Hosny, Philipp Gesang, Will Robertson",
copyright = "Khaled Hosny, Philipp Gesang, Will Robertson",
license = "LPPL"
}
+
+-- ^^A%% fontspec-lua.dtx -- part of FONTSPEC <wspr.io/fontspec>
local err, warn, info, log = luatexbase.provides_module(fontspec.module)
fontspec.log = log or (function (s) luatexbase.module_info("fontspec", s) end)
fontspec.warning = warn or (function (s) luatexbase.module_warning("fontspec", s) end)
@@ -70,16 +79,4 @@ function fontspec.mathfontdimen(fnt, str)
tex.sprint("0pt")
end
end
--- ------------------------------------------------
--- Copyright 2004--2017 Will Robertson <will.robertson@latex-project.org>
--- Copyright 2009--2013 Khaled Hosny <khaledhosny@eglug.org>
---
--- Distributable under the LaTeX Project Public License, version 1.3c or higher.
--- The latest version of this license is at: http://www.latex-project.org/lppl.txt
---
--- This work is "maintained" by Will Robertson.
--- It consists of the files: fontspec*.dtx, fontspec.cfg, fontspec*.tex.
--- And the derived files: fontspec*.sty,fontspec.lua, fontspec.pdf.
--- ------------------------------------------------
---
--- End of file `fontspec.lua'.
+