Changeset b430ca in git


Ignore:
Timestamp:
Sep 9, 2015, 8:07:04 PM (9 years ago)
Author:
Stephan Oberfranz <oberfran@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
d8946a4d5d5abc81d1b71aeddf7fedbadca56fb7
Parents:
b075f54919258c76495ed117b0f095df1f2ef63536b81ac0b97d2f019093a024dc770731cfabfe17
Message:
Merge branch 'spielwiese' of github.com:oberfran/Sources into spielwiese

Conflicts:
	Singular/walk.cc
Files:
6 added
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/latex.lib

    r36b81ac rb430ca  
    11//////////////////////////////////////////////////////////////////////////////
    2 version="version latex.lib 4.0.0.0 Jun_2013 "; // $Id$
     2version="version latex.lib 4.0.2.0 Sep_2015 "; // $Id$
    33category="Visualization";
    44info="
     
    14711471     if (galT) { monomt,msz = parsg(cfmt);}
    14721472     b = find(cfmt,"/(");                     // look if fraction  // 31.5.07
     1473     if (b==0) { b = -find(cfmt,")/"); }  // 1.9.15
    14731474     b2 = find(cfmt,"/");
    14741475     // if (b) {b++;}                         // 31.5.07
     
    15581559  f;
    15591560  texpoly("",f);
    1560   texpoly("",1/(a2+2)*x+2/b);
     1561  texpoly("",1/(a2+2)*x2+2/b*x+(a+1)/3);
    15611562}
    15621563///////////////////////////////////////////////////////////////////////////////
     
    15711572  }
    15721573  else
    1573   { nom,fl1 = parst(cfmt[1,b-1],1);
    1574     denom,fl2 = parst(cfmt[b+1,size(cfmt)-b],1);
     1574  {
     1575    if (b>0) {
     1576     nom,fl1 = parst(cfmt[1,b-1],1);
     1577     denom,fl2 = parst(cfmt[b+1,size(cfmt)-b],1);
     1578    }
     1579    else {
     1580     b = -b;
     1581     nom,fl1 = parst(cfmt[1,b],1);
     1582     denom,fl2 = parst(cfmt[b+2,size(cfmt)-b-1],1);
     1583    }
    15751584    if (defined(TeXnofrac))
    15761585    { if(fl1) { nom = "(" + nom + ")"; sz1++;}
Note: See TracChangeset for help on using the changeset viewer.