|
D.13.6.17 texNumber
Procedure from library tropical.lib (see tropical_lib).
- Usage:
- texNumber(f); f poly
- Return:
- string, tex command representing leading coefficient of f using \frac
Example:
| LIB "tropical.lib";
ring r=(0,t),x,dp;
texNumber((3t2-1)/t3);
|
|