Bill Allombert on Wed, 01 Mar 2017 20:23:53 +0100 |
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: printtex |
On Tue, Feb 21, 2017 at 06:52:29PM +0100, Bernadette Perrin-Riou wrote: > Hello > > Is there a change of printtex ? > > GP/PARI CALCULATOR Version 2.8.1 (development 19712-21eaaa0) > i386 running darwin (x86-64/GMP-6.1.0 kernel) 64-bit version > compiled: Oct 22 2016, Apple LLVM version 7.3.0 (clang-703.0.31) > threading engine: single > (readline v6.3 enabled, extended help enabled) > > Copyright (C) 2000-2016 The PARI Group > > PARI/GP is free software, covered by the GNU General Public License, and comes WITHOUT ANY WARRANTY WHATSOEVER. > > Type ? for help, \q to quit. > Type ?15 for how to get moral (and possibly technical) support. > > parisizemax = 4000002048, primelimit = 500000 > ? printtex(35*x^6 - 8*x + 3) > 35\*x^6 > - 8\*x > + 3 > > > GP/PARI CALCULATOR Version 2.7.5 (released) > amd64 running freebsd (x86-64 WIMS kernel) 64-bit version > parisize = 8000000, primelimit = 500000 > ? printtex(35*x^6 - 8*x + 3) > 35 x^6 > - 8 x > + 3 > > The \* was not there before, it seems to me. As some peole use printtex in wims, > I would like to know if I must change definitively the output for wims. I replied to Bernadette privately before seeing this. \* is a standard TeX macro that denotes an implicit multiplication and serves as an hyphenation. It is either ignored or expanded to × when line breaking occurs. Any reasonnable (La)TeX processor will handle it, and this improves the display when very large polynomial are printed. Cheers, Bill.