]> git.lyx.org Git - features.git/blob - src/tex2lyx/text.cpp
tex2lyx: do not force default bibliography style if none is set
[features.git] / src / tex2lyx / text.cpp
1 /**
2  * \file tex2lyx/text.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  * \author Jean-Marc Lasgouttes
8  * \author Uwe Stöhr
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 // {[(
14
15 #include <config.h>
16
17 #include "tex2lyx.h"
18
19 #include "Context.h"
20 #include "Encoding.h"
21 #include "FloatList.h"
22 #include "LaTeXPackages.h"
23 #include "Layout.h"
24 #include "Length.h"
25 #include "Preamble.h"
26
27 #include "insets/ExternalTemplate.h"
28
29 #include "support/lassert.h"
30 #include "support/convert.h"
31 #include "support/FileName.h"
32 #include "support/filetools.h"
33 #include "support/lstrings.h"
34 #include "support/lyxtime.h"
35
36 #include <algorithm>
37 #include <iostream>
38 #include <map>
39 #include <sstream>
40 #include <vector>
41
42 using namespace std;
43 using namespace lyx::support;
44
45 namespace lyx {
46
47
48 namespace {
49
50 void output_arguments(ostream &, Parser &, bool, bool, bool, Context &,
51                       Layout::LaTeXArgMap const &);
52
53 }
54
55
56 void parse_text_in_inset(Parser & p, ostream & os, unsigned flags, bool outer,
57                 Context const & context, InsetLayout const * layout)
58 {
59         bool const forcePlainLayout =
60                 layout ? layout->forcePlainLayout() : false;
61         Context newcontext(true, context.textclass);
62         if (forcePlainLayout)
63                 newcontext.layout = &context.textclass.plainLayout();
64         else
65                 newcontext.font = context.font;
66         if (layout)
67                 output_arguments(os, p, outer, false, false, newcontext,
68                                  layout->latexargs());
69         parse_text(p, os, flags, outer, newcontext);
70         if (layout)
71                 output_arguments(os, p, outer, false, true, newcontext,
72                                  layout->postcommandargs());
73         newcontext.check_end_layout(os);
74 }
75
76
77 namespace {
78
79 void parse_text_in_inset(Parser & p, ostream & os, unsigned flags, bool outer,
80                 Context const & context, string const & name)
81 {
82         InsetLayout const * layout = 0;
83         DocumentClass::InsetLayouts::const_iterator it =
84                 context.textclass.insetLayouts().find(from_ascii(name));
85         if (it != context.textclass.insetLayouts().end())
86                 layout = &(it->second);
87         parse_text_in_inset(p, os, flags, outer, context, layout);
88 }
89
90 /// parses a paragraph snippet, useful for example for \\emph{...}
91 void parse_text_snippet(Parser & p, ostream & os, unsigned flags, bool outer,
92                 Context & context)
93 {
94         Context newcontext(context);
95         // Don't inherit the paragraph-level extra stuff
96         newcontext.par_extra_stuff.clear();
97         parse_text(p, os, flags, outer, newcontext);
98         // Make sure that we don't create invalid .lyx files
99         context.need_layout = newcontext.need_layout;
100         context.need_end_layout = newcontext.need_end_layout;
101 }
102
103
104 /*!
105  * Thin wrapper around parse_text_snippet() using a string.
106  *
107  * We completely ignore \c context.need_layout and \c context.need_end_layout,
108  * because our return value is not used directly (otherwise the stream version
109  * of parse_text_snippet() could be used). That means that the caller needs
110  * to do layout management manually.
111  * This is intended to parse text that does not create any layout changes.
112  */
113 string parse_text_snippet(Parser & p, unsigned flags, const bool outer,
114                   Context & context)
115 {
116         Context newcontext(context);
117         newcontext.need_layout = false;
118         newcontext.need_end_layout = false;
119         newcontext.new_layout_allowed = false;
120         // Avoid warning by Context::~Context()
121         newcontext.par_extra_stuff.clear();
122         ostringstream os;
123         parse_text_snippet(p, os, flags, outer, newcontext);
124         return os.str();
125 }
126
127 string fboxrule = "";
128 string fboxsep = "";
129 string shadow_size = "";
130
131 char const * const known_ref_commands[] = { "ref", "pageref", "vref",
132  "vpageref", "prettyref", "nameref", "eqref", 0 };
133
134 char const * const known_coded_ref_commands[] = { "ref", "pageref", "vref",
135  "vpageref", "formatted", "nameref", "eqref", 0 };
136
137 char const * const known_refstyle_commands[] = { "algref", "chapref", "corref",
138  "eqref", "enuref", "figref", "fnref", "lemref", "parref", "partref", "propref",
139  "secref", "subsecref", "tabref", "thmref", 0 };
140
141 char const * const known_refstyle_prefixes[] = { "alg", "chap", "cor",
142  "eq", "enu", "fig", "fn", "lem", "par", "part", "prop",
143  "sec", "subsec", "tab", "thm", 0 };
144
145
146 /**
147  * supported CJK encodings
148  * JIS does not work with LyX's encoding conversion
149  */
150 const char * const supported_CJK_encodings[] = {
151 "EUC-JP", "KS", "GB", "UTF8",
152 "Bg5", /*"JIS",*/ "SJIS", 0};
153
154 /**
155  * the same as supported_CJK_encodings with their corresponding LyX language name
156  * FIXME: The mapping "UTF8" => "chinese-traditional" is only correct for files
157  *        created by LyX.
158  * NOTE: "Bg5", "JIS" and "SJIS" are not supported by LyX, on re-export the
159  *       encodings "UTF8", "EUC-JP" and "EUC-JP" will be used.
160  * please keep this in sync with supported_CJK_encodings line by line!
161  */
162 const char * const supported_CJK_languages[] = {
163 "japanese-cjk", "korean", "chinese-simplified", "chinese-traditional",
164 "chinese-traditional", /*"japanese-cjk",*/ "japanese-cjk", 0};
165
166 /*!
167  * natbib commands.
168  * The starred forms are also known except for "citefullauthor",
169  * "citeyear" and "citeyearpar".
170  */
171 char const * const known_natbib_commands[] = { "cite", "citet", "citep",
172 "citealt", "citealp", "citeauthor", "citeyear", "citeyearpar",
173 "citefullauthor", "Citet", "Citep", "Citealt", "Citealp", "Citeauthor", 0 };
174
175 /*!
176  * jurabib commands.
177  * No starred form other than "cite*" known.
178  */
179 char const * const known_jurabib_commands[] = { "cite", "citet", "citep",
180 "citealt", "citealp", "citeauthor", "citeyear", "citeyearpar",
181 // jurabib commands not (yet) supported by LyX:
182 // "fullcite",
183 // "footcite", "footcitet", "footcitep", "footcitealt", "footcitealp",
184 // "footciteauthor", "footciteyear", "footciteyearpar",
185 "citefield", "citetitle", 0 };
186
187 /// LaTeX names for quotes
188 char const * const known_quotes[] = { "dq", "guillemotleft", "flqq", "og",
189 "guillemotright", "frqq", "fg", "glq", "glqq", "textquoteleft", "grq", "grqq",
190 "quotedblbase", "textquotedblleft", "quotesinglbase", "textquoteright", "flq",
191 "guilsinglleft", "frq", "guilsinglright", 0};
192
193 /// the same as known_quotes with .lyx names
194 char const * const known_coded_quotes[] = { "prd", "ard", "ard", "ard",
195 "ald", "ald", "ald", "gls", "gld", "els", "els", "grd",
196 "gld", "grd", "gls", "ers", "fls",
197 "fls", "frs", "frs", 0};
198
199 /// LaTeX names for font sizes
200 char const * const known_sizes[] = { "tiny", "scriptsize", "footnotesize",
201 "small", "normalsize", "large", "Large", "LARGE", "huge", "Huge", 0};
202
203 /// the same as known_sizes with .lyx names
204 char const * const known_coded_sizes[] = { "tiny", "scriptsize", "footnotesize",
205 "small", "normal", "large", "larger", "largest", "huge", "giant", 0};
206
207 /// LaTeX 2.09 names for font families
208 char const * const known_old_font_families[] = { "rm", "sf", "tt", 0};
209
210 /// LaTeX names for font families
211 char const * const known_font_families[] = { "rmfamily", "sffamily",
212 "ttfamily", 0};
213
214 /// LaTeX names for font family changing commands
215 char const * const known_text_font_families[] = { "textrm", "textsf",
216 "texttt", 0};
217
218 /// The same as known_old_font_families, known_font_families and
219 /// known_text_font_families with .lyx names
220 char const * const known_coded_font_families[] = { "roman", "sans",
221 "typewriter", 0};
222
223 /// LaTeX 2.09 names for font series
224 char const * const known_old_font_series[] = { "bf", 0};
225
226 /// LaTeX names for font series
227 char const * const known_font_series[] = { "bfseries", "mdseries", 0};
228
229 /// LaTeX names for font series changing commands
230 char const * const known_text_font_series[] = { "textbf", "textmd", 0};
231
232 /// The same as known_old_font_series, known_font_series and
233 /// known_text_font_series with .lyx names
234 char const * const known_coded_font_series[] = { "bold", "medium", 0};
235
236 /// LaTeX 2.09 names for font shapes
237 char const * const known_old_font_shapes[] = { "it", "sl", "sc", 0};
238
239 /// LaTeX names for font shapes
240 char const * const known_font_shapes[] = { "itshape", "slshape", "scshape",
241 "upshape", 0};
242
243 /// LaTeX names for font shape changing commands
244 char const * const known_text_font_shapes[] = { "textit", "textsl", "textsc",
245 "textup", 0};
246
247 /// The same as known_old_font_shapes, known_font_shapes and
248 /// known_text_font_shapes with .lyx names
249 char const * const known_coded_font_shapes[] = { "italic", "slanted",
250 "smallcaps", "up", 0};
251
252 /// Known special characters which need skip_spaces_braces() afterwards
253 char const * const known_special_chars[] = {"ldots",
254 "lyxarrow", "textcompwordmark",
255 "slash", "textasciitilde", "textasciicircum", "textbackslash",
256 "LyX", "TeX", "LaTeXe",
257 "LaTeX", 0};
258
259 /// special characters from known_special_chars which may have a \\protect before
260 char const * const known_special_protect_chars[] = {"LyX", "TeX",
261 "LaTeXe", "LaTeX", 0};
262
263 /// the same as known_special_chars with .lyx names
264 char const * const known_coded_special_chars[] = {"\\SpecialChar ldots\n",
265 "\\SpecialChar menuseparator\n", "\\SpecialChar ligaturebreak\n",
266 "\\SpecialChar breakableslash\n", "~", "^", "\n\\backslash\n",
267 "\\SpecialChar LyX\n", "\\SpecialChar TeX\n", "\\SpecialChar LaTeX2e\n",
268 "\\SpecialChar LaTeX\n", 0};
269
270 /*!
271  * Graphics file extensions known by the dvips driver of the graphics package.
272  * These extensions are used to complete the filename of an included
273  * graphics file if it does not contain an extension.
274  * The order must be the same that latex uses to find a file, because we
275  * will use the first extension that matches.
276  * This is only an approximation for the common cases. If we would want to
277  * do it right in all cases, we would need to know which graphics driver is
278  * used and know the extensions of every driver of the graphics package.
279  */
280 char const * const known_dvips_graphics_formats[] = {"eps", "ps", "eps.gz",
281 "ps.gz", "eps.Z", "ps.Z", 0};
282
283 /*!
284  * Graphics file extensions known by the pdftex driver of the graphics package.
285  * \sa known_dvips_graphics_formats
286  */
287 char const * const known_pdftex_graphics_formats[] = {"png", "pdf", "jpg",
288 "mps", "tif", 0};
289
290 /*!
291  * Known file extensions for TeX files as used by \\include.
292  */
293 char const * const known_tex_extensions[] = {"tex", 0};
294
295 /// spaces known by InsetSpace
296 char const * const known_spaces[] = { " ", "space", ",",
297 "thinspace", "quad", "qquad", "enspace", "enskip",
298 "negthinspace", "negmedspace", "negthickspace", "textvisiblespace",
299 "hfill", "dotfill", "hrulefill", "leftarrowfill", "rightarrowfill",
300 "upbracefill", "downbracefill", 0};
301
302 /// the same as known_spaces with .lyx names
303 char const * const known_coded_spaces[] = { "space{}", "space{}",
304 "thinspace{}", "thinspace{}", "quad{}", "qquad{}", "enspace{}", "enskip{}",
305 "negthinspace{}", "negmedspace{}", "negthickspace{}", "textvisiblespace{}",
306 "hfill{}", "dotfill{}", "hrulefill{}", "leftarrowfill{}", "rightarrowfill{}",
307 "upbracefill{}", "downbracefill{}", 0};
308
309 /// known TIPA combining diacritical marks
310 char const * const known_tipa_marks[] = {"textsubwedge", "textsubumlaut",
311 "textsubtilde", "textseagull", "textsubbridge", "textinvsubbridge",
312 "textsubsquare", "textsubrhalfring", "textsublhalfring", "textsubplus",
313 "textovercross", "textsubarch", "textsuperimposetilde", "textraising",
314 "textlowering", "textadvancing", "textretracting", "textdoublegrave",
315 "texthighrise", "textlowrise", "textrisefall", "textsyllabic",
316 "textsubring", "textsubbar", 0};
317
318 /// TIPA tones that need special handling
319 char const * const known_tones[] = {"15", "51", "45", "12", "454", 0};
320
321 // string to store the float type to be able to determine the type of subfloats
322 string float_type = "";
323
324 // string to store the float status of minted listings
325 string minted_float = "";
326
327 // whether a caption has been parsed for a floating minted listing
328 bool minted_float_has_caption = false;
329
330 // The caption for non-floating minted listings
331 string minted_nonfloat_caption = "";
332
333
334 /// splits "x=z, y=b" into a map and an ordered keyword vector
335 void split_map(string const & s, map<string, string> & res, vector<string> & keys)
336 {
337         vector<string> v;
338         split(s, v);
339         res.clear();
340         keys.resize(v.size());
341         for (size_t i = 0; i < v.size(); ++i) {
342                 size_t const pos   = v[i].find('=');
343                 string const index = trimSpaceAndEol(v[i].substr(0, pos));
344                 string const value = trimSpaceAndEol(v[i].substr(pos + 1, string::npos));
345                 res[index] = value;
346                 keys[i] = index;
347         }
348 }
349
350
351 /*!
352  * Split a LaTeX length into value and unit.
353  * The latter can be a real unit like "pt", or a latex length variable
354  * like "\textwidth". The unit may contain additional stuff like glue
355  * lengths, but we don't care, because such lengths are ERT anyway.
356  * \returns true if \p value and \p unit are valid.
357  */
358 bool splitLatexLength(string const & len, string & value, string & unit)
359 {
360         if (len.empty())
361                 return false;
362         const string::size_type i = len.find_first_not_of(" -+0123456789.,");
363         //'4,5' is a valid LaTeX length number. Change it to '4.5'
364         string const length = subst(len, ',', '.');
365         if (i == string::npos)
366                 return false;
367         if (i == 0) {
368                 if (len[0] == '\\') {
369                         // We had something like \textwidth without a factor
370                         value = "1.0";
371                 } else {
372                         return false;
373                 }
374         } else {
375                 value = trimSpaceAndEol(string(length, 0, i));
376         }
377         if (value == "-")
378                 value = "-1.0";
379         // 'cM' is a valid LaTeX length unit. Change it to 'cm'
380         if (contains(len, '\\'))
381                 unit = trimSpaceAndEol(string(len, i));
382         else
383                 unit = ascii_lowercase(trimSpaceAndEol(string(len, i)));
384         return true;
385 }
386
387
388 /// A simple function to translate a latex length to something LyX can
389 /// understand. Not perfect, but rather best-effort.
390 bool translate_len(string const & length, string & valstring, string & unit)
391 {
392         if (!splitLatexLength(length, valstring, unit))
393                 return false;
394         // LyX uses percent values
395         double value;
396         istringstream iss(valstring);
397         iss >> value;
398         value *= 100;
399         ostringstream oss;
400         oss << value;
401         string const percentval = oss.str();
402         // a normal length
403         if (unit.empty() || unit[0] != '\\')
404                 return true;
405         string::size_type const i = unit.find(' ');
406         string const endlen = (i == string::npos) ? string() : string(unit, i);
407         if (unit == "\\textwidth") {
408                 valstring = percentval;
409                 unit = "text%" + endlen;
410         } else if (unit == "\\columnwidth") {
411                 valstring = percentval;
412                 unit = "col%" + endlen;
413         } else if (unit == "\\paperwidth") {
414                 valstring = percentval;
415                 unit = "page%" + endlen;
416         } else if (unit == "\\linewidth") {
417                 valstring = percentval;
418                 unit = "line%" + endlen;
419         } else if (unit == "\\paperheight") {
420                 valstring = percentval;
421                 unit = "pheight%" + endlen;
422         } else if (unit == "\\textheight") {
423                 valstring = percentval;
424                 unit = "theight%" + endlen;
425         } else if (unit == "\\baselineskip") {
426                 valstring = percentval;
427                 unit = "baselineskip%" + endlen;
428         }
429         return true;
430 }
431
432 } // namespace
433
434
435 string translate_len(string const & length)
436 {
437         string unit;
438         string value;
439         if (translate_len(length, value, unit))
440                 return value + unit;
441         // If the input is invalid, return what we have.
442         return length;
443 }
444
445
446 namespace {
447
448 /*!
449  * Translates a LaTeX length into \p value, \p unit and
450  * \p special parts suitable for a box inset.
451  * The difference from translate_len() is that a box inset knows about
452  * some special "units" that are stored in \p special.
453  */
454 void translate_box_len(string const & length, string & value, string & unit, string & special)
455 {
456         if (translate_len(length, value, unit)) {
457                 if (unit == "\\height" || unit == "\\depth" ||
458                     unit == "\\totalheight" || unit == "\\width") {
459                         special = unit.substr(1);
460                         // The unit is not used, but LyX requires a dummy setting
461                         unit = "in";
462                 } else
463                         special = "none";
464         } else {
465                 value.clear();
466                 unit = length;
467                 special = "none";
468         }
469 }
470
471
472 /*!
473  * Find a file with basename \p name in path \p path and an extension
474  * in \p extensions.
475  */
476 string find_file(string const & name, string const & path,
477                  char const * const * extensions)
478 {
479         for (char const * const * what = extensions; *what; ++what) {
480                 string const trial = addExtension(name, *what);
481                 if (makeAbsPath(trial, path).exists())
482                         return trial;
483         }
484         return string();
485 }
486
487
488 void begin_inset(ostream & os, string const & name)
489 {
490         os << "\n\\begin_inset " << name;
491 }
492
493
494 void begin_command_inset(ostream & os, string const & name,
495                          string const & latexname)
496 {
497         begin_inset(os, "CommandInset ");
498         os << name << "\nLatexCommand " << latexname << '\n';
499 }
500
501
502 void end_inset(ostream & os)
503 {
504         os << "\n\\end_inset\n\n";
505 }
506
507
508 bool skip_braces(Parser & p)
509 {
510         if (p.next_token().cat() != catBegin)
511                 return false;
512         p.get_token();
513         if (p.next_token().cat() == catEnd) {
514                 p.get_token();
515                 return true;
516         }
517         p.putback();
518         return false;
519 }
520
521
522 /// replace LaTeX commands in \p s from the unicodesymbols file with their
523 /// unicode points
524 docstring convert_unicodesymbols(docstring s)
525 {
526         odocstringstream os;
527         for (size_t i = 0; i < s.size();) {
528                 if (s[i] != '\\') {
529                         os.put(s[i++]);
530                         continue;
531                 }
532                 s = s.substr(i);
533                 bool termination;
534                 docstring rem;
535                 set<string> req;
536                 docstring parsed = normalize_c(encodings.fromLaTeXCommand(s,
537                                 Encodings::TEXT_CMD, termination, rem, &req));
538                 set<string>::const_iterator it = req.begin();
539                 set<string>::const_iterator en = req.end();
540                 for (; it != en; ++it)
541                         preamble.registerAutomaticallyLoadedPackage(*it);
542                 os << parsed;
543                 s = rem;
544                 if (s.empty() || s[0] != '\\')
545                         i = 0;
546                 else
547                         i = 1;
548         }
549         return os.str();
550 }
551
552
553 /// try to convert \p s to a valid InsetCommand argument
554 string convert_command_inset_arg(string s)
555 {
556         if (isAscii(s))
557                 // since we don't know the input encoding we can't use from_utf8
558                 s = to_utf8(convert_unicodesymbols(from_ascii(s)));
559         // LyX cannot handle newlines in a latex command
560         return subst(s, "\n", " ");
561 }
562
563
564 void output_ert(ostream & os, string const & s, Context & context)
565 {
566         context.check_layout(os);
567         for (string::const_iterator it = s.begin(), et = s.end(); it != et; ++it) {
568                 if (*it == '\\')
569                         os << "\n\\backslash\n";
570                 else if (*it == '\n') {
571                         context.new_paragraph(os);
572                         context.check_layout(os);
573                 } else
574                         os << *it;
575         }
576         context.check_end_layout(os);
577 }
578
579
580 void output_ert_inset(ostream & os, string const & s, Context & context)
581 {
582         // We must have a valid layout before outputting the ERT inset.
583         context.check_layout(os);
584         Context newcontext(true, context.textclass);
585         InsetLayout const & layout = context.textclass.insetLayout(from_ascii("ERT"));
586         if (layout.forcePlainLayout())
587                 newcontext.layout = &context.textclass.plainLayout();
588         begin_inset(os, "ERT");
589         os << "\nstatus collapsed\n";
590         output_ert(os, s, newcontext);
591         end_inset(os);
592 }
593
594
595 void output_comment(Parser & p, ostream & os, string const & s,
596                     Context & context)
597 {
598         if (p.next_token().cat() == catNewline)
599                 output_ert_inset(os, '%' + s, context);
600         else
601                 output_ert_inset(os, '%' + s + '\n', context);
602 }
603
604
605 Layout const * findLayout(TextClass const & textclass, string const & name, bool command)
606 {
607         Layout const * layout = findLayoutWithoutModule(textclass, name, command);
608         if (layout)
609                 return layout;
610         if (checkModule(name, command))
611                 return findLayoutWithoutModule(textclass, name, command);
612         return layout;
613 }
614
615
616 InsetLayout const * findInsetLayout(TextClass const & textclass, string const & name, bool command)
617 {
618         InsetLayout const * insetlayout = findInsetLayoutWithoutModule(textclass, name, command);
619         if (insetlayout)
620                 return insetlayout;
621         if (checkModule(name, command))
622                 return findInsetLayoutWithoutModule(textclass, name, command);
623         return insetlayout;
624 }
625
626
627 void eat_whitespace(Parser &, ostream &, Context &, bool);
628
629
630 /*!
631  * Skips whitespace and braces.
632  * This should be called after a command has been parsed that is not put into
633  * ERT, and where LyX adds "{}" if needed.
634  */
635 void skip_spaces_braces(Parser & p, bool keepws = false)
636 {
637         /* The following four examples produce the same typeset output and
638            should be handled by this function:
639            - abc \j{} xyz
640            - abc \j {} xyz
641            - abc \j
642              {} xyz
643            - abc \j %comment
644              {} xyz
645          */
646         // Unfortunately we need to skip comments, too.
647         // We can't use eat_whitespace since writing them after the {}
648         // results in different output in some cases.
649         bool const skipped_spaces = p.skip_spaces(true);
650         bool const skipped_braces = skip_braces(p);
651         if (keepws && skipped_spaces && !skipped_braces)
652                 // put back the space (it is better handled by check_space)
653                 p.unskip_spaces(true);
654 }
655
656
657 void output_arguments(ostream & os, Parser & p, bool outer, bool need_layout, bool post,
658                       Context & context, Layout::LaTeXArgMap const & latexargs)
659 {
660         if (need_layout) {
661                 context.check_layout(os);
662                 need_layout = false;
663         } else
664                 need_layout = true;
665         int i = 0;
666         Layout::LaTeXArgMap::const_iterator lait = latexargs.begin();
667         Layout::LaTeXArgMap::const_iterator const laend = latexargs.end();
668         for (; lait != laend; ++lait) {
669                 ++i;
670                 eat_whitespace(p, os, context, false);
671                 if (lait->second.mandatory) {
672                         if (p.next_token().cat() != catBegin)
673                                 break;
674                         p.get_token(); // eat '{'
675                         if (need_layout) {
676                                 context.check_layout(os);
677                                 need_layout = false;
678                         }
679                         begin_inset(os, "Argument ");
680                         if (post)
681                                 os << "post:";
682                         os << i << "\nstatus collapsed\n\n";
683                         parse_text_in_inset(p, os, FLAG_BRACE_LAST, outer, context);
684                         end_inset(os);
685                 } else {
686                         if (p.next_token().cat() == catEscape ||
687                             p.next_token().character() != '[')
688                                 continue;
689                         p.get_token(); // eat '['
690                         if (need_layout) {
691                                 context.check_layout(os);
692                                 need_layout = false;
693                         }
694                         begin_inset(os, "Argument ");
695                         if (post)
696                                 os << "post:";
697                         os << i << "\nstatus collapsed\n\n";
698                         parse_text_in_inset(p, os, FLAG_BRACK_LAST, outer, context);
699                         end_inset(os);
700                 }
701                 eat_whitespace(p, os, context, false);
702         }
703 }
704
705
706 void output_command_layout(ostream & os, Parser & p, bool outer,
707                            Context & parent_context,
708                            Layout const * newlayout)
709 {
710         TeXFont const oldFont = parent_context.font;
711         // save the current font size
712         string const size = oldFont.size;
713         // reset the font size to default, because the font size switches
714         // don't affect section headings and the like
715         parent_context.font.size = Context::normalfont.size;
716         // we only need to write the font change if we have an open layout
717         if (!parent_context.atParagraphStart())
718                 output_font_change(os, oldFont, parent_context.font);
719         parent_context.check_end_layout(os);
720         Context context(true, parent_context.textclass, newlayout,
721                         parent_context.layout, parent_context.font);
722         if (parent_context.deeper_paragraph) {
723                 // We are beginning a nested environment after a
724                 // deeper paragraph inside the outer list environment.
725                 // Therefore we don't need to output a "begin deeper".
726                 context.need_end_deeper = true;
727         }
728         context.check_deeper(os);
729         output_arguments(os, p, outer, true, false, context,
730                          context.layout->latexargs());
731         parse_text(p, os, FLAG_ITEM, outer, context);
732         output_arguments(os, p, outer, false, true, context,
733                          context.layout->postcommandargs());
734         context.check_end_layout(os);
735         if (parent_context.deeper_paragraph) {
736                 // We must suppress the "end deeper" because we
737                 // suppressed the "begin deeper" above.
738                 context.need_end_deeper = false;
739         }
740         context.check_end_deeper(os);
741         // We don't need really a new paragraph, but
742         // we must make sure that the next item gets a \begin_layout.
743         parent_context.new_paragraph(os);
744         // Set the font size to the original value. No need to output it here
745         // (Context::begin_layout() will do that if needed)
746         parent_context.font.size = size;
747 }
748
749
750 /*!
751  * Output a space if necessary.
752  * This function gets called for every whitespace token.
753  *
754  * We have three cases here:
755  * 1. A space must be suppressed. Example: The lyxcode case below
756  * 2. A space may be suppressed. Example: Spaces before "\par"
757  * 3. A space must not be suppressed. Example: A space between two words
758  *
759  * We currently handle only 1. and 3 and from 2. only the case of
760  * spaces before newlines as a side effect.
761  *
762  * 2. could be used to suppress as many spaces as possible. This has two effects:
763  * - Reimporting LyX generated LaTeX files changes almost no whitespace
764  * - Superflous whitespace from non LyX generated LaTeX files is removed.
765  * The drawback is that the logic inside the function becomes
766  * complicated, and that is the reason why it is not implemented.
767  */
768 void check_space(Parser & p, ostream & os, Context & context)
769 {
770         Token const next = p.next_token();
771         Token const curr = p.curr_token();
772         // A space before a single newline and vice versa must be ignored
773         // LyX emits a newline before \end{lyxcode}.
774         // This newline must be ignored,
775         // otherwise LyX will add an additional protected space.
776         if (next.cat() == catSpace ||
777             next.cat() == catNewline ||
778             (next.cs() == "end" && context.layout->free_spacing && curr.cat() == catNewline)) {
779                 return;
780         }
781         context.check_layout(os);
782         os << ' ';
783 }
784
785
786 /*!
787  * Parse all arguments of \p command
788  */
789 void parse_arguments(string const & command,
790                      vector<ArgumentType> const & template_arguments,
791                      Parser & p, ostream & os, bool outer, Context & context)
792 {
793         string ert = command;
794         size_t no_arguments = template_arguments.size();
795         for (size_t i = 0; i < no_arguments; ++i) {
796                 switch (template_arguments[i]) {
797                 case required:
798                 case req_group:
799                         // This argument contains regular LaTeX
800                         output_ert_inset(os, ert + '{', context);
801                         eat_whitespace(p, os, context, false);
802                         if (template_arguments[i] == required)
803                                 parse_text(p, os, FLAG_ITEM, outer, context);
804                         else
805                                 parse_text_snippet(p, os, FLAG_ITEM, outer, context);
806                         ert = "}";
807                         break;
808                 case item:
809                         // This argument consists only of a single item.
810                         // The presence of '{' or not must be preserved.
811                         p.skip_spaces();
812                         if (p.next_token().cat() == catBegin)
813                                 ert += '{' + p.verbatim_item() + '}';
814                         else
815                                 ert += p.verbatim_item();
816                         break;
817                 case displaymath:
818                 case verbatim:
819                         // This argument may contain special characters
820                         ert += '{' + p.verbatim_item() + '}';
821                         break;
822                 case optional:
823                 case opt_group:
824                         // true because we must not eat whitespace
825                         // if an optional arg follows we must not strip the
826                         // brackets from this one
827                         if (i < no_arguments - 1 &&
828                             template_arguments[i+1] == optional)
829                                 ert += p.getFullOpt(true);
830                         else
831                                 ert += p.getOpt(true);
832                         break;
833                 }
834         }
835         output_ert_inset(os, ert, context);
836 }
837
838
839 /*!
840  * Check whether \p command is a known command. If yes,
841  * handle the command with all arguments.
842  * \return true if the command was parsed, false otherwise.
843  */
844 bool parse_command(string const & command, Parser & p, ostream & os,
845                    bool outer, Context & context)
846 {
847         if (known_commands.find(command) != known_commands.end()) {
848                 parse_arguments(command, known_commands[command], p, os,
849                                 outer, context);
850                 return true;
851         }
852         return false;
853 }
854
855
856 /// Parses a minipage or parbox
857 void parse_box(Parser & p, ostream & os, unsigned outer_flags,
858                unsigned inner_flags, bool outer, Context & parent_context,
859                string const & outer_type, string const & special,
860                string inner_type, string const & frame_color,
861                string const & background_color)
862 {
863         string position;
864         string inner_pos;
865         string hor_pos = "l";
866         // We need to set the height to the LaTeX default of 1\\totalheight
867         // for the case when no height argument is given
868         string height_value = "1";
869         string height_unit = "in";
870         string height_special = "totalheight";
871         string latex_height;
872         string width_value;
873         string width_unit;
874         string latex_width;
875         string width_special = "none";
876         string thickness = "0.4pt";
877         if (!fboxrule.empty())
878                 thickness = fboxrule;
879         else
880                 thickness = "0.4pt";
881         string separation;
882         if (!fboxsep.empty())
883                 separation = fboxsep;
884         else
885                 separation = "3pt";
886         string shadowsize;
887         if (!shadow_size.empty())
888                 shadowsize = shadow_size;
889         else
890                 shadowsize = "4pt";
891         string framecolor = "black";
892         string backgroundcolor = "none";
893         if (!frame_color.empty())
894                 framecolor = frame_color;
895         if (!background_color.empty())
896                 backgroundcolor = background_color;
897         // if there is a color box around the \begin statements have not yet been parsed
898         // so do this now
899         if (!frame_color.empty() || !background_color.empty()) {
900                 eat_whitespace(p, os, parent_context, false);
901                 p.get_token().asInput(); // the '{'
902                 // parse minipage
903                 if (p.next_token().asInput() == "\\begin") {
904                         p.get_token().asInput();
905                         p.getArg('{', '}');
906                         inner_type = "minipage";
907                         inner_flags = FLAG_END;
908                         active_environments.push_back("minipage");
909                 }
910                 // parse parbox
911                 else if (p.next_token().asInput() == "\\parbox") {
912                         p.get_token().asInput();
913                         inner_type = "parbox";
914                         inner_flags = FLAG_ITEM;
915                 }
916                 // parse makebox
917                 else if (p.next_token().asInput() == "\\makebox") {
918                         p.get_token().asInput();
919                         inner_type = "makebox";
920                         inner_flags = FLAG_ITEM;
921                 }
922                 // in case there is just \colorbox{color}{text}
923                 else {
924                         latex_width = "";
925                         inner_type = "makebox";
926                         inner_flags = FLAG_BRACE_LAST;
927                         position = "t";
928                         inner_pos = "t";
929                 }
930         }
931         if (!p.hasOpt() && (inner_type == "makebox" || outer_type == "mbox"))
932                 hor_pos = "c";
933         if (!inner_type.empty() && p.hasOpt()) {
934                 if (inner_type != "makebox")
935                         position = p.getArg('[', ']');
936                 else {
937                         latex_width = p.getArg('[', ']');
938                         translate_box_len(latex_width, width_value, width_unit, width_special);
939                         position = "t";
940                 }
941                 if (position != "t" && position != "c" && position != "b") {
942                         cerr << "invalid position " << position << " for "
943                              << inner_type << endl;
944                         position = "c";
945                 }
946                 if (p.hasOpt()) {
947                         if (inner_type != "makebox") {
948                                 latex_height = p.getArg('[', ']');
949                                 translate_box_len(latex_height, height_value, height_unit, height_special);
950                         } else {
951                                 string const opt = p.getArg('[', ']');
952                                 if (!opt.empty()) {
953                                         hor_pos = opt;
954                                         if (hor_pos != "l" && hor_pos != "c" &&
955                                             hor_pos != "r" && hor_pos != "s") {
956                                                 cerr << "invalid hor_pos " << hor_pos
957                                                      << " for " << inner_type << endl;
958                                                 hor_pos = "c";
959                                         }
960                                 }
961                         }
962
963                         if (p.hasOpt()) {
964                                 inner_pos = p.getArg('[', ']');
965                                 if (inner_pos != "c" && inner_pos != "t" &&
966                                     inner_pos != "b" && inner_pos != "s") {
967                                         cerr << "invalid inner_pos "
968                                              << inner_pos << " for "
969                                              << inner_type << endl;
970                                         inner_pos = position;
971                                 }
972                         }
973                 } else {
974                         if (inner_type == "makebox")
975                                 hor_pos = "c";
976                 }
977         }
978         if (inner_type.empty()) {
979                 if (special.empty() && outer_type != "framebox")
980                         latex_width = "1\\columnwidth";
981                 else {
982                         Parser p2(special);
983                         latex_width = p2.getArg('[', ']');
984                         string const opt = p2.getArg('[', ']');
985                         if (!opt.empty()) {
986                                 hor_pos = opt;
987                                 if (hor_pos != "l" && hor_pos != "c" &&
988                                     hor_pos != "r" && hor_pos != "s") {
989                                         cerr << "invalid hor_pos " << hor_pos
990                                              << " for " << outer_type << endl;
991                                         hor_pos = "c";
992                                 }
993                         } else {
994                                 if (outer_type == "framebox")
995                                         hor_pos = "c";
996                         }
997                 }
998         } else if (inner_type != "makebox")
999                 latex_width = p.verbatim_item();
1000         // if e.g. only \ovalbox{content} was used, set the width to 1\columnwidth
1001         // as this is LyX's standard for such cases (except for makebox)
1002         // \framebox is more special and handled below
1003         if (latex_width.empty() && inner_type != "makebox"
1004                 && outer_type != "framebox")
1005                 latex_width = "1\\columnwidth";
1006
1007         translate_len(latex_width, width_value, width_unit);
1008
1009         bool shadedparbox = false;
1010         if (inner_type == "shaded") {
1011                 eat_whitespace(p, os, parent_context, false);
1012                 if (outer_type == "parbox") {
1013                         // Eat '{'
1014                         if (p.next_token().cat() == catBegin)
1015                                 p.get_token();
1016                         eat_whitespace(p, os, parent_context, false);
1017                         shadedparbox = true;
1018                 }
1019                 p.get_token();
1020                 p.getArg('{', '}');
1021         }
1022         // If we already read the inner box we have to push the inner env
1023         if (!outer_type.empty() && !inner_type.empty() &&
1024             (inner_flags & FLAG_END))
1025                 active_environments.push_back(inner_type);
1026         bool use_ert = false;
1027         if (!outer_type.empty() && !inner_type.empty()) {
1028                 // Look whether there is some content after the end of the
1029                 // inner box, but before the end of the outer box.
1030                 // If yes, we need to output ERT.
1031                 p.pushPosition();
1032                 if (inner_flags & FLAG_END)
1033                         p.ertEnvironment(inner_type);
1034                 else
1035                         p.verbatim_item();
1036                 p.skip_spaces(true);
1037                 bool const outer_env(outer_type == "framed" || outer_type == "minipage");
1038                 if ((outer_env && p.next_token().asInput() != "\\end") ||
1039                     (!outer_env && p.next_token().cat() != catEnd)) {
1040                         // something is between the end of the inner box and
1041                         // the end of the outer box, so we need to use ERT.
1042                         use_ert = true;
1043                 }
1044                 p.popPosition();
1045         }
1046
1047         if (use_ert) {
1048                 ostringstream ss;
1049                 if (!outer_type.empty()) {
1050                         if (outer_flags & FLAG_END)
1051                                 ss << "\\begin{" << outer_type << '}';
1052                         else {
1053                                 ss << '\\' << outer_type << '{';
1054                                 if (!special.empty())
1055                                         ss << special;
1056                         }
1057                 }
1058                 if (!inner_type.empty()) {
1059                         if (inner_type != "shaded") {
1060                                 if (inner_flags & FLAG_END)
1061                                         ss << "\\begin{" << inner_type << '}';
1062                                 else
1063                                         ss << '\\' << inner_type;
1064                         }
1065                         if (!position.empty())
1066                                 ss << '[' << position << ']';
1067                         if (!latex_height.empty())
1068                                 ss << '[' << latex_height << ']';
1069                         if (!inner_pos.empty())
1070                                 ss << '[' << inner_pos << ']';
1071                         ss << '{' << latex_width << '}';
1072                         if (!(inner_flags & FLAG_END))
1073                                 ss << '{';
1074                 }
1075                 if (inner_type == "shaded")
1076                         ss << "\\begin{shaded}";
1077                 output_ert_inset(os, ss.str(), parent_context);
1078                 if (!inner_type.empty()) {
1079                         parse_text(p, os, inner_flags, outer, parent_context);
1080                         if (inner_flags & FLAG_END)
1081                                 output_ert_inset(os, "\\end{" + inner_type + '}',
1082                                            parent_context);
1083                         else
1084                                 output_ert_inset(os, "}", parent_context);
1085                 }
1086                 if (!outer_type.empty()) {
1087                         // If we already read the inner box we have to pop
1088                         // the inner env
1089                         if (!inner_type.empty() && (inner_flags & FLAG_END))
1090                                 active_environments.pop_back();
1091
1092                         // Ensure that the end of the outer box is parsed correctly:
1093                         // The opening brace has been eaten by parse_outer_box()
1094                         if (!outer_type.empty() && (outer_flags & FLAG_ITEM)) {
1095                                 outer_flags &= ~FLAG_ITEM;
1096                                 outer_flags |= FLAG_BRACE_LAST;
1097                         }
1098                         parse_text(p, os, outer_flags, outer, parent_context);
1099                         if (outer_flags & FLAG_END)
1100                                 output_ert_inset(os, "\\end{" + outer_type + '}',
1101                                            parent_context);
1102                         else
1103                                 output_ert_inset(os, "}", parent_context);
1104                 }
1105         } else {
1106                 // LyX does not like empty positions, so we have
1107                 // to set them to the LaTeX default values here.
1108                 if (position.empty())
1109                         position = "c";
1110                 if (inner_pos.empty())
1111                         inner_pos = position;
1112                 parent_context.check_layout(os);
1113                 begin_inset(os, "Box ");
1114                 if (outer_type == "framed")
1115                         os << "Framed\n";
1116                 else if (outer_type == "framebox" || outer_type == "fbox" || !frame_color.empty())
1117                         os << "Boxed\n";
1118                 else if (outer_type == "shadowbox")
1119                         os << "Shadowbox\n";
1120                 else if ((outer_type == "shaded" && inner_type.empty()) ||
1121                              (outer_type == "minipage" && inner_type == "shaded") ||
1122                              (outer_type == "parbox" && inner_type == "shaded")) {
1123                         os << "Shaded\n";
1124                         preamble.registerAutomaticallyLoadedPackage("color");
1125                 } else if (outer_type == "doublebox")
1126                         os << "Doublebox\n";
1127                 else if (outer_type.empty() || outer_type == "mbox")
1128                         os << "Frameless\n";
1129                 else
1130                         os << outer_type << '\n';
1131                 os << "position \"" << position << "\"\n";
1132                 os << "hor_pos \"" << hor_pos << "\"\n";
1133                 if (outer_type == "mbox")
1134                         os << "has_inner_box 1\n";
1135                 else if (!frame_color.empty() && inner_type == "makebox")
1136                         os << "has_inner_box 0\n";
1137                 else
1138                         os << "has_inner_box " << !inner_type.empty() << "\n";
1139                 os << "inner_pos \"" << inner_pos << "\"\n";
1140                 os << "use_parbox " << (inner_type == "parbox" || shadedparbox)
1141                    << '\n';
1142                 if (outer_type == "mbox")
1143                         os << "use_makebox 1\n";
1144                 else if (!frame_color.empty())
1145                         os << "use_makebox 0\n";
1146                 else
1147                         os << "use_makebox " << (inner_type == "makebox") << '\n';
1148                 if (outer_type == "mbox" || (outer_type == "fbox" && inner_type.empty()))
1149                         os << "width \"\"\n";
1150                 // for values like "1.5\width" LyX uses "1.5in" as width ad sets "width" as sepecial
1151                 else if (contains(width_unit, '\\'))
1152                         os << "width \"" << width_value << "in" << "\"\n";
1153                 else
1154                         os << "width \"" << width_value << width_unit << "\"\n";
1155                 if (contains(width_unit, '\\')) {
1156                         width_unit.erase (0,1); // remove the leading '\'
1157                         os << "special \"" << width_unit << "\"\n";
1158                 } else
1159                         os << "special \"" << width_special << "\"\n";
1160                 if (contains(height_unit, '\\'))
1161                         os << "height \"" << height_value << "in" << "\"\n";
1162                 else
1163                         os << "height \"" << height_value << height_unit << "\"\n";
1164                 os << "height_special \"" << height_special << "\"\n";
1165                 os << "thickness \"" << thickness << "\"\n";
1166                 os << "separation \"" << separation << "\"\n";
1167                 os << "shadowsize \"" << shadowsize << "\"\n";
1168                 os << "framecolor \"" << framecolor << "\"\n";
1169                 os << "backgroundcolor \"" << backgroundcolor << "\"\n";
1170                 os << "status open\n\n";
1171
1172                 // Unfortunately we can't use parse_text_in_inset:
1173                 // InsetBox::forcePlainLayout() is hard coded and does not
1174                 // use the inset layout. Apart from that do we call parse_text
1175                 // up to two times, but need only one check_end_layout.
1176                 bool const forcePlainLayout =
1177                         (!inner_type.empty() || inner_type == "makebox") &&
1178                         outer_type != "shaded" && outer_type != "framed";
1179                 Context context(true, parent_context.textclass);
1180                 if (forcePlainLayout)
1181                         context.layout = &context.textclass.plainLayout();
1182                 else
1183                         context.font = parent_context.font;
1184
1185                 // If we have no inner box the contents will be read with the outer box
1186                 if (!inner_type.empty())
1187                         parse_text(p, os, inner_flags, outer, context);
1188
1189                 // Ensure that the end of the outer box is parsed correctly:
1190                 // The opening brace has been eaten by parse_outer_box()
1191                 if (!outer_type.empty() && (outer_flags & FLAG_ITEM)) {
1192                         outer_flags &= ~FLAG_ITEM;
1193                         outer_flags |= FLAG_BRACE_LAST;
1194                 }
1195
1196                 // Find end of outer box, output contents if inner_type is
1197                 // empty and output possible comments
1198                 if (!outer_type.empty()) {
1199                         // If we already read the inner box we have to pop
1200                         // the inner env
1201                         if (!inner_type.empty() && (inner_flags & FLAG_END))
1202                                 active_environments.pop_back();
1203                         // This does not output anything but comments if
1204                         // inner_type is not empty (see use_ert)
1205                         parse_text(p, os, outer_flags, outer, context);
1206                 }
1207
1208                 context.check_end_layout(os);
1209                 end_inset(os);
1210 #ifdef PRESERVE_LAYOUT
1211                 // LyX puts a % after the end of the minipage
1212                 if (p.next_token().cat() == catNewline && p.next_token().cs().size() > 1) {
1213                         // new paragraph
1214                         //output_comment(p, os, "dummy", parent_context);
1215                         p.get_token();
1216                         p.skip_spaces();
1217                         parent_context.new_paragraph(os);
1218                 }
1219                 else if (p.next_token().cat() == catSpace || p.next_token().cat() == catNewline) {
1220                         //output_comment(p, os, "dummy", parent_context);
1221                         p.get_token();
1222                         p.skip_spaces();
1223                         // We add a protected space if something real follows
1224                         if (p.good() && p.next_token().cat() != catComment) {
1225                                 begin_inset(os, "space ~\n");
1226                                 end_inset(os);
1227                         }
1228                 }
1229 #endif
1230         }
1231         if (inner_type == "minipage" && (!frame_color.empty() || !background_color.empty()))
1232                 active_environments.pop_back();
1233         if (inner_flags != FLAG_BRACE_LAST && (!frame_color.empty() || !background_color.empty())) {
1234                 // in this case we have to eat the the closing brace of the color box
1235                 p.get_token().asInput(); // the '}'
1236         }
1237         if (p.next_token().asInput() == "}") {
1238                 // in this case we assume that the closing brace is from the box settings
1239                 // therefore reset these values for the next box
1240                 fboxrule = "";
1241                 fboxsep = "";
1242                 shadow_size = "";
1243         }
1244
1245         // all boxes except of Frameless and Shaded require calc
1246         if (!(outer_type.empty() || outer_type == "mbox") &&
1247                 !((outer_type == "shaded" && inner_type.empty()) ||
1248                              (outer_type == "minipage" && inner_type == "shaded") ||
1249                              (outer_type == "parbox" && inner_type == "shaded")))
1250                 preamble.registerAutomaticallyLoadedPackage("calc");
1251 }
1252
1253
1254 void parse_outer_box(Parser & p, ostream & os, unsigned flags, bool outer,
1255                      Context & parent_context, string const & outer_type,
1256                      string const & special)
1257 {
1258         eat_whitespace(p, os, parent_context, false);
1259         if (flags & FLAG_ITEM) {
1260                 // Eat '{'
1261                 if (p.next_token().cat() == catBegin)
1262                         p.get_token();
1263                 else
1264                         cerr << "Warning: Ignoring missing '{' after \\"
1265                              << outer_type << '.' << endl;
1266                 eat_whitespace(p, os, parent_context, false);
1267         }
1268         string inner;
1269         unsigned int inner_flags = 0;
1270         p.pushPosition();
1271         if (outer_type == "minipage" || outer_type == "parbox") {
1272                 p.skip_spaces(true);
1273                 while (p.hasOpt()) {
1274                         p.getArg('[', ']');
1275                         p.skip_spaces(true);
1276                 }
1277                 p.getArg('{', '}');
1278                 p.skip_spaces(true);
1279                 if (outer_type == "parbox") {
1280                         // Eat '{'
1281                         if (p.next_token().cat() == catBegin)
1282                                 p.get_token();
1283                         p.skip_spaces(true);
1284                 }
1285         }
1286         if (outer_type == "shaded" || outer_type == "mbox") {
1287                 // These boxes never have an inner box
1288                 ;
1289         } else if (p.next_token().asInput() == "\\parbox") {
1290                 inner = p.get_token().cs();
1291                 inner_flags = FLAG_ITEM;
1292         } else if (p.next_token().asInput() == "\\begin") {
1293                 // Is this a minipage or shaded box?
1294                 p.pushPosition();
1295                 p.get_token();
1296                 inner = p.getArg('{', '}');
1297                 p.popPosition();
1298                 if (inner == "minipage" || inner == "shaded")
1299                         inner_flags = FLAG_END;
1300                 else
1301                         inner = "";
1302         }
1303         p.popPosition();
1304         if (inner_flags == FLAG_END) {
1305                 if (inner != "shaded")
1306                 {
1307                         p.get_token();
1308                         p.getArg('{', '}');
1309                         eat_whitespace(p, os, parent_context, false);
1310                 }
1311                 parse_box(p, os, flags, FLAG_END, outer, parent_context,
1312                           outer_type, special, inner, "", "");
1313         } else {
1314                 if (inner_flags == FLAG_ITEM) {
1315                         p.get_token();
1316                         eat_whitespace(p, os, parent_context, false);
1317                 }
1318                 parse_box(p, os, flags, inner_flags, outer, parent_context,
1319                           outer_type, special, inner, "", "");
1320         }
1321 }
1322
1323
1324 void parse_listings(Parser & p, ostream & os, Context & parent_context,
1325                     bool in_line, bool use_minted)
1326 {
1327         parent_context.check_layout(os);
1328         begin_inset(os, "listings\n");
1329         string arg = p.hasOpt() ? subst(p.verbatimOption(), "\n", "") : string();
1330         size_t i;
1331         while ((i = arg.find(", ")) != string::npos
1332                         || (i = arg.find(",\t")) != string::npos)
1333                 arg.erase(i + 1, 1);
1334
1335         if (use_minted) {
1336                 string const language = p.getArg('{', '}');
1337                 p.skip_spaces(true);
1338                 arg += string(arg.empty() ? "" : ",") + "language=" + language;
1339                 if (!minted_float.empty()) {
1340                         arg += string(arg.empty() ? "" : ",") + minted_float;
1341                         minted_nonfloat_caption.clear();
1342                 }
1343         }
1344         if (!arg.empty()) {
1345                 os << "lstparams " << '"' << arg << '"' << '\n';
1346                 if (arg.find("\\color") != string::npos)
1347                         preamble.registerAutomaticallyLoadedPackage("color");
1348         }
1349         if (in_line)
1350                 os << "inline true\n";
1351         else
1352                 os << "inline false\n";
1353         os << "status collapsed\n";
1354         Context context(true, parent_context.textclass);
1355         context.layout = &parent_context.textclass.plainLayout();
1356         if (use_minted && prefixIs(minted_nonfloat_caption, "[t]")) {
1357                 minted_nonfloat_caption.erase(0,3);
1358                 os << "\n\\begin_layout Plain Layout\n";
1359                 begin_inset(os, "Caption Standard\n");
1360                 Context newcontext(true, context.textclass,
1361                                    context.layout, 0, context.font);
1362                 newcontext.check_layout(os);
1363                 os << minted_nonfloat_caption << "\n";
1364                 newcontext.check_end_layout(os);
1365                 end_inset(os);
1366                 os << "\n\\end_layout\n";
1367                 minted_nonfloat_caption.clear();
1368         }
1369         string s;
1370         if (in_line) {
1371                 // set catcodes to verbatim early, just in case.
1372                 p.setCatcodes(VERBATIM_CATCODES);
1373                 string delim = p.get_token().asInput();
1374                 //FIXME: handler error condition
1375                 s = p.verbatimStuff(delim).second;
1376 //              context.new_paragraph(os);
1377         } else if (use_minted) {
1378                 s = p.verbatimEnvironment("minted");
1379         } else {
1380                 s = p.verbatimEnvironment("lstlisting");
1381         }
1382         output_ert(os, s, context);
1383         if (use_minted && prefixIs(minted_nonfloat_caption, "[b]")) {
1384                 minted_nonfloat_caption.erase(0,3);
1385                 os << "\n\\begin_layout Plain Layout\n";
1386                 begin_inset(os, "Caption Standard\n");
1387                 Context newcontext(true, context.textclass,
1388                                    context.layout, 0, context.font);
1389                 newcontext.check_layout(os);
1390                 os << minted_nonfloat_caption << "\n";
1391                 newcontext.check_end_layout(os);
1392                 end_inset(os);
1393                 os << "\n\\end_layout\n";
1394                 minted_nonfloat_caption.clear();
1395         }
1396         // Don't close the inset here for floating minted listings.
1397         // It will be closed at the end of the listing environment.
1398         if (!use_minted || minted_float.empty())
1399                 end_inset(os);
1400         else {
1401                 eat_whitespace(p, os, parent_context, true);
1402                 Token t = p.get_token();
1403                 if (t.asInput() != "\\end") {
1404                         // If anything follows, collect it into a caption.
1405                         minted_float_has_caption = true;
1406                         os << "\n\\begin_layout Plain Layout\n"; // outer layout
1407                         begin_inset(os, "Caption Standard\n");
1408                         os << "\n\\begin_layout Plain Layout\n"; // inner layout
1409                 }
1410                 p.putback();
1411         }
1412 }
1413
1414
1415 /// parse an unknown environment
1416 void parse_unknown_environment(Parser & p, string const & name, ostream & os,
1417                                unsigned flags, bool outer,
1418                                Context & parent_context)
1419 {
1420         if (name == "tabbing")
1421                 // We need to remember that we have to handle '\=' specially
1422                 flags |= FLAG_TABBING;
1423
1424         // We need to translate font changes and paragraphs inside the
1425         // environment to ERT if we have a non standard font.
1426         // Otherwise things like
1427         // \large\begin{foo}\huge bar\end{foo}
1428         // will not work.
1429         bool const specialfont =
1430                 (parent_context.font != parent_context.normalfont);
1431         bool const new_layout_allowed = parent_context.new_layout_allowed;
1432         if (specialfont)
1433                 parent_context.new_layout_allowed = false;
1434         output_ert_inset(os, "\\begin{" + name + "}", parent_context);
1435         parse_text_snippet(p, os, flags, outer, parent_context);
1436         output_ert_inset(os, "\\end{" + name + "}", parent_context);
1437         if (specialfont)
1438                 parent_context.new_layout_allowed = new_layout_allowed;
1439 }
1440
1441
1442 void parse_environment(Parser & p, ostream & os, bool outer,
1443                        string & last_env, Context & parent_context)
1444 {
1445         Layout const * newlayout;
1446         InsetLayout const * newinsetlayout = 0;
1447         string const name = p.getArg('{', '}');
1448         const bool is_starred = suffixIs(name, '*');
1449         string const unstarred_name = rtrim(name, "*");
1450         active_environments.push_back(name);
1451
1452         if (is_math_env(name)) {
1453                 parent_context.check_layout(os);
1454                 begin_inset(os, "Formula ");
1455                 os << "\\begin{" << name << "}";
1456                 parse_math(p, os, FLAG_END, MATH_MODE);
1457                 os << "\\end{" << name << "}";
1458                 end_inset(os);
1459                 if (is_display_math_env(name)) {
1460                         // Prevent the conversion of a line break to a space
1461                         // (bug 7668). This does not change the output, but
1462                         // looks ugly in LyX.
1463                         eat_whitespace(p, os, parent_context, false);
1464                 }
1465         }
1466
1467         else if (is_known(name, preamble.polyglossia_languages)) {
1468                 // We must begin a new paragraph if not already done
1469                 if (! parent_context.atParagraphStart()) {
1470                         parent_context.check_end_layout(os);
1471                         parent_context.new_paragraph(os);
1472                 }
1473                 // save the language in the context so that it is
1474                 // handled by parse_text
1475                 parent_context.font.language = preamble.polyglossia2lyx(name);
1476                 parse_text(p, os, FLAG_END, outer, parent_context);
1477                 // Just in case the environment is empty
1478                 parent_context.extra_stuff.erase();
1479                 // We must begin a new paragraph to reset the language
1480                 parent_context.new_paragraph(os);
1481                 p.skip_spaces();
1482         }
1483
1484         else if (unstarred_name == "tabular" || name == "longtable") {
1485                 eat_whitespace(p, os, parent_context, false);
1486                 string width = "0pt";
1487                 if (name == "tabular*") {
1488                         width = lyx::translate_len(p.getArg('{', '}'));
1489                         eat_whitespace(p, os, parent_context, false);
1490                 }
1491                 parent_context.check_layout(os);
1492                 begin_inset(os, "Tabular ");
1493                 handle_tabular(p, os, name, width, parent_context);
1494                 end_inset(os);
1495                 p.skip_spaces();
1496         }
1497
1498         else if (parent_context.textclass.floats().typeExist(unstarred_name)) {
1499                 eat_whitespace(p, os, parent_context, false);
1500                 string const opt = p.hasOpt() ? p.getArg('[', ']') : string();
1501                 eat_whitespace(p, os, parent_context, false);
1502                 parent_context.check_layout(os);
1503                 begin_inset(os, "Float " + unstarred_name + "\n");
1504                 // store the float type for subfloats
1505                 // subfloats only work with figures and tables
1506                 if (unstarred_name == "figure")
1507                         float_type = unstarred_name;
1508                 else if (unstarred_name == "table")
1509                         float_type = unstarred_name;
1510                 else
1511                         float_type = "";
1512                 if (!opt.empty())
1513                         os << "placement " << opt << '\n';
1514                 if (contains(opt, "H"))
1515                         preamble.registerAutomaticallyLoadedPackage("float");
1516                 else {
1517                         Floating const & fl = parent_context.textclass.floats()
1518                                               .getType(unstarred_name);
1519                         if (!fl.floattype().empty() && fl.usesFloatPkg())
1520                                 preamble.registerAutomaticallyLoadedPackage("float");
1521                 }
1522
1523                 os << "wide " << convert<string>(is_starred)
1524                    << "\nsideways false"
1525                    << "\nstatus open\n\n";
1526                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1527                 end_inset(os);
1528                 // We don't need really a new paragraph, but
1529                 // we must make sure that the next item gets a \begin_layout.
1530                 parent_context.new_paragraph(os);
1531                 p.skip_spaces();
1532                 // the float is parsed thus delete the type
1533                 float_type = "";
1534         }
1535
1536         else if (unstarred_name == "sidewaysfigure"
1537                 || unstarred_name == "sidewaystable"
1538                 || unstarred_name == "sidewaysalgorithm") {
1539                 string const opt = p.hasOpt() ? p.getArg('[', ']') : string();
1540                 eat_whitespace(p, os, parent_context, false);
1541                 parent_context.check_layout(os);
1542                 if (unstarred_name == "sidewaysfigure")
1543                         begin_inset(os, "Float figure\n");
1544                 else if (unstarred_name == "sidewaystable")
1545                         begin_inset(os, "Float table\n");
1546                 else if (unstarred_name == "sidewaysalgorithm")
1547                         begin_inset(os, "Float algorithm\n");
1548                 if (!opt.empty())
1549                         os << "placement " << opt << '\n';
1550                 if (contains(opt, "H"))
1551                         preamble.registerAutomaticallyLoadedPackage("float");
1552                 os << "wide " << convert<string>(is_starred)
1553                    << "\nsideways true"
1554                    << "\nstatus open\n\n";
1555                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1556                 end_inset(os);
1557                 // We don't need really a new paragraph, but
1558                 // we must make sure that the next item gets a \begin_layout.
1559                 parent_context.new_paragraph(os);
1560                 p.skip_spaces();
1561                 preamble.registerAutomaticallyLoadedPackage("rotfloat");
1562         }
1563
1564         else if (name == "wrapfigure" || name == "wraptable") {
1565                 // syntax is \begin{wrapfigure}[lines]{placement}[overhang]{width}
1566                 eat_whitespace(p, os, parent_context, false);
1567                 parent_context.check_layout(os);
1568                 // default values
1569                 string lines = "0";
1570                 string overhang = "0col%";
1571                 // parse
1572                 if (p.hasOpt())
1573                         lines = p.getArg('[', ']');
1574                 string const placement = p.getArg('{', '}');
1575                 if (p.hasOpt())
1576                         overhang = p.getArg('[', ']');
1577                 string const width = p.getArg('{', '}');
1578                 // write
1579                 if (name == "wrapfigure")
1580                         begin_inset(os, "Wrap figure\n");
1581                 else
1582                         begin_inset(os, "Wrap table\n");
1583                 os << "lines " << lines
1584                    << "\nplacement " << placement
1585                    << "\noverhang " << lyx::translate_len(overhang)
1586                    << "\nwidth " << lyx::translate_len(width)
1587                    << "\nstatus open\n\n";
1588                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1589                 end_inset(os);
1590                 // We don't need really a new paragraph, but
1591                 // we must make sure that the next item gets a \begin_layout.
1592                 parent_context.new_paragraph(os);
1593                 p.skip_spaces();
1594                 preamble.registerAutomaticallyLoadedPackage("wrapfig");
1595         }
1596
1597         else if (name == "minipage") {
1598                 eat_whitespace(p, os, parent_context, false);
1599                 // Test whether this is an outer box of a shaded box
1600                 p.pushPosition();
1601                 // swallow arguments
1602                 while (p.hasOpt()) {
1603                         p.getArg('[', ']');
1604                         p.skip_spaces(true);
1605                 }
1606                 p.getArg('{', '}');
1607                 p.skip_spaces(true);
1608                 Token t = p.get_token();
1609                 bool shaded = false;
1610                 if (t.asInput() == "\\begin") {
1611                         p.skip_spaces(true);
1612                         if (p.getArg('{', '}') == "shaded")
1613                                 shaded = true;
1614                 }
1615                 p.popPosition();
1616                 if (shaded)
1617                         parse_outer_box(p, os, FLAG_END, outer,
1618                                         parent_context, name, "shaded");
1619                 else
1620                         parse_box(p, os, 0, FLAG_END, outer, parent_context,
1621                                   "", "", name, "", "");
1622                 p.skip_spaces();
1623         }
1624
1625         else if (name == "comment") {
1626                 eat_whitespace(p, os, parent_context, false);
1627                 parent_context.check_layout(os);
1628                 begin_inset(os, "Note Comment\n");
1629                 os << "status open\n";
1630                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1631                 end_inset(os);
1632                 p.skip_spaces();
1633                 skip_braces(p); // eat {} that might by set by LyX behind comments
1634                 preamble.registerAutomaticallyLoadedPackage("verbatim");
1635         }
1636
1637         else if (unstarred_name == "verbatim") {
1638                 // FIXME: this should go in the generic code that
1639                 // handles environments defined in layout file that
1640                 // have "PassThru 1". However, the code over there is
1641                 // already too complicated for my taste.
1642                 string const ascii_name =
1643                         (name == "verbatim*") ? "Verbatim*" : "Verbatim";
1644                 parent_context.new_paragraph(os);
1645                 Context context(true, parent_context.textclass,
1646                                 &parent_context.textclass[from_ascii(ascii_name)]);
1647                 string s = p.verbatimEnvironment(name);
1648                 output_ert(os, s, context);
1649                 p.skip_spaces();
1650         }
1651
1652         else if (name == "IPA") {
1653                 eat_whitespace(p, os, parent_context, false);
1654                 parent_context.check_layout(os);
1655                 begin_inset(os, "IPA\n");
1656                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1657                 end_inset(os);
1658                 p.skip_spaces();
1659                 preamble.registerAutomaticallyLoadedPackage("tipa");
1660                 preamble.registerAutomaticallyLoadedPackage("tipx");
1661         }
1662
1663         else if (name == "CJK") {
1664                 // the scheme is \begin{CJK}{encoding}{mapping}text\end{CJK}
1665                 // It is impossible to decide if a CJK environment was in its own paragraph or within
1666                 // a line. We therefore always assume a paragraph since the latter is a rare case.
1667                 eat_whitespace(p, os, parent_context, false);
1668                 parent_context.check_end_layout(os);
1669                 // store the encoding to be able to reset it
1670                 string const encoding_old = p.getEncoding();
1671                 string const encoding = p.getArg('{', '}');
1672                 // FIXME: For some reason JIS does not work. Although the text
1673                 // in tests/CJK.tex is identical with the SJIS version if you
1674                 // convert both snippets using the recode command line utility,
1675                 // the resulting .lyx file contains some extra characters if
1676                 // you set buggy_encoding to false for JIS.
1677                 bool const buggy_encoding = encoding == "JIS";
1678                 if (!buggy_encoding)
1679                         p.setEncoding(encoding, Encoding::CJK);
1680                 else {
1681                         // FIXME: This will read garbage, since the data is not encoded in utf8.
1682                         p.setEncoding("UTF-8");
1683                 }
1684                 // LyX only supports the same mapping for all CJK
1685                 // environments, so we might need to output everything as ERT
1686                 string const mapping = trim(p.getArg('{', '}'));
1687                 char const * const * const where =
1688                         is_known(encoding, supported_CJK_encodings);
1689                 if (!buggy_encoding && !preamble.fontCJKSet())
1690                         preamble.fontCJK(mapping);
1691                 bool knownMapping = mapping == preamble.fontCJK();
1692                 if (buggy_encoding || !knownMapping || !where) {
1693                         parent_context.check_layout(os);
1694                         output_ert_inset(os, "\\begin{" + name + "}{" + encoding + "}{" + mapping + "}",
1695                                        parent_context);
1696                         // we must parse the content as verbatim because e.g. JIS can contain
1697                         // normally invalid characters
1698                         // FIXME: This works only for the most simple cases.
1699                         //        Since TeX control characters are not parsed,
1700                         //        things like comments are completely wrong.
1701                         string const s = p.plainEnvironment("CJK");
1702                         for (string::const_iterator it = s.begin(), et = s.end(); it != et; ++it) {
1703                                 if (*it == '\\')
1704                                         output_ert_inset(os, "\\", parent_context);
1705                                 else if (*it == '$')
1706                                         output_ert_inset(os, "$", parent_context);
1707                                 else if (*it == '\n' && it + 1 != et && s.begin() + 1 != it)
1708                                         os << "\n ";
1709                                 else
1710                                         os << *it;
1711                         }
1712                         output_ert_inset(os, "\\end{" + name + "}",
1713                                        parent_context);
1714                 } else {
1715                         string const lang =
1716                                 supported_CJK_languages[where - supported_CJK_encodings];
1717                         // store the language because we must reset it at the end
1718                         string const lang_old = parent_context.font.language;
1719                         parent_context.font.language = lang;
1720                         parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1721                         parent_context.font.language = lang_old;
1722                         parent_context.new_paragraph(os);
1723                 }
1724                 p.setEncoding(encoding_old);
1725                 p.skip_spaces();
1726         }
1727
1728         else if (name == "lyxgreyedout") {
1729                 eat_whitespace(p, os, parent_context, false);
1730                 parent_context.check_layout(os);
1731                 begin_inset(os, "Note Greyedout\n");
1732                 os << "status open\n";
1733                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1734                 end_inset(os);
1735                 p.skip_spaces();
1736                 if (!preamble.notefontcolor().empty())
1737                         preamble.registerAutomaticallyLoadedPackage("color");
1738         }
1739
1740         else if (name == "btSect") {
1741                 eat_whitespace(p, os, parent_context, false);
1742                 parent_context.check_layout(os);
1743                 begin_command_inset(os, "bibtex", "bibtex");
1744                 string bibstyle = "plain";
1745                 if (p.hasOpt()) {
1746                         bibstyle = p.getArg('[', ']');
1747                         p.skip_spaces(true);
1748                 }
1749                 string const bibfile = p.getArg('{', '}');
1750                 eat_whitespace(p, os, parent_context, false);
1751                 Token t = p.get_token();
1752                 if (t.asInput() == "\\btPrintCited") {
1753                         p.skip_spaces(true);
1754                         os << "btprint " << '"' << "btPrintCited" << '"' << "\n";
1755                 }
1756                 if (t.asInput() == "\\btPrintNotCited") {
1757                         p.skip_spaces(true);
1758                         os << "btprint " << '"' << "btPrintNotCited" << '"' << "\n";
1759                 }
1760                 if (t.asInput() == "\\btPrintAll") {
1761                         p.skip_spaces(true);
1762                         os << "btprint " << '"' << "btPrintAll" << '"' << "\n";
1763                 }
1764                 os << "bibfiles " << '"' << bibfile << "\"\n"
1765                    << "options " << '"' << bibstyle << "\"\n";
1766                 parse_text_in_inset(p, os, FLAG_END, outer, parent_context);
1767                 end_inset(os);
1768                 p.skip_spaces();
1769         }
1770
1771         else if (name == "framed" || name == "shaded") {
1772                 eat_whitespace(p, os, parent_context, false);
1773                 parse_outer_box(p, os, FLAG_END, outer, parent_context, name, "");
1774                 p.skip_spaces();
1775                 preamble.registerAutomaticallyLoadedPackage("framed");
1776         }
1777
1778         else if (name == "listing") {
1779                 minted_float = "float";
1780                 eat_whitespace(p, os, parent_context, false);
1781                 string const opt = p.hasOpt() ? p.getArg('[', ']') : string();
1782                 if (!opt.empty())
1783                         minted_float += "=" + opt;
1784                 // If something precedes \begin{minted}, we output it at the end
1785                 // as a caption, in order to keep it inside the listings inset.
1786                 eat_whitespace(p, os, parent_context, true);
1787                 p.pushPosition();
1788                 Token const & t = p.get_token();
1789                 p.skip_spaces(true);
1790                 string const envname = p.next_token().cat() == catBegin
1791                                                 ? p.getArg('{', '}') : string();
1792                 bool prologue = t.asInput() != "\\begin" || envname != "minted";
1793                 p.popPosition();
1794                 minted_float_has_caption = false;
1795                 string content = parse_text_snippet(p, FLAG_END, outer,
1796                                                     parent_context);
1797                 size_t i = content.find("\\begin_inset listings");
1798                 bool minted_env = i != string::npos;
1799                 string caption;
1800                 if (prologue) {
1801                         caption = content.substr(0, i);
1802                         content.erase(0, i);
1803                 }
1804                 parent_context.check_layout(os);
1805                 if (minted_env && minted_float_has_caption) {
1806                         eat_whitespace(p, os, parent_context, true);
1807                         os << content << "\n";
1808                         if (!caption.empty())
1809                                 os << caption << "\n";
1810                         os << "\n\\end_layout\n"; // close inner layout
1811                         end_inset(os);            // close caption inset
1812                         os << "\n\\end_layout\n"; // close outer layout
1813                 } else if (!caption.empty()) {
1814                         if (!minted_env) {
1815                                 begin_inset(os, "listings\n");
1816                                 os << "lstparams " << '"' << minted_float << '"' << '\n';
1817                                 os << "inline false\n";
1818                                 os << "status collapsed\n";
1819                         }
1820                         os << "\n\\begin_layout Plain Layout\n";
1821                         begin_inset(os, "Caption Standard\n");
1822                         Context newcontext(true, parent_context.textclass,
1823                                            0, 0, parent_context.font);
1824                         newcontext.check_layout(os);
1825                         os << caption << "\n";
1826                         newcontext.check_end_layout(os);
1827                         end_inset(os);
1828                         os << "\n\\end_layout\n";
1829                 } else if (content.empty()) {
1830                         begin_inset(os, "listings\n");
1831                         os << "lstparams " << '"' << minted_float << '"' << '\n';
1832                         os << "inline false\n";
1833                         os << "status collapsed\n";
1834                 } else {
1835                         os << content << "\n";
1836                 }
1837                 end_inset(os); // close listings inset
1838                 parent_context.check_end_layout(os);
1839                 parent_context.new_paragraph(os);
1840                 p.skip_spaces();
1841                 minted_float.clear();
1842                 minted_float_has_caption = false;
1843         }
1844
1845         else if (name == "lstlisting" || name == "minted") {
1846                 bool use_minted = name == "minted";
1847                 eat_whitespace(p, os, parent_context, false);
1848                 if (use_minted && minted_float.empty()) {
1849                         // look ahead for a bottom caption
1850                         p.pushPosition();
1851                         bool found_end_minted = false;
1852                         while (!found_end_minted && p.good()) {
1853                                 Token const & t = p.get_token();
1854                                 p.skip_spaces();
1855                                 string const envname =
1856                                         p.next_token().cat() == catBegin
1857                                                 ? p.getArg('{', '}') : string();
1858                                 found_end_minted = t.asInput() == "\\end"
1859                                                         && envname == "minted";
1860                         }
1861                         eat_whitespace(p, os, parent_context, true);
1862                         Token const & t = p.get_token();
1863                         p.skip_spaces(true);
1864                         if (t.asInput() == "\\lyxmintcaption") {
1865                                 string const pos = p.getArg('[', ']');
1866                                 if (pos == "b") {
1867                                         string const caption =
1868                                                 parse_text_snippet(p, FLAG_ITEM,
1869                                                         false, parent_context);
1870                                         minted_nonfloat_caption = "[b]" + caption;
1871                                 }
1872                         }
1873                         p.popPosition();
1874                 }
1875                 parse_listings(p, os, parent_context, false, use_minted);
1876                 p.skip_spaces();
1877         }
1878
1879         else if (!parent_context.new_layout_allowed)
1880                 parse_unknown_environment(p, name, os, FLAG_END, outer,
1881                                           parent_context);
1882
1883         // Alignment and spacing settings
1884         // FIXME (bug xxxx): These settings can span multiple paragraphs and
1885         //                                       therefore are totally broken!
1886         // Note that \centering, raggedright, and raggedleft cannot be handled, as
1887         // they are commands not environments. They are furthermore switches that
1888         // can be ended by another switches, but also by commands like \footnote or
1889         // \parbox. So the only safe way is to leave them untouched.
1890         else if (name == "center" || name == "centering" ||
1891                  name == "flushleft" || name == "flushright" ||
1892                  name == "singlespace" || name == "onehalfspace" ||
1893                  name == "doublespace" || name == "spacing") {
1894                 eat_whitespace(p, os, parent_context, false);
1895                 // We must begin a new paragraph if not already done
1896                 if (! parent_context.atParagraphStart()) {
1897                         parent_context.check_end_layout(os);
1898                         parent_context.new_paragraph(os);
1899                 }
1900                 if (name == "flushleft")
1901                         parent_context.add_extra_stuff("\\align left\n");
1902                 else if (name == "flushright")
1903                         parent_context.add_extra_stuff("\\align right\n");
1904                 else if (name == "center" || name == "centering")
1905                         parent_context.add_extra_stuff("\\align center\n");
1906                 else if (name == "singlespace")
1907                         parent_context.add_extra_stuff("\\paragraph_spacing single\n");
1908                 else if (name == "onehalfspace") {
1909                         parent_context.add_extra_stuff("\\paragraph_spacing onehalf\n");
1910                         preamble.registerAutomaticallyLoadedPackage("setspace");
1911                 } else if (name == "doublespace") {
1912                         parent_context.add_extra_stuff("\\paragraph_spacing double\n");
1913                         preamble.registerAutomaticallyLoadedPackage("setspace");
1914                 } else if (name == "spacing") {
1915                         parent_context.add_extra_stuff("\\paragraph_spacing other " + p.verbatim_item() + "\n");
1916                         preamble.registerAutomaticallyLoadedPackage("setspace");
1917                 }
1918                 parse_text(p, os, FLAG_END, outer, parent_context);
1919                 // Just in case the environment is empty
1920                 parent_context.extra_stuff.erase();
1921                 // We must begin a new paragraph to reset the alignment
1922                 parent_context.new_paragraph(os);
1923                 p.skip_spaces();
1924         }
1925
1926         // The single '=' is meant here.
1927         else if ((newlayout = findLayout(parent_context.textclass, name, false))) {
1928                 eat_whitespace(p, os, parent_context, false);
1929                 Context context(true, parent_context.textclass, newlayout,
1930                                 parent_context.layout, parent_context.font);
1931                 if (parent_context.deeper_paragraph) {
1932                         // We are beginning a nested environment after a
1933                         // deeper paragraph inside the outer list environment.
1934                         // Therefore we don't need to output a "begin deeper".
1935                         context.need_end_deeper = true;
1936                 }
1937                 parent_context.check_end_layout(os);
1938                 if (last_env == name) {
1939                         // we need to output a separator since LyX would export
1940                         // the two environments as one otherwise (bug 5716)
1941                         TeX2LyXDocClass const & textclass(parent_context.textclass);
1942                         Context newcontext(true, textclass,
1943                                         &(textclass.defaultLayout()));
1944                         newcontext.check_layout(os);
1945                         begin_inset(os, "Separator plain\n");
1946                         end_inset(os);
1947                         newcontext.check_end_layout(os);
1948                 }
1949                 switch (context.layout->latextype) {
1950                 case  LATEX_LIST_ENVIRONMENT:
1951                         context.add_par_extra_stuff("\\labelwidthstring "
1952                                                     + p.verbatim_item() + '\n');
1953                         p.skip_spaces();
1954                         break;
1955                 case  LATEX_BIB_ENVIRONMENT:
1956                         p.verbatim_item(); // swallow next arg
1957                         p.skip_spaces();
1958                         break;
1959                 default:
1960                         break;
1961                 }
1962                 context.check_deeper(os);
1963                 // handle known optional and required arguments
1964                 // Unfortunately LyX can't handle arguments of list arguments (bug 7468):
1965                 // It is impossible to place anything after the environment name,
1966                 // but before the first \\item.
1967                 if (context.layout->latextype == LATEX_ENVIRONMENT)
1968                         output_arguments(os, p, outer, false, false, context,
1969                                          context.layout->latexargs());
1970                 parse_text(p, os, FLAG_END, outer, context);
1971                 if (context.layout->latextype == LATEX_ENVIRONMENT)
1972                         output_arguments(os, p, outer, false, true, context,
1973                                          context.layout->postcommandargs());
1974                 context.check_end_layout(os);
1975                 if (parent_context.deeper_paragraph) {
1976                         // We must suppress the "end deeper" because we
1977                         // suppressed the "begin deeper" above.
1978                         context.need_end_deeper = false;
1979                 }
1980                 context.check_end_deeper(os);
1981                 parent_context.new_paragraph(os);
1982                 p.skip_spaces();
1983                 if (!preamble.titleLayoutFound())
1984                         preamble.titleLayoutFound(newlayout->intitle);
1985                 set<string> const & req = newlayout->requires();
1986                 set<string>::const_iterator it = req.begin();
1987                 set<string>::const_iterator en = req.end();
1988                 for (; it != en; ++it)
1989                         preamble.registerAutomaticallyLoadedPackage(*it);
1990         }
1991
1992         // The single '=' is meant here.
1993         else if ((newinsetlayout = findInsetLayout(parent_context.textclass, name, false))) {
1994                 eat_whitespace(p, os, parent_context, false);
1995                 parent_context.check_layout(os);
1996                 begin_inset(os, "Flex ");
1997                 docstring flex_name = newinsetlayout->name();
1998                 // FIXME: what do we do if the prefix is not Flex: ?
1999                 if (prefixIs(flex_name, from_ascii("Flex:")))
2000                         flex_name.erase(0, 5);
2001                 os << to_utf8(flex_name) << '\n'
2002                    << "status collapsed\n";
2003                 if (newinsetlayout->isPassThru()) {
2004                         string const arg = p.verbatimEnvironment(name);
2005                         Context context(true, parent_context.textclass,
2006                                         &parent_context.textclass.plainLayout(),
2007                                         parent_context.layout);
2008                         output_ert(os, arg, parent_context);
2009                 } else
2010                         parse_text_in_inset(p, os, FLAG_END, false, parent_context, newinsetlayout);
2011                 end_inset(os);
2012         }
2013
2014         else if (name == "appendix") {
2015                 // This is no good latex style, but it works and is used in some documents...
2016                 eat_whitespace(p, os, parent_context, false);
2017                 parent_context.check_end_layout(os);
2018                 Context context(true, parent_context.textclass, parent_context.layout,
2019                                 parent_context.layout, parent_context.font);
2020                 context.check_layout(os);
2021                 os << "\\start_of_appendix\n";
2022                 parse_text(p, os, FLAG_END, outer, context);
2023                 context.check_end_layout(os);
2024                 p.skip_spaces();
2025         }
2026
2027         else if (known_environments.find(name) != known_environments.end()) {
2028                 vector<ArgumentType> arguments = known_environments[name];
2029                 // The last "argument" denotes wether we may translate the
2030                 // environment contents to LyX
2031                 // The default required if no argument is given makes us
2032                 // compatible with the reLyXre environment.
2033                 ArgumentType contents = arguments.empty() ?
2034                         required :
2035                         arguments.back();
2036                 if (!arguments.empty())
2037                         arguments.pop_back();
2038                 // See comment in parse_unknown_environment()
2039                 bool const specialfont =
2040                         (parent_context.font != parent_context.normalfont);
2041                 bool const new_layout_allowed =
2042                         parent_context.new_layout_allowed;
2043                 if (specialfont)
2044                         parent_context.new_layout_allowed = false;
2045                 parse_arguments("\\begin{" + name + "}", arguments, p, os,
2046                                 outer, parent_context);
2047                 if (contents == verbatim)
2048                         output_ert_inset(os, p.ertEnvironment(name),
2049                                    parent_context);
2050                 else
2051                         parse_text_snippet(p, os, FLAG_END, outer,
2052                                            parent_context);
2053                 output_ert_inset(os, "\\end{" + name + "}", parent_context);
2054                 if (specialfont)
2055                         parent_context.new_layout_allowed = new_layout_allowed;
2056         }
2057
2058         else
2059                 parse_unknown_environment(p, name, os, FLAG_END, outer,
2060                                           parent_context);
2061
2062         last_env = name;
2063         active_environments.pop_back();
2064 }
2065
2066
2067 /// parses a comment and outputs it to \p os.
2068 void parse_comment(Parser & p, ostream & os, Token const & t, Context & context)
2069 {
2070         LASSERT(t.cat() == catComment, return);
2071         if (!t.cs().empty()) {
2072                 context.check_layout(os);
2073                 output_comment(p, os, t.cs(), context);
2074                 if (p.next_token().cat() == catNewline) {
2075                         // A newline after a comment line starts a new
2076                         // paragraph
2077                         if (context.new_layout_allowed) {
2078                                 if(!context.atParagraphStart())
2079                                         // Only start a new paragraph if not already
2080                                         // done (we might get called recursively)
2081                                         context.new_paragraph(os);
2082                         } else
2083                                 output_ert_inset(os, "\n", context);
2084                         eat_whitespace(p, os, context, true);
2085                 }
2086         } else {
2087                 // "%\n" combination
2088                 p.skip_spaces();
2089         }
2090 }
2091
2092
2093 /*!
2094  * Reads spaces and comments until the first non-space, non-comment token.
2095  * New paragraphs (double newlines or \\par) are handled like simple spaces
2096  * if \p eatParagraph is true.
2097  * Spaces are skipped, but comments are written to \p os.
2098  */
2099 void eat_whitespace(Parser & p, ostream & os, Context & context,
2100                     bool eatParagraph)
2101 {
2102         while (p.good()) {
2103                 Token const & t = p.get_token();
2104                 if (t.cat() == catComment)
2105                         parse_comment(p, os, t, context);
2106                 else if ((! eatParagraph && p.isParagraph()) ||
2107                          (t.cat() != catSpace && t.cat() != catNewline)) {
2108                         p.putback();
2109                         return;
2110                 }
2111         }
2112 }
2113
2114
2115 /*!
2116  * Set a font attribute, parse text and reset the font attribute.
2117  * \param attribute Attribute name (e.g. \\family, \\shape etc.)
2118  * \param currentvalue Current value of the attribute. Is set to the new
2119  * value during parsing.
2120  * \param newvalue New value of the attribute
2121  */
2122 void parse_text_attributes(Parser & p, ostream & os, unsigned flags, bool outer,
2123                            Context & context, string const & attribute,
2124                            string & currentvalue, string const & newvalue)
2125 {
2126         context.check_layout(os);
2127         string const oldvalue = currentvalue;
2128         currentvalue = newvalue;
2129         os << '\n' << attribute << ' ' << newvalue << "\n";
2130         parse_text_snippet(p, os, flags, outer, context);
2131         context.check_layout(os);
2132         os << '\n' << attribute << ' ' << oldvalue << "\n";
2133         currentvalue = oldvalue;
2134 }
2135
2136
2137 /// get the arguments of a natbib or jurabib citation command
2138 void get_cite_arguments(Parser & p, bool natbibOrder,
2139         string & before, string & after)
2140 {
2141         // We need to distinguish "" and "[]", so we can't use p.getOpt().
2142
2143         // text before the citation
2144         before.clear();
2145         // text after the citation
2146         after = p.getFullOpt();
2147
2148         if (!after.empty()) {
2149                 before = p.getFullOpt();
2150                 if (natbibOrder && !before.empty())
2151                         swap(before, after);
2152         }
2153 }
2154
2155
2156 /// Convert filenames with TeX macros and/or quotes to something LyX
2157 /// can understand
2158 string const normalize_filename(string const & name)
2159 {
2160         Parser p(name);
2161         ostringstream os;
2162         while (p.good()) {
2163                 Token const & t = p.get_token();
2164                 if (t.cat() != catEscape)
2165                         os << t.asInput();
2166                 else if (t.cs() == "lyxdot") {
2167                         // This is used by LyX for simple dots in relative
2168                         // names
2169                         os << '.';
2170                         p.skip_spaces();
2171                 } else if (t.cs() == "space") {
2172                         os << ' ';
2173                         p.skip_spaces();
2174                 } else if (t.cs() == "string") {
2175                         // Convert \string" to " and \string~ to ~
2176                         Token const & n = p.next_token();
2177                         if (n.asInput() != "\"" && n.asInput() != "~")
2178                                 os << t.asInput();
2179                 } else
2180                         os << t.asInput();
2181         }
2182         // Strip quotes. This is a bit complicated (see latex_path()).
2183         string full = os.str();
2184         if (!full.empty() && full[0] == '"') {
2185                 string base = removeExtension(full);
2186                 string ext = getExtension(full);
2187                 if (!base.empty() && base[base.length()-1] == '"')
2188                         // "a b"
2189                         // "a b".tex
2190                         return addExtension(trim(base, "\""), ext);
2191                 if (full[full.length()-1] == '"')
2192                         // "a b.c"
2193                         // "a b.c".tex
2194                         return trim(full, "\"");
2195         }
2196         return full;
2197 }
2198
2199
2200 /// Convert \p name from TeX convention (relative to master file) to LyX
2201 /// convention (relative to .lyx file) if it is relative
2202 void fix_child_filename(string & name)
2203 {
2204         string const absMasterTeX = getMasterFilePath(true);
2205         bool const isabs = FileName::isAbsolute(name);
2206         // convert from "relative to .tex master" to absolute original path
2207         if (!isabs)
2208                 name = makeAbsPath(name, absMasterTeX).absFileName();
2209         bool copyfile = copyFiles();
2210         string const absParentLyX = getParentFilePath(false);
2211         string abs = name;
2212         if (copyfile) {
2213                 // convert from absolute original path to "relative to master file"
2214                 string const rel = to_utf8(makeRelPath(from_utf8(name),
2215                                                        from_utf8(absMasterTeX)));
2216                 // re-interpret "relative to .tex file" as "relative to .lyx file"
2217                 // (is different if the master .lyx file resides in a
2218                 // different path than the master .tex file)
2219                 string const absMasterLyX = getMasterFilePath(false);
2220                 abs = makeAbsPath(rel, absMasterLyX).absFileName();
2221                 // Do not copy if the new path is impossible to create. Example:
2222                 // absMasterTeX = "/foo/bar/"
2223                 // absMasterLyX = "/bar/"
2224                 // name = "/baz.eps" => new absolute name would be "/../baz.eps"
2225                 if (contains(name, "/../"))
2226                         copyfile = false;
2227         }
2228         if (copyfile) {
2229                 if (isabs)
2230                         name = abs;
2231                 else {
2232                         // convert from absolute original path to
2233                         // "relative to .lyx file"
2234                         name = to_utf8(makeRelPath(from_utf8(abs),
2235                                                    from_utf8(absParentLyX)));
2236                 }
2237         }
2238         else if (!isabs) {
2239                 // convert from absolute original path to "relative to .lyx file"
2240                 name = to_utf8(makeRelPath(from_utf8(name),
2241                                            from_utf8(absParentLyX)));
2242         }
2243 }
2244
2245
2246 void copy_file(FileName const & src, string dstname)
2247 {
2248         if (!copyFiles())
2249                 return;
2250         string const absParent = getParentFilePath(false);
2251         FileName dst;
2252         if (FileName::isAbsolute(dstname))
2253                 dst = FileName(dstname);
2254         else
2255                 dst = makeAbsPath(dstname, absParent);
2256         FileName const srcpath = src.onlyPath();
2257         FileName const dstpath = dst.onlyPath();
2258         if (equivalent(srcpath, dstpath))
2259                 return;
2260         if (!dstpath.isDirectory()) {
2261                 if (!dstpath.createPath()) {
2262                         cerr << "Warning: Could not create directory for file `"
2263                              << dst.absFileName() << "´." << endl;
2264                         return;
2265                 }
2266         }
2267         if (dst.isReadableFile()) {
2268                 if (overwriteFiles())
2269                         cerr << "Warning: Overwriting existing file `"
2270                              << dst.absFileName() << "´." << endl;
2271                 else {
2272                         cerr << "Warning: Not overwriting existing file `"
2273                              << dst.absFileName() << "´." << endl;
2274                         return;
2275                 }
2276         }
2277         if (!src.copyTo(dst))
2278                 cerr << "Warning: Could not copy file `" << src.absFileName()
2279                      << "´ to `" << dst.absFileName() << "´." << endl;
2280 }
2281
2282
2283 /// Parse a literate Chunk section. The initial "<<" is already parsed.
2284 bool parse_chunk(Parser & p, ostream & os, Context & context)
2285 {
2286         // check whether a chunk is possible here.
2287         if (!context.textclass.hasInsetLayout(from_ascii("Flex:Chunk"))) {
2288                 return false;
2289         }
2290
2291         p.pushPosition();
2292
2293         // read the parameters
2294         Parser::Arg const params = p.verbatimStuff(">>=\n", false);
2295         if (!params.first) {
2296                 p.popPosition();
2297                 return false;
2298         }
2299
2300         Parser::Arg const code = p.verbatimStuff("\n@");
2301         if (!code.first) {
2302                 p.popPosition();
2303                 return false;
2304         }
2305         string const post_chunk = p.verbatimStuff("\n").second + '\n';
2306         if (post_chunk[0] != ' ' && post_chunk[0] != '\n') {
2307                 p.popPosition();
2308                 return false;
2309         }
2310         // The last newline read is important for paragraph handling
2311         p.putback();
2312         p.deparse();
2313
2314         //cerr << "params=[" << params.second << "], code=[" << code.second << "]" <<endl;
2315         // We must have a valid layout before outputting the Chunk inset.
2316         context.check_layout(os);
2317         Context chunkcontext(true, context.textclass);
2318         chunkcontext.layout = &context.textclass.plainLayout();
2319         begin_inset(os, "Flex Chunk");
2320         os << "\nstatus open\n";
2321         if (!params.second.empty()) {
2322                 chunkcontext.check_layout(os);
2323                 Context paramscontext(true, context.textclass);
2324                 paramscontext.layout = &context.textclass.plainLayout();
2325                 begin_inset(os, "Argument 1");
2326                 os << "\nstatus open\n";
2327                 output_ert(os, params.second, paramscontext);
2328                 end_inset(os);
2329         }
2330         output_ert(os, code.second, chunkcontext);
2331         end_inset(os);
2332
2333         p.dropPosition();
2334         return true;
2335 }
2336
2337
2338 /// detects \\def, \\long\\def and \\global\\long\\def with ws and comments
2339 bool is_macro(Parser & p)
2340 {
2341         Token first = p.curr_token();
2342         if (first.cat() != catEscape || !p.good())
2343                 return false;
2344         if (first.cs() == "def")
2345                 return true;
2346         if (first.cs() != "global" && first.cs() != "long")
2347                 return false;
2348         Token second = p.get_token();
2349         int pos = 1;
2350         while (p.good() && !p.isParagraph() && (second.cat() == catSpace ||
2351                second.cat() == catNewline || second.cat() == catComment)) {
2352                 second = p.get_token();
2353                 pos++;
2354         }
2355         bool secondvalid = second.cat() == catEscape;
2356         Token third;
2357         bool thirdvalid = false;
2358         if (p.good() && first.cs() == "global" && secondvalid &&
2359             second.cs() == "long") {
2360                 third = p.get_token();
2361                 pos++;
2362                 while (p.good() && !p.isParagraph() &&
2363                        (third.cat() == catSpace ||
2364                         third.cat() == catNewline ||
2365                         third.cat() == catComment)) {
2366                         third = p.get_token();
2367                         pos++;
2368                 }
2369                 thirdvalid = third.cat() == catEscape;
2370         }
2371         for (int i = 0; i < pos; ++i)
2372                 p.putback();
2373         if (!secondvalid)
2374                 return false;
2375         if (!thirdvalid)
2376                 return (first.cs() == "global" || first.cs() == "long") &&
2377                        second.cs() == "def";
2378         return first.cs() == "global" && second.cs() == "long" &&
2379                third.cs() == "def";
2380 }
2381
2382
2383 /// Parse a macro definition (assumes that is_macro() returned true)
2384 void parse_macro(Parser & p, ostream & os, Context & context)
2385 {
2386         context.check_layout(os);
2387         Token first = p.curr_token();
2388         Token second;
2389         Token third;
2390         string command = first.asInput();
2391         if (first.cs() != "def") {
2392                 p.get_token();
2393                 eat_whitespace(p, os, context, false);
2394                 second = p.curr_token();
2395                 command += second.asInput();
2396                 if (second.cs() != "def") {
2397                         p.get_token();
2398                         eat_whitespace(p, os, context, false);
2399                         third = p.curr_token();
2400                         command += third.asInput();
2401                 }
2402         }
2403         eat_whitespace(p, os, context, false);
2404         string const name = p.get_token().cs();
2405         eat_whitespace(p, os, context, false);
2406
2407         // parameter text
2408         bool simple = true;
2409         string paramtext;
2410         int arity = 0;
2411         while (p.next_token().cat() != catBegin) {
2412                 if (p.next_token().cat() == catParameter) {
2413                         // # found
2414                         p.get_token();
2415                         paramtext += "#";
2416
2417                         // followed by number?
2418                         if (p.next_token().cat() == catOther) {
2419                                 string s = p.get_token().asInput();
2420                                 paramtext += s;
2421                                 // number = current arity + 1?
2422                                 if (s.size() == 1 && s[0] == arity + '0' + 1)
2423                                         ++arity;
2424                                 else
2425                                         simple = false;
2426                         } else
2427                                 paramtext += p.get_token().cs();
2428                 } else {
2429                         paramtext += p.get_token().cs();
2430                         simple = false;
2431                 }
2432         }
2433
2434         // only output simple (i.e. compatible) macro as FormulaMacros
2435         string ert = '\\' + name + ' ' + paramtext + '{' + p.verbatim_item() + '}';
2436         if (simple) {
2437                 context.check_layout(os);
2438                 begin_inset(os, "FormulaMacro");
2439                 os << "\n\\def" << ert;
2440                 end_inset(os);
2441         } else
2442                 output_ert_inset(os, command + ert, context);
2443 }
2444
2445
2446 void registerExternalTemplatePackages(string const & name)
2447 {
2448         external::TemplateManager const & etm = external::TemplateManager::get();
2449         external::Template const * const et = etm.getTemplateByName(name);
2450         if (!et)
2451                 return;
2452         external::Template::Formats::const_iterator cit = et->formats.end();
2453         if (pdflatex)
2454                 cit = et->formats.find("PDFLaTeX");
2455         if (cit == et->formats.end())
2456                 // If the template has not specified a PDFLaTeX output,
2457                 // we try the LaTeX format.
2458                 cit = et->formats.find("LaTeX");
2459         if (cit == et->formats.end())
2460                 return;
2461         vector<string>::const_iterator qit = cit->second.requirements.begin();
2462         vector<string>::const_iterator qend = cit->second.requirements.end();
2463         for (; qit != qend; ++qit)
2464                 preamble.registerAutomaticallyLoadedPackage(*qit);
2465 }
2466
2467 } // anonymous namespace
2468
2469
2470 void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
2471                 Context & context)
2472 {
2473         Layout const * newlayout = 0;
2474         InsetLayout const * newinsetlayout = 0;
2475         char const * const * where = 0;
2476         // Store the latest bibliographystyle, addcontentslineContent and
2477         // nocite{*} option (needed for bibtex inset)
2478         string btprint;
2479         string contentslineContent;
2480         // Some classes provide a \bibliographystyle, so do not output
2481         // any if none is explicitly set.
2482         string bibliographystyle;
2483         bool const use_natbib = isProvided("natbib");
2484         bool const use_jurabib = isProvided("jurabib");
2485         string last_env;
2486
2487         // it is impossible to determine the correct encoding for non-CJK Japanese.
2488         // Therefore write a note at the beginning of the document
2489         if (is_nonCJKJapanese) {
2490                 context.check_layout(os);
2491                 begin_inset(os, "Note Note\n");
2492                 os << "status open\n\\begin_layout Plain Layout\n"
2493                    << "\\series bold\n"
2494                    << "Important information:\n"
2495                    << "\\end_layout\n\n"
2496                    << "\\begin_layout Plain Layout\n"
2497                    << "The original LaTeX source for this document is in Japanese (pLaTeX).\n"
2498                    << " It was therefore impossible for tex2lyx to determine the correct encoding.\n"
2499                    << " The iconv encoding " << p.getEncoding() << " was used.\n"
2500                    << " If this is incorrect, you must run the tex2lyx program on the command line\n"
2501                    << " and specify the encoding using the -e command-line switch.\n"
2502                    << " In addition, you might want to double check that the desired output encoding\n"
2503                    << " is correctly selected in Document > Settings > Language.\n"
2504                    << "\\end_layout\n";
2505                 end_inset(os);
2506                 is_nonCJKJapanese = false;
2507         }
2508
2509         while (p.good()) {
2510                 Token const & t = p.get_token();
2511 #ifdef FILEDEBUG
2512                 debugToken(cerr, t, flags);
2513 #endif
2514
2515                 if (flags & FLAG_ITEM) {
2516                         if (t.cat() == catSpace)
2517                                 continue;
2518
2519                         flags &= ~FLAG_ITEM;
2520                         if (t.cat() == catBegin) {
2521                                 // skip the brace and collect everything to the next matching
2522                                 // closing brace
2523                                 flags |= FLAG_BRACE_LAST;
2524                                 continue;
2525                         }
2526
2527                         // handle only this single token, leave the loop if done
2528                         flags |= FLAG_LEAVE;
2529                 }
2530
2531                 if (t.cat() != catEscape && t.character() == ']' &&
2532                     (flags & FLAG_BRACK_LAST))
2533                         return;
2534                 if (t.cat() == catEnd && (flags & FLAG_BRACE_LAST))
2535                         return;
2536
2537                 // If there is anything between \end{env} and \begin{env} we
2538                 // don't need to output a separator.
2539                 if (t.cat() != catSpace && t.cat() != catNewline &&
2540                     t.asInput() != "\\begin")
2541                         last_env = "";
2542
2543                 //
2544                 // cat codes
2545                 //
2546                 bool const starred = p.next_token().asInput() == "*";
2547                 string const starredname(starred ? (t.cs() + '*') : t.cs());
2548                 if (t.cat() == catMath) {
2549                         // we are inside some text mode thingy, so opening new math is allowed
2550                         context.check_layout(os);
2551                         begin_inset(os, "Formula ");
2552                         Token const & n = p.get_token();
2553                         bool const display(n.cat() == catMath && outer);
2554                         if (display) {
2555                                 // TeX's $$...$$ syntax for displayed math
2556                                 os << "\\[";
2557                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
2558                                 os << "\\]";
2559                                 p.get_token(); // skip the second '$' token
2560                         } else {
2561                                 // simple $...$  stuff
2562                                 p.putback();
2563                                 os << '$';
2564                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
2565                                 os << '$';
2566                         }
2567                         end_inset(os);
2568                         if (display) {
2569                                 // Prevent the conversion of a line break to a
2570                                 // space (bug 7668). This does not change the
2571                                 // output, but looks ugly in LyX.
2572                                 eat_whitespace(p, os, context, false);
2573                         }
2574                 }
2575
2576                 else if (t.cat() == catSuper || t.cat() == catSub)
2577                         cerr << "catcode " << t << " illegal in text mode\n";
2578
2579                 // Basic support for english quotes. This should be
2580                 // extended to other quotes, but is not so easy (a
2581                 // left english quote is the same as a right german
2582                 // quote...)
2583                 else if (t.asInput() == "`" && p.next_token().asInput() == "`") {
2584                         context.check_layout(os);
2585                         begin_inset(os, "Quotes ");
2586                         os << "eld";
2587                         end_inset(os);
2588                         p.get_token();
2589                         skip_braces(p);
2590                 }
2591                 else if (t.asInput() == "'" && p.next_token().asInput() == "'") {
2592                         context.check_layout(os);
2593                         begin_inset(os, "Quotes ");
2594                         os << "erd";
2595                         end_inset(os);
2596                         p.get_token();
2597                         skip_braces(p);
2598                 }
2599
2600                 else if (t.asInput() == ">" && p.next_token().asInput() == ">") {
2601                         context.check_layout(os);
2602                         begin_inset(os, "Quotes ");
2603                         os << "ald";
2604                         end_inset(os);
2605                         p.get_token();
2606                         skip_braces(p);
2607                 }
2608
2609                 else if (t.asInput() == "<"
2610                          && p.next_token().asInput() == "<") {
2611                         bool has_chunk = false;
2612                         if (noweb_mode) {
2613                                 p.pushPosition();
2614                                 p.get_token();
2615                                 has_chunk = parse_chunk(p, os, context);
2616                                 if (!has_chunk)
2617                                         p.popPosition();
2618                         }
2619
2620                         if (!has_chunk) {
2621                                 context.check_layout(os);
2622                                 begin_inset(os, "Quotes ");
2623                                 //FIXME: this is a right danish quote;
2624                                 // why not a left french quote?
2625                                 os << "ard";
2626                                 end_inset(os);
2627                                 p.get_token();
2628                                 skip_braces(p);
2629                         }
2630                 }
2631
2632                 else if (t.cat() == catSpace || (t.cat() == catNewline && ! p.isParagraph()))
2633                         check_space(p, os, context);
2634
2635                 else if (t.character() == '[' && noweb_mode &&
2636                          p.next_token().character() == '[') {
2637                         // These can contain underscores
2638                         p.putback();
2639                         string const s = p.getFullOpt() + ']';
2640                         if (p.next_token().character() == ']')
2641                                 p.get_token();
2642                         else
2643                                 cerr << "Warning: Inserting missing ']' in '"
2644                                      << s << "'." << endl;
2645                         output_ert_inset(os, s, context);
2646                 }
2647
2648                 else if (t.cat() == catLetter) {
2649                         context.check_layout(os);
2650                         os << t.cs();
2651                 }
2652
2653                 else if (t.cat() == catOther ||
2654                                t.cat() == catAlign ||
2655                                t.cat() == catParameter) {
2656                         context.check_layout(os);
2657                         if (t.asInput() == "-" && p.next_token().asInput() == "-" &&
2658                             context.merging_hyphens_allowed &&
2659                             context.font.family != "ttfamily" &&
2660                             !context.layout->pass_thru) {
2661                                 if (p.next_next_token().asInput() == "-") {
2662                                         // --- is emdash
2663                                         os << to_utf8(docstring(1, 0x2014));
2664                                         p.get_token();
2665                                 } else
2666                                         // -- is endash
2667                                         os << to_utf8(docstring(1, 0x2013));
2668                                 p.get_token();
2669                         } else
2670                                 // This translates "&" to "\\&" which may be wrong...
2671                                 os << t.cs();
2672                 }
2673
2674                 else if (p.isParagraph()) {
2675                         // In minted floating listings we will collect
2676                         // everything into the caption, where multiple
2677                         // paragraphs are forbidden.
2678                         if (minted_float.empty()) {
2679                                 if (context.new_layout_allowed)
2680                                         context.new_paragraph(os);
2681                                 else
2682                                         output_ert_inset(os, "\\par ", context);
2683                         } else
2684                                 os << ' ';
2685                         eat_whitespace(p, os, context, true);
2686                 }
2687
2688                 else if (t.cat() == catActive) {
2689                         context.check_layout(os);
2690                         if (t.character() == '~') {
2691                                 if (context.layout->free_spacing)
2692                                         os << ' ';
2693                                 else {
2694                                         begin_inset(os, "space ~\n");
2695                                         end_inset(os);
2696                                 }
2697                         } else
2698                                 os << t.cs();
2699                 }
2700
2701                 else if (t.cat() == catBegin) {
2702                         Token const next = p.next_token();
2703                         Token const end = p.next_next_token();
2704                         if (next.cat() == catEnd) {
2705                                 // {}
2706                                 Token const prev = p.prev_token();
2707                                 p.get_token();
2708                                 if (p.next_token().character() == '`')
2709                                         ; // ignore it in {}``
2710                                 else
2711                                         output_ert_inset(os, "{}", context);
2712                         } else if (next.cat() == catEscape &&
2713                                    is_known(next.cs(), known_quotes) &&
2714                                    end.cat() == catEnd) {
2715                                 // Something like {\textquoteright} (e.g.
2716                                 // from writer2latex). LyX writes
2717                                 // \textquoteright{}, so we may skip the
2718                                 // braces here for better readability.
2719                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2720                                                    outer, context);
2721                         } else if (p.next_token().asInput() == "\\ascii") {
2722                                 // handle the \ascii characters
2723                                 // (the case without braces is handled later)
2724                                 // the code is "{\ascii\xxx}"
2725                                 p.get_token(); // eat \ascii
2726                                 string name2 = p.get_token().asInput();
2727                                 p.get_token(); // eat the final '}'
2728                                 string const name = "{\\ascii" + name2 + "}";
2729                                 bool termination;
2730                                 docstring rem;
2731                                 set<string> req;
2732                                 // get the character from unicodesymbols
2733                                 docstring s = encodings.fromLaTeXCommand(from_utf8(name),
2734                                         Encodings::TEXT_CMD, termination, rem, &req);
2735                                 if (!s.empty()) {
2736                                         context.check_layout(os);
2737                                         os << to_utf8(s);
2738                                         if (!rem.empty())
2739                                                 output_ert_inset(os,
2740                                                         to_utf8(rem), context);
2741                                         for (set<string>::const_iterator it = req.begin();
2742                                              it != req.end(); ++it)
2743                                                 preamble.registerAutomaticallyLoadedPackage(*it);
2744                                 } else
2745                                         // we did not find a non-ert version
2746                                         output_ert_inset(os, name, context);
2747                         } else {
2748                         context.check_layout(os);
2749                         // special handling of font attribute changes
2750                         Token const prev = p.prev_token();
2751                         TeXFont const oldFont = context.font;
2752                         if (next.character() == '[' ||
2753                             next.character() == ']' ||
2754                             next.character() == '*') {
2755                                 p.get_token();
2756                                 if (p.next_token().cat() == catEnd) {
2757                                         os << next.cs();
2758                                         p.get_token();
2759                                 } else {
2760                                         p.putback();
2761                                         output_ert_inset(os, "{", context);
2762                                         parse_text_snippet(p, os,
2763                                                         FLAG_BRACE_LAST,
2764                                                         outer, context);
2765                                         output_ert_inset(os, "}", context);
2766                                 }
2767                         } else if (! context.new_layout_allowed) {
2768                                 output_ert_inset(os, "{", context);
2769                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2770                                                    outer, context);
2771                                 output_ert_inset(os, "}", context);
2772                         } else if (is_known(next.cs(), known_sizes)) {
2773                                 // next will change the size, so we must
2774                                 // reset it here
2775                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2776                                                    outer, context);
2777                                 if (!context.atParagraphStart())
2778                                         os << "\n\\size "
2779                                            << context.font.size << "\n";
2780                         } else if (is_known(next.cs(), known_font_families)) {
2781                                 // next will change the font family, so we
2782                                 // must reset it here
2783                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2784                                                    outer, context);
2785                                 if (!context.atParagraphStart())
2786                                         os << "\n\\family "
2787                                            << context.font.family << "\n";
2788                         } else if (is_known(next.cs(), known_font_series)) {
2789                                 // next will change the font series, so we
2790                                 // must reset it here
2791                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2792                                                    outer, context);
2793                                 if (!context.atParagraphStart())
2794                                         os << "\n\\series "
2795                                            << context.font.series << "\n";
2796                         } else if (is_known(next.cs(), known_font_shapes)) {
2797                                 // next will change the font shape, so we
2798                                 // must reset it here
2799                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2800                                                    outer, context);
2801                                 if (!context.atParagraphStart())
2802                                         os << "\n\\shape "
2803                                            << context.font.shape << "\n";
2804                         } else if (is_known(next.cs(), known_old_font_families) ||
2805                                    is_known(next.cs(), known_old_font_series) ||
2806                                    is_known(next.cs(), known_old_font_shapes)) {
2807                                 // next will change the font family, series
2808                                 // and shape, so we must reset it here
2809                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2810                                                    outer, context);
2811                                 if (!context.atParagraphStart())
2812                                         os <<  "\n\\family "
2813                                            << context.font.family
2814                                            << "\n\\series "
2815                                            << context.font.series
2816                                            << "\n\\shape "
2817                                            << context.font.shape << "\n";
2818                         } else {
2819                                 output_ert_inset(os, "{", context);
2820                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2821                                                    outer, context);
2822                                 output_ert_inset(os, "}", context);
2823                                 }
2824                         }
2825                 }
2826
2827                 else if (t.cat() == catEnd) {
2828                         if (flags & FLAG_BRACE_LAST) {
2829                                 return;
2830                         }
2831                         cerr << "stray '}' in text\n";
2832                         output_ert_inset(os, "}", context);
2833                 }
2834
2835                 else if (t.cat() == catComment)
2836                         parse_comment(p, os, t, context);
2837
2838                 //
2839                 // control sequences
2840                 //
2841
2842                 else if (t.cs() == "(" || t.cs() == "[") {
2843                         bool const simple = t.cs() == "(";
2844                         context.check_layout(os);
2845                         begin_inset(os, "Formula");
2846                         os << " \\" << t.cs();
2847                         parse_math(p, os, simple ? FLAG_SIMPLE2 : FLAG_EQUATION, MATH_MODE);
2848                         os << '\\' << (simple ? ')' : ']');
2849                         end_inset(os);
2850                         if (!simple) {
2851                                 // Prevent the conversion of a line break to a
2852                                 // space (bug 7668). This does not change the
2853                                 // output, but looks ugly in LyX.
2854                                 eat_whitespace(p, os, context, false);
2855                         }
2856                 }
2857
2858                 else if (t.cs() == "begin")
2859                         parse_environment(p, os, outer, last_env,
2860                                           context);
2861
2862                 else if (t.cs() == "end") {
2863                         if (flags & FLAG_END) {
2864                                 // eat environment name
2865                                 string const name = p.getArg('{', '}');
2866                                 if (name != active_environment())
2867                                         cerr << "\\end{" + name + "} does not match \\begin{"
2868                                                 + active_environment() + "}\n";
2869                                 return;
2870                         }
2871                         p.error("found 'end' unexpectedly");
2872                 }
2873
2874                 else if (t.cs() == "item") {
2875                         string s;
2876                         bool const optarg = p.hasOpt();
2877                         if (optarg) {
2878                                 // FIXME: This swallows comments, but we cannot use
2879                                 //        eat_whitespace() since we must not output
2880                                 //        anything before the item.
2881                                 p.skip_spaces(true);
2882                                 s = p.verbatimOption();
2883                         } else
2884                                 p.skip_spaces(false);
2885                         context.set_item();
2886                         context.check_layout(os);
2887                         if (context.has_item) {
2888                                 // An item in an unknown list-like environment
2889                                 // FIXME: Do this in check_layout()!
2890                                 context.has_item = false;
2891                                 if (optarg)
2892                                         output_ert_inset(os, "\\item", context);
2893                                 else
2894                                         output_ert_inset(os, "\\item ", context);
2895                         }
2896                         if (optarg) {
2897                                 if (context.layout->labeltype != LABEL_MANUAL) {
2898                                         // handle option of itemize item
2899                                         begin_inset(os, "Argument item:1\n");
2900                                         os << "status open\n";
2901                                         os << "\n\\begin_layout Plain Layout\n";
2902                                         Parser p2(s + ']');
2903                                         os << parse_text_snippet(p2,
2904                                                 FLAG_BRACK_LAST, outer, context);
2905                                         // we must not use context.check_end_layout(os)
2906                                         // because that would close the outer itemize layout
2907                                         os << "\n\\end_layout\n";
2908                                         end_inset(os);
2909                                         eat_whitespace(p, os, context, false);
2910                                 } else if (!s.empty()) {
2911                                         // LyX adds braces around the argument,
2912                                         // so we need to remove them here.
2913                                         if (s.size() > 2 && s[0] == '{' &&
2914                                             s[s.size()-1] == '}')
2915                                                 s = s.substr(1, s.size()-2);
2916                                         // If the argument contains a space we
2917                                         // must put it into ERT: Otherwise LyX
2918                                         // would misinterpret the space as
2919                                         // item delimiter (bug 7663)
2920                                         if (contains(s, ' ')) {
2921                                                 output_ert_inset(os, s, context);
2922                                         } else {
2923                                                 Parser p2(s + ']');
2924                                                 os << parse_text_snippet(p2,
2925                                                         FLAG_BRACK_LAST, outer, context);
2926                                         }
2927                                         // The space is needed to separate the
2928                                         // item from the rest of the sentence.
2929                                         os << ' ';
2930                                         eat_whitespace(p, os, context, false);
2931                                 }
2932                         }
2933                 }
2934
2935                 else if (t.cs() == "bibitem") {
2936                         context.set_item();
2937                         context.check_layout(os);
2938                         eat_whitespace(p, os, context, false);
2939                         string label = convert_command_inset_arg(p.verbatimOption());
2940                         string key = convert_command_inset_arg(p.verbatim_item());
2941                         if (contains(label, '\\') || contains(key, '\\')) {
2942                                 // LyX can't handle LaTeX commands in labels or keys
2943                                 output_ert_inset(os, t.asInput() + '[' + label +
2944                                                "]{" + p.verbatim_item() + '}',
2945                                            context);
2946                         } else {
2947                                 begin_command_inset(os, "bibitem", "bibitem");
2948                                 os << "label \"" << label << "\"\n"
2949                                    << "key \"" << key << "\"\n"
2950                                    << "literal \"true\"\n";
2951                                 end_inset(os);
2952                         }
2953                 }
2954
2955                 else if (is_macro(p)) {
2956                         // catch the case of \def\inputGnumericTable
2957                         bool macro = true;
2958                         if (t.cs() == "def") {
2959                                 Token second = p.next_token();
2960                                 if (second.cs() == "inputGnumericTable") {
2961                                         p.pushPosition();
2962                                         p.get_token();
2963                                         skip_braces(p);
2964                                         Token third = p.get_token();
2965                                         p.popPosition();
2966                                         if (third.cs() == "input") {
2967                                                 p.get_token();
2968                                                 skip_braces(p);
2969                                                 p.get_token();
2970                                                 string name = normalize_filename(p.verbatim_item());
2971                                                 string const path = getMasterFilePath(true);
2972                                                 // We want to preserve relative / absolute filenames,
2973                                                 // therefore path is only used for testing
2974                                                 // The file extension is in every case ".tex".
2975                                                 // So we need to remove this extension and check for
2976                                                 // the original one.
2977                                                 name = removeExtension(name);
2978                                                 if (!makeAbsPath(name, path).exists()) {
2979                                                         char const * const Gnumeric_formats[] = {"gnumeric",
2980                                                                 "ods", "xls", 0};
2981                                                         string const Gnumeric_name =
2982                                                                 find_file(name, path, Gnumeric_formats);
2983                                                         if (!Gnumeric_name.empty())
2984                                                                 name = Gnumeric_name;
2985                                                 }
2986                                                 FileName const absname = makeAbsPath(name, path);
2987                                                 if (absname.exists()) {
2988                                                         fix_child_filename(name);
2989                                                         copy_file(absname, name);
2990                                                 } else
2991                                                         cerr << "Warning: Could not find file '"
2992                                                              << name << "'." << endl;
2993                                                 context.check_layout(os);
2994                                                 begin_inset(os, "External\n\ttemplate ");
2995                                                 os << "GnumericSpreadsheet\n\tfilename "
2996                                                    << name << "\n";
2997                                                 end_inset(os);
2998                                                 context.check_layout(os);
2999                                                 macro = false;
3000                                                 // register the packages that are automatically loaded
3001                                                 // by the Gnumeric template
3002                                                 registerExternalTemplatePackages("GnumericSpreadsheet");
3003                                         }
3004                                 }
3005                         }
3006                         if (macro)
3007                                 parse_macro(p, os, context);
3008                 }
3009
3010                 else if (t.cs() == "noindent") {
3011                         p.skip_spaces();
3012                         context.add_par_extra_stuff("\\noindent\n");
3013                 }
3014
3015                 else if (t.cs() == "appendix") {
3016                         context.add_par_extra_stuff("\\start_of_appendix\n");
3017                         // We need to start a new paragraph. Otherwise the
3018                         // appendix in 'bla\appendix\chapter{' would start
3019                         // too late.
3020                         context.new_paragraph(os);
3021                         // We need to make sure that the paragraph is
3022                         // generated even if it is empty. Otherwise the
3023                         // appendix in '\par\appendix\par\chapter{' would
3024                         // start too late.
3025                         context.check_layout(os);
3026                         // FIXME: This is a hack to prevent paragraph
3027                         // deletion if it is empty. Handle this better!
3028                         output_comment(p, os,
3029                                 "dummy comment inserted by tex2lyx to "
3030                                 "ensure that this paragraph is not empty",
3031                                 context);
3032                         // Both measures above may generate an additional
3033                         // empty paragraph, but that does not hurt, because
3034                         // whitespace does not matter here.
3035                         eat_whitespace(p, os, context, true);
3036                 }
3037
3038                 // Must catch empty dates before findLayout is called below
3039                 else if (t.cs() == "date") {
3040                         eat_whitespace(p, os, context, false);
3041                         p.pushPosition();
3042                         string const date = p.verbatim_item();
3043                         p.popPosition();
3044                         if (date.empty()) {
3045                                 preamble.suppressDate(true);
3046                                 p.verbatim_item();
3047                         } else {
3048                                 preamble.suppressDate(false);
3049                                 if (context.new_layout_allowed &&
3050                                     (newlayout = findLayout(context.textclass,
3051                                                             t.cs(), true))) {
3052                                         // write the layout
3053                                         output_command_layout(os, p, outer,
3054                                                         context, newlayout);
3055                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3056                                         if (!preamble.titleLayoutFound())
3057                                                 preamble.titleLayoutFound(newlayout->intitle);
3058                                         set<string> const & req = newlayout->requires();
3059                                         set<string>::const_iterator it = req.begin();
3060                                         set<string>::const_iterator en = req.end();
3061                                         for (; it != en; ++it)
3062                                                 preamble.registerAutomaticallyLoadedPackage(*it);
3063                                 } else
3064                                         output_ert_inset(os,
3065                                                 "\\date{" + p.verbatim_item() + '}',
3066                                                 context);
3067                         }
3068                 }
3069
3070                 // Starred section headings
3071                 // Must attempt to parse "Section*" before "Section".
3072                 else if ((p.next_token().asInput() == "*") &&
3073                          context.new_layout_allowed &&
3074                          (newlayout = findLayout(context.textclass, t.cs() + '*', true))) {
3075                         // write the layout
3076                         p.get_token();
3077                         output_command_layout(os, p, outer, context, newlayout);
3078                         p.skip_spaces();
3079                         if (!preamble.titleLayoutFound())
3080                                 preamble.titleLayoutFound(newlayout->intitle);
3081                         set<string> const & req = newlayout->requires();
3082                         for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
3083                                 preamble.registerAutomaticallyLoadedPackage(*it);
3084                 }
3085
3086                 // Section headings and the like
3087                 else if (context.new_layout_allowed &&
3088                          (newlayout = findLayout(context.textclass, t.cs(), true))) {
3089                         // write the layout
3090                         output_command_layout(os, p, outer, context, newlayout);
3091                         p.skip_spaces();
3092                         if (!preamble.titleLayoutFound())
3093                                 preamble.titleLayoutFound(newlayout->intitle);
3094                         set<string> const & req = newlayout->requires();
3095                         for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
3096                                 preamble.registerAutomaticallyLoadedPackage(*it);
3097                 }
3098
3099                 else if (t.cs() == "subfloat") {
3100                         // the syntax is \subfloat[list entry][sub caption]{content}
3101                         // if it is a table of figure depends on the surrounding float
3102                         // FIXME: second optional argument is not parsed
3103                         p.skip_spaces();
3104                         // do nothing if there is no outer float
3105                         if (!float_type.empty()) {
3106                                 context.check_layout(os);
3107                                 p.skip_spaces();
3108                                 begin_inset(os, "Float " + float_type + "\n");
3109                                 os << "wide false"
3110                                    << "\nsideways false"
3111                                    << "\nstatus collapsed\n\n";
3112                                 // test for caption
3113                                 string caption;
3114                                 bool has_caption = false;
3115                                 if (p.next_token().cat() != catEscape &&
3116                                                 p.next_token().character() == '[') {
3117                                                         p.get_token(); // eat '['
3118                                                         caption = parse_text_snippet(p, FLAG_BRACK_LAST, outer, context);
3119                                                         has_caption = true;
3120                                 }
3121                                 // the content
3122                                 parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3123                                 // the caption comes always as the last
3124                                 if (has_caption) {
3125                                         // we must make sure that the caption gets a \begin_layout
3126                                         os << "\n\\begin_layout Plain Layout";
3127                                         p.skip_spaces();
3128                                         begin_inset(os, "Caption Standard\n");
3129                                         Context newcontext(true, context.textclass,
3130                                                            0, 0, context.font);
3131                                         newcontext.check_layout(os);
3132                                         os << caption << "\n";
3133                                         newcontext.check_end_layout(os);
3134                                         // We don't need really a new paragraph, but
3135                                         // we must make sure that the next item gets a \begin_layout.
3136                                         //newcontext.new_paragraph(os);
3137                                         end_inset(os);
3138                                         p.skip_spaces();
3139                                 }
3140                                 // We don't need really a new paragraph, but
3141                                 // we must make sure that the next item gets a \begin_layout.
3142                                 if (has_caption)
3143                                         context.new_paragraph(os);
3144                                 end_inset(os);
3145                                 p.skip_spaces();
3146                                 context.check_end_layout(os);
3147                                 // close the layout we opened
3148                                 if (has_caption)
3149                                         os << "\n\\end_layout\n";
3150                         } else {
3151                                 // if the float type is not supported or there is no surrounding float
3152                                 // output it as ERT
3153                                 if (p.hasOpt()) {
3154                                         string opt_arg = convert_command_inset_arg(p.getArg('[', ']'));
3155                                         output_ert_inset(os, t.asInput() + '[' + opt_arg +
3156                                                "]{" + p.verbatim_item() + '}', context);
3157                                 } else
3158                                         output_ert_inset(os, t.asInput() + "{" + p.verbatim_item() + '}', context);
3159                         }
3160                 }
3161
3162                 else if (t.cs() == "includegraphics") {
3163                         bool const clip = p.next_token().asInput() == "*";
3164                         if (clip)
3165                                 p.get_token();
3166                         string const arg = p.getArg('[', ']');
3167                         map<string, string> opts;
3168                         vector<string> keys;
3169                         split_map(arg, opts, keys);
3170                         if (clip)
3171                                 opts["clip"] = string();
3172                         string name = normalize_filename(p.verbatim_item());
3173
3174                         string const path = getMasterFilePath(true);
3175                         // We want to preserve relative / absolute filenames,
3176                         // therefore path is only used for testing
3177                         if (!makeAbsPath(name, path).exists()) {
3178                                 // The file extension is probably missing.
3179                                 // Now try to find it out.
3180                                 string const dvips_name =
3181                                         find_file(name, path,
3182                                                   known_dvips_graphics_formats);
3183                                 string const pdftex_name =
3184                                         find_file(name, path,
3185                                                   known_pdftex_graphics_formats);
3186                                 if (!dvips_name.empty()) {
3187                                         if (!pdftex_name.empty()) {
3188                                                 cerr << "This file contains the "
3189                                                         "latex snippet\n"
3190                                                         "\"\\includegraphics{"
3191                                                      << name << "}\".\n"
3192                                                         "However, files\n\""
3193                                                      << dvips_name << "\" and\n\""
3194                                                      << pdftex_name << "\"\n"
3195                                                         "both exist, so I had to make a "
3196                                                         "choice and took the first one.\n"
3197                                                         "Please move the unwanted one "
3198                                                         "someplace else and try again\n"
3199                                                         "if my choice was wrong."
3200                                                      << endl;
3201                                         }
3202                                         name = dvips_name;
3203                                 } else if (!pdftex_name.empty()) {
3204                                         name = pdftex_name;
3205                                         pdflatex = true;
3206                                 }
3207                         }
3208
3209                         FileName const absname = makeAbsPath(name, path);
3210                         if (absname.exists()) {
3211                                 fix_child_filename(name);
3212                                 copy_file(absname, name);
3213                         } else
3214                                 cerr << "Warning: Could not find graphics file '"
3215                                      << name << "'." << endl;
3216
3217                         context.check_layout(os);
3218                         begin_inset(os, "Graphics ");
3219                         os << "\n\tfilename " << name << '\n';
3220                         if (opts.find("width") != opts.end())
3221                                 os << "\twidth "
3222                                    << translate_len(opts["width"]) << '\n';
3223                         if (opts.find("height") != opts.end())
3224                                 os << "\theight "
3225                                    << translate_len(opts["height"]) << '\n';
3226                         if (opts.find("scale") != opts.end()) {
3227                                 istringstream iss(opts["scale"]);
3228                                 double val;
3229                                 iss >> val;
3230                                 val = val*100;
3231                                 os << "\tscale " << val << '\n';
3232                         }
3233                         if (opts.find("angle") != opts.end()) {
3234                                 os << "\trotateAngle "
3235                                    << opts["angle"] << '\n';
3236                                 vector<string>::const_iterator a =
3237                                         find(keys.begin(), keys.end(), "angle");
3238                                 vector<string>::const_iterator s =
3239                                         find(keys.begin(), keys.end(), "width");
3240                                 if (s == keys.end())
3241                                         s = find(keys.begin(), keys.end(), "height");
3242                                 if (s == keys.end())
3243                                         s = find(keys.begin(), keys.end(), "scale");
3244                                 if (s != keys.end() && distance(s, a) > 0)
3245                                         os << "\tscaleBeforeRotation\n";
3246                         }
3247                         if (opts.find("origin") != opts.end()) {
3248                                 ostringstream ss;
3249                                 string const opt = opts["origin"];
3250                                 if (opt.find('l') != string::npos) ss << "left";
3251                                 if (opt.find('r') != string::npos) ss << "right";
3252                                 if (opt.find('c') != string::npos) ss << "center";
3253                                 if (opt.find('t') != string::npos) ss << "Top";
3254                                 if (opt.find('b') != string::npos) ss << "Bottom";
3255                                 if (opt.find('B') != string::npos) ss << "Baseline";
3256                                 if (!ss.str().empty())
3257                                         os << "\trotateOrigin " << ss.str() << '\n';
3258                                 else
3259                                         cerr << "Warning: Ignoring unknown includegraphics origin argument '" << opt << "'\n";
3260                         }
3261                         if (opts.find("keepaspectratio") != opts.end())
3262                                 os << "\tkeepAspectRatio\n";
3263                         if (opts.find("clip") != opts.end())
3264                                 os << "\tclip\n";
3265                         if (opts.find("draft") != opts.end())
3266                                 os << "\tdraft\n";
3267                         if (opts.find("bb") != opts.end())
3268                                 os << "\tBoundingBox "
3269                                    << opts["bb"] << '\n';
3270                         int numberOfbbOptions = 0;
3271                         if (opts.find("bbllx") != opts.end())
3272                                 numberOfbbOptions++;
3273                         if (opts.find("bblly") != opts.end())
3274                                 numberOfbbOptions++;
3275                         if (opts.find("bburx") != opts.end())
3276                                 numberOfbbOptions++;
3277                         if (opts.find("bbury") != opts.end())
3278                                 numberOfbbOptions++;
3279                         if (numberOfbbOptions == 4)
3280                                 os << "\tBoundingBox "
3281                                    << opts["bbllx"] << " " << opts["bblly"] << " "
3282                                    << opts["bburx"] << " " << opts["bbury"] << '\n';
3283                         else if (numberOfbbOptions > 0)
3284                                 cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n";
3285                         numberOfbbOptions = 0;
3286                         if (opts.find("natwidth") != opts.end())
3287                                 numberOfbbOptions++;
3288                         if (opts.find("natheight") != opts.end())
3289                                 numberOfbbOptions++;
3290                         if (numberOfbbOptions == 2)
3291                                 os << "\tBoundingBox 0bp 0bp "
3292                                    << opts["natwidth"] << " " << opts["natheight"] << '\n';
3293                         else if (numberOfbbOptions > 0)
3294                                 cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n";
3295                         ostringstream special;
3296                         if (opts.find("hiresbb") != opts.end())
3297                                 special << "hiresbb,";
3298                         if (opts.find("trim") != opts.end())
3299                                 special << "trim,";
3300                         if (opts.find("viewport") != opts.end())
3301                                 special << "viewport=" << opts["viewport"] << ',';
3302                         if (opts.find("totalheight") != opts.end())
3303                                 special << "totalheight=" << opts["totalheight"] << ',';
3304                         if (opts.find("type") != opts.end())
3305                                 special << "type=" << opts["type"] << ',';
3306                         if (opts.find("ext") != opts.end())
3307                                 special << "ext=" << opts["ext"] << ',';
3308                         if (opts.find("read") != opts.end())
3309                                 special << "read=" << opts["read"] << ',';
3310                         if (opts.find("command") != opts.end())
3311                                 special << "command=" << opts["command"] << ',';
3312                         string s_special = special.str();
3313                         if (!s_special.empty()) {
3314                                 // We had special arguments. Remove the trailing ','.
3315                                 os << "\tspecial " << s_special.substr(0, s_special.size() - 1) << '\n';
3316                         }
3317                         // TODO: Handle the unknown settings better.
3318                         // Warn about invalid options.
3319                         // Check whether some option was given twice.
3320                         end_inset(os);
3321                         preamble.registerAutomaticallyLoadedPackage("graphicx");
3322                 }
3323
3324                 else if (t.cs() == "footnote" ||
3325                          (t.cs() == "thanks" && context.layout->intitle)) {
3326                         p.skip_spaces();
3327                         context.check_layout(os);
3328                         begin_inset(os, "Foot\n");
3329                         os << "status collapsed\n\n";
3330                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3331                         end_inset(os);
3332                 }
3333
3334                 else if (t.cs() == "marginpar") {
3335                         p.skip_spaces();
3336                         context.check_layout(os);
3337                         begin_inset(os, "Marginal\n");
3338                         os << "status collapsed\n\n";
3339                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3340                         end_inset(os);
3341                 }
3342
3343                 else if (t.cs() == "lstinline" || t.cs() == "mintinline") {
3344                         bool const use_minted = t.cs() == "mintinline";
3345                         p.skip_spaces();
3346                         parse_listings(p, os, context, true, use_minted);
3347                 }
3348
3349                 else if (t.cs() == "ensuremath") {
3350                         p.skip_spaces();
3351                         context.check_layout(os);
3352                         string const s = p.verbatim_item();
3353                         //FIXME: this never triggers in UTF8
3354                         if (s == "\xb1" || s == "\xb3" || s == "\xb2" || s == "\xb5")
3355                                 os << s;
3356                         else
3357                                 output_ert_inset(os, "\\ensuremath{" + s + "}",
3358                                            context);
3359                 }
3360
3361                 else if (t.cs() == "makeindex" || t.cs() == "maketitle") {
3362                         if (preamble.titleLayoutFound()) {
3363                                 // swallow this
3364                                 skip_spaces_braces(p);
3365                         } else
3366                                 output_ert_inset(os, t.asInput(), context);
3367                 }
3368
3369                 else if (t.cs() == "tableofcontents"
3370                                 || t.cs() == "lstlistoflistings"
3371                                 || t.cs() == "listoflistings") {
3372                         string name = t.cs();
3373                         if (preamble.minted() && name == "listoflistings")
3374                                 name.insert(0, "lst");
3375                         context.check_layout(os);
3376                         begin_command_inset(os, "toc", name);
3377                         end_inset(os);
3378                         skip_spaces_braces(p);
3379                         if (name == "lstlistoflistings") {
3380                                 if (preamble.minted())
3381                                         preamble.registerAutomaticallyLoadedPackage("minted");
3382                                 else
3383                                         preamble.registerAutomaticallyLoadedPackage("listings");
3384                         }
3385                 }
3386
3387                 else if (t.cs() == "listoffigures" || t.cs() == "listoftables") {
3388                         context.check_layout(os);
3389                         if (t.cs() == "listoffigures")
3390                                 begin_inset(os, "FloatList figure\n");
3391                         else
3392                                 begin_inset(os, "FloatList table\n");
3393                         end_inset(os);
3394                         skip_spaces_braces(p);
3395                 }
3396
3397                 else if (t.cs() == "listof") {
3398                         p.skip_spaces(true);
3399                         string const name = p.get_token().cs();
3400                         if (context.textclass.floats().typeExist(name)) {
3401                                 context.check_layout(os);
3402                                 begin_inset(os, "FloatList ");
3403                                 os << name << "\n";
3404                                 end_inset(os);
3405                                 p.get_token(); // swallow second arg
3406                         } else
3407                                 output_ert_inset(os, "\\listof{" + name + "}", context);
3408                 }
3409
3410                 else if ((where = is_known(t.cs(), known_text_font_families)))
3411                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3412                                 context, "\\family", context.font.family,
3413                                 known_coded_font_families[where - known_text_font_families]);
3414
3415                 else if ((where = is_known(t.cs(), known_text_font_series)))
3416                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3417                                 context, "\\series", context.font.series,
3418                                 known_coded_font_series[where - known_text_font_series]);
3419
3420                 else if ((where = is_known(t.cs(), known_text_font_shapes)))
3421                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3422                                 context, "\\shape", context.font.shape,
3423                                 known_coded_font_shapes[where - known_text_font_shapes]);
3424
3425                 else if (t.cs() == "textnormal" || t.cs() == "normalfont") {
3426                         context.check_layout(os);
3427                         TeXFont oldFont = context.font;
3428                         context.font.init();
3429                         context.font.size = oldFont.size;
3430                         os << "\n\\family " << context.font.family << "\n";
3431                         os << "\n\\series " << context.font.series << "\n";
3432                         os << "\n\\shape " << context.font.shape << "\n";
3433                         if (t.cs() == "textnormal") {
3434                                 parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3435                                 output_font_change(os, context.font, oldFont);
3436                                 context.font = oldFont;
3437                         } else
3438                                 eat_whitespace(p, os, context, false);
3439                 }
3440
3441                 else if (t.cs() == "textcolor") {
3442                         // scheme is \textcolor{color name}{text}
3443                         string const color = p.verbatim_item();
3444                         // we support the predefined colors of the color  and the xcolor package
3445                         if (color == "black" || color == "blue" || color == "cyan"
3446                                 || color == "green" || color == "magenta" || color == "red"
3447                                 || color == "white" || color == "yellow") {
3448                                         context.check_layout(os);
3449                                         os << "\n\\color " << color << "\n";
3450                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3451                                         context.check_layout(os);
3452                                         os << "\n\\color inherit\n";
3453                                         preamble.registerAutomaticallyLoadedPackage("color");
3454                         } else if (color == "brown" || color == "darkgray" || color == "gray"
3455                                 || color == "lightgray" || color == "lime" || color == "olive"
3456                                 || color == "orange" || color == "pink" || color == "purple"
3457                                 || color == "teal" || color == "violet") {
3458                                         context.check_layout(os);
3459                                         os << "\n\\color " << color << "\n";
3460                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3461                                         context.check_layout(os);
3462                                         os << "\n\\color inherit\n";
3463                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3464                         } else
3465                                 // for custom defined colors
3466                                 output_ert_inset(os, t.asInput() + "{" + color + "}", context);
3467                 }
3468
3469                 else if (t.cs() == "underbar" || t.cs() == "uline") {
3470                         // \underbar is not 100% correct (LyX outputs \uline
3471                         // of ulem.sty). The difference is that \ulem allows
3472                         // line breaks, and \underbar does not.
3473                         // Do NOT handle \underline.
3474                         // \underbar cuts through y, g, q, p etc.,
3475                         // \underline does not.
3476                         context.check_layout(os);
3477                         os << "\n\\bar under\n";
3478                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3479                         context.check_layout(os);
3480                         os << "\n\\bar default\n";
3481                         preamble.registerAutomaticallyLoadedPackage("ulem");
3482                 }
3483
3484                 else if (t.cs() == "sout") {
3485                         context.check_layout(os);
3486                         os << "\n\\strikeout on\n";
3487                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3488                         context.check_layout(os);
3489                         os << "\n\\strikeout default\n";
3490                         preamble.registerAutomaticallyLoadedPackage("ulem");
3491                 }
3492
3493                 else if (t.cs() == "uuline" || t.cs() == "uwave"
3494                         || t.cs() == "emph" || t.cs() == "noun"
3495                         || t.cs() == "xout") {
3496                         context.check_layout(os);
3497                         os << "\n\\" << t.cs() << " on\n";
3498                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3499                         context.check_layout(os);
3500                         os << "\n\\" << t.cs() << " default\n";
3501                         if (t.cs() == "uuline" || t.cs() == "uwave" || t.cs() == "xout")
3502                                 preamble.registerAutomaticallyLoadedPackage("ulem");
3503                 }
3504
3505                 else if (t.cs() == "lyxadded" || t.cs() == "lyxdeleted") {
3506                         context.check_layout(os);
3507                         string name = p.getArg('{', '}');
3508                         string localtime = p.getArg('{', '}');
3509                         preamble.registerAuthor(name);
3510                         Author const & author = preamble.getAuthor(name);
3511                         // from_asctime_utc() will fail if LyX decides to output the
3512                         // time in the text language.
3513                         time_t ptime = from_asctime_utc(localtime);
3514                         if (ptime == static_cast<time_t>(-1)) {
3515                                 cerr << "Warning: Could not parse time `" << localtime
3516                                      << "´ for change tracking, using current time instead.\n";
3517                                 ptime = current_time();
3518                         }
3519                         if (t.cs() == "lyxadded")
3520                                 os << "\n\\change_inserted ";
3521                         else
3522                                 os << "\n\\change_deleted ";
3523                         os << author.bufferId() << ' ' << ptime << '\n';
3524                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3525                         bool dvipost    = LaTeXPackages::isAvailable("dvipost");
3526                         bool xcolorulem = LaTeXPackages::isAvailable("ulem") &&
3527                                           LaTeXPackages::isAvailable("xcolor");
3528                         // No need to test for luatex, since luatex comes in
3529                         // two flavours (dvi and pdf), like latex, and those
3530                         // are detected by pdflatex.
3531                         if (pdflatex || xetex) {
3532                                 if (xcolorulem) {
3533                                         preamble.registerAutomaticallyLoadedPackage("ulem");
3534                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3535                                         preamble.registerAutomaticallyLoadedPackage("pdfcolmk");
3536                                 }
3537                         } else {
3538                                 if (dvipost) {
3539                                         preamble.registerAutomaticallyLoadedPackage("dvipost");
3540                                 } else if (xcolorulem) {
3541                                         preamble.registerAutomaticallyLoadedPackage("ulem");
3542                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3543                                 }
3544                         }
3545                 }
3546
3547                 else if (t.cs() == "textipa") {
3548                         context.check_layout(os);
3549                         begin_inset(os, "IPA\n");
3550                         bool merging_hyphens_allowed = context.merging_hyphens_allowed;
3551                         context.merging_hyphens_allowed = false;
3552                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3553                         context.merging_hyphens_allowed = merging_hyphens_allowed;
3554                         end_inset(os);
3555                         preamble.registerAutomaticallyLoadedPackage("tipa");
3556                         preamble.registerAutomaticallyLoadedPackage("tipx");
3557                 }
3558
3559                 else if (t.cs() == "texttoptiebar" || t.cs() == "textbottomtiebar") {
3560                         context.check_layout(os);
3561                         begin_inset(os, "IPADeco " + t.cs().substr(4) + "\n");
3562                         os << "status open\n";
3563                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3564                         end_inset(os);
3565                         p.skip_spaces();
3566                 }
3567
3568                 else if (t.cs() == "textvertline") {
3569                         // FIXME: This is not correct, \textvertline is higher than |
3570                         os << "|";
3571                         skip_braces(p);
3572                         continue;
3573                 }
3574
3575                 else if (t.cs() == "tone" ) {
3576                         context.check_layout(os);
3577                         // register the tone package
3578                         preamble.registerAutomaticallyLoadedPackage("tone");
3579                         string content = trimSpaceAndEol(p.verbatim_item());
3580                         string command = t.asInput() + "{" + content + "}";
3581                         // some tones can be detected by unicodesymbols, some need special code
3582                         if (is_known(content, known_tones)) {
3583                                 os << "\\IPAChar " << command << "\n";
3584                                 continue;
3585                         }
3586                         // try to see whether the string is in unicodesymbols
3587                         bool termination;
3588                         docstring rem;
3589                         set<string> req;
3590                         docstring s = encodings.fromLaTeXCommand(from_utf8(command),
3591                                 Encodings::TEXT_CMD | Encodings::MATH_CMD,
3592                                 termination, rem, &req);
3593                         if (!s.empty()) {
3594                                 os << to_utf8(s);
3595                                 if (!rem.empty())
3596                                         output_ert_inset(os, to_utf8(rem), context);
3597                                 for (set<string>::const_iterator it = req.begin();
3598                                      it != req.end(); ++it)
3599                                         preamble.registerAutomaticallyLoadedPackage(*it);
3600                         } else
3601                                 // we did not find a non-ert version
3602                                 output_ert_inset(os, command, context);
3603                 }
3604
3605                 else if (t.cs() == "phantom" || t.cs() == "hphantom" ||
3606                              t.cs() == "vphantom") {
3607                         context.check_layout(os);
3608                         if (t.cs() == "phantom")
3609                                 begin_inset(os, "Phantom Phantom\n");
3610                         if (t.cs() == "hphantom")
3611                                 begin_inset(os, "Phantom HPhantom\n");
3612                         if (t.cs() == "vphantom")
3613                                 begin_inset(os, "Phantom VPhantom\n");
3614                         os << "status open\n";
3615                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context,
3616                                             "Phantom");
3617                         end_inset(os);
3618                 }
3619
3620                 else if (t.cs() == "href") {
3621                         context.check_layout(os);
3622                         string target = convert_command_inset_arg(p.verbatim_item());
3623                         string name = convert_command_inset_arg(p.verbatim_item());
3624                         string type;
3625                         size_t i = target.find(':');
3626                         if (i != string::npos) {
3627                                 type = target.substr(0, i + 1);
3628                                 if (type == "mailto:" || type == "file:")
3629                                         target = target.substr(i + 1);
3630                                 // handle the case that name is equal to target, except of "http(s)://"
3631                                 else if (target.substr(i + 3) == name && (type == "http:" || type == "https:"))
3632                                         target = name;
3633                         }
3634                         begin_command_inset(os, "href", "href");
3635                         if (name != target)
3636                                 os << "name \"" << name << "\"\n";
3637                         os << "target \"" << target << "\"\n";
3638                         if (type == "mailto:" || type == "file:")
3639                                 os << "type \"" << type << "\"\n";
3640                         os << "literal \"true\"\n";
3641                         end_inset(os);
3642                         skip_spaces_braces(p);
3643                 }
3644
3645                 else if (t.cs() == "lyxline") {
3646                         // swallow size argument (it is not used anyway)
3647                         p.getArg('{', '}');
3648                         if (!context.atParagraphStart()) {
3649                                 // so our line is in the middle of a paragraph
3650                                 // we need to add a new line, lest this line
3651                                 // follow the other content on that line and
3652                                 // run off the side of the page
3653                                 // FIXME: This may create an empty paragraph,
3654                                 //        but without that it would not be
3655                                 //        possible to set noindent below.
3656                                 //        Fortunately LaTeX does not care
3657                                 //        about the empty paragraph.
3658                                 context.new_paragraph(os);
3659                         }
3660                         if (preamble.indentParagraphs()) {
3661                                 // we need to unindent, lest the line be too long
3662                                 context.add_par_extra_stuff("\\noindent\n");
3663                         }
3664                         context.check_layout(os);
3665                         begin_command_inset(os, "line", "rule");
3666                         os << "offset \"0.5ex\"\n"
3667                               "width \"100line%\"\n"
3668                               "height \"1pt\"\n";
3669                         end_inset(os);
3670                 }
3671
3672                 else if (t.cs() == "rule") {
3673                         string const offset = (p.hasOpt() ? p.getArg('[', ']') : string());
3674                         string const width = p.getArg('{', '}');
3675                         string const thickness = p.getArg('{', '}');
3676                         context.check_layout(os);
3677                         begin_command_inset(os, "line", "rule");
3678                         if (!offset.empty())
3679                                 os << "offset \"" << translate_len(offset) << "\"\n";
3680                         os << "width \"" << translate_len(width) << "\"\n"
3681                                   "height \"" << translate_len(thickness) << "\"\n";
3682                         end_inset(os);
3683                 }
3684
3685                 // handle refstyle first to catch \eqref which can also occur
3686                 // without refstyle. Only recognize these commands if
3687                 // refstyle.sty was found in the preamble (otherwise \eqref
3688                 // and user defined ref commands could be misdetected).
3689                 else if ((where = is_known(t.cs(), known_refstyle_commands)) &&
3690                          preamble.refstyle()) {
3691                         context.check_layout(os);
3692                         begin_command_inset(os, "ref", "formatted");
3693                         os << "reference \"";
3694                         os << known_refstyle_prefixes[where - known_refstyle_commands]
3695                            << ":";
3696                         os << convert_command_inset_arg(p.verbatim_item())
3697                            << "\"\n";
3698                         os << "plural \"false\"\n";
3699                         os << "caps \"false\"\n";
3700                         os << "noprefix \"false\"\n";
3701                         end_inset(os);
3702                         preamble.registerAutomaticallyLoadedPackage("refstyle");
3703                 }
3704
3705                 // if refstyle is used, we must not convert \prettyref to a
3706                 // formatted reference, since that would result in a refstyle command.
3707                 else if ((where = is_known(t.cs(), known_ref_commands)) &&
3708                          (t.cs() != "prettyref" || !preamble.refstyle())) {
3709                         string const opt = p.getOpt();
3710                         if (opt.empty()) {
3711                                 context.check_layout(os);
3712                                 begin_command_inset(os, "ref",
3713                                         known_coded_ref_commands[where - known_ref_commands]);
3714                                 os << "reference \""
3715                                    << convert_command_inset_arg(p.verbatim_item())
3716                                    << "\"\n";
3717                                 os << "plural \"false\"\n";
3718                                 os << "caps \"false\"\n";
3719                                 os << "noprefix \"false\"\n";
3720                                 end_inset(os);
3721                                 if (t.cs() == "vref" || t.cs() == "vpageref")
3722                                         preamble.registerAutomaticallyLoadedPackage("varioref");
3723                                 else if (t.cs() == "prettyref")
3724                                         preamble.registerAutomaticallyLoadedPackage("prettyref");
3725                         } else {
3726                                 // LyX does not yet support optional arguments of ref commands
3727                                 output_ert_inset(os, t.asInput() + '[' + opt + "]{" +
3728                                        p.verbatim_item() + '}', context);
3729                         }
3730                 }
3731
3732                 else if (use_natbib &&
3733                          is_known(t.cs(), known_natbib_commands) &&
3734                          ((t.cs() != "citefullauthor" &&
3735                            t.cs() != "citeyear" &&
3736                            t.cs() != "citeyearpar") ||
3737                           p.next_token().asInput() != "*")) {
3738                         context.check_layout(os);
3739                         string command = t.cs();
3740                         if (p.next_token().asInput() == "*") {
3741                                 command += '*';
3742                                 p.get_token();
3743                         }
3744                         if (command == "citefullauthor")
3745                                 // alternative name for "\\citeauthor*"
3746                                 command = "citeauthor*";
3747
3748                         // text before the citation
3749                         string before;
3750                         // text after the citation
3751                         string after;
3752                         get_cite_arguments(p, true, before, after);
3753
3754                         if (command == "cite") {
3755                                 // \cite without optional argument means
3756                                 // \citet, \cite with at least one optional
3757                                 // argument means \citep.
3758                                 if (before.empty() && after.empty())
3759                                         command = "citet";
3760                                 else
3761                                         command = "citep";
3762                         }
3763                         if (before.empty() && after == "[]")
3764                                 // avoid \citet[]{a}
3765                                 after.erase();
3766                         else if (before == "[]" && after == "[]") {
3767                                 // avoid \citet[][]{a}
3768                                 before.erase();
3769                                 after.erase();
3770                         }
3771                         // remove the brackets around after and before
3772                         if (!after.empty()) {
3773                                 after.erase(0, 1);
3774                                 after.erase(after.length() - 1, 1);
3775                                 after = convert_command_inset_arg(after);
3776                         }
3777                         if (!before.empty()) {
3778                                 before.erase(0, 1);
3779                                 before.erase(before.length() - 1, 1);
3780                                 before = convert_command_inset_arg(before);
3781                         }
3782                         begin_command_inset(os, "citation", command);
3783                         os << "after " << '"' << after << '"' << "\n";
3784                         os << "before " << '"' << before << '"' << "\n";
3785                         os << "key \""
3786                            << convert_command_inset_arg(p.verbatim_item())
3787                            << "\"\n"
3788                            << "literal \"true\"\n";
3789                         end_inset(os);
3790                         // Need to set the cite engine if natbib is loaded by
3791                         // the document class directly
3792                         if (preamble.citeEngine() == "basic")
3793                                 preamble.citeEngine("natbib");
3794                 }
3795
3796                 else if (use_jurabib &&
3797                          is_known(t.cs(), known_jurabib_commands) &&
3798                          (t.cs() == "cite" || p.next_token().asInput() != "*")) {
3799                         context.check_layout(os);
3800                         string command = t.cs();
3801                         if (p.next_token().asInput() == "*") {
3802                                 command += '*';
3803                                 p.get_token();
3804                         }
3805                         char argumentOrder = '\0';
3806                         vector<string> const options =
3807                                 preamble.getPackageOptions("jurabib");
3808                         if (find(options.begin(), options.end(),
3809                                       "natbiborder") != options.end())
3810                                 argumentOrder = 'n';
3811                         else if (find(options.begin(), options.end(),
3812                                            "jurabiborder") != options.end())
3813                                 argumentOrder = 'j';
3814
3815                         // text before the citation
3816                         string before;
3817                         // text after the citation
3818                         string after;
3819                         get_cite_arguments(p, argumentOrder != 'j', before, after);
3820
3821                         string const citation = p.verbatim_item();
3822                         if (!before.empty() && argumentOrder == '\0') {
3823                                 cerr << "Warning: Assuming argument order "
3824                                         "of jurabib version 0.6 for\n'"
3825                                      << command << before << after << '{'
3826                                      << citation << "}'.\n"
3827                                         "Add 'jurabiborder' to the jurabib "
3828                                         "package options if you used an\n"
3829                                         "earlier jurabib version." << endl;
3830                         }
3831                         if (!after.empty()) {
3832                                 after.erase(0, 1);
3833                                 after.erase(after.length() - 1, 1);
3834                         }
3835                         if (!before.empty()) {
3836                                 before.erase(0, 1);
3837                                 before.erase(before.length() - 1, 1);
3838                         }
3839                         begin_command_inset(os, "citation", command);
3840                         os << "after " << '"' << after << "\"\n"
3841                            << "before " << '"' << before << "\"\n"
3842                            << "key " << '"' << citation << "\"\n"
3843                            << "literal \"true\"\n";
3844                         end_inset(os);
3845                         // Need to set the cite engine if jurabib is loaded by
3846                         // the document class directly
3847                         if (preamble.citeEngine() == "basic")
3848                                 preamble.citeEngine("jurabib");
3849                 }
3850
3851                 else if (t.cs() == "cite"
3852                         || t.cs() == "nocite") {
3853                         context.check_layout(os);
3854                         string after = convert_command_inset_arg(p.getArg('[', ']'));
3855                         string key = convert_command_inset_arg(p.verbatim_item());
3856                         // store the case that it is "\nocite{*}" to use it later for
3857                         // the BibTeX inset
3858                         if (key != "*") {
3859                                 begin_command_inset(os, "citation", t.cs());
3860                                 os << "after " << '"' << after << "\"\n"
3861                                    << "key " << '"' << key << "\"\n"
3862                                    << "literal \"true\"\n";
3863                                 end_inset(os);
3864                         } else if (t.cs() == "nocite")
3865                                 btprint = key;
3866                 }
3867
3868                 else if (t.cs() == "index" ||
3869                          (t.cs() == "sindex" && preamble.use_indices() == "true")) {
3870                         context.check_layout(os);
3871                         string const arg = (t.cs() == "sindex" && p.hasOpt()) ?
3872                                 p.getArg('[', ']') : "";
3873                         string const kind = arg.empty() ? "idx" : arg;
3874                         begin_inset(os, "Index ");
3875                         os << kind << "\nstatus collapsed\n";
3876                         parse_text_in_inset(p, os, FLAG_ITEM, false, context, "Index");
3877                         end_inset(os);
3878                         if (kind != "idx")
3879                                 preamble.registerAutomaticallyLoadedPackage("splitidx");
3880                 }
3881
3882                 else if (t.cs() == "nomenclature") {
3883                         context.check_layout(os);
3884                         begin_command_inset(os, "nomenclature", "nomenclature");
3885                         string prefix = convert_command_inset_arg(p.getArg('[', ']'));
3886                         if (!prefix.empty())
3887                                 os << "prefix " << '"' << prefix << '"' << "\n";
3888                         os << "symbol " << '"'
3889                            << convert_command_inset_arg(p.verbatim_item());
3890                         os << "\"\ndescription \""
3891                            << convert_command_inset_arg(p.verbatim_item())
3892                            << "\"\n"
3893                            << "literal \"true\"\n";
3894                         end_inset(os);
3895                         preamble.registerAutomaticallyLoadedPackage("nomencl");
3896                 }
3897
3898                 else if (t.cs() == "label") {
3899                         context.check_layout(os);
3900                         begin_command_inset(os, "label", "label");
3901                         os << "name \""
3902                            << convert_command_inset_arg(p.verbatim_item())
3903                            << "\"\n";
3904                         end_inset(os);
3905                 }
3906
3907                 else if (t.cs() == "lyxmintcaption") {
3908                         string const pos = p.getArg('[', ']');
3909                         if (pos == "t") {
3910                                 string const caption =
3911                                         parse_text_snippet(p, FLAG_ITEM, false,
3912                                                            context);
3913                                 minted_nonfloat_caption = "[t]" + caption;
3914                         } else {
3915                                 // We already got the caption at the bottom,
3916                                 // so simply skip it.
3917                                 parse_text_snippet(p, FLAG_ITEM, false, context);
3918                         }
3919                 }
3920
3921                 else if (t.cs() == "printindex" || t.cs() == "printsubindex") {
3922                         context.check_layout(os);
3923                         string commandname = t.cs();
3924                         bool star = false;
3925                         if (p.next_token().asInput() == "*") {
3926                                 commandname += "*";
3927                                 star = true;
3928                                 p.get_token();
3929                         }
3930                         begin_command_inset(os, "index_print", commandname);
3931                         string const indexname = p.getArg('[', ']');
3932                         if (!star) {
3933                                 if (indexname.empty())
3934                                         os << "type \"idx\"\n";
3935                                 else
3936                                         os << "type \"" << indexname << "\"\n";
3937                                 os << "literal \"true\"\n";
3938                         }
3939                         end_inset(os);
3940                         skip_spaces_braces(p);
3941                         preamble.registerAutomaticallyLoadedPackage("makeidx");
3942                         if (preamble.use_indices() == "true")
3943                                 preamble.registerAutomaticallyLoadedPackage("splitidx");
3944                 }
3945
3946                 else if (t.cs() == "printnomenclature") {
3947                         string width = "";
3948                         string width_type = "";
3949                         context.check_layout(os);
3950                         begin_command_inset(os, "nomencl_print", "printnomenclature");
3951                         // case of a custom width
3952                         if (p.hasOpt()) {
3953                                 width = p.getArg('[', ']');
3954                                 width = translate_len(width);
3955                                 width_type = "custom";
3956                         }
3957                         // case of no custom width
3958                         // the case of no custom width but the width set
3959                         // via \settowidth{\nomlabelwidth}{***} cannot be supported
3960                         // because the user could have set anything, not only the width
3961                         // of the longest label (which would be width_type = "auto")
3962                         string label = convert_command_inset_arg(p.getArg('{', '}'));
3963                         if (label.empty() && width_type.empty())
3964                                 width_type = "none";
3965                         os << "set_width \"" << width_type << "\"\n";
3966                         if (width_type == "custom")
3967                                 os << "width \"" << width << '\"';
3968                         end_inset(os);
3969                         skip_spaces_braces(p);
3970                         preamble.registerAutomaticallyLoadedPackage("nomencl");
3971                 }
3972
3973                 else if ((t.cs() == "textsuperscript" || t.cs() == "textsubscript")) {
3974                         context.check_layout(os);
3975                         begin_inset(os, "script ");
3976                         os << t.cs().substr(4) << '\n';
3977                         newinsetlayout = findInsetLayout(context.textclass, t.cs(), true);
3978                         parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout);
3979                         end_inset(os);
3980                         if (t.cs() == "textsubscript")
3981                                 preamble.registerAutomaticallyLoadedPackage("subscript");
3982                 }
3983
3984                 else if ((where = is_known(t.cs(), known_quotes))) {
3985                         context.check_layout(os);
3986                         begin_inset(os, "Quotes ");
3987                         os << known_coded_quotes[where - known_quotes];
3988                         end_inset(os);
3989                         // LyX adds {} after the quote, so we have to eat
3990                         // spaces here if there are any before a possible
3991                         // {} pair.
3992                         eat_whitespace(p, os, context, false);
3993                         skip_braces(p);
3994                 }
3995
3996                 else if ((where = is_known(t.cs(), known_sizes)) &&
3997                          context.new_layout_allowed) {
3998                         context.check_layout(os);
3999                         TeXFont const oldFont = context.font;
4000                         context.font.size = known_coded_sizes[where - known_sizes];
4001                         output_font_change(os, oldFont, context.font);
4002                         eat_whitespace(p, os, context, false);
4003                 }
4004
4005                 else if ((where = is_known(t.cs(), known_font_families)) &&
4006                          context.new_layout_allowed) {
4007                         context.check_layout(os);
4008                         TeXFont const oldFont = context.font;
4009                         context.font.family =
4010                                 known_coded_font_families[where - known_font_families];
4011                         output_font_change(os, oldFont, context.font);
4012                         eat_whitespace(p, os, context, false);
4013                 }
4014
4015                 else if ((where = is_known(t.cs(), known_font_series)) &&
4016                          context.new_layout_allowed) {
4017                         context.check_layout(os);
4018                         TeXFont const oldFont = context.font;
4019                         context.font.series =
4020                                 known_coded_font_series[where - known_font_series];
4021                         output_font_change(os, oldFont, context.font);
4022                         eat_whitespace(p, os, context, false);
4023                 }
4024
4025                 else if ((where = is_known(t.cs(), known_font_shapes)) &&
4026                          context.new_layout_allowed) {
4027                         context.check_layout(os);
4028                         TeXFont const oldFont = context.font;
4029                         context.font.shape =
4030                                 known_coded_font_shapes[where - known_font_shapes];
4031                         output_font_change(os, oldFont, context.font);
4032                         eat_whitespace(p, os, context, false);
4033                 }
4034                 else if ((where = is_known(t.cs(), known_old_font_families)) &&
4035                          context.new_layout_allowed) {
4036                         context.check_layout(os);
4037                         TeXFont const oldFont = context.font;
4038                         context.font.init();
4039                         context.font.size = oldFont.size;
4040                         context.font.family =
4041                                 known_coded_font_families[where - known_old_font_families];
4042                         output_font_change(os, oldFont, context.font);
4043                         eat_whitespace(p, os, context, false);
4044                 }
4045
4046                 else if ((where = is_known(t.cs(), known_old_font_series)) &&
4047                          context.new_layout_allowed) {
4048                         context.check_layout(os);
4049                         TeXFont const oldFont = context.font;
4050                         context.font.init();
4051                         context.font.size = oldFont.size;
4052                         context.font.series =
4053                                 known_coded_font_series[where - known_old_font_series];
4054                         output_font_change(os, oldFont, context.font);
4055                         eat_whitespace(p, os, context, false);
4056                 }
4057
4058                 else if ((where = is_known(t.cs(), known_old_font_shapes)) &&
4059                          context.new_layout_allowed) {
4060                         context.check_layout(os);
4061                         TeXFont const oldFont = context.font;
4062                         context.font.init();
4063                         context.font.size = oldFont.size;
4064                         context.font.shape =
4065                                 known_coded_font_shapes[where - known_old_font_shapes];
4066                         output_font_change(os, oldFont, context.font);
4067                         eat_whitespace(p, os, context, false);
4068                 }
4069
4070                 else if (t.cs() == "selectlanguage") {
4071                         context.check_layout(os);
4072                         // save the language for the case that a
4073                         // \foreignlanguage is used
4074                         context.font.language = babel2lyx(p.verbatim_item());
4075                         os << "\n\\lang " << context.font.language << "\n";
4076                 }
4077
4078                 else if (t.cs() == "foreignlanguage") {
4079                         string const lang = babel2lyx(p.verbatim_item());
4080                         parse_text_attributes(p, os, FLAG_ITEM, outer,
4081                                               context, "\\lang",
4082                                               context.font.language, lang);
4083                 }
4084
4085                 else if (prefixIs(t.cs(), "text") && preamble.usePolyglossia()
4086                          && is_known(t.cs().substr(4), preamble.polyglossia_languages)) {
4087                         // scheme is \textLANGUAGE{text} where LANGUAGE is in polyglossia_languages[]
4088                         string lang;
4089                         // We have to output the whole command if it has an option
4090                         // because LyX doesn't support this yet, see bug #8214,
4091                         // only if there is a single option specifying a variant, we can handle it.
4092                         if (p.hasOpt()) {
4093                                 string langopts = p.getOpt();
4094                                 // check if the option contains a variant, if yes, extract it
4095                                 string::size_type pos_var = langopts.find("variant");
4096                                 string::size_type i = langopts.find(',');
4097                                 string::size_type k = langopts.find('=', pos_var);
4098                                 if (pos_var != string::npos && i == string::npos) {
4099                                         string variant;
4100                                         variant = langopts.substr(k + 1, langopts.length() - k - 2);
4101                                         lang = preamble.polyglossia2lyx(variant);
4102                                         parse_text_attributes(p, os, FLAG_ITEM, outer,
4103                                                                   context, "\\lang",
4104                                                                   context.font.language, lang);
4105                                 } else
4106                                         output_ert_inset(os, t.asInput() + langopts, context);
4107                         } else {
4108                                 lang = preamble.polyglossia2lyx(t.cs().substr(4, string::npos));
4109                                 parse_text_attributes(p, os, FLAG_ITEM, outer,
4110                                                           context, "\\lang",
4111                                                           context.font.language, lang);
4112                         }
4113                 }
4114
4115                 else if (t.cs() == "inputencoding") {
4116                         // nothing to write here
4117                         string const enc = subst(p.verbatim_item(), "\n", " ");
4118                         p.setEncoding(enc, Encoding::inputenc);
4119                 }
4120
4121                 else if (is_known(t.cs(), known_special_chars) ||
4122                          (t.cs() == "protect" &&
4123                           p.next_token().cat() == catEscape &&
4124                           is_known(p.next_token().cs(), known_special_protect_chars))) {
4125                         // LyX sometimes puts a \protect in front, so we have to ignore it
4126                         where = is_known(
4127                                 t.cs() == "protect" ? p.get_token().cs() : t.cs(),
4128                                 known_special_chars);
4129                         context.check_layout(os);
4130                         os << known_coded_special_chars[where - known_special_chars];
4131                         skip_spaces_braces(p);
4132                 }
4133
4134                 else if ((t.cs() == "nobreakdash" && p.next_token().asInput() == "-") ||
4135                          (t.cs() == "protect" && p.next_token().asInput() == "\\nobreakdash" &&
4136                           p.next_next_token().asInput() == "-") ||
4137                          (t.cs() == "@" && p.next_token().asInput() == ".")) {
4138                         // LyX sometimes puts a \protect in front, so we have to ignore it
4139                         if (t.cs() == "protect")
4140                                 p.get_token();
4141                         context.check_layout(os);
4142                         if (t.cs() == "nobreakdash")
4143                                 os << "\\SpecialChar nobreakdash\n";
4144                         else
4145                                 os << "\\SpecialChar endofsentence\n";
4146                         p.get_token();
4147                 }
4148
4149                 else if (t.cs() == "textquotedbl") {
4150                         context.check_layout(os);
4151                         os << "\"";
4152                         skip_braces(p);
4153                 }
4154
4155                 else if (t.cs() == "_" || t.cs() == "&" || t.cs() == "#"
4156                             || t.cs() == "$" || t.cs() == "{" || t.cs() == "}"
4157                             || t.cs() == "%" || t.cs() == "-") {
4158                         context.check_layout(os);
4159                         if (t.cs() == "-")
4160                                 os << "\\SpecialChar softhyphen\n";
4161                         else
4162                                 os << t.cs();
4163                 }
4164
4165                 else if (t.cs() == "char") {
4166                         context.check_layout(os);
4167                         if (p.next_token().character() == '`') {
4168                                 p.get_token();
4169                                 if (p.next_token().cs() == "\"") {
4170                                         p.get_token();
4171                                         os << '"';
4172                                         skip_braces(p);
4173                                 } else {
4174                                         output_ert_inset(os, "\\char`", context);
4175                                 }
4176                         } else {
4177                                 output_ert_inset(os, "\\char", context);
4178                         }
4179                 }
4180
4181                 else if (t.cs() == "verb") {
4182                         context.check_layout(os);
4183                         // set catcodes to verbatim early, just in case.
4184                         p.setCatcodes(VERBATIM_CATCODES);
4185                         string delim = p.get_token().asInput();
4186                         Parser::Arg arg = p.verbatimStuff(delim);
4187                         if (arg.first)
4188                                 output_ert_inset(os, "\\verb" + delim
4189                                                  + arg.second + delim, context);
4190                         else
4191                                 cerr << "invalid \\verb command. Skipping" << endl;
4192                 }
4193
4194                 // Problem: \= creates a tabstop inside the tabbing environment
4195                 // and else an accent. In the latter case we really would want
4196                 // \={o} instead of \= o.
4197                 else if (t.cs() == "=" && (flags & FLAG_TABBING))
4198                         output_ert_inset(os, t.asInput(), context);
4199
4200                 else if (t.cs() == "\\") {
4201                         context.check_layout(os);
4202                         if (p.hasOpt())
4203                                 output_ert_inset(os, "\\\\" + p.getOpt(), context);
4204                         else if (p.next_token().asInput() == "*") {
4205                                 p.get_token();
4206                                 // getOpt() eats the following space if there
4207                                 // is no optional argument, but that is OK
4208                                 // here since it has no effect in the output.
4209                                 output_ert_inset(os, "\\\\*" + p.getOpt(), context);
4210                         }
4211                         else {
4212                                 begin_inset(os, "Newline newline");
4213                                 end_inset(os);
4214                         }
4215                 }
4216
4217                 else if (t.cs() == "newline" ||
4218                          (t.cs() == "linebreak" && !p.hasOpt())) {
4219                         context.check_layout(os);
4220                         begin_inset(os, "Newline ");
4221                         os << t.cs();
4222                         end_inset(os);
4223                         skip_spaces_braces(p);
4224                 }
4225
4226                 else if (t.cs() == "input" || t.cs() == "include"
4227                          || t.cs() == "verbatiminput") {
4228                         string name = t.cs();
4229                         if (t.cs() == "verbatiminput"
4230                             && p.next_token().asInput() == "*")
4231                                 name += p.get_token().asInput();
4232                         context.check_layout(os);
4233                         string filename(normalize_filename(p.getArg('{', '}')));
4234                         string const path = getMasterFilePath(true);
4235                         // We want to preserve relative / absolute filenames,
4236                         // therefore path is only used for testing
4237                         if ((t.cs() == "include" || t.cs() == "input") &&
4238                             !makeAbsPath(filename, path).exists()) {
4239                                 // The file extension is probably missing.
4240                                 // Now try to find it out.
4241                                 string const tex_name =
4242                                         find_file(filename, path,
4243                                                   known_tex_extensions);
4244                                 if (!tex_name.empty())
4245                                         filename = tex_name;
4246                         }
4247                         bool external = false;
4248                         string outname;
4249                         if (makeAbsPath(filename, path).exists()) {
4250                                 string const abstexname =
4251                                         makeAbsPath(filename, path).absFileName();
4252                                 string const absfigname =
4253                                         changeExtension(abstexname, ".fig");
4254                                 fix_child_filename(filename);
4255                                 string const lyxname = changeExtension(filename,
4256                                         roundtripMode() ? ".lyx.lyx" : ".lyx");
4257                                 string const abslyxname = makeAbsPath(
4258                                         lyxname, getParentFilePath(false)).absFileName();
4259                                 bool xfig = false;
4260                                 if (!skipChildren())
4261                                         external = FileName(absfigname).exists();
4262                                 if (t.cs() == "input" && !skipChildren()) {
4263                                         string const ext = getExtension(abstexname);
4264
4265                                         // Combined PS/LaTeX:
4266                                         // x.eps, x.pstex_t (old xfig)
4267                                         // x.pstex, x.pstex_t (new xfig, e.g. 3.2.5)
4268                                         FileName const absepsname(
4269                                                 changeExtension(abstexname, ".eps"));
4270                                         FileName const abspstexname(
4271                                                 changeExtension(abstexname, ".pstex"));
4272                                         bool const xfigeps =
4273                                                 (absepsname.exists() ||
4274                                                  abspstexname.exists()) &&
4275                                                 ext == "pstex_t";
4276
4277                                         // Combined PDF/LaTeX:
4278                                         // x.pdf, x.pdftex_t (old xfig)
4279                                         // x.pdf, x.pdf_t (new xfig, e.g. 3.2.5)
4280                                         FileName const abspdfname(
4281                                                 changeExtension(abstexname, ".pdf"));
4282                                         bool const xfigpdf =
4283                                                 abspdfname.exists() &&
4284                                                 (ext == "pdftex_t" || ext == "pdf_t");
4285                                         if (xfigpdf)
4286                                                 pdflatex = true;
4287
4288                                         // Combined PS/PDF/LaTeX:
4289                                         // x_pspdftex.eps, x_pspdftex.pdf, x.pspdftex
4290                                         string const absbase2(
4291                                                 removeExtension(abstexname) + "_pspdftex");
4292                                         FileName const abseps2name(
4293                                                 addExtension(absbase2, ".eps"));
4294                                         FileName const abspdf2name(
4295                                                 addExtension(absbase2, ".pdf"));
4296                                         bool const xfigboth =
4297                                                 abspdf2name.exists() &&
4298                                                 abseps2name.exists() && ext == "pspdftex";
4299
4300                                         xfig = xfigpdf || xfigeps || xfigboth;
4301                                         external = external && xfig;
4302                                 }
4303                                 if (external) {
4304                                         outname = changeExtension(filename, ".fig");
4305                                         FileName abssrc(changeExtension(abstexname, ".fig"));
4306                                         copy_file(abssrc, outname);
4307                                 } else if (xfig) {
4308                                         // Don't try to convert, the result
4309                                         // would be full of ERT.
4310                                         outname = filename;
4311                                         FileName abssrc(abstexname);
4312                                         copy_file(abssrc, outname);
4313                                 } else if (t.cs() != "verbatiminput" &&
4314                                            !skipChildren() &&
4315                                     tex2lyx(abstexname, FileName(abslyxname),
4316                                             p.getEncoding())) {
4317                                         outname = lyxname;
4318                                         // no need to call copy_file
4319                                         // tex2lyx creates the file
4320                                 } else {
4321                                         outname = filename;
4322                                         FileName abssrc(abstexname);
4323                                         copy_file(abssrc, outname);
4324                                 }
4325                         } else {
4326                                 cerr << "Warning: Could not find included file '"
4327                                      << filename << "'." << endl;
4328                                 outname = filename;
4329                         }
4330                         if (external) {
4331                                 begin_inset(os, "External\n");
4332                                 os << "\ttemplate XFig\n"
4333                                    << "\tfilename " << outname << '\n';
4334                                 registerExternalTemplatePackages("XFig");
4335                         } else {
4336                                 begin_command_inset(os, "include", name);
4337                                 outname = subst(outname, "\"", "\\\"");
4338                                 os << "preview false\n"
4339                                       "filename \"" << outname << "\"\n";
4340                                 if (t.cs() == "verbatiminput")
4341                                         preamble.registerAutomaticallyLoadedPackage("verbatim");
4342                         }
4343                         end_inset(os);
4344                 }
4345
4346                 else if (t.cs() == "bibliographystyle") {
4347                         // store new bibliographystyle
4348                         bibliographystyle = p.verbatim_item();
4349                         // If any other command than \bibliography, \addcontentsline
4350                         // and \nocite{*} follows, we need to output the style
4351                         // (because it might be used by that command).
4352                         // Otherwise, it will automatically be output by LyX.
4353                         p.pushPosition();
4354                         bool output = true;
4355                         for (Token t2 = p.get_token(); p.good(); t2 = p.get_token()) {
4356                                 if (t2.cat() == catBegin)
4357                                         break;
4358                                 if (t2.cat() != catEscape)
4359                                         continue;
4360                                 if (t2.cs() == "nocite") {
4361                                         if (p.getArg('{', '}') == "*")
4362                                                 continue;
4363                                 } else if (t2.cs() == "bibliography")
4364                                         output = false;
4365                                 else if (t2.cs() == "phantomsection") {
4366                                         output = false;
4367                                         continue;
4368                                 }
4369                                 else if (t2.cs() == "addcontentsline") {
4370                                         // get the 3 arguments of \addcontentsline
4371                                         p.getArg('{', '}');
4372                                         p.getArg('{', '}');
4373                                         contentslineContent = p.getArg('{', '}');
4374                                         // if the last argument is not \refname we must output
4375                                         if (contentslineContent == "\\refname")
4376                                                 output = false;
4377                                 }
4378                                 break;
4379                         }
4380                         p.popPosition();
4381                         if (output) {
4382                                 output_ert_inset(os,
4383                                         "\\bibliographystyle{" + bibliographystyle + '}',
4384                                         context);
4385                         }
4386                 }
4387
4388                 else if (t.cs() == "phantomsection") {
4389                         // we only support this if it occurs between
4390                         // \bibliographystyle and \bibliography
4391                         if (bibliographystyle.empty())
4392                                 output_ert_inset(os, "\\phantomsection", context);
4393                 }
4394
4395                 else if (t.cs() == "addcontentsline") {
4396                         context.check_layout(os);
4397                         // get the 3 arguments of \addcontentsline
4398                         string const one = p.getArg('{', '}');
4399                         string const two = p.getArg('{', '}');
4400                         string const three = p.getArg('{', '}');
4401                         // only if it is a \refname, we support if for the bibtex inset
4402                         if (contentslineContent != "\\refname") {
4403                                 output_ert_inset(os,
4404                                         "\\addcontentsline{" + one + "}{" + two + "}{"+ three + '}',
4405                                         context);
4406                         }
4407                 }
4408
4409                 else if (t.cs() == "bibliography") {
4410                         context.check_layout(os);
4411                         string BibOpts;
4412                         begin_command_inset(os, "bibtex", "bibtex");
4413                         if (!btprint.empty()) {
4414                                 os << "btprint " << '"' << "btPrintAll" << '"' << "\n";
4415                                 // clear the string because the next BibTeX inset can be without the
4416                                 // \nocite{*} option
4417                                 btprint.clear();
4418                         }
4419                         os << "bibfiles " << '"' << normalize_filename(p.verbatim_item()) << '"' << "\n";
4420                         // Do we have addcontentsline?
4421                         if (contentslineContent == "\\refname") {
4422                                 BibOpts = "bibtotoc";
4423                                 // clear string because next BibTeX inset can be without addcontentsline
4424                                 contentslineContent.clear();
4425                         }
4426                         // Do we have a bibliographystyle set?
4427                         if (!bibliographystyle.empty()) {
4428                                 if (BibOpts.empty())
4429                                         BibOpts = normalize_filename(bibliographystyle);
4430                                 else
4431                                         BibOpts = BibOpts + ',' + normalize_filename(bibliographystyle);
4432                                 // clear it because each bibtex entry has its style
4433                                 // and we need an empty string to handle \phantomsection
4434                                 bibliographystyle.clear();
4435                         }
4436                         os << "options " << '"' << BibOpts << '"' << "\n";
4437                         end_inset(os);
4438                 }
4439
4440                 else if (t.cs() == "parbox") {
4441                         // Test whether this is an outer box of a shaded box
4442                         p.pushPosition();
4443                         // swallow arguments
4444                         while (p.hasOpt()) {
4445                                 p.getArg('[', ']');
4446                                 p.skip_spaces(true);
4447                         }
4448                         p.getArg('{', '}');
4449                         p.skip_spaces(true);
4450                         // eat the '{'
4451                         if (p.next_token().cat() == catBegin)
4452                                 p.get_token();
4453                         p.skip_spaces(true);
4454                         Token to = p.get_token();
4455                         bool shaded = false;
4456                         if (to.asInput() == "\\begin") {
4457                                 p.skip_spaces(true);
4458                                 if (p.getArg('{', '}') == "shaded")
4459                                         shaded = true;
4460                         }
4461                         p.popPosition();
4462                         if (shaded) {
4463                                 parse_outer_box(p, os, FLAG_ITEM, outer,
4464                                                 context, "parbox", "shaded");
4465                         } else
4466                                 parse_box(p, os, 0, FLAG_ITEM, outer, context,
4467                                           "", "", t.cs(), "", "");
4468                 }
4469
4470                 else if (t.cs() == "fbox" || t.cs() == "mbox" ||
4471                              t.cs() == "ovalbox" || t.cs() == "Ovalbox" ||
4472                          t.cs() == "shadowbox" || t.cs() == "doublebox")
4473                         parse_outer_box(p, os, FLAG_ITEM, outer, context, t.cs(), "");
4474
4475                 else if (t.cs() == "fcolorbox" || t.cs() == "colorbox") {
4476                         string backgroundcolor;
4477                         preamble.registerAutomaticallyLoadedPackage("xcolor");
4478                         if (t.cs() == "fcolorbox") {
4479                                 string const framecolor = p.getArg('{', '}');
4480                                 backgroundcolor = p.getArg('{', '}');
4481                                 parse_box(p, os, 0, 0, outer, context, "", "", "", framecolor, backgroundcolor);
4482                         } else {
4483                                 backgroundcolor = p.getArg('{', '}');
4484                                 parse_box(p, os, 0, 0, outer, context, "", "", "", "", backgroundcolor);
4485                         }
4486                 }
4487
4488                 // FIXME: due to the compiler limit of "if" nestings
4489                 // the code for the alignment was put here
4490                 // put them in their own if if this is fixed
4491                 else if (t.cs() == "fboxrule" || t.cs() == "fboxsep"
4492                              || t.cs() == "shadowsize"
4493                                  || t.cs() == "raggedleft" || t.cs() == "centering"
4494                          || t.cs() == "raggedright") {
4495                         if (t.cs() == "fboxrule")
4496                                 fboxrule = "";
4497                         if (t.cs() == "fboxsep")
4498                                 fboxsep = "";
4499                         if (t.cs() == "shadowsize")
4500                                 shadow_size = "";
4501                         if (t.cs() != "raggedleft" && t.cs() != "centering"
4502                          && t.cs() != "raggedright") {
4503                                 p.skip_spaces(true);
4504                                 while (p.good() && p.next_token().cat() != catSpace
4505                                        && p.next_token().cat() != catNewline
4506                                        && p.next_token().cat() != catEscape) {
4507                                         if (t.cs() == "fboxrule")
4508                                                 fboxrule = fboxrule + p.get_token().asInput();
4509                                         if (t.cs() == "fboxsep")
4510                                                 fboxsep = fboxsep + p.get_token().asInput();
4511                                         if (t.cs() == "shadowsize")
4512                                                 shadow_size = shadow_size + p.get_token().asInput();
4513                                 }
4514                         } else {
4515                                 output_ert_inset(os, t.asInput(), context);
4516                         }
4517                 }
4518
4519                 //\framebox() is part of the picture environment and different from \framebox{}
4520                 //\framebox{} will be parsed by parse_outer_box
4521                 else if (t.cs() == "framebox") {
4522                         if (p.next_token().character() == '(') {
4523                                 //the syntax is: \framebox(x,y)[position]{content}
4524                                 string arg = t.asInput();
4525                                 arg += p.getFullParentheseArg();
4526                                 arg += p.getFullOpt();
4527                                 eat_whitespace(p, os, context, false);
4528                                 output_ert_inset(os, arg + '{', context);
4529                                 parse_text(p, os, FLAG_ITEM, outer, context);
4530                                 output_ert_inset(os, "}", context);
4531                         } else {
4532                                 //the syntax is: \framebox[width][position]{content}
4533                                 string special = p.getFullOpt();
4534                                 special += p.getOpt();
4535                                 parse_outer_box(p, os, FLAG_ITEM, outer,
4536                                                     context, t.cs(), special);
4537                         }
4538                 }
4539
4540                 //\makebox() is part of the picture environment and different from \makebox{}
4541                 //\makebox{} will be parsed by parse_box
4542                 else if (t.cs() == "makebox") {
4543                         if (p.next_token().character() == '(') {
4544                                 //the syntax is: \makebox(x,y)[position]{content}
4545                                 string arg = t.asInput();
4546                                 arg += p.getFullParentheseArg();
4547                                 arg += p.getFullOpt();
4548                                 eat_whitespace(p, os, context, false);
4549                                 output_ert_inset(os, arg + '{', context);
4550                                 parse_text(p, os, FLAG_ITEM, outer, context);
4551                                 output_ert_inset(os, "}", context);
4552                         } else
4553                                 //the syntax is: \makebox[width][position]{content}
4554                                 parse_box(p, os, 0, FLAG_ITEM, outer, context,
4555                                           "", "", t.cs(), "", "");
4556                 }
4557
4558                 else if (t.cs() == "smallskip" ||
4559                          t.cs() == "medskip" ||
4560                          t.cs() == "bigskip" ||
4561                          t.cs() == "vfill") {
4562                         context.check_layout(os);
4563                         begin_inset(os, "VSpace ");
4564                         os << t.cs();
4565                         end_inset(os);
4566                         skip_spaces_braces(p);
4567                 }
4568
4569                 else if ((where = is_known(t.cs(), known_spaces))) {
4570                         context.check_layout(os);
4571                         begin_inset(os, "space ");
4572                         os << '\\' << known_coded_spaces[where - known_spaces]
4573                            << '\n';
4574                         end_inset(os);
4575                         // LaTeX swallows whitespace after all spaces except
4576                         // "\\,". We have to do that here, too, because LyX
4577                         // adds "{}" which would make the spaces significant.
4578                         if (t.cs() !=  ",")
4579                                 eat_whitespace(p, os, context, false);
4580                         // LyX adds "{}" after all spaces except "\\ " and
4581                         // "\\,", so we have to remove "{}".
4582                         // "\\,{}" is equivalent to "\\," in LaTeX, so we
4583                         // remove the braces after "\\,", too.
4584                         if (t.cs() != " ")
4585                                 skip_braces(p);
4586                 }
4587
4588                 else if (t.cs() == "newpage" ||
4589                          (t.cs() == "pagebreak" && !p.hasOpt()) ||
4590                          t.cs() == "clearpage" ||
4591                          t.cs() == "cleardoublepage") {
4592                         context.check_layout(os);
4593                         begin_inset(os, "Newpage ");
4594                         os << t.cs();
4595                         end_inset(os);
4596                         skip_spaces_braces(p);
4597                 }
4598
4599                 else if (t.cs() == "DeclareRobustCommand" ||
4600                          t.cs() == "DeclareRobustCommandx" ||
4601                          t.cs() == "newcommand" ||
4602                          t.cs() == "newcommandx" ||
4603                          t.cs() == "providecommand" ||
4604                          t.cs() == "providecommandx" ||
4605                          t.cs() == "renewcommand" ||
4606                          t.cs() == "renewcommandx") {
4607                         // DeclareRobustCommand, DeclareRobustCommandx,
4608                         // providecommand and providecommandx could be handled
4609                         // by parse_command(), but we need to call
4610                         // add_known_command() here.
4611                         string name = t.asInput();
4612                         if (p.next_token().asInput() == "*") {
4613                                 // Starred form. Eat '*'
4614                                 p.get_token();
4615                                 name += '*';
4616                         }
4617                         string const command = p.verbatim_item();
4618                         string const opt1 = p.getFullOpt();
4619                         string const opt2 = p.getFullOpt();
4620                         add_known_command(command, opt1, !opt2.empty());
4621                         string const ert = name + '{' + command + '}' +
4622                                            opt1 + opt2 +
4623                                            '{' + p.verbatim_item() + '}';
4624
4625                         if (t.cs() == "DeclareRobustCommand" ||
4626                             t.cs() == "DeclareRobustCommandx" ||
4627                             t.cs() == "providecommand" ||
4628                             t.cs() == "providecommandx" ||
4629                             name[name.length()-1] == '*')
4630                                 output_ert_inset(os, ert, context);
4631                         else {
4632                                 context.check_layout(os);
4633                                 begin_inset(os, "FormulaMacro");
4634                                 os << "\n" << ert;
4635                                 end_inset(os);
4636                         }
4637                 }
4638
4639                 else if (t.cs() == "let" && p.next_token().asInput() != "*") {
4640                         // let could be handled by parse_command(),
4641                         // but we need to call add_known_command() here.
4642                         string ert = t.asInput();
4643                         string name;
4644                         p.skip_spaces();
4645                         if (p.next_token().cat() == catBegin) {
4646                                 name = p.verbatim_item();
4647                                 ert += '{' + name + '}';
4648                         } else {
4649                                 name = p.verbatim_item();
4650                                 ert += name;
4651                         }
4652                         string command;
4653                         p.skip_spaces();
4654                         if (p.next_token().cat() == catBegin) {
4655                                 command = p.verbatim_item();
4656                                 ert += '{' + command + '}';
4657                         } else {
4658                                 command = p.verbatim_item();
4659                                 ert += command;
4660                         }
4661                         // If command is known, make name known too, to parse
4662                         // its arguments correctly. For this reason we also
4663                         // have commands in syntax.default that are hardcoded.
4664                         CommandMap::iterator it = known_commands.find(command);
4665                         if (it != known_commands.end())
4666                                 known_commands[t.asInput()] = it->second;
4667                         output_ert_inset(os, ert, context);
4668                 }
4669
4670                 else if (t.cs() == "hspace" || t.cs() == "vspace") {
4671                         if (starred)
4672                                 p.get_token();
4673                         string name = t.asInput();
4674                         string const length = p.verbatim_item();
4675                         string unit;
4676                         string valstring;
4677                         bool valid = splitLatexLength(length, valstring, unit);
4678                         bool known_hspace = false;
4679                         bool known_vspace = false;
4680                         bool known_unit = false;
4681                         double value;
4682                         if (valid) {
4683                                 istringstream iss(valstring);
4684                                 iss >> value;
4685                                 if (value == 1.0) {
4686                                         if (t.cs()[0] == 'h') {
4687                                                 if (unit == "\\fill") {
4688                                                         if (!starred) {
4689                                                                 unit = "";
4690                                                                 name = "\\hfill";
4691                                                         }
4692                                                         known_hspace = true;
4693                                                 }
4694                                         } else {
4695                                                 if (unit == "\\smallskipamount") {
4696                                                         unit = "smallskip";
4697                                                         known_vspace = true;
4698                                                 } else if (unit == "\\medskipamount") {
4699                                                         unit = "medskip";
4700                                                         known_vspace = true;
4701                                                 } else if (unit == "\\bigskipamount") {
4702                                                         unit = "bigskip";
4703                                                         known_vspace = true;
4704                                                 } else if (unit == "\\fill") {
4705                                                         unit = "vfill";
4706                                                         known_vspace = true;
4707                                                 }
4708                                         }
4709                                 }
4710                                 if (!known_hspace && !known_vspace) {
4711                                         switch (unitFromString(unit)) {
4712                                         case Length::SP:
4713                                         case Length::PT:
4714                                         case Length::BP:
4715                                         case Length::DD:
4716                                         case Length::MM:
4717                                         case Length::PC:
4718                                         case Length::CC:
4719                                         case Length::CM:
4720                                         case Length::IN:
4721                                         case Length::EX:
4722                                         case Length::EM:
4723                                         case Length::MU:
4724                                                 known_unit = true;
4725                                                 break;
4726                                         default: {
4727                                                 //unitFromString(unit) fails for relative units like Length::PCW
4728                                                 // therefore handle them separately
4729                                                 if (unit == "\\paperwidth" || unit == "\\columnwidth"
4730                                                         || unit == "\\textwidth" || unit == "\\linewidth"
4731                                                         || unit == "\\textheight" || unit == "\\paperheight"
4732                                                         || unit == "\\baselineskip")
4733                                                         known_unit = true;
4734                                                 break;
4735                                                          }
4736                                         }
4737                                 }
4738                         }
4739
4740                         // check for glue lengths
4741                         bool is_gluelength = false;
4742                         string gluelength = length;
4743                         string::size_type i = length.find(" minus");
4744                         if (i == string::npos) {
4745                                 i = length.find(" plus");
4746                                 if (i != string::npos)
4747                                         is_gluelength = true;
4748                         } else
4749                                 is_gluelength = true;
4750                         // if yes transform "9xx minus 8yy plus 7zz"
4751                         // to "9xx-8yy+7zz"
4752                         if (is_gluelength) {
4753                                 i = gluelength.find(" minus");
4754                                 if (i != string::npos)
4755                                         gluelength.replace(i, 7, "-");
4756                                 i = gluelength.find(" plus");
4757                                 if (i != string::npos)
4758                                         gluelength.replace(i, 6, "+");
4759                         }
4760
4761                         if (t.cs()[0] == 'h' && (known_unit || known_hspace || is_gluelength)) {
4762                                 // Literal horizontal length or known variable
4763                                 context.check_layout(os);
4764                                 begin_inset(os, "space ");
4765                                 os << name;
4766                                 if (starred)
4767                                         os << '*';
4768                                 os << '{';
4769                                 if (known_hspace)
4770                                         os << unit;
4771                                 os << "}";
4772                                 if (known_unit && !known_hspace)
4773                                         os << "\n\\length " << translate_len(length);
4774                                 if (is_gluelength)
4775                                         os << "\n\\length " << gluelength;
4776                                 end_inset(os);
4777                         } else if (known_unit || known_vspace || is_gluelength) {
4778                                 // Literal vertical length or known variable
4779                                 context.check_layout(os);
4780                                 begin_inset(os, "VSpace ");
4781                                 if (known_vspace)
4782                                         os << unit;
4783                                 if (known_unit && !known_vspace)
4784                                         os << translate_len(length);
4785                                 if (is_gluelength)
4786                                         os << gluelength;
4787                                 if (starred)
4788                                         os << '*';
4789                                 end_inset(os);
4790                         } else {
4791                                 // LyX can't handle other length variables in Inset VSpace/space
4792                                 if (starred)
4793                                         name += '*';
4794                                 if (valid) {
4795                                         if (value == 1.0)
4796                                                 output_ert_inset(os, name + '{' + unit + '}', context);
4797                                         else if (value == -1.0)
4798                                                 output_ert_inset(os, name + "{-" + unit + '}', context);
4799                                         else
4800                                                 output_ert_inset(os, name + '{' + valstring + unit + '}', context);
4801                                 } else
4802                                         output_ert_inset(os, name + '{' + length + '}', context);
4803                         }
4804                 }
4805
4806                 // The single '=' is meant here.
4807                 else if ((newinsetlayout = findInsetLayout(context.textclass, starredname, true))) {
4808                         if (starred)
4809                                 p.get_token();
4810                         p.skip_spaces();
4811                         context.check_layout(os);
4812                         docstring name = newinsetlayout->name();
4813                         bool const caption = name.find(from_ascii("Caption:")) == 0;
4814                         if (caption) {
4815                                 // Already done for floating minted listings.
4816                                 if (minted_float.empty()) {
4817                                         begin_inset(os, "Caption ");
4818                                         os << to_utf8(name.substr(8)) << '\n';
4819                                 }
4820                         } else {
4821                                 // FIXME: what do we do if the prefix is not Flex: ?
4822                                 if (prefixIs(name, from_ascii("Flex:")))
4823                                         name.erase(0, 5);
4824                                 begin_inset(os, "Flex ");
4825                                 os << to_utf8(name) << '\n'
4826                                    << "status collapsed\n";
4827                         }
4828                         if (!minted_float.empty()) {
4829                                 parse_text_snippet(p, os, FLAG_ITEM, false, context);
4830                         } else if (newinsetlayout->isPassThru()) {
4831                                 // set catcodes to verbatim early, just in case.
4832                                 p.setCatcodes(VERBATIM_CATCODES);
4833                                 string delim = p.get_token().asInput();
4834                                 if (delim != "{")
4835                                         cerr << "Warning: bad delimiter for command " << t.asInput() << endl;
4836                                 //FIXME: handle error condition
4837                                 string const arg = p.verbatimStuff("}").second;
4838                                 Context newcontext(true, context.textclass);
4839                                 if (newinsetlayout->forcePlainLayout())
4840                                         newcontext.layout = &context.textclass.plainLayout();
4841                                 output_ert(os, arg, newcontext);
4842                         } else
4843                                 parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout);
4844                         if (caption)
4845                                 p.skip_spaces();
4846                         // Minted caption insets are not closed here because
4847                         // we collect everything into the caption.
4848                         if (minted_float.empty())
4849                                 end_inset(os);
4850                 }
4851
4852                 else if (t.cs() == "includepdf") {
4853                         p.skip_spaces();
4854                         string const arg = p.getArg('[', ']');
4855                         map<string, string> opts;
4856                         vector<string> keys;
4857                         split_map(arg, opts, keys);
4858                         string name = normalize_filename(p.verbatim_item());
4859                         string const path = getMasterFilePath(true);
4860                         // We want to preserve relative / absolute filenames,
4861                         // therefore path is only used for testing
4862                         if (!makeAbsPath(name, path).exists()) {
4863                                 // The file extension is probably missing.
4864                                 // Now try to find it out.
4865                                 char const * const pdfpages_format[] = {"pdf", 0};
4866                                 string const pdftex_name =
4867                                         find_file(name, path, pdfpages_format);
4868                                 if (!pdftex_name.empty()) {
4869                                         name = pdftex_name;
4870                                         pdflatex = true;
4871                                 }
4872                         }
4873                         FileName const absname = makeAbsPath(name, path);
4874                         if (absname.exists())
4875                         {
4876                                 fix_child_filename(name);
4877                                 copy_file(absname, name);
4878                         } else
4879                                 cerr << "Warning: Could not find file '"
4880                                      << name << "'." << endl;
4881                         // write output
4882                         context.check_layout(os);
4883                         begin_inset(os, "External\n\ttemplate ");
4884                         os << "PDFPages\n\tfilename "
4885                            << name << "\n";
4886                         // parse the options
4887                         if (opts.find("pages") != opts.end())
4888                                 os << "\textra LaTeX \"pages="
4889                                    << opts["pages"] << "\"\n";
4890                         if (opts.find("angle") != opts.end())
4891                                 os << "\trotateAngle "
4892                                    << opts["angle"] << '\n';
4893                         if (opts.find("origin") != opts.end()) {
4894                                 ostringstream ss;
4895                                 string const opt = opts["origin"];
4896                                 if (opt == "tl") ss << "topleft";
4897                                 if (opt == "bl") ss << "bottomleft";
4898                                 if (opt == "Bl") ss << "baselineleft";
4899                                 if (opt == "c") ss << "center";
4900                                 if (opt == "tc") ss << "topcenter";
4901                                 if (opt == "bc") ss << "bottomcenter";
4902                                 if (opt == "Bc") ss << "baselinecenter";
4903                                 if (opt == "tr") ss << "topright";
4904                                 if (opt == "br") ss << "bottomright";
4905                                 if (opt == "Br") ss << "baselineright";
4906                                 if (!ss.str().empty())
4907                                         os << "\trotateOrigin " << ss.str() << '\n';
4908                                 else
4909                                         cerr << "Warning: Ignoring unknown includegraphics origin argument '" << opt << "'\n";
4910                         }
4911                         if (opts.find("width") != opts.end())
4912                                 os << "\twidth "
4913                                    << translate_len(opts["width"]) << '\n';
4914                         if (opts.find("height") != opts.end())
4915                                 os << "\theight "
4916                                    << translate_len(opts["height"]) << '\n';
4917                         if (opts.find("keepaspectratio") != opts.end())
4918                                 os << "\tkeepAspectRatio\n";
4919                         end_inset(os);
4920                         context.check_layout(os);
4921                         registerExternalTemplatePackages("PDFPages");
4922                 }
4923
4924                 else if (t.cs() == "loadgame") {
4925                         p.skip_spaces();
4926                         string name = normalize_filename(p.verbatim_item());
4927                         string const path = getMasterFilePath(true);
4928                         // We want to preserve relative / absolute filenames,
4929                         // therefore path is only used for testing
4930                         if (!makeAbsPath(name, path).exists()) {
4931                                 // The file extension is probably missing.
4932                                 // Now try to find it out.
4933                                 char const * const lyxskak_format[] = {"fen", 0};
4934                                 string const lyxskak_name =
4935                                         find_file(name, path, lyxskak_format);
4936                                 if (!lyxskak_name.empty())
4937                                         name = lyxskak_name;
4938                         }
4939                         FileName const absname = makeAbsPath(name, path);
4940                         if (absname.exists())
4941                         {
4942                                 fix_child_filename(name);
4943                                 copy_file(absname, name);
4944                         } else
4945                                 cerr << "Warning: Could not find file '"
4946                                      << name << "'." << endl;
4947                         context.check_layout(os);
4948                         begin_inset(os, "External\n\ttemplate ");
4949                         os << "ChessDiagram\n\tfilename "
4950                            << name << "\n";
4951                         end_inset(os);
4952                         context.check_layout(os);
4953                         // after a \loadgame follows a \showboard
4954                         if (p.get_token().asInput() == "showboard")
4955                                 p.get_token();
4956                         registerExternalTemplatePackages("ChessDiagram");
4957                 }
4958
4959                 else {
4960                         // try to see whether the string is in unicodesymbols
4961                         // Only use text mode commands, since we are in text mode here,
4962                         // and math commands may be invalid (bug 6797)
4963                         string name = t.asInput();
4964                         // handle the dingbats, cyrillic and greek
4965                         if (name == "\\ding" || name == "\\textcyr" ||
4966                             (name == "\\textgreek" && !preamble.usePolyglossia()))
4967                                 name = name + '{' + p.getArg('{', '}') + '}';
4968                         // handle the ifsym characters
4969                         else if (name == "\\textifsymbol") {
4970                                 string const optif = p.getFullOpt();
4971                                 string const argif = p.getArg('{', '}');
4972                                 name = name + optif + '{' + argif + '}';
4973                         }
4974                         // handle the \ascii characters
4975                         // the case of \ascii within braces, as LyX outputs it, is already
4976                         // handled for t.cat() == catBegin
4977                         else if (name == "\\ascii") {
4978                                 // the code is "\asci\xxx"
4979                                 name = "{" + name + p.get_token().asInput() + "}";
4980                                 skip_braces(p);
4981                         }
4982                         // handle some TIPA special characters
4983                         else if (preamble.isPackageUsed("tipa")) {
4984                                 if (name == "\\s") {
4985                                         // fromLaTeXCommand() does not yet
4986                                         // recognize tipa short cuts
4987                                         name = "\\textsyllabic";
4988                                 } else if (name == "\\=" &&
4989                                            p.next_token().asInput() == "*") {
4990                                         // fromLaTeXCommand() does not yet
4991                                         // recognize tipa short cuts
4992                                         p.get_token();
4993                                         name = "\\textsubbar";
4994                                 } else if (name == "\\textdoublevertline") {
4995                                         // FIXME: This is not correct,
4996                                         // \textvertline is higher than \textbardbl
4997                                         name = "\\textbardbl";
4998                                         skip_braces(p);
4999                                 } else if (name == "\\!" ) {
5000                                         if (p.next_token().asInput() == "b") {
5001                                                 p.get_token();  // eat 'b'
5002                                                 name = "\\texthtb";
5003                                                 skip_braces(p);
5004                                         } else if (p.next_token().asInput() == "d") {
5005                                                 p.get_token();
5006                                                 name = "\\texthtd";
5007                                                 skip_braces(p);
5008                                         } else if (p.next_token().asInput() == "g") {
5009                                                 p.get_token();
5010                                                 name = "\\texthtg";
5011                                                 skip_braces(p);
5012                                         } else if (p.next_token().asInput() == "G") {
5013                                                 p.get_token();
5014                                                 name = "\\texthtscg";
5015                                                 skip_braces(p);
5016                                         } else if (p.next_token().asInput() == "j") {
5017                                                 p.get_token();
5018                                                 name = "\\texthtbardotlessj";
5019                                                 skip_braces(p);
5020                                         } else if (p.next_token().asInput() == "o") {
5021                                                 p.get_token();
5022                                                 name = "\\textbullseye";
5023                                                 skip_braces(p);
5024                                         }
5025                                 } else if (name == "\\*" ) {
5026                                         if (p.next_token().asInput() == "k") {
5027                                                 p.get_token();
5028                                                 name = "\\textturnk";
5029                                                 skip_braces(p);
5030                                         } else if (p.next_token().asInput() == "r") {
5031                                                 p.get_token();  // eat 'b'
5032                                                 name = "\\textturnr";
5033                                                 skip_braces(p);
5034                                         } else if (p.next_token().asInput() == "t") {
5035                                                 p.get_token();
5036                                                 name = "\\textturnt";
5037                                                 skip_braces(p);
5038                                         } else if (p.next_token().asInput() == "w") {
5039                                                 p.get_token();
5040                                                 name = "\\textturnw";
5041                                                 skip_braces(p);
5042                                         }
5043                                 }
5044                         }
5045                         if ((name.size() == 2 &&
5046                              contains("\"'.=^`bcdHkrtuv~", name[1]) &&
5047                              p.next_token().asInput() != "*") ||
5048                             is_known(name.substr(1), known_tipa_marks)) {
5049                                 // name is a command that corresponds to a
5050                                 // combining character in unicodesymbols.
5051                                 // Append the argument, fromLaTeXCommand()
5052                                 // will either convert it to a single
5053                                 // character or a combining sequence.
5054                                 name += '{' + p.verbatim_item() + '}';
5055                         }
5056                         // now get the character from unicodesymbols
5057                         bool termination;
5058                         docstring rem;
5059                         set<string> req;
5060                         docstring s = normalize_c(encodings.fromLaTeXCommand(from_utf8(name),
5061                                         Encodings::TEXT_CMD, termination, rem, &req));
5062                         if (!s.empty()) {
5063                                 context.check_layout(os);
5064                                 os << to_utf8(s);
5065                                 if (!rem.empty())
5066                                         output_ert_inset(os, to_utf8(rem), context);
5067                                 if (termination)
5068                                         skip_spaces_braces(p);
5069                                 for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
5070                                         preamble.registerAutomaticallyLoadedPackage(*it);
5071                         }
5072                         //cerr << "#: " << t << " mode: " << mode << endl;
5073                         // heuristic: read up to next non-nested space
5074                         /*
5075                         string s = t.asInput();
5076                         string z = p.verbatim_item();
5077                         while (p.good() && z != " " && !z.empty()) {
5078                                 //cerr << "read: " << z << endl;
5079                                 s += z;
5080                                 z = p.verbatim_item();
5081                         }
5082                         cerr << "found ERT: " << s << endl;
5083                         output_ert_inset(os, s + ' ', context);
5084                         */
5085                         else {
5086                                 if (t.asInput() == name &&
5087                                     p.next_token().asInput() == "*") {
5088                                         // Starred commands like \vspace*{}
5089                                         p.get_token();  // Eat '*'
5090                                         name += '*';
5091                                 }
5092                                 if (!parse_command(name, p, os, outer, context))
5093                                         output_ert_inset(os, name, context);
5094                         }
5095                 }
5096
5097                 if (flags & FLAG_LEAVE) {
5098                         flags &= ~FLAG_LEAVE;
5099                         break;
5100                 }
5101         }
5102 }
5103
5104
5105 string guessLanguage(Parser & p, string const & lang)
5106 {
5107         typedef std::map<std::string, size_t> LangMap;
5108         // map from language names to number of characters
5109         LangMap used;
5110         used[lang] = 0;
5111         for (char const * const * i = supported_CJK_languages; *i; i++)
5112                 used[string(*i)] = 0;
5113
5114         while (p.good()) {
5115                 Token const t = p.get_token();
5116                 // comments are not counted for any language
5117                 if (t.cat() == catComment)
5118                         continue;
5119                 // commands are not counted as well, but we need to detect
5120                 // \begin{CJK} and switch encoding if needed
5121                 if (t.cat() == catEscape) {
5122                         if (t.cs() == "inputencoding") {
5123                                 string const enc = subst(p.verbatim_item(), "\n", " ");
5124                                 p.setEncoding(enc, Encoding::inputenc);
5125                                 continue;
5126                         }
5127                         if (t.cs() != "begin")
5128                                 continue;
5129                 } else {
5130                         // Non-CJK content is counted for lang.
5131                         // We do not care about the real language here:
5132                         // If we have more non-CJK contents than CJK contents,
5133                         // we simply use the language that was specified as
5134                         // babel main language.
5135                         used[lang] += t.asInput().length();
5136                         continue;
5137                 }
5138                 // Now we are starting an environment
5139                 p.pushPosition();
5140                 string const name = p.getArg('{', '}');
5141                 if (name != "CJK") {
5142                         p.popPosition();
5143                         continue;
5144                 }
5145                 // It is a CJK environment
5146                 p.popPosition();
5147                 /* name = */ p.getArg('{', '}');
5148                 string const encoding = p.getArg('{', '}');
5149                 /* mapping = */ p.getArg('{', '}');
5150                 string const encoding_old = p.getEncoding();
5151                 char const * const * const where =
5152                         is_known(encoding, supported_CJK_encodings);
5153                 if (where)
5154                         p.setEncoding(encoding, Encoding::CJK);
5155                 else
5156                         p.setEncoding("UTF-8");
5157                 string const text = p.ertEnvironment("CJK");
5158                 p.setEncoding(encoding_old);
5159                 p.skip_spaces();
5160                 if (!where) {
5161                         // ignore contents in unknown CJK encoding
5162                         continue;
5163                 }
5164                 // the language of the text
5165                 string const cjk =
5166                         supported_CJK_languages[where - supported_CJK_encodings];
5167                 used[cjk] += text.length();
5168         }
5169         LangMap::const_iterator use = used.begin();
5170         for (LangMap::const_iterator it = used.begin(); it != used.end(); ++it) {
5171                 if (it->second > use->second)
5172                         use = it;
5173         }
5174         return use->first;
5175 }
5176
5177 // }])
5178
5179
5180 } // namespace lyx