diff scripts/specfun/pow2.m @ 9167:1231b1762a9a

Simplify TeXinfo and eliminate use of @iftex in arith.txi
author Rik <rdrider0-list@yahoo.com>
date Fri, 01 May 2009 11:37:36 -0700
parents c1fff751b5a8
children be55736a0783
line wrap: on
line diff
--- a/scripts/specfun/pow2.m
+++ b/scripts/specfun/pow2.m
@@ -21,24 +21,20 @@
 ## @deftypefn {Mapping Function} {} pow2 (@var{x})
 ## @deftypefnx {Mapping Function} {} pow2 (@var{f}, @var{e})
 ## With one argument, computes
-## @iftex
 ## @tex
-##  $2^x$
+## $2^x$
 ## @end tex
-## @end iftex
 ## @ifnottex
-##  2 .^ x
+## 2 .^ x
 ## @end ifnottex
 ## for each element of @var{x}.
 ##
 ## With two arguments, returns
-## @iftex
 ## @tex
-##  $f \cdot 2^e$.
+## $f \cdot 2^e$.
 ## @end tex
-## @end iftex
 ## @ifnottex
-##  f .* (2 .^ e).
+## f .* (2 .^ e).
 ## @end ifnottex
 ## @seealso{log2, nextpow2}
 ## @end deftypefn