Changeset edaa83 in git for Singular/LIB/latex.lib
- Timestamp:
- Feb 10, 2015, 6:12:56 PM (9 years ago)
- Branches:
- (u'spielwiese', '873fc1222e995d7cb33f79d8f1792ce418c8c72c')
- Children:
- 0b9aa7febb094f9895da3d802b389bd9560e3c48
- Parents:
- fc77091687ca4452f82b084b30f8522dec3b357d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/latex.lib
rfc7709 redaa83 874 874 } 875 875 876 if (typeof(obj) == "ring" or877 typeof(obj) == "qring"){ s = s + D + texring("",obj) + D + newline;}876 if (typeof(obj) == "ring") 877 { s = s + D + texring("",obj) + D + newline;} 878 878 879 879 kill obj; … … 1126 1126 s = s + cb + en; 1127 1127 1128 if ( typeof(r)=="qring")1128 if (size(ideal(r))>0) /*qring*/ 1129 1129 { ideal @I = ideal(r); 1130 1130 if (defined(TeXbrack)) … … 1372 1372 1373 1373 if (typeof(p) == "int") { return(p);} 1374 if (typeof(p) == "ring" or typeof(p) == "qring")1374 if (typeof(p) == "ring") 1375 1375 { " -- Call texring instead "; return();} 1376 1376 if (find(notvalid,typeof(p))) … … 1814 1814 if (typeofd=="intvec" or typeofd == "intmat" or typeofd =="vector" or 1815 1815 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));} 1817 1817 if (typeofd =="ideal") { return(texobj("",d));} 1818 1818 if (typeofd=="number" or typeofd=="poly" or typeofd=="ideal")
Note: See TracChangeset
for help on using the changeset viewer.