summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/ifthenx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-04-01 21:32:49 +0000
committerKarl Berry <karl@freefriends.org>2012-04-01 21:32:49 +0000
commit9b116137f26dae6d64e8bd0fb307c7eaf92627a1 (patch)
tree39142d66fb4aee0fd3f0a44650dcd3cc594360f0 /Master/texmf-dist/doc/latex/ifthenx
parent1fedf7730131627fc42776988e6bf0b316d5910e (diff)
ifthenx (1apr12)
git-svn-id: svn://tug.org/texlive/trunk@25819 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/ifthenx')
-rw-r--r--Master/texmf-dist/doc/latex/ifthenx/README15
1 files changed, 9 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/latex/ifthenx/README b/Master/texmf-dist/doc/latex/ifthenx/README
index 954344ce2d6..1f767c8ef9c 100644
--- a/Master/texmf-dist/doc/latex/ifthenx/README
+++ b/Master/texmf-dist/doc/latex/ifthenx/README
@@ -1,4 +1,4 @@
-ifthenx.sty Copyright (C) 2012 Geoffrey Jones 2012/03/31 (v0.1)
+ifthenx.sty Copyright (C) 2012 Geoffrey Jones 2012/04/01 (v0.1a)
<geoffrey stop jones snailshell uqconnect stop edu stop au>
Package ifthenx.sty -- this little package extends David Carlisle's
@@ -63,13 +63,16 @@ Related Packages:
own modified version instead). If loaded in the recommended order,
users can ``mix and match'' the tests.
For example:
- \newcommand\foo{-4}
- \ifthenelse{\NOT\isundefined{\foo} % native ifthen pkg cmd
- \AND\isnamedefined{foo} % xifthen pkg command
- \AND\isnumber{\foo}}{true}{false} % ifthenx pkg command
+ \newcommand*\foo{3}
+ \newcommand*\baz{98}
+ \ifthenelse{
+ \isnumber{\foo} % ifthenx pkg command
+ \AND\isodd{\foo} % ifthen pkg command
+ \AND\cnttest{\foo + \baz}{>}{100} % xifthen pkg command
+ }{true}{false}
evaluates true.
-Version: v0.1 *** prerelease ***
+Version: v0.1a *** release for comments ***
The author would welcome bug reports, comments, suggestions,
extensions and so forth at this early stage.