Closed vinraspa closed 1 year ago
Personally I wouldn't use numdef
at all. I don't think I have ever used the package, and never added it to CTAN or the standard tex distributions.
Command \field1 is created
You have not defined \field1
but \field
which then does non-expandable lookahead and assignments to find a following number (1 here). I doubt there is any reasonable way to make that work in fp package \FPeval
(or in the standard latex \fpeval
) sorry.
If you use \fielda
, \fieldb
, ... rather than \field1
, \field2
, this package is not needed at all.
OK. Thank you.
Hello. First, let me thank you for your package
numdef.sty
. I use it a lot. Today, I encountered an issue withfp
package (\FPeval
command). see below :Here is the error message:
I also tried this:
\num\FPeval\field2{2*\ptotect\field1}
and\num\FPeval\field2{2*\field{1}}
but it failed too. Do you think of a workaround? Maybe have I missed something...Thank you in advance!