summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/lualatex/bezierplot/bezierplot.sty
blob: be4c89550e58d4242e8b4860a1357cb0128155a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{bezierplot}[2018/07/23 bezierplot]
\RequirePackage{xparse}
\RequirePackage{iftex}
\ifLuaTeX
 \directlua{require("bezierplot")}
 \DeclareExpandableDocumentCommand{\xbezierplot}{O{-5} O{5} O{-5} O{5} O{0} O{tikz} m}{%
  \directlua{tex.sprint(bezierplot("#7","#1","#2","#3","#4","#5","#6"))}
  }
\else
 \let\xpandblinpt\@@input
 \DeclareExpandableDocumentCommand{\xbezierplot}{O{-5} O{5} O{-5} O{5} O{0} O{tikz} m}{%
  \xpandblinpt|"bezierplot '#7' '#1' '#2' '#3' '#4' '#5' '#6'"
 }
\fi
\providecommand\bezierplot{\romannumeral`\^^@\xbezierplot}
\endinput