Changeset edaa83 in git for Singular/LIB/latex.lib


Ignore:
Timestamp:
Feb 10, 2015, 6:12:56 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '873fc1222e995d7cb33f79d8f1792ce418c8c72c')
Children:
0b9aa7febb094f9895da3d802b389bd9560e3c48
Parents:
fc77091687ca4452f82b084b30f8522dec3b357d
Message:
unified ring handling: typeof(qring) is now ring
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/latex.lib

    rfc7709 redaa83  
    874874  }
    875875
    876   if (typeof(obj) == "ring" or
    877       typeof(obj) == "qring") { s = s + D + texring("",obj) + D + newline;}
     876  if (typeof(obj) == "ring")
     877  { s = s + D + texring("",obj) + D + newline;}
    878878
    879879  kill obj;
     
    11261126   s = s + cb + en;
    11271127
    1128   if (typeof(r)=="qring")
     1128  if (size(ideal(r))>0) /*qring*/
    11291129  { ideal @I = ideal(r);
    11301130    if (defined(TeXbrack))
     
    13721372
    13731373  if (typeof(p) == "int") { return(p);}
    1374   if (typeof(p)  == "ring" or typeof(p) == "qring")
     1374  if (typeof(p)  == "ring")
    13751375  { " -- Call  texring  instead "; return();}
    13761376  if (find(notvalid,typeof(p)))
     
    18141814 if (typeofd=="intvec" or typeofd == "intmat" or typeofd =="vector" or
    18151815     typeofd=="matrix" or typeofd == "module")   { return(texobj("",d));}
    1816  if (typeofd=="ring" or typeofd=="qring") { return(texring("",d));}
     1816 if (typeofd=="ring") { return(texring("",d));}
    18171817 if (typeofd =="ideal") { return(texobj("",d));}
    18181818 if (typeofd=="number" or typeofd=="poly" or typeofd=="ideal")
Note: See TracChangeset for help on using the changeset viewer.