-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from dohyunkim/master
workaround the issue relating to PATH limitation; v2.12.4
- Loading branch information
Showing
2 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ See source file '\inFileName' for licencing and contact information. | |
%<*driver> | ||
\NeedsTeXFormat{LaTeX2e} | ||
\ProvidesFile{luamplib.drv}% | ||
[2018/04/06 v2.12.3 Interface for using the mplib library]% | ||
[2018/04/16 v2.12.4 Interface for using the mplib library]% | ||
\documentclass{ltxdoc} | ||
\usepackage{metalogo,multicol,mdwlist,fancyvrb,xspace} | ||
\usepackage[x11names]{xcolor} | ||
|
@@ -112,7 +112,7 @@ See source file '\inFileName' for licencing and contact information. | |
ItalicFont = {Linux Libertine O Italic}, | ||
SlantedFont = {Linux Libertine O Italic}, | ||
]{Linux Libertine O} | ||
\setmonofont[Ligatures=TeX,Scale=MatchLowercase]{Liberation Mono} | ||
\setmonofont[Ligatures=TeX,Scale=MatchLowercase]{InconsolataN} | ||
%setsansfont[Ligatures=TeX]{Linux Biolinum O} | ||
\setsansfont[Ligatures=TeX,Scale=MatchLowercase]{Iwona Medium} | ||
%setmathfont{XITS Math} | ||
|
@@ -153,7 +153,7 @@ See source file '\inFileName' for licencing and contact information. | |
% \author{Hans Hagen, Taco Hoekwater, Elie Roux, Philipp Gesang and Kim Dohyun\\ | ||
% Maintainer: LuaLaTeX Maintainers --- | ||
% Support: \email{[email protected]}} | ||
% \date{2018/04/06 v2.12.3} | ||
% \date{2018/04/16 v2.12.4} | ||
% | ||
% \maketitle | ||
% | ||
|
@@ -373,8 +373,8 @@ luamplib.lastlog = "" | |
|
||
luatexbase.provides_module { | ||
name = "luamplib", | ||
version = "2.12.3", | ||
date = "2018/04/06", | ||
version = "2.12.4", | ||
date = "2018/04/16", | ||
description = "Lua package to typeset Metapost with LuaTeX's MPLib.", | ||
} | ||
|
||
|
@@ -533,6 +533,7 @@ local noneedtoreplace = { | |
["mp-idea.mpiv"] = true, | ||
["mp-luas.mpiv"] = true, | ||
["mp-mlib.mpiv"] = true, | ||
["mp-node.mpiv"] = true, | ||
["mp-page.mpiv"] = true, | ||
["mp-shap.mpiv"] = true, | ||
["mp-step.mpiv"] = true, | ||
|
@@ -638,7 +639,7 @@ local randomseed = nil | |
% | ||
% \begin{macrocode} | ||
|
||
local mpkpse = kpse.new("luatex", "mpost") | ||
local mpkpse = kpse.new(arg[0], "mpost") | ||
|
||
local special_ftype = { | ||
pfb = "type1 fonts", | ||
|
@@ -1778,7 +1779,7 @@ luamplib.colorconverter = colorconverter | |
\else | ||
\NeedsTeXFormat{LaTeX2e} | ||
\ProvidesPackage{luamplib} | ||
[2018/04/06 v2.12.3 mplib package for LuaTeX] | ||
[2018/04/16 v2.12.4 mplib package for LuaTeX] | ||
\ifx\newluafunction\@undefined | ||
\input ltluatex | ||
\fi | ||
|