summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/ifthenx
diff options
context:
space:
mode:
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.