Rev 16242 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 16242 | Rev 16251 | ||
---|---|---|---|
Line 80... | Line 80... | ||
80 | strip_trailing_spaces(p); if(find_term_end(p)<p+strlen(p)) { |
80 | strip_trailing_spaces(p); if(find_term_end(p)<p+strlen(p)) { |
81 | tprint("\\left("); t_onestring(p); tprint("\\right)"); |
81 | tprint("\\left("); t_onestring(p); tprint("\\right)"); |
82 | } |
82 | } |
83 | else t_onestring(p); |
83 | else t_onestring(p); |
84 | if(type && *p1) { |
84 | if(type && *p1) { |
85 | strip_trailing_spaces(p1); tprint("\\,\\ |
85 | strip_trailing_spaces(p1); tprint("\\,\\textrm{d}"); // case of the integrale |
86 | if(find_term_end(p1)<p1+strlen(p1)) { |
86 | if(find_term_end(p1)<p1+strlen(p1)) { |
87 | tprint("\\left("); t_onestring(p1); tprint("\\right)"); |
87 | tprint("\\left("); t_onestring(p1); tprint("\\right)"); |
88 | } |
88 | } |
89 | else t_onestring(p1); |
89 | else t_onestring(p1); |
90 | } |
90 | } |