diff options
Diffstat (limited to 'Master/texmf-dist/doc/luatex/luaintro/01-02-7.sh')
-rw-r--r-- | Master/texmf-dist/doc/luatex/luaintro/01-02-7.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/luatex/luaintro/01-02-7.sh b/Master/texmf-dist/doc/luatex/luaintro/01-02-7.sh new file mode 100644 index 00000000000..43e121d90aa --- /dev/null +++ b/Master/texmf-dist/doc/luatex/luaintro/01-02-7.sh @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Ein Beispiel der DANTE-Edition +# +## Beispiel 01-02-7 auf Seite 10. +# +# Copyright (C) 2013 Herbert Voss +# +# It 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. +# +# See http://www.latex-project.org/lppl.txt for details. +# +# +#CODEbegin +TeXfile=`basename $0 .sh` +cat << _EndOfFile_ > $TeXfile.tex +1 .Zeile\par +\directlua name{\jobname: \the\inputlineno}{ + a=3 + b=4 + c="c" + tex.sprint(a^2+b^2 .. "=" .. c^2)}\par +2. Zeile +\bye +_EndOfFile_ + +luatex --interaction=batchmode $TeXfile +grep -A4 error $TeXfile.log >$TeXfile.txt +#CODEend |