]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathFrac.cpp
Coding style
[lyx.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         MathEnsurer ensurer(os);
269         switch (kind_) {
270         case ATOP:
271                 os << '{' << cell(0) << "\\atop " << cell(1) << '}';
272                 break;
273         case OVER:
274                 // \\over is only for compatibility, normalize this to \\frac
275                 os << "\\frac{" << cell(0) << "}{" << cell(1) << '}';
276                 break;
277         case FRAC:
278         case NICEFRAC:
279         case UNITFRAC:
280                 if (nargs() == 2)
281                         InsetMathNest::write(os);
282                 else
283                         os << "\\unitfrac[" << cell(2) << "]{" << cell(0) << "}{" << cell(1) << '}';
284                 break;
285         case UNIT:
286                 if (nargs() == 2)
287                         os << "\\unit[" << cell(0) << "]{" << cell(1) << '}';
288                 else
289                         os << "\\unit{" << cell(0) << '}';
290                 break;
291         }
292 }
293
294
295 docstring InsetMathFrac::name() const
296 {
297         switch (kind_) {
298         case FRAC:
299                 return from_ascii("frac");
300         case OVER:
301                 return from_ascii("over");
302         case NICEFRAC:
303                 return from_ascii("nicefrac");
304         case UNITFRAC:
305                 return from_ascii("unitfrac");
306         case UNIT:
307                 return from_ascii("unit");
308         case ATOP:
309                 return from_ascii("atop");
310         }
311         // shut up stupid compiler
312         return docstring();
313 }
314
315
316 bool InsetMathFrac::extraBraces() const
317 {
318         return kind_ == ATOP || kind_ == OVER;
319 }
320
321
322 void InsetMathFrac::maple(MapleStream & os) const
323 {
324         os << '(' << cell(0) << ")/(" << cell(1) << ')';
325 }
326
327
328 void InsetMathFrac::mathematica(MathematicaStream & os) const
329 {
330         os << '(' << cell(0) << ")/(" << cell(1) << ')';
331 }
332
333
334 void InsetMathFrac::octave(OctaveStream & os) const
335 {
336         os << '(' << cell(0) << ")/(" << cell(1) << ')';
337 }
338
339
340 void InsetMathFrac::mathmlize(MathStream & os) const
341 {
342         os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
343 }
344
345
346 void InsetMathFrac::validate(LaTeXFeatures & features) const
347 {
348         if (kind_ == NICEFRAC || kind_ == UNITFRAC || kind_ == UNIT)
349                 features.require("units");
350         InsetMathNest::validate(features);
351 }
352
353
354 /////////////////////////////////////////////////////////////////////
355 //
356 // InsetMathDFrac
357 //
358 /////////////////////////////////////////////////////////////////////
359
360
361 Inset * InsetMathDFrac::clone() const
362 {
363         return new InsetMathDFrac(*this);
364 }
365
366
367 void InsetMathDFrac::metrics(MetricsInfo & mi, Dimension & dim) const
368 {
369         Dimension dim0, dim1;
370         cell(0).metrics(mi, dim0);
371         cell(1).metrics(mi, dim1);
372         dim.wid = max(dim0.wid, dim1.wid) + 2;
373         dim.asc = dim0.height() + 2 + 5;
374         dim.des = dim1.height() + 2 - 5;
375 }
376
377
378 void InsetMathDFrac::draw(PainterInfo & pi, int x, int y) const
379 {
380         Dimension const dim = dimension(*pi.base.bv);
381         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
382         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
383         int m = x + dim.wid / 2;
384         cell(0).draw(pi, m - dim0.wid / 2, y - dim0.des - 2 - 5);
385         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 2 - 5);
386         pi.pain.line(x + 1, y - 5, x + dim.wid - 2, y - 5, Color_math);
387         setPosCache(pi, x, y);
388 }
389
390
391 docstring InsetMathDFrac::name() const
392 {
393         return from_ascii("dfrac");
394 }
395
396
397 void InsetMathDFrac::mathmlize(MathStream & os) const
398 {
399         os << MTag("mdfrac") << cell(0) << cell(1) << ETag("mdfrac");
400 }
401
402
403 void InsetMathDFrac::validate(LaTeXFeatures & features) const
404 {
405         features.require("amsmath");
406         InsetMathNest::validate(features);
407 }
408
409
410 /////////////////////////////////////////////////////////////////////
411 //
412 // InsetMathTFrac
413 //
414 /////////////////////////////////////////////////////////////////////
415
416
417 Inset * InsetMathTFrac::clone() const
418 {
419         return new InsetMathTFrac(*this);
420 }
421
422
423 void InsetMathTFrac::metrics(MetricsInfo & mi, Dimension & dim) const
424 {
425         StyleChanger dummy(mi.base, LM_ST_SCRIPT);
426         Dimension dim0;
427         cell(0).metrics(mi, dim0);
428         Dimension dim1;
429         cell(1).metrics(mi, dim1);
430         dim.wid = max(dim0.width(), dim1.width()) + 2;
431         dim.asc = dim0.height() + 2 + 5;
432         dim.des = dim1.height() + 2 - 5;
433 }
434
435
436 void InsetMathTFrac::draw(PainterInfo & pi, int x, int y) const
437 {
438         StyleChanger dummy(pi.base, LM_ST_SCRIPT);
439         Dimension const dim = dimension(*pi.base.bv);
440         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
441         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
442         int m = x + dim.wid / 2;
443         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.descent() - 2 - 5);
444         cell(1).draw(pi, m - dim1.width() / 2, y + dim1.ascent()  + 2 - 5);
445         pi.pain.line(x + 1, y - 5, x + dim.wid - 2, y - 5, Color_math);
446         setPosCache(pi, x, y);
447 }
448
449
450 docstring InsetMathTFrac::name() const
451 {
452         return from_ascii("tfrac");
453 }
454
455
456 void InsetMathTFrac::mathmlize(MathStream & os) const
457 {
458         os << MTag("mtfrac") << cell(0) << cell(1) << ETag("mtfrac");
459 }
460
461
462 void InsetMathTFrac::validate(LaTeXFeatures & features) const
463 {
464         features.require("amsmath");
465         InsetMathNest::validate(features);
466 }
467
468
469 /////////////////////////////////////////////////////////////////////
470 //
471 // InsetMathBinom
472 //
473 /////////////////////////////////////////////////////////////////////
474
475
476 InsetMathBinom::InsetMathBinom(Kind kind)
477         : kind_(kind)
478 {}
479
480
481 Inset * InsetMathBinom::clone() const
482 {
483         return new InsetMathBinom(*this);
484 }
485
486
487 int InsetMathBinom::dw(int height) const
488 {
489         int w = height / 5;
490         if (w > 15)
491                 w = 15;
492         if (w < 6)
493                 w = 6;
494         return w;
495 }
496
497
498 void InsetMathBinom::metrics(MetricsInfo & mi, Dimension & dim) const
499 {
500         FracChanger dummy(mi.base);
501         Dimension dim0, dim1;
502         cell(0).metrics(mi, dim0);
503         cell(1).metrics(mi, dim1);
504         dim.asc = dim0.height() + 4 + 5;
505         dim.des = dim1.height() + 4 - 5;
506         dim.wid = max(dim0.width(), dim1.wid) + 2 * dw(dim.height()) + 4;
507         metricsMarkers2(dim);
508 }
509
510
511 void InsetMathBinom::draw(PainterInfo & pi, int x, int y) const
512 {
513         Dimension const dim = dimension(*pi.base.bv);
514         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
515         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
516         docstring const bra = kind_ == BRACE ? from_ascii("{") :
517                               kind_ == BRACK ? from_ascii("[") : from_ascii("(");
518         docstring const ket = kind_ == BRACE ? from_ascii("}") :
519                               kind_ == BRACK ? from_ascii("]") : from_ascii(")");
520         int m = x + dim.width() / 2;
521         FracChanger dummy(pi.base);
522         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.des - 3 - 5);
523         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 3 - 5);
524         mathed_draw_deco(pi, x, y - dim.ascent(), dw(dim.height()), dim.height(), bra);
525         mathed_draw_deco(pi, x + dim.width() - dw(dim.height()), y - dim.ascent(),
526                 dw(dim.height()), dim.height(), ket);
527         drawMarkers2(pi, x, y);
528 }
529
530
531 bool InsetMathBinom::extraBraces() const
532 {
533         return kind_ == CHOOSE || kind_ == BRACE || kind_ == BRACK;
534 }
535
536
537 void InsetMathBinom::write(WriteStream & os) const
538 {
539         MathEnsurer ensurer(os);
540         switch (kind_) {
541         case BINOM:
542                 os << "\\binom{" << cell(0) << "}{" << cell(1) << '}';
543                 break;
544         case CHOOSE:
545                 os << '{' << cell(0) << " \\choose " << cell(1) << '}';
546                 break;
547         case BRACE:
548                 os << '{' << cell(0) << " \\brace " << cell(1) << '}';
549                 break;
550         case BRACK:
551                 os << '{' << cell(0) << " \\brack " << cell(1) << '}';
552                 break;
553         }
554 }
555
556
557 void InsetMathBinom::normalize(NormalStream & os) const
558 {
559         os << "[binom " << cell(0) << ' ' << cell(1) << ']';
560 }
561
562
563 void InsetMathBinom::validate(LaTeXFeatures & features) const
564 {
565         if (kind_ == BINOM)
566                 features.require("binom");
567         InsetMathNest::validate(features);
568 }
569
570
571 /////////////////////////////////////////////////////////////////////
572 //
573 // InsetMathDBinom
574 //
575 /////////////////////////////////////////////////////////////////////
576
577 Inset * InsetMathDBinom::clone() const
578 {
579         return new InsetMathDBinom(*this);
580 }
581
582
583 int InsetMathDBinom::dw(int height) const
584 {
585         int w = height / 5;
586         if (w > 15)
587                 w = 15;
588         if (w < 6)
589                 w = 6;
590         return w;
591 }
592
593
594 void InsetMathDBinom::metrics(MetricsInfo & mi, Dimension & dim) const
595 {
596         Dimension dim0, dim1;
597         cell(0).metrics(mi, dim0);
598         cell(1).metrics(mi, dim1);
599         dim.asc = dim0.height() + 4 + 5;
600         dim.des = dim1.height() + 4 - 5;
601         dim.wid = max(dim0.width(), dim1.wid) + 2 * dw(dim.height()) + 4;
602         metricsMarkers2(dim);
603 }
604
605
606 void InsetMathDBinom::draw(PainterInfo & pi, int x, int y) const
607 {
608         Dimension const dim = dimension(*pi.base.bv);
609         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
610         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
611         int m = x + dim.width() / 2;
612         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.des - 3 - 5);
613         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 3 - 5);
614         mathed_draw_deco(pi, x, y - dim.ascent(), dw(dim.height()), dim.height(), from_ascii("("));
615         mathed_draw_deco(pi, x + dim.width() - dw(dim.height()), y - dim.ascent(),
616                 dw(dim.height()), dim.height(), from_ascii(")"));
617         drawMarkers2(pi, x, y);
618 }
619
620
621 docstring InsetMathDBinom::name() const
622 {
623         return from_ascii("dbinom");
624 }
625
626 void InsetMathDBinom::mathmlize(MathStream & os) const
627 {
628         os << MTag("mdbinom") << cell(0) << cell(1) << ETag("mdbinom");
629 }
630
631 void InsetMathDBinom::validate(LaTeXFeatures & features) const
632 {
633         features.require("amsmath");
634         InsetMathNest::validate(features);
635 }
636
637
638 /////////////////////////////////////////////////////////////////////
639 //
640 // InsetMathTBinom
641 //
642 /////////////////////////////////////////////////////////////////////
643
644 Inset * InsetMathTBinom::clone() const
645 {
646         return new InsetMathTBinom(*this);
647 }
648
649
650 int InsetMathTBinom::dw(int height) const
651 {
652         int w = height / 5;
653         if (w > 15)
654                 w = 15;
655         if (w < 6)
656                 w = 6;
657         return w;
658 }
659
660
661 void InsetMathTBinom::metrics(MetricsInfo & mi, Dimension & dim) const
662 {
663         StyleChanger dummy(mi.base, LM_ST_SCRIPT);
664         Dimension dim0, dim1;
665         cell(0).metrics(mi, dim0);
666         cell(1).metrics(mi, dim1);
667         dim.asc = dim0.height() + 4 + 5;
668         dim.des = dim1.height() + 4 - 5;
669         dim.wid = max(dim0.width(), dim1.wid) + 2 * dw(dim.height()) + 4;
670         metricsMarkers2(dim);
671 }
672
673
674 void InsetMathTBinom::draw(PainterInfo & pi, int x, int y) const
675 {
676         StyleChanger dummy(pi.base, LM_ST_SCRIPT);
677         Dimension const dim = dimension(*pi.base.bv);
678         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
679         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
680         int m = x + dim.width() / 2;
681         cell(0).draw(pi, m - dim0.width() / 2, y - dim0.des - 3 - 5);
682         cell(1).draw(pi, m - dim1.wid / 2, y + dim1.asc  + 3 - 5);
683         mathed_draw_deco(pi, x, y - dim.ascent(), dw(dim.height()), dim.height(), from_ascii("("));
684         mathed_draw_deco(pi, x + dim.width() - dw(dim.height()), y - dim.ascent(),
685                 dw(dim.height()), dim.height(), from_ascii(")"));
686         drawMarkers2(pi, x, y);
687 }
688
689
690 docstring InsetMathTBinom::name() const
691 {
692         return from_ascii("tbinom");
693 }
694
695 void InsetMathTBinom::mathmlize(MathStream & os) const
696 {
697         os << MTag("mtbinom") << cell(0) << cell(1) << ETag("mtbinom");
698 }
699
700 void InsetMathTBinom::validate(LaTeXFeatures & features) const
701 {
702         features.require("amsmath");
703         InsetMathNest::validate(features);
704 }
705
706 } // namespace lyx