]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathFrac.cpp
456faa792ac26eb31342070480b69508288d8f78
[features.git] / src / mathed / InsetMathFrac.cpp
1 /**
2  * \file InsetMathFracBase.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetMathFrac.h"
15
16 #include "Cursor.h"
17 #include "LaTeXFeatures.h"
18 #include "MathData.h"
19 #include "MathStream.h"
20 #include "MathSupport.h"
21 #include "MetricsInfo.h"
22 #include "TextPainter.h"
23
24 #include "frontends/Painter.h"
25
26 using namespace std;
27
28 namespace lyx {
29
30 /////////////////////////////////////////////////////////////////////
31 //
32 // InsetMathFracBase
33 //
34 /////////////////////////////////////////////////////////////////////
35
36
37 InsetMathFracBase::InsetMathFracBase(idx_type ncells)
38         : InsetMathNest(ncells)
39 {}
40
41
42 bool InsetMathFracBase::idxUpDown(Cursor & cur, bool up) const
43 {
44         InsetMath::idx_type target = !up; // up ? 0 : 1, since upper cell has idx 0
45         if (cur.idx() == target)
46                 return false;
47         cur.idx() = target;
48         cur.pos() = cell(target).x2pos(&cur.bv(), cur.x_target());
49         return true;
50 }
51
52
53
54 /////////////////////////////////////////////////////////////////////
55 //
56 // InsetMathFrac
57 //
58 /////////////////////////////////////////////////////////////////////
59
60
61 InsetMathFrac::InsetMathFrac(Kind kind, InsetMath::idx_type ncells)
62         : InsetMathFracBase(ncells), kind_(kind)
63 {}
64
65
66 Inset * InsetMathFrac::clone() const
67 {
68         return new InsetMathFrac(*this);
69 }
70
71
72 InsetMathFrac * InsetMathFrac::asFracInset()
73 {
74         return kind_ == ATOP ? 0 : this;
75 }
76
77
78 InsetMathFrac const * InsetMathFrac::asFracInset() const
79 {
80         return kind_ == ATOP ? 0 : this;
81 }
82
83
84 bool InsetMathFrac::idxForward(Cursor & cur) const
85 {
86         InsetMath::idx_type target = 0;
87         if (kind_ == UNIT || (kind_ == UNITFRAC && nargs() == 3)) {
88                 if (nargs() == 3)
89                         target = 0;
90                 else if (nargs() == 2)
91                         target = 1;
92         } else
93                 return false;
94         if (cur.idx() == target)
95                 return false;
96         cur.idx() = target;
97         cur.pos() = cell(target).x2pos(&cur.bv(), cur.x_target());
98         return true;
99 }
100
101
102 bool InsetMathFrac::idxBackward(Cursor & cur) const
103 {
104         InsetMath::idx_type target = 0;
105         if (kind_ == UNIT || (kind_ == UNITFRAC && nargs() == 3)) {
106                 if (nargs() == 3)
107                         target = 2;
108                 else if (nargs() == 2)
109                         target = 0;
110         } else
111                 return false;
112         if (cur.idx() == target)
113                 return false;
114         cur.idx() = target;
115         cur.pos() = cell(target).x2pos(&cur.bv(), cur.x_target());
116         return true;
117 }
118
119
120 void InsetMathFrac::metrics(MetricsInfo & mi, Dimension & dim) const
121 {
122         Dimension dim0, dim1, dim2;
123
124         if (kind_ == UNIT || (kind_ == UNITFRAC && nargs() == 3)) {
125                 if (nargs() == 1) {
126                         ShapeChanger dummy2(mi.base.font, UP_SHAPE);
127                         cell(0).metrics(mi, dim0);
128                         dim.wid = dim0.width()+ 3;
129                         dim.asc = dim0.asc;
130                         dim.des = dim0.des;
131                 } else if (nargs() == 2) {
132                         cell(0).metrics(mi, dim0);
133                         ShapeChanger dummy2(mi.base.font, UP_SHAPE);
134                         cell(1).metrics(mi, dim1);
135                         dim.wid = dim0.width() + dim1.wid + 5;
136                         dim.asc = max(dim0.asc, dim1.asc);
137                         dim.des = max(dim0.des, dim1.des);
138                 } else {
139                         cell(2).metrics(mi, dim2);
140                         ShapeChanger dummy2(mi.base.font, UP_SHAPE);
141                         FracChanger dummy(mi.base);
142                         cell(0).metrics(mi, dim0);
143                         cell(1).metrics(mi, dim1);
144                         dim.wid = dim0.width() + dim1.wid + dim2.wid + 10;
145                         dim.asc = max(dim2.asc, dim0.height() + 5);
146                         dim.des = max(dim2.des, dim1.height() - 5);
147                 }
148         } else {
149                 FracChanger dummy(mi.base);
150                 cell(0).metrics(mi, dim0);
151                 cell(1).metrics(mi, dim1);
152                 if (nargs() == 3)
153                         cell(2).metrics(mi, dim2);
154
155                 if (kind_ == NICEFRAC) {
156                         dim.wid = dim0.width() + dim1.wid + 5;
157                         dim.asc = dim0.height() + 5;
158                         dim.des = dim1.height() - 5;
159                 } else if (kind_ == UNITFRAC) {
160                         ShapeChanger dummy2(mi.base.font, UP_SHAPE);
161                         dim.wid = dim0.width() + dim1.wid + 5;
162                         dim.asc = dim0.height() + 5;
163                         dim.des = dim1.height() - 5;
164                 } else {
165                         dim.wid = max(dim0.width(), dim1.wid) + 2;
166                         dim.asc = dim0.height() + 2 + 5;
167                         dim.des = dim1.height() + 2 - 5;
168                 }
169         }
170         metricsMarkers(dim);
171 }
172
173
174 void InsetMathFrac::draw(PainterInfo & pi, int x, int y) const
175 {
176         setPosCache(pi, x, y);
177         Dimension const dim = dimension(*pi.base.bv);
178         Dimension const dim0 = cell(0).dimension(*pi.base.bv);
179         int m = x + dim.wid / 2;
180         if (kind_ == UNIT || (kind_ == UNITFRAC && nargs() == 3)) {
181                 if (nargs() == 1) {
182                         ShapeChanger dummy2(pi.base.font, UP_SHAPE);
183                         cell(0).draw(pi, x + 1, y);
184                 } else if (nargs() == 2) {
185                         cell(0).draw(pi, x + 1, y);
186                         ShapeChanger dummy2(pi.base.font, UP_SHAPE);
187                         cell(1).draw(pi, x + dim0.width() + 5, y);
188                 } else {
189                         cell(2).draw(pi, x + 1, y);
190                         ShapeChanger dummy2(pi.base.font, UP_SHAPE);
191                         FracChanger dummy(pi.base);
192                         Dimension const dim1 = cell(1).dimension(*pi.base.bv);
193                         Dimension const dim2 = cell(2).dimension(*pi.base.bv);
194                         int xx = x + dim2.wid + 5;
195                         cell(0).draw(pi, xx + 2, 
196                                          y - dim0.des - 5);
197                         cell(1).draw(pi, xx  + dim0.width() + 5, 
198                                          y + dim1.asc / 2);
199                 }
200         } else {
201                 FracChanger dummy(pi.base);
202                 Dimension const dim1 = cell(1).dimension(*pi.base.bv);
203                 if (kind_ == NICEFRAC) {
204                         cell(0).draw(pi, x + 2,
205                                         y - dim0.des - 5);
206                         cell(1).draw(pi, x + dim0.width() + 5,
207                                         y + dim1.asc / 2);
208                 } else if (kind_ == UNITFRAC) {
209                         ShapeChanger dummy2(pi.base.font, UP_SHAPE);
210                         cell(0).draw(pi, x + 2,
211                                         y - dim0.des - 5);
212                         cell(1).draw(pi, x + dim0.width() + 5,
213                                         y + dim1.asc / 2);
214                 } else {
215                         // Classical fraction
216                         cell(0).draw(pi, m - dim0.width() / 2,
217                                         y - dim0.des - 2 - 5);
218                         cell(1).draw(pi, m - dim1.wid / 2,
219                                         y + dim1.asc  + 2 - 5);
220                 }
221         }
222         if (kind_ == NICEFRAC || kind_ == UNITFRAC) {
223                 // Diag line:
224                 int xx = x;
225                 if (nargs() == 3)
226                         xx += cell(2).dimension(*pi.base.bv).wid + 5;
227
228                 pi.pain.line(xx + dim0.wid,
229                                 y + dim.des - 2,
230                                 xx + dim0.wid + 5,
231                                 y - dim.asc + 2, Color_math);
232         }
233         if (kind_ == FRAC || kind_ == OVER)
234                 pi.pain.line(x + 1, y - 5,
235                                 x + dim.wid - 2, y - 5, Color_math);
236         drawMarkers(pi, x, y);
237 }
238
239
240 void InsetMathFrac::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
241 {
242         Dimension dim0, dim1;
243         cell(0).metricsT(mi, dim0);
244         cell(1).metricsT(mi, dim1);
245         dim.wid = max(dim0.width(), dim1.wid);
246         dim.asc = dim0.height() + 1;
247         dim.des = dim1.height();
248 }
249
250
251 void InsetMathFrac::drawT(TextPainter & /*pain*/, int /*x*/, int /*y*/) const
252 {
253         // FIXME: BROKEN!
254         /*
255         Dimension dim;
256         int m = x + dim.width() / 2;
257         cell(0).drawT(pain, m - dim0.width() / 2, y - dim0.des - 1);
258         cell(1).drawT(pain, m - dim1.wid / 2, y + dim1.asc);
259         // ASCII art: ignore niceties
260         if (kind_ == FRAC || kind_ == OVER || kind_ == NICEFRAC || kind_ == UNITFRAC)
261                 pain.horizontalLine(x, y, dim.width());
262         */
263 }
264
265
266 void InsetMathFrac::write(WriteStream & os) const
267 {
268         bool brace = ensureMath(os);
269
270         switch (kind_) {
271         case ATOP:
272                 os << '{' << cell(0) << "\\atop " << cell(1) << '}';
273                 break;
274         case OVER:
275                 // \\over is only for compatibility, normalize this to \\frac
276                 os << "\\frac{" << cell(0) << "}{" << cell(1) << '}';
277                 break;
278         case FRAC:
279         case NICEFRAC:
280         case UNITFRAC:
281                 if (nargs() == 2)
282                         InsetMathNest::write(os);
283                 else
284                         os << "\\unitfrac[" << cell(2) << "]{" << cell(0) << "}{" << cell(1) << '}';
285                 break;
286         case UNIT:
287                 if (nargs() == 2)
288                         os << "\\unit[" << cell(0) << "]{" << cell(1) << '}';
289                 else
290                         os << "\\unit{" << cell(0) << '}';
291                 break;
292         }
293
294         os.pendingBrace(brace);
295 }
296
297
298 docstring InsetMathFrac::name() const
299 {
300         switch (kind_) {
301         case FRAC:
302                 return from_ascii("frac");
303         case OVER:
304                 return from_ascii("over");
305         case NICEFRAC:
306                 return from_ascii("nicefrac");
307         case UNITFRAC:
308                 return from_ascii("unitfrac");
309         case UNIT:
310                 return from_ascii("unit");
311         case ATOP:
312                 return from_ascii("atop");
313         }
314         // shut up stupid compiler
315         return docstring();
316 }
317
318
319 bool InsetMathFrac::extraBraces() const
320 {
321         return kind_ == ATOP || kind_ == OVER;
322 }
323
324
325 void InsetMathFrac::maple(MapleStream & os) const
326 {
327         os << '(' << cell(0) << ")/(" << cell(1) << ')';
328 }
329
330
331 void InsetMathFrac::mathematica(MathematicaStream & os) const
332 {
333         os << '(' << cell(0) << ")/(" << cell(1) << ')';
334 }
335
336
337 void InsetMathFrac::octave(OctaveStream & os) const
338 {
339         os << '(' << cell(0) << ")/(" << cell(1) << ')';
340 }
341
342
343 void InsetMathFrac::mathmlize(MathStream & os) const
344 {
345         os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
346 }
347
348
349 void InsetMathFrac::validate(LaTeXFeatures & features) const
350 {
351         if (kind_ == NICEFRAC || kind_ == UNITFRAC || kind_ == UNIT)
352                 features.require("units");
353         InsetMathNest::validate(features);
354 }
355
356
357 /////////////////////////////////////////////////////////////////////
358 //
359 // InsetMathDFrac
360 //
361 /////////////////////////////////////////////////////////////////////
362
363
364 Inset * InsetMathDFrac::clone() const
365 {
366         return new InsetMathDFrac(*this);
367 }
368
369
370 void InsetMathDFrac::metrics(MetricsInfo & mi, Dimension & dim) const
371 {
372         Dimension dim0, dim1;
373         cell(0).metrics(mi, dim0);
374         cell(1).metrics(mi, dim1);
375         dim.wid = max(dim0.wid, dim1.wid) + 2;
376         dim.asc = dim0.height() + 2 + 5;
377         dim.des = dim1.height() + 2 - 5;
378 }
379
380
381 void InsetMathDFrac::draw(PainterInfo & pi, int x, int y) const
382 {
383         Dimension const dim = dimension(*pi.base.bv);
384         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
385         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
386         int m = x + dim.wid / 2;
387         cell(0).draw(pi, m - dim0.wid / 2, y - dim0.des - 2 - 5);
388         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 2 - 5);
389         pi.pain.line(x + 1, y - 5, x + dim.wid - 2, y - 5, Color_math);
390         setPosCache(pi, x, y);
391 }
392
393
394 docstring InsetMathDFrac::name() const
395 {
396         return from_ascii("dfrac");
397 }
398
399
400 void InsetMathDFrac::mathmlize(MathStream & os) const
401 {
402         os << MTag("mdfrac") << cell(0) << cell(1) << ETag("mdfrac");
403 }
404
405
406 void InsetMathDFrac::validate(LaTeXFeatures & features) const
407 {
408         features.require("amsmath");
409         InsetMathNest::validate(features);
410 }
411
412
413 /////////////////////////////////////////////////////////////////////
414 //
415 // InsetMathTFrac
416 //
417 /////////////////////////////////////////////////////////////////////
418
419
420 Inset * InsetMathTFrac::clone() const
421 {
422         return new InsetMathTFrac(*this);
423 }
424
425
426 void InsetMathTFrac::metrics(MetricsInfo & mi, Dimension & dim) const
427 {
428         StyleChanger dummy(mi.base, LM_ST_SCRIPT);
429         Dimension dim0;
430         cell(0).metrics(mi, dim0);
431         Dimension dim1;
432         cell(1).metrics(mi, dim1);
433         dim.wid = max(dim0.width(), dim1.width()) + 2;
434         dim.asc = dim0.height() + 2 + 5;
435         dim.des = dim1.height() + 2 - 5;
436 }
437
438
439 void InsetMathTFrac::draw(PainterInfo & pi, int x, int y) const
440 {
441         StyleChanger dummy(pi.base, LM_ST_SCRIPT);
442         Dimension const dim = dimension(*pi.base.bv);
443         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
444         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
445         int m = x + dim.wid / 2;
446         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.descent() - 2 - 5);
447         cell(1).draw(pi, m - dim1.width() / 2, y + dim1.ascent()  + 2 - 5);
448         pi.pain.line(x + 1, y - 5, x + dim.wid - 2, y - 5, Color_math);
449         setPosCache(pi, x, y);
450 }
451
452
453 docstring InsetMathTFrac::name() const
454 {
455         return from_ascii("tfrac");
456 }
457
458
459 void InsetMathTFrac::mathmlize(MathStream & os) const
460 {
461         os << MTag("mtfrac") << cell(0) << cell(1) << ETag("mtfrac");
462 }
463
464
465 void InsetMathTFrac::validate(LaTeXFeatures & features) const
466 {
467         features.require("amsmath");
468         InsetMathNest::validate(features);
469 }
470
471
472 /////////////////////////////////////////////////////////////////////
473 //
474 // InsetMathBinom
475 //
476 /////////////////////////////////////////////////////////////////////
477
478
479 InsetMathBinom::InsetMathBinom(Kind kind)
480         : kind_(kind)
481 {}
482
483
484 Inset * InsetMathBinom::clone() const
485 {
486         return new InsetMathBinom(*this);
487 }
488
489
490 int InsetMathBinom::dw(int height) const
491 {
492         int w = height / 5;
493         if (w > 15)
494                 w = 15;
495         if (w < 6)
496                 w = 6;
497         return w;
498 }
499
500
501 void InsetMathBinom::metrics(MetricsInfo & mi, Dimension & dim) const
502 {
503         FracChanger dummy(mi.base);
504         Dimension dim0, dim1;
505         cell(0).metrics(mi, dim0);
506         cell(1).metrics(mi, dim1);
507         dim.asc = dim0.height() + 4 + 5;
508         dim.des = dim1.height() + 4 - 5;
509         dim.wid = max(dim0.width(), dim1.wid) + 2 * dw(dim.height()) + 4;
510         metricsMarkers2(dim);
511 }
512
513
514 void InsetMathBinom::draw(PainterInfo & pi, int x, int y) const
515 {
516         Dimension const dim = dimension(*pi.base.bv);
517         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
518         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
519         docstring const bra = kind_ == BRACE ? from_ascii("{") :
520                               kind_ == BRACK ? from_ascii("[") : from_ascii("(");
521         docstring const ket = kind_ == BRACE ? from_ascii("}") :
522                               kind_ == BRACK ? from_ascii("]") : from_ascii(")");
523         int m = x + dim.width() / 2;
524         FracChanger dummy(pi.base);
525         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.des - 3 - 5);
526         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 3 - 5);
527         mathed_draw_deco(pi, x, y - dim.ascent(), dw(dim.height()), dim.height(), bra);
528         mathed_draw_deco(pi, x + dim.width() - dw(dim.height()), y - dim.ascent(),
529                 dw(dim.height()), dim.height(), ket);
530         drawMarkers2(pi, x, y);
531 }
532
533
534 bool InsetMathBinom::extraBraces() const
535 {
536         return kind_ == CHOOSE || kind_ == BRACE || kind_ == BRACK;
537 }
538
539
540 void InsetMathBinom::write(WriteStream & os) const
541 {
542         bool brace = ensureMath(os);
543
544         switch (kind_) {
545         case BINOM:
546                 os << "\\binom{" << cell(0) << "}{" << cell(1) << '}';
547                 break;
548         case CHOOSE:
549                 os << '{' << cell(0) << " \\choose " << cell(1) << '}';
550                 break;
551         case BRACE:
552                 os << '{' << cell(0) << " \\brace " << cell(1) << '}';
553                 break;
554         case BRACK:
555                 os << '{' << cell(0) << " \\brack " << cell(1) << '}';
556                 break;
557         }
558
559         os.pendingBrace(brace);
560 }
561
562
563 void InsetMathBinom::normalize(NormalStream & os) const
564 {
565         os << "[binom " << cell(0) << ' ' << cell(1) << ']';
566 }
567
568
569 void InsetMathBinom::validate(LaTeXFeatures & features) const
570 {
571         if (kind_ == BINOM)
572                 features.require("binom");
573         InsetMathNest::validate(features);
574 }
575
576
577 /////////////////////////////////////////////////////////////////////
578 //
579 // InsetMathDBinom
580 //
581 /////////////////////////////////////////////////////////////////////
582
583 Inset * InsetMathDBinom::clone() const
584 {
585         return new InsetMathDBinom(*this);
586 }
587
588
589 int InsetMathDBinom::dw(int height) const
590 {
591         int w = height / 5;
592         if (w > 15)
593                 w = 15;
594         if (w < 6)
595                 w = 6;
596         return w;
597 }
598
599
600 void InsetMathDBinom::metrics(MetricsInfo & mi, Dimension & dim) const
601 {
602         Dimension dim0, dim1;
603         cell(0).metrics(mi, dim0);
604         cell(1).metrics(mi, dim1);
605         dim.asc = dim0.height() + 4 + 5;
606         dim.des = dim1.height() + 4 - 5;
607         dim.wid = max(dim0.width(), dim1.wid) + 2 * dw(dim.height()) + 4;
608         metricsMarkers2(dim);
609 }
610
611
612 void InsetMathDBinom::draw(PainterInfo & pi, int x, int y) const
613 {
614         Dimension const dim = dimension(*pi.base.bv);
615         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
616         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
617         int m = x + dim.width() / 2;
618         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.des - 3 - 5);
619         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 3 - 5);
620         mathed_draw_deco(pi, x, y - dim.ascent(), dw(dim.height()), dim.height(), from_ascii("("));
621         mathed_draw_deco(pi, x + dim.width() - dw(dim.height()), y - dim.ascent(),
622                 dw(dim.height()), dim.height(), from_ascii(")"));
623         drawMarkers2(pi, x, y);
624 }
625
626
627 docstring InsetMathDBinom::name() const
628 {
629         return from_ascii("dbinom");
630 }
631
632 void InsetMathDBinom::mathmlize(MathStream & os) const
633 {
634         os << MTag("mdbinom") << cell(0) << cell(1) << ETag("mdbinom");
635 }
636
637 void InsetMathDBinom::validate(LaTeXFeatures & features) const
638 {
639         features.require("amsmath");
640         InsetMathNest::validate(features);
641 }
642
643
644 /////////////////////////////////////////////////////////////////////
645 //
646 // InsetMathTBinom
647 //
648 /////////////////////////////////////////////////////////////////////
649
650 Inset * InsetMathTBinom::clone() const
651 {
652         return new InsetMathTBinom(*this);
653 }
654
655
656 int InsetMathTBinom::dw(int height) const
657 {
658         int w = height / 5;
659         if (w > 15)
660                 w = 15;
661         if (w < 6)
662                 w = 6;
663         return w;
664 }
665
666
667 void InsetMathTBinom::metrics(MetricsInfo & mi, Dimension & dim) const
668 {
669         StyleChanger dummy(mi.base, LM_ST_SCRIPT);
670         Dimension dim0, dim1;
671         cell(0).metrics(mi, dim0);
672         cell(1).metrics(mi, dim1);
673         dim.asc = dim0.height() + 4 + 5;
674         dim.des = dim1.height() + 4 - 5;
675         dim.wid = max(dim0.width(), dim1.wid) + 2 * dw(dim.height()) + 4;
676         metricsMarkers2(dim);
677 }
678
679
680 void InsetMathTBinom::draw(PainterInfo & pi, int x, int y) const
681 {
682         StyleChanger dummy(pi.base, LM_ST_SCRIPT);
683         Dimension const dim = dimension(*pi.base.bv);
684         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
685         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
686         int m = x + dim.width() / 2;
687         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.des - 3 - 5);
688         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 3 - 5);
689         mathed_draw_deco(pi, x, y - dim.ascent(), dw(dim.height()), dim.height(), from_ascii("("));
690         mathed_draw_deco(pi, x + dim.width() - dw(dim.height()), y - dim.ascent(),
691                 dw(dim.height()), dim.height(), from_ascii(")"));
692         drawMarkers2(pi, x, y);
693 }
694
695
696 docstring InsetMathTBinom::name() const
697 {
698         return from_ascii("tbinom");
699 }
700
701 void InsetMathTBinom::mathmlize(MathStream & os) const
702 {
703         os << MTag("mtbinom") << cell(0) << cell(1) << ETag("mtbinom");
704 }
705
706 void InsetMathTBinom::validate(LaTeXFeatures & features) const
707 {
708         features.require("amsmath");
709         InsetMathNest::validate(features);
710 }
711
712 } // namespace lyx