]> git.lyx.org Git - lyx.git/blob - src/mathed/MathParser.cpp
Combine OutlineIn and OutlineOut blocks
[lyx.git] / src / mathed / MathParser.cpp
1 /**
2  * \file MathParser.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 /*
12
13 If someone desperately needs partial "structures" (such as a few
14 cells of an array inset or similar) (s)he could uses the
15 following hack as starting point to write some macros:
16
17   \newif\ifcomment
18   \commentfalse
19   \ifcomment
20           \def\makeamptab{\catcode`\&=4\relax}
21           \def\makeampletter{\catcode`\&=11\relax}
22     \def\b{\makeampletter\expandafter\makeamptab\bi}
23     \long\def\bi#1\e{}
24   \else
25     \def\b{}\def\e{}
26   \fi
27   ...
28
29   \[\begin{array}{ccc}
30 1
31 &
32
33   \end{array}\]
34
35 */
36
37
38 #include <config.h>
39
40 #include "MathParser.h"
41
42 #include "InsetMathArray.h"
43 #include "InsetMathBig.h"
44 #include "InsetMathBrace.h"
45 #include "InsetMathCancelto.h"
46 #include "InsetMathChar.h"
47 #include "InsetMathColor.h"
48 #include "InsetMathComment.h"
49 #include "InsetMathDelim.h"
50 #include "InsetMathEnsureMath.h"
51 #include "InsetMathEnv.h"
52 #include "InsetMathFrac.h"
53 #include "InsetMathKern.h"
54 #include "MathMacro.h"
55 #include "InsetMathPar.h"
56 #include "InsetMathRef.h"
57 #include "InsetMathRoot.h"
58 #include "InsetMathScript.h"
59 #include "InsetMathSideset.h"
60 #include "InsetMathSpace.h"
61 #include "InsetMathSplit.h"
62 #include "InsetMathSqrt.h"
63 #include "InsetMathStackrel.h"
64 #include "InsetMathString.h"
65 #include "InsetMathTabular.h"
66 #include "MathMacroTemplate.h"
67 #include "MathFactory.h"
68 #include "MathMacroArgument.h"
69 #include "MathSupport.h"
70
71 #include "Buffer.h"
72 #include "BufferParams.h"
73 #include "Encoding.h"
74 #include "Lexer.h"
75
76 #include "support/debug.h"
77 #include "support/convert.h"
78 #include "support/docstream.h"
79
80 #include <sstream>
81
82 //#define FILEDEBUG
83
84 using namespace std;
85
86 namespace lyx {
87
88 namespace {
89
90 InsetMath::mode_type asMode(InsetMath::mode_type oldmode, docstring const & str)
91 {
92         //lyxerr << "handling mode: '" << str << "'" << endl;
93         if (str == "mathmode")
94                 return InsetMath::MATH_MODE;
95         if (str == "textmode" || str == "forcetext")
96                 return InsetMath::TEXT_MODE;
97         return oldmode;
98 }
99
100
101 bool stared(docstring const & s)
102 {
103         size_t const n = s.size();
104         return n && s[n - 1] == '*';
105 }
106
107
108 docstring const repl(docstring const & oldstr, char_type const c,
109                      docstring const & macro, bool textmode = false)
110 {
111         docstring newstr;
112         size_t i;
113         size_t j;
114
115         for (i = 0, j = 0; i < oldstr.size(); ++i) {
116                 if (c == oldstr[i]) {
117                         newstr.append(oldstr, j, i - j);
118                         newstr.append(macro);
119                         j = i + 1;
120                         if (macro.size() > 2 && j < oldstr.size())
121                                 newstr += (textmode && oldstr[j] == ' ' ? '\\' : ' ');
122                 }
123         }
124
125         // Any substitution?
126         if (j == 0)
127                 return oldstr;
128
129         newstr.append(oldstr, j, i - j);
130         return newstr;
131 }
132
133
134 docstring escapeSpecialChars(docstring const & str, bool textmode)
135 {
136         docstring const backslash = textmode ? from_ascii("\\textbackslash")
137                                              : from_ascii("\\backslash");
138         docstring const caret = textmode ? from_ascii("\\textasciicircum")
139                                          : from_ascii("\\mathcircumflex");
140         docstring const tilde = textmode ? from_ascii("\\textasciitilde")
141                                          : from_ascii("\\sim");
142
143         return repl(repl(repl(repl(repl(repl(repl(repl(repl(repl(str,
144                         '\\', backslash, textmode),
145                         '^', caret, textmode),
146                         '~', tilde, textmode),
147                         '_', from_ascii("\\_")),
148                         '$', from_ascii("\\$")),
149                         '#', from_ascii("\\#")),
150                         '&', from_ascii("\\&")),
151                         '%', from_ascii("\\%")),
152                         '{', from_ascii("\\{")),
153                         '}', from_ascii("\\}"));
154 }
155
156
157 /*!
158  * Add the row \p cellrow to \p grid.
159  * \returns wether the row could be added. Adding a row can fail for
160  * environments like "equation" that have a fixed number of rows.
161  */
162 bool addRow(InsetMathGrid & grid, InsetMathGrid::row_type & cellrow,
163             docstring const & vskip, bool allow_newpage_ = true)
164 {
165         ++cellrow;
166         if (cellrow == grid.nrows()) {
167                 //lyxerr << "adding row " << cellrow << endl;
168                 grid.addRow(cellrow - 1);
169                 if (cellrow == grid.nrows()) {
170                         // We can't add a row to this grid, so let's
171                         // append the content of this cell to the previous
172                         // one.
173                         // This does not happen in well formed .lyx files,
174                         // but LyX versions 1.3.x and older could create
175                         // such files and tex2lyx can still do that.
176                         --cellrow;
177                         lyxerr << "ignoring extra row";
178                         if (!vskip.empty())
179                                 lyxerr << " with extra space " << to_utf8(vskip);
180                         if (!allow_newpage_)
181                                 lyxerr << " with no page break allowed";
182                         lyxerr << '.' << endl;
183                         return false;
184                 }
185         }
186         grid.vcrskip(Length(to_utf8(vskip)), cellrow - 1);
187         grid.rowinfo(cellrow - 1).allow_newpage_ = allow_newpage_;
188         return true;
189 }
190
191
192 /*!
193  * Add the column \p cellcol to \p grid.
194  * \returns wether the column could be added. Adding a column can fail for
195  * environments like "eqnarray" that have a fixed number of columns.
196  */
197 bool addCol(InsetMathGrid & grid, InsetMathGrid::col_type & cellcol)
198 {
199         ++cellcol;
200         if (cellcol == grid.ncols()) {
201                 //lyxerr << "adding column " << cellcol << endl;
202                 grid.addCol(cellcol);
203                 if (cellcol == grid.ncols()) {
204                         // We can't add a column to this grid, so let's
205                         // append the content of this cell to the previous
206                         // one.
207                         // This does not happen in well formed .lyx files,
208                         // but LyX versions 1.3.x and older could create
209                         // such files and tex2lyx can still do that.
210                         --cellcol;
211                         lyxerr << "ignoring extra column." << endl;
212                         return false;
213                 }
214         }
215         return true;
216 }
217
218
219 /*!
220  * Check whether the last row is empty and remove it if yes.
221  * Otherwise the following code
222  * \verbatim
223 \begin{array}{|c|c|}
224 \hline
225 1 & 2 \\ \hline
226 3 & 4 \\ \hline
227 \end{array}
228  * \endverbatim
229  * will result in a grid with 3 rows (+ the dummy row that is always present),
230  * because the last '\\' opens a new row.
231  * Note that this is only needed for inner-hull grid types, such as array
232  * or aligned, but not for outer-hull grid types, such as eqnarray or align.
233  */
234 void delEmptyLastRow(InsetMathGrid & grid)
235 {
236         InsetMathGrid::row_type const row = grid.nrows() - 1;
237         for (InsetMathGrid::col_type col = 0; col < grid.ncols(); ++col) {
238                 if (!grid.cell(grid.index(row, col)).empty())
239                         return;
240         }
241         // Copy the row information of the empty row (which would contain the
242         // last hline in the example above) to the dummy row and delete the
243         // empty row.
244         grid.rowinfo(row + 1) = grid.rowinfo(row);
245         grid.delRow(row);
246 }
247
248
249 /*!
250  * Tell whether the environment name corresponds to an inner-hull grid type.
251  */
252 bool innerHull(docstring const & name)
253 {
254         // For [bB]matrix, [vV]matrix, and pmatrix we can check the suffix only
255         return name == "array" || name == "cases" || name == "aligned"
256                 || name == "alignedat" || name == "gathered" || name == "split"
257                 || name == "subarray" || name == "tabular" || name == "matrix"
258                 || name == "smallmatrix" || name.substr(1) == "matrix";
259 }
260
261
262 // These are TeX's catcodes
263 enum CatCode {
264         catEscape,     // 0    backslash
265         catBegin,      // 1    {
266         catEnd,        // 2    }
267         catMath,       // 3    $
268         catAlign,      // 4    &
269         catNewline,    // 5    ^^M
270         catParameter,  // 6    #
271         catSuper,      // 7    ^
272         catSub,        // 8    _
273         catIgnore,     // 9
274         catSpace,      // 10   space
275         catLetter,     // 11   a-zA-Z
276         catOther,      // 12   none of the above
277         catActive,     // 13   ~
278         catComment,    // 14   %
279         catInvalid     // 15   <delete>
280 };
281
282 CatCode theCatcode[128];
283
284
285 inline CatCode catcode(char_type c)
286 {
287         /* The only characters that are not catOther lie in the pure ASCII
288          * range. Therefore theCatcode has only 128 entries.
289          * TeX itself deals with 8bit characters, so if needed this table
290          * could be enlarged to 256 entries.
291          * Any larger value does not make sense, since the fact that we use
292          * unicode internally does not change Knuth's TeX engine.
293          * Apart from that a table for the full 21bit UCS4 range would waste
294          * too much memory. */
295         if (c >= 128)
296                 return catOther;
297
298         return theCatcode[c];
299 }
300
301
302 enum {
303         FLAG_ALIGN      = 1 << 0,  //  next & or \\ ends the parsing process
304         FLAG_BRACE_LAST = 1 << 1,  //  next closing brace ends the parsing
305         FLAG_RIGHT      = 1 << 2,  //  next \\right ends the parsing process
306         FLAG_END        = 1 << 3,  //  next \\end ends the parsing process
307         FLAG_BRACK_LAST = 1 << 4,  //  next closing bracket ends the parsing
308         FLAG_TEXTMODE   = 1 << 5,  //  we are in a box
309         FLAG_ITEM       = 1 << 6,  //  read a (possibly braced) token
310         FLAG_LEAVE      = 1 << 7,  //  leave the loop at the end
311         FLAG_SIMPLE     = 1 << 8,  //  next $ leaves the loop
312         FLAG_EQUATION   = 1 << 9,  //  next \] leaves the loop
313         FLAG_SIMPLE2    = 1 << 10, //  next \) leaves the loop
314         FLAG_OPTION     = 1 << 11, //  read [...] style option
315         FLAG_BRACED     = 1 << 12  //  read {...} style argument
316 };
317
318
319 //
320 // Helper class for parsing
321 //
322
323 class Token {
324 public:
325         ///
326         Token() : cs_(), char_(0), cat_(catIgnore) {}
327         ///
328         Token(char_type c, CatCode cat) : cs_(), char_(c), cat_(cat) {}
329         ///
330         explicit Token(docstring const & cs) : cs_(cs), char_(0), cat_(catIgnore) {}
331
332         ///
333         docstring const & cs() const { return cs_; }
334         ///
335         CatCode cat() const { return cat_; }
336         ///
337         char_type character() const { return char_; }
338         ///
339         docstring asString() const { return !cs_.empty() ? cs_ : docstring(1, char_); }
340         ///
341         docstring asInput() const { return !cs_.empty() ? '\\' + cs_ : docstring(1, char_); }
342
343 private:
344         ///
345         docstring cs_;
346         ///
347         char_type char_;
348         ///
349         CatCode cat_;
350 };
351
352
353 ostream & operator<<(ostream & os, Token const & t)
354 {
355         if (!t.cs().empty()) {
356                 docstring const & cs = t.cs();
357                 // FIXME: For some strange reason, the stream operator instanciate
358                 // a new Token before outputting the contents of t.cs().
359                 // Because of this the line
360                 //     os << '\\' << cs;
361                 // below becomes recursive.
362                 // In order to avoid that we return early:
363                 if (cs == "\\")
364                         return os;
365                 os << '\\' << to_utf8(cs);
366         }
367         else if (t.cat() == catLetter)
368                 os << t.character();
369         else
370                 os << '[' << t.character() << ',' << t.cat() << ']';
371         return os;
372 }
373
374
375 class Parser {
376 public:
377         ///
378         typedef  InsetMath::mode_type mode_type;
379         ///
380         typedef  Parse::flags parse_mode;
381
382         ///
383         Parser(Lexer & lex, parse_mode mode, Buffer * buf);
384         /// Only use this for reading from .lyx file format, for the reason
385         /// see Parser::tokenize(istream &).
386         Parser(istream & is, parse_mode mode, Buffer * buf);
387         ///
388         Parser(docstring const & str, parse_mode mode, Buffer * buf);
389
390         ///
391         bool parse(MathAtom & at);
392         ///
393         bool parse(MathData & array, unsigned flags, mode_type mode);
394         ///
395         bool parse1(InsetMathGrid & grid, unsigned flags, mode_type mode,
396                 bool numbered);
397         ///
398         MathData parse(unsigned flags, mode_type mode);
399         ///
400         int lineno() const { return lineno_; }
401         ///
402         void putback();
403
404 private:
405         ///
406         void parse2(MathAtom & at, unsigned flags, mode_type mode, bool numbered);
407         /// get arg delimited by 'left' and 'right'
408         docstring getArg(char_type left, char_type right);
409         ///
410         char_type getChar();
411         ///
412         void error(string const & msg);
413         void error(docstring const & msg) { error(to_utf8(msg)); }
414         /// dump contents to screen
415         void dump() const;
416         /// Only use this for reading from .lyx file format (see
417         /// implementation for reason)
418         void tokenize(istream & is);
419         ///
420         void tokenize(docstring const & s);
421         ///
422         void skipSpaceTokens(idocstream & is, char_type c);
423         ///
424         void push_back(Token const & t);
425         ///
426         void pop_back();
427         ///
428         Token const & prevToken() const;
429         ///
430         Token const & nextToken() const;
431         ///
432         Token const & getToken();
433         /// skips spaces if any
434         void skipSpaces();
435         ///
436         void lex(docstring const & s);
437         ///
438         bool good() const;
439         ///
440         docstring parse_verbatim_item();
441         ///
442         docstring parse_verbatim_option();
443
444         ///
445         int lineno_;
446         ///
447         vector<Token> tokens_;
448         ///
449         unsigned pos_;
450         /// Stack of active environments
451         vector<docstring> environments_;
452         ///
453         parse_mode mode_;
454         ///
455         bool success_;
456         ///
457         Buffer * buffer_;
458 };
459
460
461 Parser::Parser(Lexer & lexer, parse_mode mode, Buffer * buf)
462         : lineno_(lexer.lineNumber()), pos_(0), mode_(mode), success_(true),
463           buffer_(buf)
464 {
465         tokenize(lexer.getStream());
466         lexer.eatLine();
467 }
468
469
470 Parser::Parser(istream & is, parse_mode mode, Buffer * buf)
471         : lineno_(0), pos_(0), mode_(mode), success_(true), buffer_(buf)
472 {
473         tokenize(is);
474 }
475
476
477 Parser::Parser(docstring const & str, parse_mode mode, Buffer * buf)
478         : lineno_(0), pos_(0), mode_(mode), success_(true), buffer_(buf)
479 {
480         tokenize(str);
481 }
482
483
484 void Parser::push_back(Token const & t)
485 {
486         tokens_.push_back(t);
487 }
488
489
490 void Parser::pop_back()
491 {
492         tokens_.pop_back();
493 }
494
495
496 Token const & Parser::prevToken() const
497 {
498         static const Token dummy;
499         return pos_ > 0 ? tokens_[pos_ - 1] : dummy;
500 }
501
502
503 Token const & Parser::nextToken() const
504 {
505         static const Token dummy;
506         return good() ? tokens_[pos_] : dummy;
507 }
508
509
510 Token const & Parser::getToken()
511 {
512         static const Token dummy;
513         //lyxerr << "looking at token " << tokens_[pos_] << " pos: " << pos_ << endl;
514         return good() ? tokens_[pos_++] : dummy;
515 }
516
517
518 void Parser::skipSpaces()
519 {
520         while (nextToken().cat() == catSpace || nextToken().cat() == catNewline)
521                 getToken();
522 }
523
524
525 void Parser::putback()
526 {
527         --pos_;
528 }
529
530
531 bool Parser::good() const
532 {
533         return pos_ < tokens_.size();
534 }
535
536
537 char_type Parser::getChar()
538 {
539         if (!good()) {
540                 error("The input stream is not well...");
541                 return 0;
542         }
543         return tokens_[pos_++].character();
544 }
545
546
547 docstring Parser::getArg(char_type left, char_type right)
548 {
549         docstring result;
550         skipSpaces();
551
552         if (!good())
553                 return result;
554
555         char_type c = getChar();
556
557         if (c != left)
558                 putback();
559         else
560                 while ((c = getChar()) != right && good())
561                         result += c;
562
563         return result;
564 }
565
566
567 void Parser::skipSpaceTokens(idocstream & is, char_type c)
568 {
569         // skip trailing spaces
570         while (catcode(c) == catSpace || catcode(c) == catNewline)
571                 if (!is.get(c))
572                         break;
573         //lyxerr << "putting back: " << c << endl;
574         is.putback(c);
575 }
576
577
578 void Parser::tokenize(istream & is)
579 {
580         // eat everything up to the next \end_inset or end of stream
581         // and store it in s for further tokenization
582         string s;
583         char c;
584         while (is.get(c)) {
585                 s += c;
586                 if (s.size() >= 10 && s.substr(s.size() - 10) == "\\end_inset") {
587                         s = s.substr(0, s.size() - 10);
588                         break;
589                 }
590         }
591         // Remove the space after \end_inset
592         if (is.get(c) && c != ' ')
593                 is.unget();
594
595         // tokenize buffer
596         tokenize(from_utf8(s));
597 }
598
599
600 void Parser::tokenize(docstring const & buffer)
601 {
602         idocstringstream is(mode_ & Parse::VERBATIM
603                         ? escapeSpecialChars(buffer, mode_ & Parse::TEXTMODE)
604                         : buffer, ios::in | ios::binary);
605
606         char_type c;
607         while (is.get(c)) {
608                 //lyxerr << "reading c: " << c << endl;
609
610                 switch (catcode(c)) {
611                         case catNewline: {
612                                 ++lineno_;
613                                 is.get(c);
614                                 if (catcode(c) == catNewline)
615                                         ; //push_back(Token("par"));
616                                 else {
617                                         push_back(Token('\n', catNewline));
618                                         is.putback(c);
619                                 }
620                                 break;
621                         }
622
623 /*
624                         case catComment: {
625                                 while (is.get(c) && catcode(c) != catNewline)
626                                         ;
627                                 ++lineno_;
628                                 break;
629                         }
630 */
631
632                         case catEscape: {
633                                 is.get(c);
634                                 if (!is) {
635                                         error("unexpected end of input");
636                                 } else {
637                                         if (c == '\n')
638                                                 c = ' ';
639                                         docstring s(1, c);
640                                         if (catcode(c) == catLetter) {
641                                                 // collect letters
642                                                 while (is.get(c) && catcode(c) == catLetter)
643                                                         s += c;
644                                                 skipSpaceTokens(is, c);
645                                         }
646                                         push_back(Token(s));
647                                 }
648                                 break;
649                         }
650
651                         case catSuper:
652                         case catSub: {
653                                 push_back(Token(c, catcode(c)));
654                                 is.get(c);
655                                 skipSpaceTokens(is, c);
656                                 break;
657                         }
658
659                         case catIgnore: {
660                                 if (!(mode_ & Parse::QUIET))
661                                         lyxerr << "ignoring a char: " << int(c) << endl;
662                                 break;
663                         }
664
665                         default:
666                                 push_back(Token(c, catcode(c)));
667                 }
668         }
669
670 #ifdef FILEDEBUG
671         dump();
672 #endif
673 }
674
675
676 void Parser::dump() const
677 {
678         lyxerr << "\nTokens: ";
679         for (unsigned i = 0; i < tokens_.size(); ++i) {
680                 if (i == pos_)
681                         lyxerr << " <#> ";
682                 lyxerr << tokens_[i];
683         }
684         lyxerr << " pos: " << pos_ << endl;
685 }
686
687
688 void Parser::error(string const & msg)
689 {
690         success_ = false;
691         if (!(mode_ & Parse::QUIET)) {
692                 lyxerr << "Line ~" << lineno_ << ": Math parse error: "
693                        << msg << endl;
694                 dump();
695         }
696 }
697
698
699 bool Parser::parse(MathAtom & at)
700 {
701         skipSpaces();
702         MathData ar(buffer_);
703         parse(ar, false, InsetMath::UNDECIDED_MODE);
704         if (ar.size() != 1 || ar.front()->getType() == hullNone) {
705                 if (!(mode_ & Parse::QUIET))
706                         lyxerr << "unusual contents found: " << ar << endl;
707                 at = MathAtom(new InsetMathPar(buffer_, ar));
708                 //if (at->nargs() > 0)
709                 //      at.nucleus()->cell(0) = ar;
710                 //else
711                 //      lyxerr << "unusual contents found: " << ar << endl;
712                 success_ = false;
713         } else
714                 at = ar[0];
715         return success_;
716 }
717
718
719 docstring Parser::parse_verbatim_option()
720 {
721         skipSpaces();
722         docstring res;
723         if (nextToken().character() == '[') {
724                 Token t = getToken();
725                 for (Token t = getToken(); t.character() != ']' && good(); t = getToken()) {
726                         if (t.cat() == catBegin) {
727                                 putback();
728                                 res += '{' + parse_verbatim_item() + '}';
729                         } else
730                                 res += t.asInput();
731                 }
732         }
733         return res;
734 }
735
736
737 docstring Parser::parse_verbatim_item()
738 {
739         skipSpaces();
740         docstring res;
741         if (nextToken().cat() == catBegin) {
742                 Token t = getToken();
743                 for (Token t = getToken(); t.cat() != catEnd && good(); t = getToken()) {
744                         if (t.cat() == catBegin) {
745                                 putback();
746                                 res += '{' + parse_verbatim_item() + '}';
747                         }
748                         else
749                                 res += t.asInput();
750                 }
751         }
752         return res;
753 }
754
755
756 MathData Parser::parse(unsigned flags, mode_type mode)
757 {
758         MathData ar(buffer_);
759         parse(ar, flags, mode);
760         return ar;
761 }
762
763
764 bool Parser::parse(MathData & array, unsigned flags, mode_type mode)
765 {
766         InsetMathGrid grid(buffer_, 1, 1);
767         parse1(grid, flags, mode, false);
768         array = grid.cell(0);
769         return success_;
770 }
771
772
773 void Parser::parse2(MathAtom & at, const unsigned flags, const mode_type mode,
774         const bool numbered)
775 {
776         parse1(*(at.nucleus()->asGridInset()), flags, mode, numbered);
777 }
778
779
780 bool Parser::parse1(InsetMathGrid & grid, unsigned flags,
781         const mode_type mode, const bool numbered)
782 {
783         int limits = 0;
784         InsetMathGrid::row_type cellrow = 0;
785         InsetMathGrid::col_type cellcol = 0;
786         MathData * cell = &grid.cell(grid.index(cellrow, cellcol));
787         Buffer * buf = buffer_;
788
789         if (grid.asHullInset())
790                 grid.asHullInset()->numbered(cellrow, numbered);
791
792         //dump();
793         //lyxerr << " flags: " << flags << endl;
794         //lyxerr << " mode: " << mode  << endl;
795         //lyxerr << "grid: " << grid << endl;
796
797         while (good()) {
798                 Token const & t = getToken();
799
800 #ifdef FILEDEBUG
801                 lyxerr << "t: " << t << " flags: " << flags << endl;
802                 lyxerr << "mode: " << mode  << endl;
803                 cell->dump();
804                 lyxerr << endl;
805 #endif
806
807                 if (flags & FLAG_ITEM) {
808
809                         if (t.cat() == catBegin) {
810                                 // skip the brace and collect everything to the next matching
811                                 // closing brace
812                                 parse1(grid, FLAG_BRACE_LAST, mode, numbered);
813                                 return success_;
814                         }
815
816                         // handle only this single token, leave the loop if done
817                         flags = FLAG_LEAVE;
818                 }
819
820
821                 if (flags & FLAG_BRACED) {
822                         if (t.cat() == catSpace)
823                                 continue;
824
825                         if (t.cat() != catBegin) {
826                                 error("opening brace expected");
827                                 return success_;
828                         }
829
830                         // skip the brace and collect everything to the next matching
831                         // closing brace
832                         flags = FLAG_BRACE_LAST;
833                 }
834
835
836                 if (flags & FLAG_OPTION) {
837                         if (t.cat() == catOther && t.character() == '[') {
838                                 MathData ar;
839                                 parse(ar, FLAG_BRACK_LAST, mode);
840                                 cell->append(ar);
841                         } else {
842                                 // no option found, put back token and we are done
843                                 putback();
844                         }
845                         return success_;
846                 }
847
848                 //
849                 // cat codes
850                 //
851                 if (t.cat() == catMath) {
852                         if (mode != InsetMath::MATH_MODE) {
853                                 // we are inside some text mode thingy, so opening new math is allowed
854                                 Token const & n = getToken();
855                                 if (n.cat() == catMath) {
856                                         // TeX's $$...$$ syntax for displayed math
857                                         if (mode == InsetMath::UNDECIDED_MODE) {
858                                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullEquation)));
859                                                 parse2(cell->back(), FLAG_SIMPLE, InsetMath::MATH_MODE, false);
860                                                 getToken(); // skip the second '$' token
861                                         } else {
862                                                 // This is not an outer hull and display math is
863                                                 // not allowed inside text mode environments.
864                                                 error("bad math environment $$");
865                                                 break;
866                                         }
867                                 } else {
868                                         // simple $...$  stuff
869                                         putback();
870                                         if (mode == InsetMath::UNDECIDED_MODE) {
871                                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullSimple)));
872                                                 parse2(cell->back(), FLAG_SIMPLE, InsetMath::MATH_MODE, false);
873                                         } else {
874                                                 // Don't create nested math hulls (bug #5392)
875                                                 cell->push_back(MathAtom(new InsetMathEnsureMath(buf)));
876                                                 parse(cell->back().nucleus()->cell(0), FLAG_SIMPLE, InsetMath::MATH_MODE);
877                                         }
878                                 }
879                         }
880
881                         else if (flags & FLAG_SIMPLE) {
882                                 // this is the end of the formula
883                                 return success_;
884                         }
885
886                         else {
887                                 Token const & n = getToken();
888                                 if (n.cat() == catMath) {
889                                         error("something strange in the parser");
890                                         break;
891                                 } else {
892                                         // This is inline math ($...$), but the parser thinks we are
893                                         // already in math mode and latex would issue an error, unless we
894                                         // are inside a text mode user macro. We have no way to tell, so
895                                         // let's play safe by using \ensuremath, as it will work in any case.
896                                         putback();
897                                         cell->push_back(MathAtom(new InsetMathEnsureMath(buf)));
898                                         parse(cell->back().nucleus()->cell(0), FLAG_SIMPLE, InsetMath::MATH_MODE);
899                                 }
900                         }
901                 }
902
903                 else if (t.cat() == catLetter)
904                         cell->push_back(MathAtom(new InsetMathChar(t.character())));
905
906                 else if (t.cat() == catSpace && mode != InsetMath::MATH_MODE) {
907                         if (cell->empty() || cell->back()->getChar() != ' ')
908                                 cell->push_back(MathAtom(new InsetMathChar(t.character())));
909                 }
910
911                 else if (t.cat() == catNewline && mode != InsetMath::MATH_MODE) {
912                         if (cell->empty() || cell->back()->getChar() != ' ')
913                                 cell->push_back(MathAtom(new InsetMathChar(' ')));
914                 }
915
916                 else if (t.cat() == catParameter) {
917                         Token const & n = getToken();
918                         cell->push_back(MathAtom(new MathMacroArgument(n.character()-'0')));
919                 }
920
921                 else if (t.cat() == catActive)
922                         cell->push_back(MathAtom(new InsetMathSpace(string(1, t.character()), "")));
923
924                 else if (t.cat() == catBegin) {
925                         MathData ar;
926                         parse(ar, FLAG_BRACE_LAST, mode);
927                         // do not create a BraceInset if they were written by LyX
928                         // this helps to keep the annoyance of  "a choose b"  to a minimum
929                         if (ar.size() == 1 && ar[0]->extraBraces())
930                                 cell->append(ar);
931                         else
932                                 cell->push_back(MathAtom(new InsetMathBrace(ar)));
933                 }
934
935                 else if (t.cat() == catEnd) {
936                         if (flags & FLAG_BRACE_LAST)
937                                 return success_;
938                         error("found '}' unexpectedly");
939                         //LASSERT(false, /**/);
940                         //add(cell, '}', LM_TC_TEX);
941                 }
942
943                 else if (t.cat() == catAlign) {
944                         //lyxerr << " column now " << (cellcol + 1)
945                         //       << " max: " << grid.ncols() << endl;
946                         if (flags & FLAG_ALIGN)
947                                 return success_;
948                         if (addCol(grid, cellcol))
949                                 cell = &grid.cell(grid.index(cellrow, cellcol));
950                 }
951
952                 else if (t.cat() == catSuper || t.cat() == catSub) {
953                         bool up = (t.cat() == catSuper);
954                         // we need no new script inset if the last thing was a scriptinset,
955                         // which has that script already not the same script already
956                         if (cell->empty())
957                                 cell->push_back(MathAtom(new InsetMathScript(buf, up)));
958                         else if (cell->back()->asScriptInset() &&
959                                         !cell->back()->asScriptInset()->has(up))
960                                 cell->back().nucleus()->asScriptInset()->ensure(up);
961                         else if (cell->back()->asScriptInset())
962                                 cell->push_back(MathAtom(new InsetMathScript(buf, up)));
963                         else
964                                 cell->back() = MathAtom(new InsetMathScript(buf, cell->back(), up));
965                         InsetMathScript * p = cell->back().nucleus()->asScriptInset();
966                         // special handling of {}-bases
967                         // Here we could remove the brace inset for things
968                         // like {a'}^2 and add the braces back in
969                         // InsetMathScript::write().
970                         // We do not do it, since it is not possible to detect
971                         // reliably whether the braces are needed because the
972                         // nucleus contains more than one symbol, or whether
973                         // they are needed for unknown commands like \xx{a}_0
974                         // or \yy{a}{b}_0. This was done in revision 14819
975                         // in an unreliable way. See this thread
976                         // http://www.mail-archive.com/lyx-devel%40lists.lyx.org/msg104917.html
977                         // for more details.
978                         // However, we remove empty braces because they look
979                         // ugly on screen and we are sure that they were added
980                         // by the write() method (and will be re-added on save).
981                         if (p->nuc().size() == 1 &&
982                             p->nuc().back()->asBraceInset() &&
983                             p->nuc().back()->asBraceInset()->cell(0).empty())
984                                 p->nuc().erase(0);
985
986                         parse(p->cell(p->idxOfScript(up)), FLAG_ITEM, mode);
987                         if (limits) {
988                                 p->limits(limits);
989                                 limits = 0;
990                         }
991                 }
992
993                 else if (t.character() == ']' && (flags & FLAG_BRACK_LAST)) {
994                         //lyxerr << "finished reading option" << endl;
995                         return success_;
996                 }
997
998                 else if (t.cat() == catOther) {
999                         char_type c = t.character();
1000                         if (isAsciiOrMathAlpha(c)
1001                             || mode_ & Parse::VERBATIM
1002                             || !(mode_ & Parse::USETEXT)
1003                             || mode == InsetMath::TEXT_MODE) {
1004                                 cell->push_back(MathAtom(new InsetMathChar(c)));
1005                         } else {
1006                                 MathAtom at = createInsetMath("text", buf);
1007                                 at.nucleus()->cell(0).push_back(MathAtom(new InsetMathChar(c)));
1008                                 while (nextToken().cat() == catOther
1009                                        && !isAsciiOrMathAlpha(nextToken().character())) {
1010                                         c = getToken().character();
1011                                         at.nucleus()->cell(0).push_back(MathAtom(new InsetMathChar(c)));
1012                                 }
1013                                 cell->push_back(at);
1014                         }
1015                 }
1016
1017                 else if (t.cat() == catComment) {
1018                         docstring s;
1019                         while (good()) {
1020                                 Token const & t = getToken();
1021                                 if (t.cat() == catNewline)
1022                                         break;
1023                                 s += t.asInput();
1024                         }
1025                         cell->push_back(MathAtom(new InsetMathComment(buf, s)));
1026                         skipSpaces();
1027                 }
1028
1029                 //
1030                 // control sequences
1031                 //
1032
1033                 else if (t.cs() == "lyxlock") {
1034                         if (!cell->empty())
1035                                 cell->back().nucleus()->lock(true);
1036                 }
1037
1038                 else if ((t.cs() == "global" && nextToken().cs() == "def") ||
1039                          t.cs() == "def") {
1040                         if (t.cs() == "global")
1041                                 getToken();
1042                         
1043                         // get name
1044                         docstring name = getToken().cs();
1045                         
1046                         // read parameters
1047                         int nargs = 0;
1048                         docstring pars;
1049                         while (good() && nextToken().cat() != catBegin) {
1050                                 pars += getToken().cs();
1051                                 ++nargs;
1052                         }
1053                         nargs /= 2;
1054                         
1055                         // read definition
1056                         MathData def;
1057                         parse(def, FLAG_ITEM, InsetMath::UNDECIDED_MODE);
1058                         
1059                         // is a version for display attached?
1060                         skipSpaces();
1061                         MathData display;
1062                         if (nextToken().cat() == catBegin)
1063                                 parse(display, FLAG_ITEM, InsetMath::MATH_MODE);
1064                         
1065                         cell->push_back(MathAtom(new MathMacroTemplate(buf,
1066                                 name, nargs, 0, MacroTypeDef,
1067                                 vector<MathData>(), def, display)));
1068
1069                         if (buf && (mode_ & Parse::TRACKMACRO))
1070                                 buf->usermacros.insert(name);
1071                 }
1072                 
1073                 else if (t.cs() == "newcommand" ||
1074                          t.cs() == "renewcommand" ||
1075                          t.cs() == "newlyxcommand") {
1076                         // get name
1077                         if (getToken().cat() != catBegin) {
1078                                 error("'{' in \\newcommand expected (1) ");
1079                                 return success_;
1080                         }
1081                         docstring name = getToken().cs();
1082                         if (getToken().cat() != catEnd) {
1083                                 error("'}' in \\newcommand expected");
1084                                 return success_;
1085                         }
1086                                 
1087                         // get arity
1088                         docstring const arg = getArg('[', ']');
1089                         int nargs = 0;
1090                         if (!arg.empty())
1091                                 nargs = convert<int>(arg);
1092                                 
1093                         // optional argument given?
1094                         skipSpaces();
1095                         int optionals = 0;
1096                         vector<MathData> optionalValues;
1097                         while (nextToken().character() == '[') {
1098                                 getToken();
1099                                 optionalValues.push_back(MathData());
1100                                 parse(optionalValues[optionals], FLAG_BRACK_LAST, mode);
1101                                 ++optionals;
1102                         }
1103                         
1104                         MathData def;
1105                         parse(def, FLAG_ITEM, InsetMath::UNDECIDED_MODE);
1106                         
1107                         // is a version for display attached?
1108                         skipSpaces();
1109                         MathData display;
1110                         if (nextToken().cat() == catBegin)
1111                                 parse(display, FLAG_ITEM, InsetMath::MATH_MODE);
1112                         
1113                         cell->push_back(MathAtom(new MathMacroTemplate(buf,
1114                                 name, nargs, optionals, MacroTypeNewcommand,
1115                                 optionalValues, def, display)));
1116
1117                         if (buf && (mode_ & Parse::TRACKMACRO))
1118                                 buf->usermacros.insert(name);
1119                 }
1120                 
1121                 else if (t.cs() == "newcommandx" ||
1122                          t.cs() == "renewcommandx") {
1123                         // \newcommandx{\foo}[2][usedefault, addprefix=\global,1=default]{#1,#2}
1124                         // get name
1125                         docstring name;
1126                         if (nextToken().cat() == catBegin) {
1127                                 getToken();
1128                                 name = getToken().cs();
1129                                 if (getToken().cat() != catEnd) {
1130                                         error("'}' in \\newcommandx expected");
1131                                         return success_;
1132                                 }
1133                         } else
1134                                 name = getToken().cs();
1135                                 
1136                         // get arity
1137                         docstring const arg = getArg('[', ']');
1138                         if (arg.empty()) {
1139                                 error("[num] in \\newcommandx expected");
1140                                 return success_;
1141                         }
1142                         int nargs = convert<int>(arg);
1143                         
1144                         // get options
1145                         int optionals = 0;
1146                         vector<MathData> optionalValues;
1147                         if (nextToken().character() == '[') {
1148                                 // skip '['
1149                                 getToken();
1150                                         
1151                                 // handle 'opt=value' options, separated by ','.
1152                                 skipSpaces();
1153                                 while (nextToken().character() != ']' && good()) {
1154                                         if (nextToken().character() >= '1'
1155                                             && nextToken().character() <= '9') {
1156                                                 // optional value -> get parameter number
1157                                                 int n = getChar() - '0';
1158                                                 if (n > nargs) {
1159                                                         error("Arity of \\newcommandx too low "
1160                                                               "for given optional parameter.");
1161                                                         return success_;
1162                                                 }
1163                                                 
1164                                                 // skip '='
1165                                                 if (getToken().character() != '=') {
1166                                                         error("'=' and optional parameter value "
1167                                                               "expected for \\newcommandx");
1168                                                         return success_;
1169                                                 }
1170                                                 
1171                                                 // get value
1172                                                 int optNum = max(size_t(n), optionalValues.size());
1173                                                 optionalValues.resize(optNum);
1174                                                 optionalValues[n - 1].clear();
1175                                                 while (nextToken().character() != ']'
1176                                                        && nextToken().character() != ',') {
1177                                                         MathData data;
1178                                                         parse(data, FLAG_ITEM, InsetMath::UNDECIDED_MODE);
1179                                                         optionalValues[n - 1].append(data);
1180                                                 }
1181                                                 optionals = max(n, optionals);
1182                                         } else if (nextToken().cat() == catLetter) {
1183                                                 // we in fact ignore every non-optional
1184                                                 // parameter
1185                                                 
1186                                                 // get option name
1187                                                 docstring opt;
1188                                                 while (nextToken().cat() == catLetter)
1189                                                         opt += getChar();
1190                                         
1191                                                 // value?
1192                                                 skipSpaces();
1193                                                 MathData value;
1194                                                 if (nextToken().character() == '=') {
1195                                                         getToken();
1196                                                         while (nextToken().character() != ']'
1197                                                                 && nextToken().character() != ',')
1198                                                                 parse(value, FLAG_ITEM, 
1199                                                                       InsetMath::UNDECIDED_MODE);
1200                                                 }
1201                                         } else {
1202                                                 error("option for \\newcommandx expected");
1203                                                 return success_;
1204                                         }
1205                                         
1206                                         // skip komma
1207                                         skipSpaces();
1208                                         if (nextToken().character() == ',') {
1209                                                 getChar();
1210                                                 skipSpaces();
1211                                         } else if (nextToken().character() != ']') {
1212                                                 error("Expecting ',' or ']' in options "
1213                                                       "of \\newcommandx");
1214                                                 return success_;
1215                                         }
1216                                 }
1217                                 
1218                                 // skip ']'
1219                                 if (!good())
1220                                         return success_;
1221                                 getToken();
1222                         }
1223
1224                         // get definition
1225                         MathData def;
1226                         parse(def, FLAG_ITEM, InsetMath::UNDECIDED_MODE);
1227
1228                         // is a version for display attached?
1229                         skipSpaces();
1230                         MathData display;
1231                         if (nextToken().cat() == catBegin)
1232                                 parse(display, FLAG_ITEM, InsetMath::MATH_MODE);
1233
1234                         cell->push_back(MathAtom(new MathMacroTemplate(buf,
1235                                 name, nargs, optionals, MacroTypeNewcommandx,
1236                                 optionalValues, def, display)));
1237
1238                         if (buf && (mode_ & Parse::TRACKMACRO))
1239                                 buf->usermacros.insert(name);
1240                 }
1241
1242                 else if (t.cs() == "(") {
1243                         if (mode == InsetMath::UNDECIDED_MODE) {
1244                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullSimple)));
1245                                 parse2(cell->back(), FLAG_SIMPLE2, InsetMath::MATH_MODE, false);
1246                         } else {
1247                                 // Don't create nested math hulls (bug #5392)
1248                                 cell->push_back(MathAtom(new InsetMathEnsureMath(buf)));
1249                                 parse(cell->back().nucleus()->cell(0), FLAG_SIMPLE2, InsetMath::MATH_MODE);
1250                         }
1251                 }
1252
1253                 else if (t.cs() == "[") {
1254                         if (mode != InsetMath::UNDECIDED_MODE) {
1255                                 error("bad math environment [");
1256                                 break;
1257                         }
1258                         cell->push_back(MathAtom(new InsetMathHull(buf, hullEquation)));
1259                         parse2(cell->back(), FLAG_EQUATION, InsetMath::MATH_MODE, false);
1260                 }
1261
1262                 else if (t.cs() == "protect")
1263                         // ignore \\protect, will hopefully be re-added during output
1264                         ;
1265
1266                 else if (t.cs() == "end") {
1267                         if (flags & FLAG_END) {
1268                                 // eat environment name
1269                                 docstring const name = getArg('{', '}');
1270                                 if (environments_.empty())
1271                                         error("'found \\end{" + name +
1272                                               "}' without matching '\\begin{" +
1273                                               name + "}'");
1274                                 else if (name != environments_.back())
1275                                         error("'\\end{" + name +
1276                                               "}' does not match '\\begin{" +
1277                                               environments_.back() + "}'");
1278                                 else {
1279                                         environments_.pop_back();
1280                                         // Delete empty last row in matrix
1281                                         // like insets.
1282                                         // If you abuse InsetMathGrid for
1283                                         // non-matrix like structures you
1284                                         // probably need to refine this test.
1285                                         // Right now we only have to test for
1286                                         // single line hull insets.
1287                                         if (grid.nrows() > 1 && innerHull(name))
1288                                                 delEmptyLastRow(grid);
1289                                         return success_;
1290                                 }
1291                         } else
1292                                 error("found 'end' unexpectedly");
1293                 }
1294
1295                 else if (t.cs() == ")") {
1296                         if (flags & FLAG_SIMPLE2)
1297                                 return success_;
1298                         error("found '\\)' unexpectedly");
1299                 }
1300
1301                 else if (t.cs() == "]") {
1302                         if (flags & FLAG_EQUATION)
1303                                 return success_;
1304                         error("found '\\]' unexpectedly");
1305                 }
1306
1307                 else if (t.cs() == "\\") {
1308                         if (flags & FLAG_ALIGN)
1309                                 return success_;
1310                         bool added = false;
1311                         if (nextToken().asInput() == "*") {
1312                                 getToken();
1313                                 added = addRow(grid, cellrow, docstring(), false);
1314                         } else if (good())
1315                                 added = addRow(grid, cellrow, getArg('[', ']'));
1316                         else
1317                                 error("missing token after \\\\");
1318                         if (added) {
1319                                 cellcol = 0;
1320                                 if (grid.asHullInset())
1321                                         grid.asHullInset()->numbered(
1322                                                         cellrow, numbered);
1323                                 cell = &grid.cell(grid.index(cellrow,
1324                                                              cellcol));
1325                         }
1326                 }
1327
1328 #if 0
1329                 else if (t.cs() == "multicolumn") {
1330                         // extract column count and insert dummy cells
1331                         MathData count;
1332                         parse(count, FLAG_ITEM, mode);
1333                         int cols = 1;
1334                         if (!extractNumber(count, cols)) {
1335                                 success_ = false;
1336                                 lyxerr << " can't extract number of cells from " << count << endl;
1337                         }
1338                         // resize the table if necessary
1339                         for (int i = 0; i < cols; ++i) {
1340                                 if (addCol(grid, cellcol)) {
1341                                         cell = &grid.cell(grid.index(
1342                                                         cellrow, cellcol));
1343                                         // mark this as dummy
1344                                         grid.cellinfo(grid.index(
1345                                                 cellrow, cellcol)).dummy_ = true;
1346                                 }
1347                         }
1348                         // the last cell is the real thing, not a dummy
1349                         grid.cellinfo(grid.index(cellrow, cellcol)).dummy_ = false;
1350
1351                         // read special alignment
1352                         MathData align;
1353                         parse(align, FLAG_ITEM, mode);
1354                         //grid.cellinfo(grid.index(cellrow, cellcol)).align_ = extractString(align);
1355
1356                         // parse the remaining contents into the "real" cell
1357                         parse(*cell, FLAG_ITEM, mode);
1358                 }
1359 #endif
1360
1361                 else if (t.cs() == "limits" || t.cs() == "nolimits") {
1362                         CatCode const cat = nextToken().cat();
1363                         if (cat == catSuper || cat == catSub)
1364                                 limits = t.cs() == "limits" ? 1 : -1;
1365                         else {
1366                                 MathAtom at = createInsetMath(t.cs(), buf);
1367                                 cell->push_back(at);
1368                         }
1369                 }
1370
1371                 // \notag is the same as \nonumber if amsmath is used
1372                 else if ((t.cs() == "nonumber" || t.cs() == "notag") &&
1373                          grid.asHullInset())
1374                         grid.asHullInset()->numbered(cellrow, false);
1375
1376                 else if (t.cs() == "number" && grid.asHullInset())
1377                         grid.asHullInset()->numbered(cellrow, true);
1378
1379                 else if (t.cs() == "hline") {
1380                         grid.rowinfo(cellrow).lines_ ++;
1381                 }
1382
1383                 else if (t.cs() == "sqrt") {
1384                         MathData ar;
1385                         parse(ar, FLAG_OPTION, mode);
1386                         if (!ar.empty()) {
1387                                 cell->push_back(MathAtom(new InsetMathRoot(buf)));
1388                                 cell->back().nucleus()->cell(0) = ar;
1389                                 parse(cell->back().nucleus()->cell(1), FLAG_ITEM, mode);
1390                         } else {
1391                                 cell->push_back(MathAtom(new InsetMathSqrt(buf)));
1392                                 parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1393                         }
1394                 }
1395
1396                 else if (t.cs() == "cancelto") {
1397                         MathData ar;
1398                         parse(ar, FLAG_ITEM, mode);
1399                                 cell->push_back(MathAtom(new InsetMathCancelto(buf)));
1400                                 cell->back().nucleus()->cell(1) = ar;
1401                                 parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1402                 }
1403
1404                 else if (t.cs() == "unit") {
1405                         // Allowed formats \unit[val]{unit}
1406                         MathData ar;
1407                         parse(ar, FLAG_OPTION, mode);
1408                         if (!ar.empty()) {
1409                                 cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::UNIT)));
1410                                 cell->back().nucleus()->cell(0) = ar;
1411                                 parse(cell->back().nucleus()->cell(1), FLAG_ITEM, mode);
1412                         } else {
1413                                 cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::UNIT, 1)));
1414                                 parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1415                         }
1416                 }
1417
1418                 else if (t.cs() == "unitfrac") {
1419                         // Here allowed formats are \unitfrac[val]{num}{denom}
1420                         MathData ar;
1421                         parse(ar, FLAG_OPTION, mode);
1422                         if (!ar.empty()) {
1423                                 cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::UNITFRAC, 3)));
1424                                 cell->back().nucleus()->cell(2) = ar;
1425                         } else {
1426                                 cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::UNITFRAC)));
1427                         }
1428                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1429                         parse(cell->back().nucleus()->cell(1), FLAG_ITEM, mode);
1430                 }
1431
1432                 else if (t.cs() == "cfrac") {
1433                         // allowed formats are \cfrac[pos]{num}{denom}
1434                         docstring const arg = getArg('[', ']');
1435                         //lyxerr << "got so far: '" << arg << "'" << endl;                              
1436                                 if (arg == "l")
1437                                         cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::CFRACLEFT)));
1438                                 else if (arg == "r")
1439                                         cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::CFRACRIGHT)));
1440                                 else if (arg.empty() || arg == "c")
1441                                         cell->push_back(MathAtom(new InsetMathFrac(buf, InsetMathFrac::CFRAC)));
1442                                 else {
1443                                         error("found invalid optional argument");
1444                                         break;
1445                                 }
1446                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1447                         parse(cell->back().nucleus()->cell(1), FLAG_ITEM, mode);
1448                 }
1449
1450                 else if (t.cs() == "sideset") {
1451                         // Here allowed formats are \sideset{_{bl}^{tl}}{_{br}^{tr}}{operator}
1452                         MathData ar[2];
1453                         InsetMathScript * script[2] = {0, 0};
1454                         for (int i = 0; i < 2; ++i) {
1455                                 parse(ar[i], FLAG_ITEM, mode);
1456                                 if (ar[i].size() == 1)
1457                                         script[i] = ar[i][0].nucleus()->asScriptInset();
1458                         }
1459                         bool const hasscript[2] = {script[0] ? true : false, script[1] ? true : false};
1460                         cell->push_back(MathAtom(new InsetMathSideset(buf, hasscript[0], hasscript[1])));
1461                         if (hasscript[0]) {
1462                                 if (script[0]->hasDown())
1463                                         cell->back().nucleus()->cell(1) = script[0]->down();
1464                                 if (script[0]->hasUp())
1465                                         cell->back().nucleus()->cell(2) = script[0]->up();
1466                         } else
1467                                 cell->back().nucleus()->cell(1) = ar[0];
1468                         if (hasscript[1]) {
1469                                 if (script[1]->hasDown())
1470                                         cell->back().nucleus()->cell(2 + hasscript[0]) = script[1]->down();
1471                                 if (script[1]->hasUp())
1472                                         cell->back().nucleus()->cell(3 + hasscript[0]) = script[1]->up();
1473                         } else
1474                                 cell->back().nucleus()->cell(2 + hasscript[0]) = ar[1];
1475                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1476                 }
1477
1478                 else if (t.cs() == "stackrel") {
1479                         // Here allowed formats are \stackrel[subscript]{superscript}{operator}
1480                         MathData ar;
1481                         parse(ar, FLAG_OPTION, mode);
1482                         cell->push_back(MathAtom(new InsetMathStackrel(buf, !ar.empty())));
1483                         if (!ar.empty())
1484                                 cell->back().nucleus()->cell(2) = ar;
1485                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1486                         parse(cell->back().nucleus()->cell(1), FLAG_ITEM, mode);
1487                 }
1488
1489                 else if (t.cs() == "xrightarrow" || t.cs() == "xleftarrow") {
1490                         cell->push_back(createInsetMath(t.cs(), buf));
1491                         parse(cell->back().nucleus()->cell(1), FLAG_OPTION, mode);
1492                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1493                 }
1494
1495                 else if (t.cs() == "ref" || t.cs() == "eqref" || t.cs() == "prettyref"
1496                           || t.cs() == "pageref" || t.cs() == "vpageref" || t.cs() == "vref") {
1497                         cell->push_back(MathAtom(new InsetMathRef(buf, t.cs())));
1498                         docstring const opt = parse_verbatim_option();
1499                         docstring const ref = parse_verbatim_item();
1500                         if (!opt.empty()) {
1501                                 cell->back().nucleus()->cell(1).push_back(
1502                                         MathAtom(new InsetMathString(opt)));
1503                         }
1504                         cell->back().nucleus()->cell(0).push_back(
1505                                         MathAtom(new InsetMathString(ref)));
1506                 }
1507
1508                 else if (t.cs() == "left") {
1509                         skipSpaces();
1510                         Token const & tl = getToken();
1511                         // \| and \Vert are equivalent, and InsetMathDelim
1512                         // can't handle \|
1513                         // FIXME: fix this in InsetMathDelim itself!
1514                         docstring const l = tl.cs() == "|" ? from_ascii("Vert") : tl.asString();
1515                         MathData ar;
1516                         parse(ar, FLAG_RIGHT, mode);
1517                         if (!good())
1518                                 break;
1519                         skipSpaces();
1520                         Token const & tr = getToken();
1521                         docstring const r = tr.cs() == "|" ? from_ascii("Vert") : tr.asString();
1522                         cell->push_back(MathAtom(new InsetMathDelim(buf, l, r, ar)));
1523                 }
1524
1525                 else if (t.cs() == "right") {
1526                         if (flags & FLAG_RIGHT)
1527                                 return success_;
1528                         //lyxerr << "got so far: '" << cell << "'" << endl;
1529                         error("Unmatched right delimiter");
1530                         return success_;
1531                 }
1532
1533                 else if (t.cs() == "begin") {
1534                         docstring const name = getArg('{', '}');
1535                         
1536                         if (name.empty()) {
1537                                 success_ = false;
1538                                 error("found invalid environment");
1539                                 return success_;
1540                         }
1541                         
1542                         environments_.push_back(name);
1543
1544                         if (name == "array" || name == "subarray") {
1545                                 docstring const valign = parse_verbatim_option() + 'c';
1546                                 docstring const halign = parse_verbatim_item();
1547                                 cell->push_back(MathAtom(new InsetMathArray(buf, name,
1548                                         InsetMathGrid::guessColumns(halign), 1, (char)valign[0], halign)));
1549                                 parse2(cell->back(), FLAG_END, mode, false);
1550                         }
1551
1552                         else if (name == "tabular") {
1553                                 docstring const valign = parse_verbatim_option() + 'c';
1554                                 docstring const halign = parse_verbatim_item();
1555                                 cell->push_back(MathAtom(new InsetMathTabular(buf, name,
1556                                         InsetMathGrid::guessColumns(halign), 1, (char)valign[0], halign)));
1557                                 parse2(cell->back(), FLAG_END, InsetMath::TEXT_MODE, false);
1558                         }
1559
1560                         else if (name == "split" || name == "cases") {
1561                                 cell->push_back(createInsetMath(name, buf));
1562                                 parse2(cell->back(), FLAG_END, mode, false);
1563                         }
1564
1565                         else if (name == "alignedat") {
1566                                 docstring const valign = parse_verbatim_option() + 'c';
1567                                 // ignore this for a while
1568                                 getArg('{', '}');
1569                                 cell->push_back(MathAtom(new InsetMathSplit(buf, name, (char)valign[0])));
1570                                 parse2(cell->back(), FLAG_END, mode, false);
1571                         }
1572
1573                         else if (name == "math") {
1574                                 if (mode == InsetMath::UNDECIDED_MODE) {
1575                                         cell->push_back(MathAtom(new InsetMathHull(buf, hullSimple)));
1576                                         parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, false);
1577                                 } else {
1578                                         // Don't create nested math hulls (bug #5392)
1579                                         cell->push_back(MathAtom(new InsetMathEnsureMath(buf)));
1580                                         parse(cell->back().nucleus()->cell(0), FLAG_END, InsetMath::MATH_MODE);
1581                                 }
1582                         }
1583
1584                         else if (name == "equation" || name == "equation*"
1585                                         || name == "displaymath") {
1586                                 if (mode != InsetMath::UNDECIDED_MODE) {
1587                                         error("bad math environment " + name);
1588                                         break;
1589                                 }
1590                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullEquation)));
1591                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, (name == "equation"));
1592                         }
1593
1594                         else if (name == "eqnarray" || name == "eqnarray*") {
1595                                 if (mode != InsetMath::UNDECIDED_MODE) {
1596                                         error("bad math environment " + name);
1597                                         break;
1598                                 }
1599                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullEqnArray)));
1600                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1601                         }
1602
1603                         else if (name == "align" || name == "align*") {
1604                                 if (mode == InsetMath::UNDECIDED_MODE) {
1605                                         cell->push_back(MathAtom(new InsetMathHull(buf, hullAlign)));
1606                                         parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1607                                 } else {
1608                                         cell->push_back(MathAtom(new InsetMathSplit(buf, name,
1609                                                         'c', !stared(name))));
1610                                         parse2(cell->back(), FLAG_END, mode, !stared(name));
1611                                 }
1612                         }
1613
1614                         else if (name == "flalign" || name == "flalign*") {
1615                                 if (mode != InsetMath::UNDECIDED_MODE) {
1616                                         error("bad math environment " + name);
1617                                         break;
1618                                 }
1619                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullFlAlign)));
1620                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1621                         }
1622
1623                         else if (name == "alignat" || name == "alignat*") {
1624                                 if (mode != InsetMath::UNDECIDED_MODE) {
1625                                         error("bad math environment " + name);
1626                                         break;
1627                                 }
1628                                 // ignore this for a while
1629                                 getArg('{', '}');
1630                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullAlignAt)));
1631                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1632                         }
1633
1634                         else if (name == "xalignat" || name == "xalignat*") {
1635                                 if (mode != InsetMath::UNDECIDED_MODE) {
1636                                         error("bad math environment " + name);
1637                                         break;
1638                                 }
1639                                 // ignore this for a while
1640                                 getArg('{', '}');
1641                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullXAlignAt)));
1642                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1643                         }
1644
1645                         else if (name == "xxalignat") {
1646                                 if (mode != InsetMath::UNDECIDED_MODE) {
1647                                         error("bad math environment " + name);
1648                                         break;
1649                                 }
1650                                 // ignore this for a while
1651                                 getArg('{', '}');
1652                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullXXAlignAt)));
1653                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1654                         }
1655
1656                         else if (name == "multline" || name == "multline*") {
1657                                 if (mode != InsetMath::UNDECIDED_MODE) {
1658                                         error("bad math environment " + name);
1659                                         break;
1660                                 }
1661                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullMultline)));
1662                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1663                         }
1664
1665                         else if (name == "gather" || name == "gather*") {
1666                                 if (mode != InsetMath::UNDECIDED_MODE) {
1667                                         error("bad math environment " + name);
1668                                         break;
1669                                 }
1670                                 cell->push_back(MathAtom(new InsetMathHull(buf, hullGather)));
1671                                 parse2(cell->back(), FLAG_END, InsetMath::MATH_MODE, !stared(name));
1672                         }
1673
1674                         else if (latexkeys const * l = in_word_set(name)) {
1675                                 if (l->inset == "matrix") {
1676                                         cell->push_back(createInsetMath(name, buf));
1677                                         parse2(cell->back(), FLAG_END, mode, false);
1678                                 } else if (l->inset == "split") {
1679                                         docstring const valign = parse_verbatim_option() + 'c';
1680                                         cell->push_back(MathAtom(
1681                                                 new InsetMathSplit(buf, name, (char)valign[0])));
1682                                         parse2(cell->back(), FLAG_END, mode, false);
1683                                 } else {
1684                                         success_ = false;
1685                                         if (!(mode_ & Parse::QUIET)) {
1686                                                 dump();
1687                                                 lyxerr << "found math environment `"
1688                                                        << to_utf8(name)
1689                                                        << "' in symbols file with unsupported inset `"
1690                                                        << to_utf8(l->inset)
1691                                                        << "'." << endl;
1692                                         }
1693                                         // create generic environment inset
1694                                         cell->push_back(MathAtom(new InsetMathEnv(buf, name)));
1695                                         parse(cell->back().nucleus()->cell(0), FLAG_END, mode);
1696                                 }
1697                         }
1698
1699                         else {
1700                                 success_ = false;
1701                                 if (!(mode_ & Parse::QUIET)) {
1702                                         dump();
1703                                         lyxerr << "found unknown math environment '"
1704                                                << to_utf8(name) << "'" << endl;
1705                                 }
1706                                 // create generic environment inset
1707                                 cell->push_back(MathAtom(new InsetMathEnv(buf, name)));
1708                                 parse(cell->back().nucleus()->cell(0), FLAG_END, mode);
1709                         }
1710                 }
1711
1712                 else if (t.cs() == "kern") {
1713                         // FIXME: A hack...
1714                         docstring s;
1715                         int num_tokens = 0;
1716                         while (true) {
1717                                 Token const & t = getToken();
1718                                 ++num_tokens;
1719                                 if (!good()) {
1720                                         s.clear();
1721                                         while (num_tokens--)
1722                                                 putback();
1723                                         break;
1724                                 }
1725                                 s += t.character();
1726                                 if (isValidLength(to_utf8(s)))
1727                                         break;
1728                         }
1729                         if (s.empty())
1730                                 cell->push_back(MathAtom(new InsetMathKern));
1731                         else
1732                                 cell->push_back(MathAtom(new InsetMathKern(s)));
1733                 }
1734
1735                 else if (t.cs() == "label") {
1736                         // FIXME: This is swallowed in inline formulas
1737                         docstring label = parse_verbatim_item();
1738                         MathData ar;
1739                         asArray(label, ar);
1740                         if (grid.asHullInset()) {
1741                                 grid.asHullInset()->label(cellrow, label);
1742                         } else {
1743                                 cell->push_back(createInsetMath(t.cs(), buf));
1744                                 cell->push_back(MathAtom(new InsetMathBrace(ar)));
1745                         }
1746                 }
1747
1748                 else if (t.cs() == "choose" || t.cs() == "over"
1749                                 || t.cs() == "atop" || t.cs() == "brace"
1750                                 || t.cs() == "brack") {
1751                         MathAtom at = createInsetMath(t.cs(), buf);
1752                         at.nucleus()->cell(0) = *cell;
1753                         cell->clear();
1754                         parse(at.nucleus()->cell(1), flags, mode);
1755                         cell->push_back(at);
1756                         return success_;
1757                 }
1758
1759                 else if (t.cs() == "color") {
1760                         docstring const color = parse_verbatim_item();
1761                         cell->push_back(MathAtom(new InsetMathColor(buf, true, color)));
1762                         parse(cell->back().nucleus()->cell(0), flags, mode);
1763                         return success_;
1764                 }
1765
1766                 else if (t.cs() == "textcolor") {
1767                         docstring const color = parse_verbatim_item();
1768                         cell->push_back(MathAtom(new InsetMathColor(buf, false, color)));
1769                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, InsetMath::TEXT_MODE);
1770                 }
1771
1772                 else if (t.cs() == "normalcolor") {
1773                         cell->push_back(createInsetMath(t.cs(), buf));
1774                         parse(cell->back().nucleus()->cell(0), flags, mode);
1775                         return success_;
1776                 }
1777
1778                 else if (t.cs() == "substack") {
1779                         cell->push_back(createInsetMath(t.cs(), buf));
1780                         parse2(cell->back(), FLAG_ITEM, mode, false);
1781                         // Delete empty last row if present
1782                         InsetMathGrid & subgrid =
1783                                 *(cell->back().nucleus()->asGridInset());
1784                         if (subgrid.nrows() > 1)
1785                                 delEmptyLastRow(subgrid);
1786                 }
1787
1788                 else if (t.cs() == "xymatrix") {
1789                         odocstringstream os;
1790                         while (good() && nextToken().cat() != catBegin)
1791                                 os << getToken().asInput();
1792                         cell->push_back(createInsetMath(t.cs() + os.str(), buf));
1793                         parse2(cell->back(), FLAG_ITEM, mode, false);
1794                         // Delete empty last row if present
1795                         InsetMathGrid & subgrid =
1796                                 *(cell->back().nucleus()->asGridInset());
1797                         if (subgrid.nrows() > 1)
1798                                 delEmptyLastRow(subgrid);
1799                 }
1800
1801                 else if (t.cs() == "Diagram") {
1802                         odocstringstream os;
1803                         while (good() && nextToken().cat() != catBegin)
1804                                 os << getToken().asInput();
1805                         cell->push_back(createInsetMath(t.cs() + os.str(), buf));
1806                         parse2(cell->back(), FLAG_ITEM, mode, false);
1807                 }
1808
1809                 else if (t.cs() == "framebox" || t.cs() == "makebox") {
1810                         cell->push_back(createInsetMath(t.cs(), buf));
1811                         parse(cell->back().nucleus()->cell(0), FLAG_OPTION, InsetMath::TEXT_MODE);
1812                         parse(cell->back().nucleus()->cell(1), FLAG_OPTION, InsetMath::TEXT_MODE);
1813                         parse(cell->back().nucleus()->cell(2), FLAG_ITEM, InsetMath::TEXT_MODE);
1814                 }
1815
1816                 else if (t.cs() == "tag") {
1817                         if (nextToken().character() == '*') {
1818                                 getToken();
1819                                 cell->push_back(createInsetMath(t.cs() + '*', buf));
1820                         } else
1821                                 cell->push_back(createInsetMath(t.cs(), buf));
1822                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, InsetMath::TEXT_MODE);
1823                 }
1824
1825                 else if (t.cs() == "hspace") {
1826                         bool const prot =  nextToken().character() == '*';
1827                         if (prot)
1828                                 getToken();
1829                         docstring const name = t.cs();
1830                         docstring const arg = parse_verbatim_item();
1831                         Length length;
1832                         if (prot && arg == "\\fill")
1833                                 cell->push_back(MathAtom(new InsetMathSpace("hspace*{\\fill}", "")));
1834                         else if (isValidLength(to_utf8(arg), &length))
1835                                 cell->push_back(MathAtom(new InsetMathSpace(length, prot)));
1836                         else {
1837                                 // Since the Length class cannot use length variables
1838                                 // we must not create an InsetMathSpace.
1839                                 cell->push_back(MathAtom(new MathMacro(buf, name)));
1840                                 MathData ar;
1841                                 mathed_parse_cell(ar, '{' + arg + '}', mode_);
1842                                 cell->append(ar);
1843                         }
1844                 }
1845
1846                 else if (t.cs() == "smash") {
1847                         skipSpaces();
1848                         if (nextToken().asInput() == "[") {
1849                                 // Since the phantom inset cannot handle optional arguments
1850                                 // other than b and t, we must not create an InsetMathPhantom
1851                                 // if opt is different from b and t (bug 8967).
1852                                 docstring const opt = parse_verbatim_option();
1853                                 if (opt == "t" || opt == "b") {
1854                                         cell->push_back(createInsetMath(t.cs() + opt, buf));
1855                                         parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1856                                 } else {
1857                                         docstring const arg = parse_verbatim_item();
1858                                         cell->push_back(MathAtom(new MathMacro(buf, t.cs())));
1859                                         MathData ar;
1860                                         mathed_parse_cell(ar, '[' + opt + ']', mode_);
1861                                         cell->append(ar);
1862                                         ar = MathData();
1863                                         mathed_parse_cell(ar, '{' + arg + '}', mode_);
1864                                         cell->append(ar);
1865                                 }
1866                         }
1867                         else {
1868                                 cell->push_back(createInsetMath(t.cs(), buf));
1869                                 parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
1870                         }
1871                 }
1872
1873 #if 0
1874                 else if (t.cs() == "infer") {
1875                         MathData ar;
1876                         parse(ar, FLAG_OPTION, mode);
1877                         cell->push_back(createInsetMath(t.cs(), buf));
1878                         parse2(cell->back(), FLAG_ITEM, mode, false);
1879                 }
1880
1881                 // Disabled
1882                 else if (1 && t.cs() == "ar") {
1883                         auto_ptr<InsetMathXYArrow> p(new InsetMathXYArrow);
1884                         // try to read target
1885                         parse(p->cell(0), FLAG_OTPTION, mode);
1886                         // try to read label
1887                         if (nextToken().cat() == catSuper || nextToken().cat() == catSub) {
1888                                 p->up_ = nextToken().cat() == catSuper;
1889                                 getToken();
1890                                 parse(p->cell(1), FLAG_ITEM, mode);
1891                                 //lyxerr << "read label: " << p->cell(1) << endl;
1892                         }
1893
1894                         cell->push_back(MathAtom(p.release()));
1895                         //lyxerr << "read cell: " << cell << endl;
1896                 }
1897 #endif
1898
1899                 else if (t.cs() == "lyxmathsym") {
1900                         skipSpaces();
1901                         if (getToken().cat() != catBegin) {
1902                                 error("'{' expected in \\" + t.cs());
1903                                 return success_;
1904                         }
1905                         int count = 0;
1906                         docstring cmd;
1907                         CatCode cat = nextToken().cat();
1908                         while (good() && (count || cat != catEnd)) {
1909                                 if (cat == catBegin)
1910                                         ++count;
1911                                 else if (cat == catEnd)
1912                                         --count;
1913                                 cmd += getToken().asInput();
1914                                 cat = nextToken().cat();
1915                         }
1916                         if (getToken().cat() != catEnd) {
1917                                 error("'}' expected in \\" + t.cs());
1918                                 return success_;
1919                         }
1920                         bool termination;
1921                         docstring rem;
1922                         do {
1923                                 cmd = Encodings::fromLaTeXCommand(cmd,
1924                                         Encodings::MATH_CMD | Encodings::TEXT_CMD,
1925                                         termination, rem);
1926                                 for (size_t i = 0; i < cmd.size(); ++i)
1927                                         cell->push_back(MathAtom(new InsetMathChar(cmd[i])));
1928                                 if (!rem.empty()) {
1929                                         char_type c = rem[0];
1930                                         cell->push_back(MathAtom(new InsetMathChar(c)));
1931                                         cmd = rem.substr(1);
1932                                         rem.clear();
1933                                 } else
1934                                         cmd.clear();
1935                         } while (!cmd.empty());
1936                 }
1937
1938                 else if (!t.cs().empty()) {
1939                         bool const no_mhchem =
1940                                 (t.cs() == "ce" || t.cs() == "cf")
1941                                 && buf && buf->params().use_package("mhchem") ==
1942                                                 BufferParams::package_off;
1943
1944                         bool const is_user_macro = no_mhchem ||
1945                                 (buf && (mode_ & Parse::TRACKMACRO
1946                                          ? buf->usermacros.count(t.cs()) != 0
1947                                          : buf->getMacro(t.cs(), false) != 0));
1948
1949                         latexkeys const * l = in_word_set(t.cs());
1950                         if (l && !is_user_macro) {
1951                                 if (l->inset == "big") {
1952                                         skipSpaces();
1953                                         docstring const delim = getToken().asInput();
1954                                         if (InsetMathBig::isBigInsetDelim(delim))
1955                                                 cell->push_back(MathAtom(
1956                                                         new InsetMathBig(t.cs(), delim)));
1957                                         else {
1958                                                 cell->push_back(createInsetMath(t.cs(), buf));
1959                                                 putback();
1960                                         }
1961                                 }
1962
1963                                 else if (l->inset == "font") {
1964                                         cell->push_back(createInsetMath(t.cs(), buf));
1965                                         parse(cell->back().nucleus()->cell(0),
1966                                                 FLAG_ITEM, asMode(mode, l->extra));
1967                                 }
1968
1969                                 else if (l->inset == "oldfont") {
1970                                         cell->push_back(createInsetMath(t.cs(), buf));
1971                                         parse(cell->back().nucleus()->cell(0),
1972                                                 flags | FLAG_ALIGN, asMode(mode, l->extra));
1973                                         if (prevToken().cat() != catAlign &&
1974                                             prevToken().cs() != "\\")
1975                                                 return success_;
1976                                         putback();
1977                                 }
1978
1979                                 else if (l->inset == "style") {
1980                                         cell->push_back(createInsetMath(t.cs(), buf));
1981                                         parse(cell->back().nucleus()->cell(0),
1982                                                 flags | FLAG_ALIGN, mode);
1983                                         if (prevToken().cat() != catAlign &&
1984                                             prevToken().cs() != "\\")
1985                                                 return success_;
1986                                         putback();
1987                                 }
1988
1989                                 else {
1990                                         MathAtom at = createInsetMath(t.cs(), buf);
1991                                         for (InsetMath::idx_type i = 0; i < at->nargs(); ++i)
1992                                                 parse(at.nucleus()->cell(i),
1993                                                         FLAG_ITEM, asMode(mode, l->extra));
1994                                         cell->push_back(at);
1995                                 }
1996                         }
1997
1998                         else {
1999                                 bool is_unicode_symbol = false;
2000                                 if (mode == InsetMath::TEXT_MODE && !is_user_macro) {
2001                                         int num_tokens = 0;
2002                                         docstring cmd = prevToken().asInput();
2003                                         CatCode cat = nextToken().cat();
2004                                         if (cat == catBegin) {
2005                                                 int count = 0;
2006                                                 while (good() && (count || cat != catEnd)) {
2007                                                         cat = nextToken().cat();
2008                                                         cmd += getToken().asInput();
2009                                                         ++num_tokens;
2010                                                         if (cat == catBegin)
2011                                                                 ++count;
2012                                                         else if (cat == catEnd)
2013                                                                 --count;
2014                                                 }
2015                                         }
2016                                         bool is_combining;
2017                                         bool termination;
2018                                         char_type c = Encodings::fromLaTeXCommand(cmd,
2019                                                 Encodings::MATH_CMD | Encodings::TEXT_CMD,
2020                                                 is_combining, termination);
2021                                         if (is_combining) {
2022                                                 if (cat == catLetter)
2023                                                         cmd += '{';
2024                                                 cmd += getToken().asInput();
2025                                                 ++num_tokens;
2026                                                 if (cat == catLetter)
2027                                                         cmd += '}';
2028                                                 c = Encodings::fromLaTeXCommand(cmd,
2029                                                         Encodings::MATH_CMD | Encodings::TEXT_CMD,
2030                                                         is_combining, termination);
2031                                         }
2032                                         if (c) {
2033                                                 if (termination) {
2034                                                         if (nextToken().cat() == catBegin) {
2035                                                                 getToken();
2036                                                                 if (nextToken().cat() == catEnd) {
2037                                                                         getToken();
2038                                                                         num_tokens += 2;
2039                                                                 } else
2040                                                                         putback();
2041                                                         } else {
2042                                                                 while (nextToken().cat() == catSpace) {
2043                                                                         getToken();
2044                                                                         ++num_tokens;
2045                                                                 }
2046                                                         }
2047                                                 }
2048                                                 is_unicode_symbol = true;
2049                                                 cell->push_back(MathAtom(new InsetMathChar(c)));
2050                                         } else {
2051                                                 while (num_tokens--)
2052                                                         putback();
2053                                         }
2054                                 }
2055                                 if (!is_unicode_symbol) {
2056                                         MathAtom at = is_user_macro ?
2057                                                 MathAtom(new MathMacro(buf, t.cs()))
2058                                                 : createInsetMath(t.cs(), buf);
2059                                         InsetMath::mode_type m = mode;
2060                                         //if (m == InsetMath::UNDECIDED_MODE)
2061                                         //lyxerr << "default creation: m1: " << m << endl;
2062                                         if (at->currentMode() != InsetMath::UNDECIDED_MODE)
2063                                                 m = at->currentMode();
2064                                         //lyxerr << "default creation: m2: " << m << endl;
2065                                         InsetMath::idx_type start = 0;
2066                                         // this fails on \bigg[...\bigg]
2067                                         //MathData opt;
2068                                         //parse(opt, FLAG_OPTION, InsetMath::VERBATIM_MODE);
2069                                         //if (!opt.empty()) {
2070                                         //      start = 1;
2071                                         //      at.nucleus()->cell(0) = opt;
2072                                         //}
2073                                         for (InsetMath::idx_type i = start; i < at->nargs(); ++i) {
2074                                                 parse(at.nucleus()->cell(i), FLAG_ITEM, m);
2075                                                 skipSpaces();
2076                                         }
2077                                         cell->push_back(at);
2078                                 }
2079                         }
2080                 }
2081
2082
2083                 if (flags & FLAG_LEAVE) {
2084                         flags &= ~FLAG_LEAVE;
2085                         break;
2086                 }
2087         }
2088         return success_;
2089 }
2090
2091
2092
2093 } // anonymous namespace
2094
2095
2096 bool mathed_parse_cell(MathData & ar, docstring const & str, Parse::flags f)
2097 {
2098         return Parser(str, f, ar.buffer()).parse(ar, 0, f & Parse::TEXTMODE ?
2099                                 InsetMath::TEXT_MODE : InsetMath::MATH_MODE);
2100 }
2101
2102
2103 bool mathed_parse_cell(MathData & ar, istream & is, Parse::flags f)
2104 {
2105         return Parser(is, f, ar.buffer()).parse(ar, 0, f & Parse::TEXTMODE ?
2106                                 InsetMath::TEXT_MODE : InsetMath::MATH_MODE);
2107 }
2108
2109
2110 bool mathed_parse_normal(Buffer * buf, MathAtom & t, docstring const & str,
2111                          Parse::flags f)
2112 {
2113         return Parser(str, f, buf).parse(t);
2114 }
2115
2116
2117 bool mathed_parse_normal(Buffer * buf, MathAtom & t, Lexer & lex,
2118                          Parse::flags f)
2119 {
2120         return Parser(lex, f, buf).parse(t);
2121 }
2122
2123
2124 bool mathed_parse_normal(InsetMathGrid & grid, docstring const & str,
2125                          Parse::flags f)
2126 {
2127         return Parser(str, f, &grid.buffer()).parse1(grid, 0, f & Parse::TEXTMODE ?
2128                         InsetMath::TEXT_MODE : InsetMath::MATH_MODE, false);
2129 }
2130
2131
2132 void initParser()
2133 {
2134         fill(theCatcode, theCatcode + 128, catOther);
2135         fill(theCatcode + 'a', theCatcode + 'z' + 1, catLetter);
2136         fill(theCatcode + 'A', theCatcode + 'Z' + 1, catLetter);
2137
2138         theCatcode[int('\\')] = catEscape;
2139         theCatcode[int('{')]  = catBegin;
2140         theCatcode[int('}')]  = catEnd;
2141         theCatcode[int('$')]  = catMath;
2142         theCatcode[int('&')]  = catAlign;
2143         theCatcode[int('\n')] = catNewline;
2144         theCatcode[int('#')]  = catParameter;
2145         theCatcode[int('^')]  = catSuper;
2146         theCatcode[int('_')]  = catSub;
2147         theCatcode[int(0x7f)] = catIgnore;
2148         theCatcode[int(' ')]  = catSpace;
2149         theCatcode[int('\t')] = catSpace;
2150         theCatcode[int('\r')] = catNewline;
2151         theCatcode[int('~')]  = catActive;
2152         theCatcode[int('%')]  = catComment;
2153 }
2154
2155
2156 } // namespace lyx