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