diff options
author | Karl Berry <karl@freefriends.org> | 2024-12-09 21:18:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-12-09 21:18:16 +0000 |
commit | bd01b8f1508b38fabf50da4ad8fbac6497697ba5 (patch) | |
tree | 515068e80d87595ecb606d7dbb3d4003b00407ed /Master/texmf-dist/doc/latex/luatikz/example/nodea.lua | |
parent | e4c71587aa7865ccd8d4c83a4daf3d1b04c6da6c (diff) |
luatikz (9dec24)
git-svn-id: svn://tug.org/texlive/trunk@73087 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/luatikz/example/nodea.lua')
-rw-r--r-- | Master/texmf-dist/doc/latex/luatikz/example/nodea.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/luatikz/example/nodea.lua b/Master/texmf-dist/doc/latex/luatikz/example/nodea.lua new file mode 100644 index 00000000000..4d34f2c0991 --- /dev/null +++ b/Master/texmf-dist/doc/latex/luatikz/example/nodea.lua @@ -0,0 +1,12 @@ +tikz.within( '*' ) + +put{ + node{ + at = p{ 0, 0 }, + text = [[$a^2 + b^2 = c^2$]], + }, + node{ + at = p{ 2, 1 }, + text = [[$sin(\phi) = \frac{b}{a}$]], + } +} |