]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/text.cpp
Russian layouttranslations reviewed by Yuriy, Dec 13 2017.
[lyx.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         string bibliographystyle = "default";
2481         bool const use_natbib = isProvided("natbib");
2482         bool const use_jurabib = isProvided("jurabib");
2483         string last_env;
2484
2485         // it is impossible to determine the correct encoding for non-CJK Japanese.
2486         // Therefore write a note at the beginning of the document
2487         if (is_nonCJKJapanese) {
2488                 context.check_layout(os);
2489                 begin_inset(os, "Note Note\n");
2490                 os << "status open\n\\begin_layout Plain Layout\n"
2491                    << "\\series bold\n"
2492                    << "Important information:\n"
2493                    << "\\end_layout\n\n"
2494                    << "\\begin_layout Plain Layout\n"
2495                    << "The original LaTeX source for this document is in Japanese (pLaTeX).\n"
2496                    << " It was therefore impossible for tex2lyx to determine the correct encoding.\n"
2497                    << " The iconv encoding " << p.getEncoding() << " was used.\n"
2498                    << " If this is incorrect, you must run the tex2lyx program on the command line\n"
2499                    << " and specify the encoding using the -e command-line switch.\n"
2500                    << " In addition, you might want to double check that the desired output encoding\n"
2501                    << " is correctly selected in Document > Settings > Language.\n"
2502                    << "\\end_layout\n";
2503                 end_inset(os);
2504                 is_nonCJKJapanese = false;
2505         }
2506
2507         while (p.good()) {
2508                 Token const & t = p.get_token();
2509 #ifdef FILEDEBUG
2510                 debugToken(cerr, t, flags);
2511 #endif
2512
2513                 if (flags & FLAG_ITEM) {
2514                         if (t.cat() == catSpace)
2515                                 continue;
2516
2517                         flags &= ~FLAG_ITEM;
2518                         if (t.cat() == catBegin) {
2519                                 // skip the brace and collect everything to the next matching
2520                                 // closing brace
2521                                 flags |= FLAG_BRACE_LAST;
2522                                 continue;
2523                         }
2524
2525                         // handle only this single token, leave the loop if done
2526                         flags |= FLAG_LEAVE;
2527                 }
2528
2529                 if (t.cat() != catEscape && t.character() == ']' &&
2530                     (flags & FLAG_BRACK_LAST))
2531                         return;
2532                 if (t.cat() == catEnd && (flags & FLAG_BRACE_LAST))
2533                         return;
2534
2535                 // If there is anything between \end{env} and \begin{env} we
2536                 // don't need to output a separator.
2537                 if (t.cat() != catSpace && t.cat() != catNewline &&
2538                     t.asInput() != "\\begin")
2539                         last_env = "";
2540
2541                 //
2542                 // cat codes
2543                 //
2544                 bool const starred = p.next_token().asInput() == "*";
2545                 string const starredname(starred ? (t.cs() + '*') : t.cs());
2546                 if (t.cat() == catMath) {
2547                         // we are inside some text mode thingy, so opening new math is allowed
2548                         context.check_layout(os);
2549                         begin_inset(os, "Formula ");
2550                         Token const & n = p.get_token();
2551                         bool const display(n.cat() == catMath && outer);
2552                         if (display) {
2553                                 // TeX's $$...$$ syntax for displayed math
2554                                 os << "\\[";
2555                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
2556                                 os << "\\]";
2557                                 p.get_token(); // skip the second '$' token
2558                         } else {
2559                                 // simple $...$  stuff
2560                                 p.putback();
2561                                 os << '$';
2562                                 parse_math(p, os, FLAG_SIMPLE, MATH_MODE);
2563                                 os << '$';
2564                         }
2565                         end_inset(os);
2566                         if (display) {
2567                                 // Prevent the conversion of a line break to a
2568                                 // space (bug 7668). This does not change the
2569                                 // output, but looks ugly in LyX.
2570                                 eat_whitespace(p, os, context, false);
2571                         }
2572                 }
2573
2574                 else if (t.cat() == catSuper || t.cat() == catSub)
2575                         cerr << "catcode " << t << " illegal in text mode\n";
2576
2577                 // Basic support for english quotes. This should be
2578                 // extended to other quotes, but is not so easy (a
2579                 // left english quote is the same as a right german
2580                 // quote...)
2581                 else if (t.asInput() == "`" && p.next_token().asInput() == "`") {
2582                         context.check_layout(os);
2583                         begin_inset(os, "Quotes ");
2584                         os << "eld";
2585                         end_inset(os);
2586                         p.get_token();
2587                         skip_braces(p);
2588                 }
2589                 else if (t.asInput() == "'" && p.next_token().asInput() == "'") {
2590                         context.check_layout(os);
2591                         begin_inset(os, "Quotes ");
2592                         os << "erd";
2593                         end_inset(os);
2594                         p.get_token();
2595                         skip_braces(p);
2596                 }
2597
2598                 else if (t.asInput() == ">" && p.next_token().asInput() == ">") {
2599                         context.check_layout(os);
2600                         begin_inset(os, "Quotes ");
2601                         os << "ald";
2602                         end_inset(os);
2603                         p.get_token();
2604                         skip_braces(p);
2605                 }
2606
2607                 else if (t.asInput() == "<"
2608                          && p.next_token().asInput() == "<") {
2609                         bool has_chunk = false;
2610                         if (noweb_mode) {
2611                                 p.pushPosition();
2612                                 p.get_token();
2613                                 has_chunk = parse_chunk(p, os, context);
2614                                 if (!has_chunk)
2615                                         p.popPosition();
2616                         }
2617
2618                         if (!has_chunk) {
2619                                 context.check_layout(os);
2620                                 begin_inset(os, "Quotes ");
2621                                 //FIXME: this is a right danish quote;
2622                                 // why not a left french quote?
2623                                 os << "ard";
2624                                 end_inset(os);
2625                                 p.get_token();
2626                                 skip_braces(p);
2627                         }
2628                 }
2629
2630                 else if (t.cat() == catSpace || (t.cat() == catNewline && ! p.isParagraph()))
2631                         check_space(p, os, context);
2632
2633                 else if (t.character() == '[' && noweb_mode &&
2634                          p.next_token().character() == '[') {
2635                         // These can contain underscores
2636                         p.putback();
2637                         string const s = p.getFullOpt() + ']';
2638                         if (p.next_token().character() == ']')
2639                                 p.get_token();
2640                         else
2641                                 cerr << "Warning: Inserting missing ']' in '"
2642                                      << s << "'." << endl;
2643                         output_ert_inset(os, s, context);
2644                 }
2645
2646                 else if (t.cat() == catLetter) {
2647                         context.check_layout(os);
2648                         os << t.cs();
2649                 }
2650
2651                 else if (t.cat() == catOther ||
2652                                t.cat() == catAlign ||
2653                                t.cat() == catParameter) {
2654                         context.check_layout(os);
2655                         if (t.asInput() == "-" && p.next_token().asInput() == "-" &&
2656                             context.merging_hyphens_allowed &&
2657                             context.font.family != "ttfamily" &&
2658                             !context.layout->pass_thru) {
2659                                 if (p.next_next_token().asInput() == "-") {
2660                                         // --- is emdash
2661                                         os << to_utf8(docstring(1, 0x2014));
2662                                         p.get_token();
2663                                 } else
2664                                         // -- is endash
2665                                         os << to_utf8(docstring(1, 0x2013));
2666                                 p.get_token();
2667                         } else
2668                                 // This translates "&" to "\\&" which may be wrong...
2669                                 os << t.cs();
2670                 }
2671
2672                 else if (p.isParagraph()) {
2673                         // In minted floating listings we will collect
2674                         // everything into the caption, where multiple
2675                         // paragraphs are forbidden.
2676                         if (minted_float.empty()) {
2677                                 if (context.new_layout_allowed)
2678                                         context.new_paragraph(os);
2679                                 else
2680                                         output_ert_inset(os, "\\par ", context);
2681                         } else
2682                                 os << ' ';
2683                         eat_whitespace(p, os, context, true);
2684                 }
2685
2686                 else if (t.cat() == catActive) {
2687                         context.check_layout(os);
2688                         if (t.character() == '~') {
2689                                 if (context.layout->free_spacing)
2690                                         os << ' ';
2691                                 else {
2692                                         begin_inset(os, "space ~\n");
2693                                         end_inset(os);
2694                                 }
2695                         } else
2696                                 os << t.cs();
2697                 }
2698
2699                 else if (t.cat() == catBegin) {
2700                         Token const next = p.next_token();
2701                         Token const end = p.next_next_token();
2702                         if (next.cat() == catEnd) {
2703                                 // {}
2704                                 Token const prev = p.prev_token();
2705                                 p.get_token();
2706                                 if (p.next_token().character() == '`')
2707                                         ; // ignore it in {}``
2708                                 else
2709                                         output_ert_inset(os, "{}", context);
2710                         } else if (next.cat() == catEscape &&
2711                                    is_known(next.cs(), known_quotes) &&
2712                                    end.cat() == catEnd) {
2713                                 // Something like {\textquoteright} (e.g.
2714                                 // from writer2latex). LyX writes
2715                                 // \textquoteright{}, so we may skip the
2716                                 // braces here for better readability.
2717                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2718                                                    outer, context);
2719                         } else if (p.next_token().asInput() == "\\ascii") {
2720                                 // handle the \ascii characters
2721                                 // (the case without braces is handled later)
2722                                 // the code is "{\ascii\xxx}"
2723                                 p.get_token(); // eat \ascii
2724                                 string name2 = p.get_token().asInput();
2725                                 p.get_token(); // eat the final '}'
2726                                 string const name = "{\\ascii" + name2 + "}";
2727                                 bool termination;
2728                                 docstring rem;
2729                                 set<string> req;
2730                                 // get the character from unicodesymbols
2731                                 docstring s = encodings.fromLaTeXCommand(from_utf8(name),
2732                                         Encodings::TEXT_CMD, termination, rem, &req);
2733                                 if (!s.empty()) {
2734                                         context.check_layout(os);
2735                                         os << to_utf8(s);
2736                                         if (!rem.empty())
2737                                                 output_ert_inset(os,
2738                                                         to_utf8(rem), context);
2739                                         for (set<string>::const_iterator it = req.begin();
2740                                              it != req.end(); ++it)
2741                                                 preamble.registerAutomaticallyLoadedPackage(*it);
2742                                 } else
2743                                         // we did not find a non-ert version
2744                                         output_ert_inset(os, name, context);
2745                         } else {
2746                         context.check_layout(os);
2747                         // special handling of font attribute changes
2748                         Token const prev = p.prev_token();
2749                         TeXFont const oldFont = context.font;
2750                         if (next.character() == '[' ||
2751                             next.character() == ']' ||
2752                             next.character() == '*') {
2753                                 p.get_token();
2754                                 if (p.next_token().cat() == catEnd) {
2755                                         os << next.cs();
2756                                         p.get_token();
2757                                 } else {
2758                                         p.putback();
2759                                         output_ert_inset(os, "{", context);
2760                                         parse_text_snippet(p, os,
2761                                                         FLAG_BRACE_LAST,
2762                                                         outer, context);
2763                                         output_ert_inset(os, "}", context);
2764                                 }
2765                         } else if (! context.new_layout_allowed) {
2766                                 output_ert_inset(os, "{", context);
2767                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2768                                                    outer, context);
2769                                 output_ert_inset(os, "}", context);
2770                         } else if (is_known(next.cs(), known_sizes)) {
2771                                 // next will change the size, so we must
2772                                 // reset it here
2773                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2774                                                    outer, context);
2775                                 if (!context.atParagraphStart())
2776                                         os << "\n\\size "
2777                                            << context.font.size << "\n";
2778                         } else if (is_known(next.cs(), known_font_families)) {
2779                                 // next will change the font family, so we
2780                                 // must reset it here
2781                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2782                                                    outer, context);
2783                                 if (!context.atParagraphStart())
2784                                         os << "\n\\family "
2785                                            << context.font.family << "\n";
2786                         } else if (is_known(next.cs(), known_font_series)) {
2787                                 // next will change the font series, so we
2788                                 // must reset it here
2789                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2790                                                    outer, context);
2791                                 if (!context.atParagraphStart())
2792                                         os << "\n\\series "
2793                                            << context.font.series << "\n";
2794                         } else if (is_known(next.cs(), known_font_shapes)) {
2795                                 // next will change the font shape, so we
2796                                 // must reset it here
2797                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2798                                                    outer, context);
2799                                 if (!context.atParagraphStart())
2800                                         os << "\n\\shape "
2801                                            << context.font.shape << "\n";
2802                         } else if (is_known(next.cs(), known_old_font_families) ||
2803                                    is_known(next.cs(), known_old_font_series) ||
2804                                    is_known(next.cs(), known_old_font_shapes)) {
2805                                 // next will change the font family, series
2806                                 // and shape, so we must reset it here
2807                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2808                                                    outer, context);
2809                                 if (!context.atParagraphStart())
2810                                         os <<  "\n\\family "
2811                                            << context.font.family
2812                                            << "\n\\series "
2813                                            << context.font.series
2814                                            << "\n\\shape "
2815                                            << context.font.shape << "\n";
2816                         } else {
2817                                 output_ert_inset(os, "{", context);
2818                                 parse_text_snippet(p, os, FLAG_BRACE_LAST,
2819                                                    outer, context);
2820                                 output_ert_inset(os, "}", context);
2821                                 }
2822                         }
2823                 }
2824
2825                 else if (t.cat() == catEnd) {
2826                         if (flags & FLAG_BRACE_LAST) {
2827                                 return;
2828                         }
2829                         cerr << "stray '}' in text\n";
2830                         output_ert_inset(os, "}", context);
2831                 }
2832
2833                 else if (t.cat() == catComment)
2834                         parse_comment(p, os, t, context);
2835
2836                 //
2837                 // control sequences
2838                 //
2839
2840                 else if (t.cs() == "(" || t.cs() == "[") {
2841                         bool const simple = t.cs() == "(";
2842                         context.check_layout(os);
2843                         begin_inset(os, "Formula");
2844                         os << " \\" << t.cs();
2845                         parse_math(p, os, simple ? FLAG_SIMPLE2 : FLAG_EQUATION, MATH_MODE);
2846                         os << '\\' << (simple ? ')' : ']');
2847                         end_inset(os);
2848                         if (!simple) {
2849                                 // Prevent the conversion of a line break to a
2850                                 // space (bug 7668). This does not change the
2851                                 // output, but looks ugly in LyX.
2852                                 eat_whitespace(p, os, context, false);
2853                         }
2854                 }
2855
2856                 else if (t.cs() == "begin")
2857                         parse_environment(p, os, outer, last_env,
2858                                           context);
2859
2860                 else if (t.cs() == "end") {
2861                         if (flags & FLAG_END) {
2862                                 // eat environment name
2863                                 string const name = p.getArg('{', '}');
2864                                 if (name != active_environment())
2865                                         cerr << "\\end{" + name + "} does not match \\begin{"
2866                                                 + active_environment() + "}\n";
2867                                 return;
2868                         }
2869                         p.error("found 'end' unexpectedly");
2870                 }
2871
2872                 else if (t.cs() == "item") {
2873                         string s;
2874                         bool const optarg = p.hasOpt();
2875                         if (optarg) {
2876                                 // FIXME: This swallows comments, but we cannot use
2877                                 //        eat_whitespace() since we must not output
2878                                 //        anything before the item.
2879                                 p.skip_spaces(true);
2880                                 s = p.verbatimOption();
2881                         } else
2882                                 p.skip_spaces(false);
2883                         context.set_item();
2884                         context.check_layout(os);
2885                         if (context.has_item) {
2886                                 // An item in an unknown list-like environment
2887                                 // FIXME: Do this in check_layout()!
2888                                 context.has_item = false;
2889                                 if (optarg)
2890                                         output_ert_inset(os, "\\item", context);
2891                                 else
2892                                         output_ert_inset(os, "\\item ", context);
2893                         }
2894                         if (optarg) {
2895                                 if (context.layout->labeltype != LABEL_MANUAL) {
2896                                         // handle option of itemize item
2897                                         begin_inset(os, "Argument item:1\n");
2898                                         os << "status open\n";
2899                                         os << "\n\\begin_layout Plain Layout\n";
2900                                         Parser p2(s + ']');
2901                                         os << parse_text_snippet(p2,
2902                                                 FLAG_BRACK_LAST, outer, context);
2903                                         // we must not use context.check_end_layout(os)
2904                                         // because that would close the outer itemize layout
2905                                         os << "\n\\end_layout\n";
2906                                         end_inset(os);
2907                                         eat_whitespace(p, os, context, false);
2908                                 } else if (!s.empty()) {
2909                                         // LyX adds braces around the argument,
2910                                         // so we need to remove them here.
2911                                         if (s.size() > 2 && s[0] == '{' &&
2912                                             s[s.size()-1] == '}')
2913                                                 s = s.substr(1, s.size()-2);
2914                                         // If the argument contains a space we
2915                                         // must put it into ERT: Otherwise LyX
2916                                         // would misinterpret the space as
2917                                         // item delimiter (bug 7663)
2918                                         if (contains(s, ' ')) {
2919                                                 output_ert_inset(os, s, context);
2920                                         } else {
2921                                                 Parser p2(s + ']');
2922                                                 os << parse_text_snippet(p2,
2923                                                         FLAG_BRACK_LAST, outer, context);
2924                                         }
2925                                         // The space is needed to separate the
2926                                         // item from the rest of the sentence.
2927                                         os << ' ';
2928                                         eat_whitespace(p, os, context, false);
2929                                 }
2930                         }
2931                 }
2932
2933                 else if (t.cs() == "bibitem") {
2934                         context.set_item();
2935                         context.check_layout(os);
2936                         eat_whitespace(p, os, context, false);
2937                         string label = convert_command_inset_arg(p.verbatimOption());
2938                         string key = convert_command_inset_arg(p.verbatim_item());
2939                         if (contains(label, '\\') || contains(key, '\\')) {
2940                                 // LyX can't handle LaTeX commands in labels or keys
2941                                 output_ert_inset(os, t.asInput() + '[' + label +
2942                                                "]{" + p.verbatim_item() + '}',
2943                                            context);
2944                         } else {
2945                                 begin_command_inset(os, "bibitem", "bibitem");
2946                                 os << "label \"" << label << "\"\n"
2947                                    << "key \"" << key << "\"\n"
2948                                    << "literal \"true\"\n";
2949                                 end_inset(os);
2950                         }
2951                 }
2952
2953                 else if (is_macro(p)) {
2954                         // catch the case of \def\inputGnumericTable
2955                         bool macro = true;
2956                         if (t.cs() == "def") {
2957                                 Token second = p.next_token();
2958                                 if (second.cs() == "inputGnumericTable") {
2959                                         p.pushPosition();
2960                                         p.get_token();
2961                                         skip_braces(p);
2962                                         Token third = p.get_token();
2963                                         p.popPosition();
2964                                         if (third.cs() == "input") {
2965                                                 p.get_token();
2966                                                 skip_braces(p);
2967                                                 p.get_token();
2968                                                 string name = normalize_filename(p.verbatim_item());
2969                                                 string const path = getMasterFilePath(true);
2970                                                 // We want to preserve relative / absolute filenames,
2971                                                 // therefore path is only used for testing
2972                                                 // The file extension is in every case ".tex".
2973                                                 // So we need to remove this extension and check for
2974                                                 // the original one.
2975                                                 name = removeExtension(name);
2976                                                 if (!makeAbsPath(name, path).exists()) {
2977                                                         char const * const Gnumeric_formats[] = {"gnumeric",
2978                                                                 "ods", "xls", 0};
2979                                                         string const Gnumeric_name =
2980                                                                 find_file(name, path, Gnumeric_formats);
2981                                                         if (!Gnumeric_name.empty())
2982                                                                 name = Gnumeric_name;
2983                                                 }
2984                                                 FileName const absname = makeAbsPath(name, path);
2985                                                 if (absname.exists()) {
2986                                                         fix_child_filename(name);
2987                                                         copy_file(absname, name);
2988                                                 } else
2989                                                         cerr << "Warning: Could not find file '"
2990                                                              << name << "'." << endl;
2991                                                 context.check_layout(os);
2992                                                 begin_inset(os, "External\n\ttemplate ");
2993                                                 os << "GnumericSpreadsheet\n\tfilename "
2994                                                    << name << "\n";
2995                                                 end_inset(os);
2996                                                 context.check_layout(os);
2997                                                 macro = false;
2998                                                 // register the packages that are automatically loaded
2999                                                 // by the Gnumeric template
3000                                                 registerExternalTemplatePackages("GnumericSpreadsheet");
3001                                         }
3002                                 }
3003                         }
3004                         if (macro)
3005                                 parse_macro(p, os, context);
3006                 }
3007
3008                 else if (t.cs() == "noindent") {
3009                         p.skip_spaces();
3010                         context.add_par_extra_stuff("\\noindent\n");
3011                 }
3012
3013                 else if (t.cs() == "appendix") {
3014                         context.add_par_extra_stuff("\\start_of_appendix\n");
3015                         // We need to start a new paragraph. Otherwise the
3016                         // appendix in 'bla\appendix\chapter{' would start
3017                         // too late.
3018                         context.new_paragraph(os);
3019                         // We need to make sure that the paragraph is
3020                         // generated even if it is empty. Otherwise the
3021                         // appendix in '\par\appendix\par\chapter{' would
3022                         // start too late.
3023                         context.check_layout(os);
3024                         // FIXME: This is a hack to prevent paragraph
3025                         // deletion if it is empty. Handle this better!
3026                         output_comment(p, os,
3027                                 "dummy comment inserted by tex2lyx to "
3028                                 "ensure that this paragraph is not empty",
3029                                 context);
3030                         // Both measures above may generate an additional
3031                         // empty paragraph, but that does not hurt, because
3032                         // whitespace does not matter here.
3033                         eat_whitespace(p, os, context, true);
3034                 }
3035
3036                 // Must catch empty dates before findLayout is called below
3037                 else if (t.cs() == "date") {
3038                         eat_whitespace(p, os, context, false);
3039                         p.pushPosition();
3040                         string const date = p.verbatim_item();
3041                         p.popPosition();
3042                         if (date.empty()) {
3043                                 preamble.suppressDate(true);
3044                                 p.verbatim_item();
3045                         } else {
3046                                 preamble.suppressDate(false);
3047                                 if (context.new_layout_allowed &&
3048                                     (newlayout = findLayout(context.textclass,
3049                                                             t.cs(), true))) {
3050                                         // write the layout
3051                                         output_command_layout(os, p, outer,
3052                                                         context, newlayout);
3053                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3054                                         if (!preamble.titleLayoutFound())
3055                                                 preamble.titleLayoutFound(newlayout->intitle);
3056                                         set<string> const & req = newlayout->requires();
3057                                         set<string>::const_iterator it = req.begin();
3058                                         set<string>::const_iterator en = req.end();
3059                                         for (; it != en; ++it)
3060                                                 preamble.registerAutomaticallyLoadedPackage(*it);
3061                                 } else
3062                                         output_ert_inset(os,
3063                                                 "\\date{" + p.verbatim_item() + '}',
3064                                                 context);
3065                         }
3066                 }
3067
3068                 // Starred section headings
3069                 // Must attempt to parse "Section*" before "Section".
3070                 else if ((p.next_token().asInput() == "*") &&
3071                          context.new_layout_allowed &&
3072                          (newlayout = findLayout(context.textclass, t.cs() + '*', true))) {
3073                         // write the layout
3074                         p.get_token();
3075                         output_command_layout(os, p, outer, context, newlayout);
3076                         p.skip_spaces();
3077                         if (!preamble.titleLayoutFound())
3078                                 preamble.titleLayoutFound(newlayout->intitle);
3079                         set<string> const & req = newlayout->requires();
3080                         for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
3081                                 preamble.registerAutomaticallyLoadedPackage(*it);
3082                 }
3083
3084                 // Section headings and the like
3085                 else if (context.new_layout_allowed &&
3086                          (newlayout = findLayout(context.textclass, t.cs(), true))) {
3087                         // write the layout
3088                         output_command_layout(os, p, outer, context, newlayout);
3089                         p.skip_spaces();
3090                         if (!preamble.titleLayoutFound())
3091                                 preamble.titleLayoutFound(newlayout->intitle);
3092                         set<string> const & req = newlayout->requires();
3093                         for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
3094                                 preamble.registerAutomaticallyLoadedPackage(*it);
3095                 }
3096
3097                 else if (t.cs() == "subfloat") {
3098                         // the syntax is \subfloat[list entry][sub caption]{content}
3099                         // if it is a table of figure depends on the surrounding float
3100                         // FIXME: second optional argument is not parsed
3101                         p.skip_spaces();
3102                         // do nothing if there is no outer float
3103                         if (!float_type.empty()) {
3104                                 context.check_layout(os);
3105                                 p.skip_spaces();
3106                                 begin_inset(os, "Float " + float_type + "\n");
3107                                 os << "wide false"
3108                                    << "\nsideways false"
3109                                    << "\nstatus collapsed\n\n";
3110                                 // test for caption
3111                                 string caption;
3112                                 bool has_caption = false;
3113                                 if (p.next_token().cat() != catEscape &&
3114                                                 p.next_token().character() == '[') {
3115                                                         p.get_token(); // eat '['
3116                                                         caption = parse_text_snippet(p, FLAG_BRACK_LAST, outer, context);
3117                                                         has_caption = true;
3118                                 }
3119                                 // the content
3120                                 parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3121                                 // the caption comes always as the last
3122                                 if (has_caption) {
3123                                         // we must make sure that the caption gets a \begin_layout
3124                                         os << "\n\\begin_layout Plain Layout";
3125                                         p.skip_spaces();
3126                                         begin_inset(os, "Caption Standard\n");
3127                                         Context newcontext(true, context.textclass,
3128                                                            0, 0, context.font);
3129                                         newcontext.check_layout(os);
3130                                         os << caption << "\n";
3131                                         newcontext.check_end_layout(os);
3132                                         // We don't need really a new paragraph, but
3133                                         // we must make sure that the next item gets a \begin_layout.
3134                                         //newcontext.new_paragraph(os);
3135                                         end_inset(os);
3136                                         p.skip_spaces();
3137                                 }
3138                                 // We don't need really a new paragraph, but
3139                                 // we must make sure that the next item gets a \begin_layout.
3140                                 if (has_caption)
3141                                         context.new_paragraph(os);
3142                                 end_inset(os);
3143                                 p.skip_spaces();
3144                                 context.check_end_layout(os);
3145                                 // close the layout we opened
3146                                 if (has_caption)
3147                                         os << "\n\\end_layout\n";
3148                         } else {
3149                                 // if the float type is not supported or there is no surrounding float
3150                                 // output it as ERT
3151                                 if (p.hasOpt()) {
3152                                         string opt_arg = convert_command_inset_arg(p.getArg('[', ']'));
3153                                         output_ert_inset(os, t.asInput() + '[' + opt_arg +
3154                                                "]{" + p.verbatim_item() + '}', context);
3155                                 } else
3156                                         output_ert_inset(os, t.asInput() + "{" + p.verbatim_item() + '}', context);
3157                         }
3158                 }
3159
3160                 else if (t.cs() == "includegraphics") {
3161                         bool const clip = p.next_token().asInput() == "*";
3162                         if (clip)
3163                                 p.get_token();
3164                         string const arg = p.getArg('[', ']');
3165                         map<string, string> opts;
3166                         vector<string> keys;
3167                         split_map(arg, opts, keys);
3168                         if (clip)
3169                                 opts["clip"] = string();
3170                         string name = normalize_filename(p.verbatim_item());
3171
3172                         string const path = getMasterFilePath(true);
3173                         // We want to preserve relative / absolute filenames,
3174                         // therefore path is only used for testing
3175                         if (!makeAbsPath(name, path).exists()) {
3176                                 // The file extension is probably missing.
3177                                 // Now try to find it out.
3178                                 string const dvips_name =
3179                                         find_file(name, path,
3180                                                   known_dvips_graphics_formats);
3181                                 string const pdftex_name =
3182                                         find_file(name, path,
3183                                                   known_pdftex_graphics_formats);
3184                                 if (!dvips_name.empty()) {
3185                                         if (!pdftex_name.empty()) {
3186                                                 cerr << "This file contains the "
3187                                                         "latex snippet\n"
3188                                                         "\"\\includegraphics{"
3189                                                      << name << "}\".\n"
3190                                                         "However, files\n\""
3191                                                      << dvips_name << "\" and\n\""
3192                                                      << pdftex_name << "\"\n"
3193                                                         "both exist, so I had to make a "
3194                                                         "choice and took the first one.\n"
3195                                                         "Please move the unwanted one "
3196                                                         "someplace else and try again\n"
3197                                                         "if my choice was wrong."
3198                                                      << endl;
3199                                         }
3200                                         name = dvips_name;
3201                                 } else if (!pdftex_name.empty()) {
3202                                         name = pdftex_name;
3203                                         pdflatex = true;
3204                                 }
3205                         }
3206
3207                         FileName const absname = makeAbsPath(name, path);
3208                         if (absname.exists()) {
3209                                 fix_child_filename(name);
3210                                 copy_file(absname, name);
3211                         } else
3212                                 cerr << "Warning: Could not find graphics file '"
3213                                      << name << "'." << endl;
3214
3215                         context.check_layout(os);
3216                         begin_inset(os, "Graphics ");
3217                         os << "\n\tfilename " << name << '\n';
3218                         if (opts.find("width") != opts.end())
3219                                 os << "\twidth "
3220                                    << translate_len(opts["width"]) << '\n';
3221                         if (opts.find("height") != opts.end())
3222                                 os << "\theight "
3223                                    << translate_len(opts["height"]) << '\n';
3224                         if (opts.find("scale") != opts.end()) {
3225                                 istringstream iss(opts["scale"]);
3226                                 double val;
3227                                 iss >> val;
3228                                 val = val*100;
3229                                 os << "\tscale " << val << '\n';
3230                         }
3231                         if (opts.find("angle") != opts.end()) {
3232                                 os << "\trotateAngle "
3233                                    << opts["angle"] << '\n';
3234                                 vector<string>::const_iterator a =
3235                                         find(keys.begin(), keys.end(), "angle");
3236                                 vector<string>::const_iterator s =
3237                                         find(keys.begin(), keys.end(), "width");
3238                                 if (s == keys.end())
3239                                         s = find(keys.begin(), keys.end(), "height");
3240                                 if (s == keys.end())
3241                                         s = find(keys.begin(), keys.end(), "scale");
3242                                 if (s != keys.end() && distance(s, a) > 0)
3243                                         os << "\tscaleBeforeRotation\n";
3244                         }
3245                         if (opts.find("origin") != opts.end()) {
3246                                 ostringstream ss;
3247                                 string const opt = opts["origin"];
3248                                 if (opt.find('l') != string::npos) ss << "left";
3249                                 if (opt.find('r') != string::npos) ss << "right";
3250                                 if (opt.find('c') != string::npos) ss << "center";
3251                                 if (opt.find('t') != string::npos) ss << "Top";
3252                                 if (opt.find('b') != string::npos) ss << "Bottom";
3253                                 if (opt.find('B') != string::npos) ss << "Baseline";
3254                                 if (!ss.str().empty())
3255                                         os << "\trotateOrigin " << ss.str() << '\n';
3256                                 else
3257                                         cerr << "Warning: Ignoring unknown includegraphics origin argument '" << opt << "'\n";
3258                         }
3259                         if (opts.find("keepaspectratio") != opts.end())
3260                                 os << "\tkeepAspectRatio\n";
3261                         if (opts.find("clip") != opts.end())
3262                                 os << "\tclip\n";
3263                         if (opts.find("draft") != opts.end())
3264                                 os << "\tdraft\n";
3265                         if (opts.find("bb") != opts.end())
3266                                 os << "\tBoundingBox "
3267                                    << opts["bb"] << '\n';
3268                         int numberOfbbOptions = 0;
3269                         if (opts.find("bbllx") != opts.end())
3270                                 numberOfbbOptions++;
3271                         if (opts.find("bblly") != opts.end())
3272                                 numberOfbbOptions++;
3273                         if (opts.find("bburx") != opts.end())
3274                                 numberOfbbOptions++;
3275                         if (opts.find("bbury") != opts.end())
3276                                 numberOfbbOptions++;
3277                         if (numberOfbbOptions == 4)
3278                                 os << "\tBoundingBox "
3279                                    << opts["bbllx"] << " " << opts["bblly"] << " "
3280                                    << opts["bburx"] << " " << opts["bbury"] << '\n';
3281                         else if (numberOfbbOptions > 0)
3282                                 cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n";
3283                         numberOfbbOptions = 0;
3284                         if (opts.find("natwidth") != opts.end())
3285                                 numberOfbbOptions++;
3286                         if (opts.find("natheight") != opts.end())
3287                                 numberOfbbOptions++;
3288                         if (numberOfbbOptions == 2)
3289                                 os << "\tBoundingBox 0bp 0bp "
3290                                    << opts["natwidth"] << " " << opts["natheight"] << '\n';
3291                         else if (numberOfbbOptions > 0)
3292                                 cerr << "Warning: Ignoring incomplete includegraphics boundingbox arguments.\n";
3293                         ostringstream special;
3294                         if (opts.find("hiresbb") != opts.end())
3295                                 special << "hiresbb,";
3296                         if (opts.find("trim") != opts.end())
3297                                 special << "trim,";
3298                         if (opts.find("viewport") != opts.end())
3299                                 special << "viewport=" << opts["viewport"] << ',';
3300                         if (opts.find("totalheight") != opts.end())
3301                                 special << "totalheight=" << opts["totalheight"] << ',';
3302                         if (opts.find("type") != opts.end())
3303                                 special << "type=" << opts["type"] << ',';
3304                         if (opts.find("ext") != opts.end())
3305                                 special << "ext=" << opts["ext"] << ',';
3306                         if (opts.find("read") != opts.end())
3307                                 special << "read=" << opts["read"] << ',';
3308                         if (opts.find("command") != opts.end())
3309                                 special << "command=" << opts["command"] << ',';
3310                         string s_special = special.str();
3311                         if (!s_special.empty()) {
3312                                 // We had special arguments. Remove the trailing ','.
3313                                 os << "\tspecial " << s_special.substr(0, s_special.size() - 1) << '\n';
3314                         }
3315                         // TODO: Handle the unknown settings better.
3316                         // Warn about invalid options.
3317                         // Check whether some option was given twice.
3318                         end_inset(os);
3319                         preamble.registerAutomaticallyLoadedPackage("graphicx");
3320                 }
3321
3322                 else if (t.cs() == "footnote" ||
3323                          (t.cs() == "thanks" && context.layout->intitle)) {
3324                         p.skip_spaces();
3325                         context.check_layout(os);
3326                         begin_inset(os, "Foot\n");
3327                         os << "status collapsed\n\n";
3328                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3329                         end_inset(os);
3330                 }
3331
3332                 else if (t.cs() == "marginpar") {
3333                         p.skip_spaces();
3334                         context.check_layout(os);
3335                         begin_inset(os, "Marginal\n");
3336                         os << "status collapsed\n\n";
3337                         parse_text_in_inset(p, os, FLAG_ITEM, false, context);
3338                         end_inset(os);
3339                 }
3340
3341                 else if (t.cs() == "lstinline" || t.cs() == "mintinline") {
3342                         bool const use_minted = t.cs() == "mintinline";
3343                         p.skip_spaces();
3344                         parse_listings(p, os, context, true, use_minted);
3345                 }
3346
3347                 else if (t.cs() == "ensuremath") {
3348                         p.skip_spaces();
3349                         context.check_layout(os);
3350                         string const s = p.verbatim_item();
3351                         //FIXME: this never triggers in UTF8
3352                         if (s == "\xb1" || s == "\xb3" || s == "\xb2" || s == "\xb5")
3353                                 os << s;
3354                         else
3355                                 output_ert_inset(os, "\\ensuremath{" + s + "}",
3356                                            context);
3357                 }
3358
3359                 else if (t.cs() == "makeindex" || t.cs() == "maketitle") {
3360                         if (preamble.titleLayoutFound()) {
3361                                 // swallow this
3362                                 skip_spaces_braces(p);
3363                         } else
3364                                 output_ert_inset(os, t.asInput(), context);
3365                 }
3366
3367                 else if (t.cs() == "tableofcontents"
3368                                 || t.cs() == "lstlistoflistings"
3369                                 || t.cs() == "listoflistings") {
3370                         string name = t.cs();
3371                         if (preamble.minted() && name == "listoflistings")
3372                                 name.insert(0, "lst");
3373                         context.check_layout(os);
3374                         begin_command_inset(os, "toc", name);
3375                         end_inset(os);
3376                         skip_spaces_braces(p);
3377                         if (name == "lstlistoflistings") {
3378                                 if (preamble.minted())
3379                                         preamble.registerAutomaticallyLoadedPackage("minted");
3380                                 else
3381                                         preamble.registerAutomaticallyLoadedPackage("listings");
3382                         }
3383                 }
3384
3385                 else if (t.cs() == "listoffigures" || t.cs() == "listoftables") {
3386                         context.check_layout(os);
3387                         if (t.cs() == "listoffigures")
3388                                 begin_inset(os, "FloatList figure\n");
3389                         else
3390                                 begin_inset(os, "FloatList table\n");
3391                         end_inset(os);
3392                         skip_spaces_braces(p);
3393                 }
3394
3395                 else if (t.cs() == "listof") {
3396                         p.skip_spaces(true);
3397                         string const name = p.get_token().cs();
3398                         if (context.textclass.floats().typeExist(name)) {
3399                                 context.check_layout(os);
3400                                 begin_inset(os, "FloatList ");
3401                                 os << name << "\n";
3402                                 end_inset(os);
3403                                 p.get_token(); // swallow second arg
3404                         } else
3405                                 output_ert_inset(os, "\\listof{" + name + "}", context);
3406                 }
3407
3408                 else if ((where = is_known(t.cs(), known_text_font_families)))
3409                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3410                                 context, "\\family", context.font.family,
3411                                 known_coded_font_families[where - known_text_font_families]);
3412
3413                 else if ((where = is_known(t.cs(), known_text_font_series)))
3414                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3415                                 context, "\\series", context.font.series,
3416                                 known_coded_font_series[where - known_text_font_series]);
3417
3418                 else if ((where = is_known(t.cs(), known_text_font_shapes)))
3419                         parse_text_attributes(p, os, FLAG_ITEM, outer,
3420                                 context, "\\shape", context.font.shape,
3421                                 known_coded_font_shapes[where - known_text_font_shapes]);
3422
3423                 else if (t.cs() == "textnormal" || t.cs() == "normalfont") {
3424                         context.check_layout(os);
3425                         TeXFont oldFont = context.font;
3426                         context.font.init();
3427                         context.font.size = oldFont.size;
3428                         os << "\n\\family " << context.font.family << "\n";
3429                         os << "\n\\series " << context.font.series << "\n";
3430                         os << "\n\\shape " << context.font.shape << "\n";
3431                         if (t.cs() == "textnormal") {
3432                                 parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3433                                 output_font_change(os, context.font, oldFont);
3434                                 context.font = oldFont;
3435                         } else
3436                                 eat_whitespace(p, os, context, false);
3437                 }
3438
3439                 else if (t.cs() == "textcolor") {
3440                         // scheme is \textcolor{color name}{text}
3441                         string const color = p.verbatim_item();
3442                         // we support the predefined colors of the color  and the xcolor package
3443                         if (color == "black" || color == "blue" || color == "cyan"
3444                                 || color == "green" || color == "magenta" || color == "red"
3445                                 || color == "white" || color == "yellow") {
3446                                         context.check_layout(os);
3447                                         os << "\n\\color " << color << "\n";
3448                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3449                                         context.check_layout(os);
3450                                         os << "\n\\color inherit\n";
3451                                         preamble.registerAutomaticallyLoadedPackage("color");
3452                         } else if (color == "brown" || color == "darkgray" || color == "gray"
3453                                 || color == "lightgray" || color == "lime" || color == "olive"
3454                                 || color == "orange" || color == "pink" || color == "purple"
3455                                 || color == "teal" || color == "violet") {
3456                                         context.check_layout(os);
3457                                         os << "\n\\color " << color << "\n";
3458                                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3459                                         context.check_layout(os);
3460                                         os << "\n\\color inherit\n";
3461                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3462                         } else
3463                                 // for custom defined colors
3464                                 output_ert_inset(os, t.asInput() + "{" + color + "}", context);
3465                 }
3466
3467                 else if (t.cs() == "underbar" || t.cs() == "uline") {
3468                         // \underbar is not 100% correct (LyX outputs \uline
3469                         // of ulem.sty). The difference is that \ulem allows
3470                         // line breaks, and \underbar does not.
3471                         // Do NOT handle \underline.
3472                         // \underbar cuts through y, g, q, p etc.,
3473                         // \underline does not.
3474                         context.check_layout(os);
3475                         os << "\n\\bar under\n";
3476                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3477                         context.check_layout(os);
3478                         os << "\n\\bar default\n";
3479                         preamble.registerAutomaticallyLoadedPackage("ulem");
3480                 }
3481
3482                 else if (t.cs() == "sout") {
3483                         context.check_layout(os);
3484                         os << "\n\\strikeout on\n";
3485                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3486                         context.check_layout(os);
3487                         os << "\n\\strikeout default\n";
3488                         preamble.registerAutomaticallyLoadedPackage("ulem");
3489                 }
3490
3491                 else if (t.cs() == "uuline" || t.cs() == "uwave"
3492                         || t.cs() == "emph" || t.cs() == "noun"
3493                         || t.cs() == "xout") {
3494                         context.check_layout(os);
3495                         os << "\n\\" << t.cs() << " on\n";
3496                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3497                         context.check_layout(os);
3498                         os << "\n\\" << t.cs() << " default\n";
3499                         if (t.cs() == "uuline" || t.cs() == "uwave" || t.cs() == "xout")
3500                                 preamble.registerAutomaticallyLoadedPackage("ulem");
3501                 }
3502
3503                 else if (t.cs() == "lyxadded" || t.cs() == "lyxdeleted") {
3504                         context.check_layout(os);
3505                         string name = p.getArg('{', '}');
3506                         string localtime = p.getArg('{', '}');
3507                         preamble.registerAuthor(name);
3508                         Author const & author = preamble.getAuthor(name);
3509                         // from_asctime_utc() will fail if LyX decides to output the
3510                         // time in the text language.
3511                         time_t ptime = from_asctime_utc(localtime);
3512                         if (ptime == static_cast<time_t>(-1)) {
3513                                 cerr << "Warning: Could not parse time `" << localtime
3514                                      << "´ for change tracking, using current time instead.\n";
3515                                 ptime = current_time();
3516                         }
3517                         if (t.cs() == "lyxadded")
3518                                 os << "\n\\change_inserted ";
3519                         else
3520                                 os << "\n\\change_deleted ";
3521                         os << author.bufferId() << ' ' << ptime << '\n';
3522                         parse_text_snippet(p, os, FLAG_ITEM, outer, context);
3523                         bool dvipost    = LaTeXPackages::isAvailable("dvipost");
3524                         bool xcolorulem = LaTeXPackages::isAvailable("ulem") &&
3525                                           LaTeXPackages::isAvailable("xcolor");
3526                         // No need to test for luatex, since luatex comes in
3527                         // two flavours (dvi and pdf), like latex, and those
3528                         // are detected by pdflatex.
3529                         if (pdflatex || xetex) {
3530                                 if (xcolorulem) {
3531                                         preamble.registerAutomaticallyLoadedPackage("ulem");
3532                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3533                                         preamble.registerAutomaticallyLoadedPackage("pdfcolmk");
3534                                 }
3535                         } else {
3536                                 if (dvipost) {
3537                                         preamble.registerAutomaticallyLoadedPackage("dvipost");
3538                                 } else if (xcolorulem) {
3539                                         preamble.registerAutomaticallyLoadedPackage("ulem");
3540                                         preamble.registerAutomaticallyLoadedPackage("xcolor");
3541                                 }
3542                         }
3543                 }
3544
3545                 else if (t.cs() == "textipa") {
3546                         context.check_layout(os);
3547                         begin_inset(os, "IPA\n");
3548                         bool merging_hyphens_allowed = context.merging_hyphens_allowed;
3549                         context.merging_hyphens_allowed = false;
3550                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3551                         context.merging_hyphens_allowed = merging_hyphens_allowed;
3552                         end_inset(os);
3553                         preamble.registerAutomaticallyLoadedPackage("tipa");
3554                         preamble.registerAutomaticallyLoadedPackage("tipx");
3555                 }
3556
3557                 else if (t.cs() == "texttoptiebar" || t.cs() == "textbottomtiebar") {
3558                         context.check_layout(os);
3559                         begin_inset(os, "IPADeco " + t.cs().substr(4) + "\n");
3560                         os << "status open\n";
3561                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context);
3562                         end_inset(os);
3563                         p.skip_spaces();
3564                 }
3565
3566                 else if (t.cs() == "textvertline") {
3567                         // FIXME: This is not correct, \textvertline is higher than |
3568                         os << "|";
3569                         skip_braces(p);
3570                         continue;
3571                 }
3572
3573                 else if (t.cs() == "tone" ) {
3574                         context.check_layout(os);
3575                         // register the tone package
3576                         preamble.registerAutomaticallyLoadedPackage("tone");
3577                         string content = trimSpaceAndEol(p.verbatim_item());
3578                         string command = t.asInput() + "{" + content + "}";
3579                         // some tones can be detected by unicodesymbols, some need special code
3580                         if (is_known(content, known_tones)) {
3581                                 os << "\\IPAChar " << command << "\n";
3582                                 continue;
3583                         }
3584                         // try to see whether the string is in unicodesymbols
3585                         bool termination;
3586                         docstring rem;
3587                         set<string> req;
3588                         docstring s = encodings.fromLaTeXCommand(from_utf8(command),
3589                                 Encodings::TEXT_CMD | Encodings::MATH_CMD,
3590                                 termination, rem, &req);
3591                         if (!s.empty()) {
3592                                 os << to_utf8(s);
3593                                 if (!rem.empty())
3594                                         output_ert_inset(os, to_utf8(rem), context);
3595                                 for (set<string>::const_iterator it = req.begin();
3596                                      it != req.end(); ++it)
3597                                         preamble.registerAutomaticallyLoadedPackage(*it);
3598                         } else
3599                                 // we did not find a non-ert version
3600                                 output_ert_inset(os, command, context);
3601                 }
3602
3603                 else if (t.cs() == "phantom" || t.cs() == "hphantom" ||
3604                              t.cs() == "vphantom") {
3605                         context.check_layout(os);
3606                         if (t.cs() == "phantom")
3607                                 begin_inset(os, "Phantom Phantom\n");
3608                         if (t.cs() == "hphantom")
3609                                 begin_inset(os, "Phantom HPhantom\n");
3610                         if (t.cs() == "vphantom")
3611                                 begin_inset(os, "Phantom VPhantom\n");
3612                         os << "status open\n";
3613                         parse_text_in_inset(p, os, FLAG_ITEM, outer, context,
3614                                             "Phantom");
3615                         end_inset(os);
3616                 }
3617
3618                 else if (t.cs() == "href") {
3619                         context.check_layout(os);
3620                         string target = convert_command_inset_arg(p.verbatim_item());
3621                         string name = convert_command_inset_arg(p.verbatim_item());
3622                         string type;
3623                         size_t i = target.find(':');
3624                         if (i != string::npos) {
3625                                 type = target.substr(0, i + 1);
3626                                 if (type == "mailto:" || type == "file:")
3627                                         target = target.substr(i + 1);
3628                                 // handle the case that name is equal to target, except of "http(s)://"
3629                                 else if (target.substr(i + 3) == name && (type == "http:" || type == "https:"))
3630                                         target = name;
3631                         }
3632                         begin_command_inset(os, "href", "href");
3633                         if (name != target)
3634                                 os << "name \"" << name << "\"\n";
3635                         os << "target \"" << target << "\"\n";
3636                         if (type == "mailto:" || type == "file:")
3637                                 os << "type \"" << type << "\"\n";
3638                         os << "literal \"true\"\n";
3639                         end_inset(os);
3640                         skip_spaces_braces(p);
3641                 }
3642
3643                 else if (t.cs() == "lyxline") {
3644                         // swallow size argument (it is not used anyway)
3645                         p.getArg('{', '}');
3646                         if (!context.atParagraphStart()) {
3647                                 // so our line is in the middle of a paragraph
3648                                 // we need to add a new line, lest this line
3649                                 // follow the other content on that line and
3650                                 // run off the side of the page
3651                                 // FIXME: This may create an empty paragraph,
3652                                 //        but without that it would not be
3653                                 //        possible to set noindent below.
3654                                 //        Fortunately LaTeX does not care
3655                                 //        about the empty paragraph.
3656                                 context.new_paragraph(os);
3657                         }
3658                         if (preamble.indentParagraphs()) {
3659                                 // we need to unindent, lest the line be too long
3660                                 context.add_par_extra_stuff("\\noindent\n");
3661                         }
3662                         context.check_layout(os);
3663                         begin_command_inset(os, "line", "rule");
3664                         os << "offset \"0.5ex\"\n"
3665                               "width \"100line%\"\n"
3666                               "height \"1pt\"\n";
3667                         end_inset(os);
3668                 }
3669
3670                 else if (t.cs() == "rule") {
3671                         string const offset = (p.hasOpt() ? p.getArg('[', ']') : string());
3672                         string const width = p.getArg('{', '}');
3673                         string const thickness = p.getArg('{', '}');
3674                         context.check_layout(os);
3675                         begin_command_inset(os, "line", "rule");
3676                         if (!offset.empty())
3677                                 os << "offset \"" << translate_len(offset) << "\"\n";
3678                         os << "width \"" << translate_len(width) << "\"\n"
3679                                   "height \"" << translate_len(thickness) << "\"\n";
3680                         end_inset(os);
3681                 }
3682
3683                 // handle refstyle first to catch \eqref which can also occur
3684                 // without refstyle. Only recognize these commands if
3685                 // refstyle.sty was found in the preamble (otherwise \eqref
3686                 // and user defined ref commands could be misdetected).
3687                 else if ((where = is_known(t.cs(), known_refstyle_commands)) &&
3688                          preamble.refstyle()) {
3689                         context.check_layout(os);
3690                         begin_command_inset(os, "ref", "formatted");
3691                         os << "reference \"";
3692                         os << known_refstyle_prefixes[where - known_refstyle_commands]
3693                            << ":";
3694                         os << convert_command_inset_arg(p.verbatim_item())
3695                            << "\"\n";
3696                         os << "plural \"false\"\n";
3697                         os << "caps \"false\"\n";
3698                         os << "noprefix \"false\"\n";
3699                         end_inset(os);
3700                         preamble.registerAutomaticallyLoadedPackage("refstyle");
3701                 }
3702
3703                 // if refstyle is used, we must not convert \prettyref to a
3704                 // formatted reference, since that would result in a refstyle command.
3705                 else if ((where = is_known(t.cs(), known_ref_commands)) &&
3706                          (t.cs() != "prettyref" || !preamble.refstyle())) {
3707                         string const opt = p.getOpt();
3708                         if (opt.empty()) {
3709                                 context.check_layout(os);
3710                                 begin_command_inset(os, "ref",
3711                                         known_coded_ref_commands[where - known_ref_commands]);
3712                                 os << "reference \""
3713                                    << convert_command_inset_arg(p.verbatim_item())
3714                                    << "\"\n";
3715                                 os << "plural \"false\"\n";
3716                                 os << "caps \"false\"\n";
3717                                 os << "noprefix \"false\"\n";
3718                                 end_inset(os);
3719                                 if (t.cs() == "vref" || t.cs() == "vpageref")
3720                                         preamble.registerAutomaticallyLoadedPackage("varioref");
3721                                 else if (t.cs() == "prettyref")
3722                                         preamble.registerAutomaticallyLoadedPackage("prettyref");
3723                         } else {
3724                                 // LyX does not yet support optional arguments of ref commands
3725                                 output_ert_inset(os, t.asInput() + '[' + opt + "]{" +
3726                                        p.verbatim_item() + '}', context);
3727                         }
3728                 }
3729
3730                 else if (use_natbib &&
3731                          is_known(t.cs(), known_natbib_commands) &&
3732                          ((t.cs() != "citefullauthor" &&
3733                            t.cs() != "citeyear" &&
3734                            t.cs() != "citeyearpar") ||
3735                           p.next_token().asInput() != "*")) {
3736                         context.check_layout(os);
3737                         string command = t.cs();
3738                         if (p.next_token().asInput() == "*") {
3739                                 command += '*';
3740                                 p.get_token();
3741                         }
3742                         if (command == "citefullauthor")
3743                                 // alternative name for "\\citeauthor*"
3744                                 command = "citeauthor*";
3745
3746                         // text before the citation
3747                         string before;
3748                         // text after the citation
3749                         string after;
3750                         get_cite_arguments(p, true, before, after);
3751
3752                         if (command == "cite") {
3753                                 // \cite without optional argument means
3754                                 // \citet, \cite with at least one optional
3755                                 // argument means \citep.
3756                                 if (before.empty() && after.empty())
3757                                         command = "citet";
3758                                 else
3759                                         command = "citep";
3760                         }
3761                         if (before.empty() && after == "[]")
3762                                 // avoid \citet[]{a}
3763                                 after.erase();
3764                         else if (before == "[]" && after == "[]") {
3765                                 // avoid \citet[][]{a}
3766                                 before.erase();
3767                                 after.erase();
3768                         }
3769                         // remove the brackets around after and before
3770                         if (!after.empty()) {
3771                                 after.erase(0, 1);
3772                                 after.erase(after.length() - 1, 1);
3773                                 after = convert_command_inset_arg(after);
3774                         }
3775                         if (!before.empty()) {
3776                                 before.erase(0, 1);
3777                                 before.erase(before.length() - 1, 1);
3778                                 before = convert_command_inset_arg(before);
3779                         }
3780                         begin_command_inset(os, "citation", command);
3781                         os << "after " << '"' << after << '"' << "\n";
3782                         os << "before " << '"' << before << '"' << "\n";
3783                         os << "key \""
3784                            << convert_command_inset_arg(p.verbatim_item())
3785                            << "\"\n"
3786                            << "literal \"true\"\n";
3787                         end_inset(os);
3788                         // Need to set the cite engine if natbib is loaded by
3789                         // the document class directly
3790                         if (preamble.citeEngine() == "basic")
3791                                 preamble.citeEngine("natbib");
3792                 }
3793
3794                 else if (use_jurabib &&
3795                          is_known(t.cs(), known_jurabib_commands) &&
3796                          (t.cs() == "cite" || p.next_token().asInput() != "*")) {
3797                         context.check_layout(os);
3798                         string command = t.cs();
3799                         if (p.next_token().asInput() == "*") {
3800                                 command += '*';
3801                                 p.get_token();
3802                         }
3803                         char argumentOrder = '\0';
3804                         vector<string> const options =
3805                                 preamble.getPackageOptions("jurabib");
3806                         if (find(options.begin(), options.end(),
3807                                       "natbiborder") != options.end())
3808                                 argumentOrder = 'n';
3809                         else if (find(options.begin(), options.end(),
3810                                            "jurabiborder") != options.end())
3811                                 argumentOrder = 'j';
3812
3813                         // text before the citation
3814                         string before;
3815                         // text after the citation
3816                         string after;
3817                         get_cite_arguments(p, argumentOrder != 'j', before, after);
3818
3819                         string const citation = p.verbatim_item();
3820                         if (!before.empty() && argumentOrder == '\0') {
3821                                 cerr << "Warning: Assuming argument order "
3822                                         "of jurabib version 0.6 for\n'"
3823                                      << command << before << after << '{'
3824                                      << citation << "}'.\n"
3825                                         "Add 'jurabiborder' to the jurabib "
3826                                         "package options if you used an\n"
3827                                         "earlier jurabib version." << endl;
3828                         }
3829                         if (!after.empty()) {
3830                                 after.erase(0, 1);
3831                                 after.erase(after.length() - 1, 1);
3832                         }
3833                         if (!before.empty()) {
3834                                 before.erase(0, 1);
3835                                 before.erase(before.length() - 1, 1);
3836                         }
3837                         begin_command_inset(os, "citation", command);
3838                         os << "after " << '"' << after << "\"\n"
3839                            << "before " << '"' << before << "\"\n"
3840                            << "key " << '"' << citation << "\"\n"
3841                            << "literal \"true\"\n";
3842                         end_inset(os);
3843                         // Need to set the cite engine if jurabib is loaded by
3844                         // the document class directly
3845                         if (preamble.citeEngine() == "basic")
3846                                 preamble.citeEngine("jurabib");
3847                 }
3848
3849                 else if (t.cs() == "cite"
3850                         || t.cs() == "nocite") {
3851                         context.check_layout(os);
3852                         string after = convert_command_inset_arg(p.getArg('[', ']'));
3853                         string key = convert_command_inset_arg(p.verbatim_item());
3854                         // store the case that it is "\nocite{*}" to use it later for
3855                         // the BibTeX inset
3856                         if (key != "*") {
3857                                 begin_command_inset(os, "citation", t.cs());
3858                                 os << "after " << '"' << after << "\"\n"
3859                                    << "key " << '"' << key << "\"\n"
3860                                    << "literal \"true\"\n";
3861                                 end_inset(os);
3862                         } else if (t.cs() == "nocite")
3863                                 btprint = key;
3864                 }
3865
3866                 else if (t.cs() == "index" ||
3867                          (t.cs() == "sindex" && preamble.use_indices() == "true")) {
3868                         context.check_layout(os);
3869                         string const arg = (t.cs() == "sindex" && p.hasOpt()) ?
3870                                 p.getArg('[', ']') : "";
3871                         string const kind = arg.empty() ? "idx" : arg;
3872                         begin_inset(os, "Index ");
3873                         os << kind << "\nstatus collapsed\n";
3874                         parse_text_in_inset(p, os, FLAG_ITEM, false, context, "Index");
3875                         end_inset(os);
3876                         if (kind != "idx")
3877                                 preamble.registerAutomaticallyLoadedPackage("splitidx");
3878                 }
3879
3880                 else if (t.cs() == "nomenclature") {
3881                         context.check_layout(os);
3882                         begin_command_inset(os, "nomenclature", "nomenclature");
3883                         string prefix = convert_command_inset_arg(p.getArg('[', ']'));
3884                         if (!prefix.empty())
3885                                 os << "prefix " << '"' << prefix << '"' << "\n";
3886                         os << "symbol " << '"'
3887                            << convert_command_inset_arg(p.verbatim_item());
3888                         os << "\"\ndescription \""
3889                            << convert_command_inset_arg(p.verbatim_item())
3890                            << "\"\n"
3891                            << "literal \"true\"\n";
3892                         end_inset(os);
3893                         preamble.registerAutomaticallyLoadedPackage("nomencl");
3894                 }
3895
3896                 else if (t.cs() == "label") {
3897                         context.check_layout(os);
3898                         begin_command_inset(os, "label", "label");
3899                         os << "name \""
3900                            << convert_command_inset_arg(p.verbatim_item())
3901                            << "\"\n";
3902                         end_inset(os);
3903                 }
3904
3905                 else if (t.cs() == "lyxmintcaption") {
3906                         string const pos = p.getArg('[', ']');
3907                         if (pos == "t") {
3908                                 string const caption =
3909                                         parse_text_snippet(p, FLAG_ITEM, false,
3910                                                            context);
3911                                 minted_nonfloat_caption = "[t]" + caption;
3912                         } else {
3913                                 // We already got the caption at the bottom,
3914                                 // so simply skip it.
3915                                 parse_text_snippet(p, FLAG_ITEM, false, context);
3916                         }
3917                 }
3918
3919                 else if (t.cs() == "printindex" || t.cs() == "printsubindex") {
3920                         context.check_layout(os);
3921                         string commandname = t.cs();
3922                         bool star = false;
3923                         if (p.next_token().asInput() == "*") {
3924                                 commandname += "*";
3925                                 star = true;
3926                                 p.get_token();
3927                         }
3928                         begin_command_inset(os, "index_print", commandname);
3929                         string const indexname = p.getArg('[', ']');
3930                         if (!star) {
3931                                 if (indexname.empty())
3932                                         os << "type \"idx\"\n";
3933                                 else
3934                                         os << "type \"" << indexname << "\"\n";
3935                                 os << "literal \"true\"\n";
3936                         }
3937                         end_inset(os);
3938                         skip_spaces_braces(p);
3939                         preamble.registerAutomaticallyLoadedPackage("makeidx");
3940                         if (preamble.use_indices() == "true")
3941                                 preamble.registerAutomaticallyLoadedPackage("splitidx");
3942                 }
3943
3944                 else if (t.cs() == "printnomenclature") {
3945                         string width = "";
3946                         string width_type = "";
3947                         context.check_layout(os);
3948                         begin_command_inset(os, "nomencl_print", "printnomenclature");
3949                         // case of a custom width
3950                         if (p.hasOpt()) {
3951                                 width = p.getArg('[', ']');
3952                                 width = translate_len(width);
3953                                 width_type = "custom";
3954                         }
3955                         // case of no custom width
3956                         // the case of no custom width but the width set
3957                         // via \settowidth{\nomlabelwidth}{***} cannot be supported
3958                         // because the user could have set anything, not only the width
3959                         // of the longest label (which would be width_type = "auto")
3960                         string label = convert_command_inset_arg(p.getArg('{', '}'));
3961                         if (label.empty() && width_type.empty())
3962                                 width_type = "none";
3963                         os << "set_width \"" << width_type << "\"\n";
3964                         if (width_type == "custom")
3965                                 os << "width \"" << width << '\"';
3966                         end_inset(os);
3967                         skip_spaces_braces(p);
3968                         preamble.registerAutomaticallyLoadedPackage("nomencl");
3969                 }
3970
3971                 else if ((t.cs() == "textsuperscript" || t.cs() == "textsubscript")) {
3972                         context.check_layout(os);
3973                         begin_inset(os, "script ");
3974                         os << t.cs().substr(4) << '\n';
3975                         newinsetlayout = findInsetLayout(context.textclass, t.cs(), true);
3976                         parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout);
3977                         end_inset(os);
3978                         if (t.cs() == "textsubscript")
3979                                 preamble.registerAutomaticallyLoadedPackage("subscript");
3980                 }
3981
3982                 else if ((where = is_known(t.cs(), known_quotes))) {
3983                         context.check_layout(os);
3984                         begin_inset(os, "Quotes ");
3985                         os << known_coded_quotes[where - known_quotes];
3986                         end_inset(os);
3987                         // LyX adds {} after the quote, so we have to eat
3988                         // spaces here if there are any before a possible
3989                         // {} pair.
3990                         eat_whitespace(p, os, context, false);
3991                         skip_braces(p);
3992                 }
3993
3994                 else if ((where = is_known(t.cs(), known_sizes)) &&
3995                          context.new_layout_allowed) {
3996                         context.check_layout(os);
3997                         TeXFont const oldFont = context.font;
3998                         context.font.size = known_coded_sizes[where - known_sizes];
3999                         output_font_change(os, oldFont, context.font);
4000                         eat_whitespace(p, os, context, false);
4001                 }
4002
4003                 else if ((where = is_known(t.cs(), known_font_families)) &&
4004                          context.new_layout_allowed) {
4005                         context.check_layout(os);
4006                         TeXFont const oldFont = context.font;
4007                         context.font.family =
4008                                 known_coded_font_families[where - known_font_families];
4009                         output_font_change(os, oldFont, context.font);
4010                         eat_whitespace(p, os, context, false);
4011                 }
4012
4013                 else if ((where = is_known(t.cs(), known_font_series)) &&
4014                          context.new_layout_allowed) {
4015                         context.check_layout(os);
4016                         TeXFont const oldFont = context.font;
4017                         context.font.series =
4018                                 known_coded_font_series[where - known_font_series];
4019                         output_font_change(os, oldFont, context.font);
4020                         eat_whitespace(p, os, context, false);
4021                 }
4022
4023                 else if ((where = is_known(t.cs(), known_font_shapes)) &&
4024                          context.new_layout_allowed) {
4025                         context.check_layout(os);
4026                         TeXFont const oldFont = context.font;
4027                         context.font.shape =
4028                                 known_coded_font_shapes[where - known_font_shapes];
4029                         output_font_change(os, oldFont, context.font);
4030                         eat_whitespace(p, os, context, false);
4031                 }
4032                 else if ((where = is_known(t.cs(), known_old_font_families)) &&
4033                          context.new_layout_allowed) {
4034                         context.check_layout(os);
4035                         TeXFont const oldFont = context.font;
4036                         context.font.init();
4037                         context.font.size = oldFont.size;
4038                         context.font.family =
4039                                 known_coded_font_families[where - known_old_font_families];
4040                         output_font_change(os, oldFont, context.font);
4041                         eat_whitespace(p, os, context, false);
4042                 }
4043
4044                 else if ((where = is_known(t.cs(), known_old_font_series)) &&
4045                          context.new_layout_allowed) {
4046                         context.check_layout(os);
4047                         TeXFont const oldFont = context.font;
4048                         context.font.init();
4049                         context.font.size = oldFont.size;
4050                         context.font.series =
4051                                 known_coded_font_series[where - known_old_font_series];
4052                         output_font_change(os, oldFont, context.font);
4053                         eat_whitespace(p, os, context, false);
4054                 }
4055
4056                 else if ((where = is_known(t.cs(), known_old_font_shapes)) &&
4057                          context.new_layout_allowed) {
4058                         context.check_layout(os);
4059                         TeXFont const oldFont = context.font;
4060                         context.font.init();
4061                         context.font.size = oldFont.size;
4062                         context.font.shape =
4063                                 known_coded_font_shapes[where - known_old_font_shapes];
4064                         output_font_change(os, oldFont, context.font);
4065                         eat_whitespace(p, os, context, false);
4066                 }
4067
4068                 else if (t.cs() == "selectlanguage") {
4069                         context.check_layout(os);
4070                         // save the language for the case that a
4071                         // \foreignlanguage is used
4072                         context.font.language = babel2lyx(p.verbatim_item());
4073                         os << "\n\\lang " << context.font.language << "\n";
4074                 }
4075
4076                 else if (t.cs() == "foreignlanguage") {
4077                         string const lang = babel2lyx(p.verbatim_item());
4078                         parse_text_attributes(p, os, FLAG_ITEM, outer,
4079                                               context, "\\lang",
4080                                               context.font.language, lang);
4081                 }
4082
4083                 else if (prefixIs(t.cs(), "text") && preamble.usePolyglossia()
4084                          && is_known(t.cs().substr(4), preamble.polyglossia_languages)) {
4085                         // scheme is \textLANGUAGE{text} where LANGUAGE is in polyglossia_languages[]
4086                         string lang;
4087                         // We have to output the whole command if it has an option
4088                         // because LyX doesn't support this yet, see bug #8214,
4089                         // only if there is a single option specifying a variant, we can handle it.
4090                         if (p.hasOpt()) {
4091                                 string langopts = p.getOpt();
4092                                 // check if the option contains a variant, if yes, extract it
4093                                 string::size_type pos_var = langopts.find("variant");
4094                                 string::size_type i = langopts.find(',');
4095                                 string::size_type k = langopts.find('=', pos_var);
4096                                 if (pos_var != string::npos && i == string::npos) {
4097                                         string variant;
4098                                         variant = langopts.substr(k + 1, langopts.length() - k - 2);
4099                                         lang = preamble.polyglossia2lyx(variant);
4100                                         parse_text_attributes(p, os, FLAG_ITEM, outer,
4101                                                                   context, "\\lang",
4102                                                                   context.font.language, lang);
4103                                 } else
4104                                         output_ert_inset(os, t.asInput() + langopts, context);
4105                         } else {
4106                                 lang = preamble.polyglossia2lyx(t.cs().substr(4, string::npos));
4107                                 parse_text_attributes(p, os, FLAG_ITEM, outer,
4108                                                           context, "\\lang",
4109                                                           context.font.language, lang);
4110                         }
4111                 }
4112
4113                 else if (t.cs() == "inputencoding") {
4114                         // nothing to write here
4115                         string const enc = subst(p.verbatim_item(), "\n", " ");
4116                         p.setEncoding(enc, Encoding::inputenc);
4117                 }
4118
4119                 else if (is_known(t.cs(), known_special_chars) ||
4120                          (t.cs() == "protect" &&
4121                           p.next_token().cat() == catEscape &&
4122                           is_known(p.next_token().cs(), known_special_protect_chars))) {
4123                         // LyX sometimes puts a \protect in front, so we have to ignore it
4124                         where = is_known(
4125                                 t.cs() == "protect" ? p.get_token().cs() : t.cs(),
4126                                 known_special_chars);
4127                         context.check_layout(os);
4128                         os << known_coded_special_chars[where - known_special_chars];
4129                         skip_spaces_braces(p);
4130                 }
4131
4132                 else if ((t.cs() == "nobreakdash" && p.next_token().asInput() == "-") ||
4133                          (t.cs() == "protect" && p.next_token().asInput() == "\\nobreakdash" &&
4134                           p.next_next_token().asInput() == "-") ||
4135                          (t.cs() == "@" && p.next_token().asInput() == ".")) {
4136                         // LyX sometimes puts a \protect in front, so we have to ignore it
4137                         if (t.cs() == "protect")
4138                                 p.get_token();
4139                         context.check_layout(os);
4140                         if (t.cs() == "nobreakdash")
4141                                 os << "\\SpecialChar nobreakdash\n";
4142                         else
4143                                 os << "\\SpecialChar endofsentence\n";
4144                         p.get_token();
4145                 }
4146
4147                 else if (t.cs() == "textquotedbl") {
4148                         context.check_layout(os);
4149                         os << "\"";
4150                         skip_braces(p);
4151                 }
4152
4153                 else if (t.cs() == "_" || t.cs() == "&" || t.cs() == "#"
4154                             || t.cs() == "$" || t.cs() == "{" || t.cs() == "}"
4155                             || t.cs() == "%" || t.cs() == "-") {
4156                         context.check_layout(os);
4157                         if (t.cs() == "-")
4158                                 os << "\\SpecialChar softhyphen\n";
4159                         else
4160                                 os << t.cs();
4161                 }
4162
4163                 else if (t.cs() == "char") {
4164                         context.check_layout(os);
4165                         if (p.next_token().character() == '`') {
4166                                 p.get_token();
4167                                 if (p.next_token().cs() == "\"") {
4168                                         p.get_token();
4169                                         os << '"';
4170                                         skip_braces(p);
4171                                 } else {
4172                                         output_ert_inset(os, "\\char`", context);
4173                                 }
4174                         } else {
4175                                 output_ert_inset(os, "\\char", context);
4176                         }
4177                 }
4178
4179                 else if (t.cs() == "verb") {
4180                         context.check_layout(os);
4181                         // set catcodes to verbatim early, just in case.
4182                         p.setCatcodes(VERBATIM_CATCODES);
4183                         string delim = p.get_token().asInput();
4184                         Parser::Arg arg = p.verbatimStuff(delim);
4185                         if (arg.first)
4186                                 output_ert_inset(os, "\\verb" + delim
4187                                                  + arg.second + delim, context);
4188                         else
4189                                 cerr << "invalid \\verb command. Skipping" << endl;
4190                 }
4191
4192                 // Problem: \= creates a tabstop inside the tabbing environment
4193                 // and else an accent. In the latter case we really would want
4194                 // \={o} instead of \= o.
4195                 else if (t.cs() == "=" && (flags & FLAG_TABBING))
4196                         output_ert_inset(os, t.asInput(), context);
4197
4198                 else if (t.cs() == "\\") {
4199                         context.check_layout(os);
4200                         if (p.hasOpt())
4201                                 output_ert_inset(os, "\\\\" + p.getOpt(), context);
4202                         else if (p.next_token().asInput() == "*") {
4203                                 p.get_token();
4204                                 // getOpt() eats the following space if there
4205                                 // is no optional argument, but that is OK
4206                                 // here since it has no effect in the output.
4207                                 output_ert_inset(os, "\\\\*" + p.getOpt(), context);
4208                         }
4209                         else {
4210                                 begin_inset(os, "Newline newline");
4211                                 end_inset(os);
4212                         }
4213                 }
4214
4215                 else if (t.cs() == "newline" ||
4216                          (t.cs() == "linebreak" && !p.hasOpt())) {
4217                         context.check_layout(os);
4218                         begin_inset(os, "Newline ");
4219                         os << t.cs();
4220                         end_inset(os);
4221                         skip_spaces_braces(p);
4222                 }
4223
4224                 else if (t.cs() == "input" || t.cs() == "include"
4225                          || t.cs() == "verbatiminput") {
4226                         string name = t.cs();
4227                         if (t.cs() == "verbatiminput"
4228                             && p.next_token().asInput() == "*")
4229                                 name += p.get_token().asInput();
4230                         context.check_layout(os);
4231                         string filename(normalize_filename(p.getArg('{', '}')));
4232                         string const path = getMasterFilePath(true);
4233                         // We want to preserve relative / absolute filenames,
4234                         // therefore path is only used for testing
4235                         if ((t.cs() == "include" || t.cs() == "input") &&
4236                             !makeAbsPath(filename, path).exists()) {
4237                                 // The file extension is probably missing.
4238                                 // Now try to find it out.
4239                                 string const tex_name =
4240                                         find_file(filename, path,
4241                                                   known_tex_extensions);
4242                                 if (!tex_name.empty())
4243                                         filename = tex_name;
4244                         }
4245                         bool external = false;
4246                         string outname;
4247                         if (makeAbsPath(filename, path).exists()) {
4248                                 string const abstexname =
4249                                         makeAbsPath(filename, path).absFileName();
4250                                 string const absfigname =
4251                                         changeExtension(abstexname, ".fig");
4252                                 fix_child_filename(filename);
4253                                 string const lyxname = changeExtension(filename,
4254                                         roundtripMode() ? ".lyx.lyx" : ".lyx");
4255                                 string const abslyxname = makeAbsPath(
4256                                         lyxname, getParentFilePath(false)).absFileName();
4257                                 bool xfig = false;
4258                                 if (!skipChildren())
4259                                         external = FileName(absfigname).exists();
4260                                 if (t.cs() == "input" && !skipChildren()) {
4261                                         string const ext = getExtension(abstexname);
4262
4263                                         // Combined PS/LaTeX:
4264                                         // x.eps, x.pstex_t (old xfig)
4265                                         // x.pstex, x.pstex_t (new xfig, e.g. 3.2.5)
4266                                         FileName const absepsname(
4267                                                 changeExtension(abstexname, ".eps"));
4268                                         FileName const abspstexname(
4269                                                 changeExtension(abstexname, ".pstex"));
4270                                         bool const xfigeps =
4271                                                 (absepsname.exists() ||
4272                                                  abspstexname.exists()) &&
4273                                                 ext == "pstex_t";
4274
4275                                         // Combined PDF/LaTeX:
4276                                         // x.pdf, x.pdftex_t (old xfig)
4277                                         // x.pdf, x.pdf_t (new xfig, e.g. 3.2.5)
4278                                         FileName const abspdfname(
4279                                                 changeExtension(abstexname, ".pdf"));
4280                                         bool const xfigpdf =
4281                                                 abspdfname.exists() &&
4282                                                 (ext == "pdftex_t" || ext == "pdf_t");
4283                                         if (xfigpdf)
4284                                                 pdflatex = true;
4285
4286                                         // Combined PS/PDF/LaTeX:
4287                                         // x_pspdftex.eps, x_pspdftex.pdf, x.pspdftex
4288                                         string const absbase2(
4289                                                 removeExtension(abstexname) + "_pspdftex");
4290                                         FileName const abseps2name(
4291                                                 addExtension(absbase2, ".eps"));
4292                                         FileName const abspdf2name(
4293                                                 addExtension(absbase2, ".pdf"));
4294                                         bool const xfigboth =
4295                                                 abspdf2name.exists() &&
4296                                                 abseps2name.exists() && ext == "pspdftex";
4297
4298                                         xfig = xfigpdf || xfigeps || xfigboth;
4299                                         external = external && xfig;
4300                                 }
4301                                 if (external) {
4302                                         outname = changeExtension(filename, ".fig");
4303                                         FileName abssrc(changeExtension(abstexname, ".fig"));
4304                                         copy_file(abssrc, outname);
4305                                 } else if (xfig) {
4306                                         // Don't try to convert, the result
4307                                         // would be full of ERT.
4308                                         outname = filename;
4309                                         FileName abssrc(abstexname);
4310                                         copy_file(abssrc, outname);
4311                                 } else if (t.cs() != "verbatiminput" &&
4312                                            !skipChildren() &&
4313                                     tex2lyx(abstexname, FileName(abslyxname),
4314                                             p.getEncoding())) {
4315                                         outname = lyxname;
4316                                         // no need to call copy_file
4317                                         // tex2lyx creates the file
4318                                 } else {
4319                                         outname = filename;
4320                                         FileName abssrc(abstexname);
4321                                         copy_file(abssrc, outname);
4322                                 }
4323                         } else {
4324                                 cerr << "Warning: Could not find included file '"
4325                                      << filename << "'." << endl;
4326                                 outname = filename;
4327                         }
4328                         if (external) {
4329                                 begin_inset(os, "External\n");
4330                                 os << "\ttemplate XFig\n"
4331                                    << "\tfilename " << outname << '\n';
4332                                 registerExternalTemplatePackages("XFig");
4333                         } else {
4334                                 begin_command_inset(os, "include", name);
4335                                 outname = subst(outname, "\"", "\\\"");
4336                                 os << "preview false\n"
4337                                       "filename \"" << outname << "\"\n";
4338                                 if (t.cs() == "verbatiminput")
4339                                         preamble.registerAutomaticallyLoadedPackage("verbatim");
4340                         }
4341                         end_inset(os);
4342                 }
4343
4344                 else if (t.cs() == "bibliographystyle") {
4345                         // store new bibliographystyle
4346                         bibliographystyle = p.verbatim_item();
4347                         // If any other command than \bibliography, \addcontentsline
4348                         // and \nocite{*} follows, we need to output the style
4349                         // (because it might be used by that command).
4350                         // Otherwise, it will automatically be output by LyX.
4351                         p.pushPosition();
4352                         bool output = true;
4353                         for (Token t2 = p.get_token(); p.good(); t2 = p.get_token()) {
4354                                 if (t2.cat() == catBegin)
4355                                         break;
4356                                 if (t2.cat() != catEscape)
4357                                         continue;
4358                                 if (t2.cs() == "nocite") {
4359                                         if (p.getArg('{', '}') == "*")
4360                                                 continue;
4361                                 } else if (t2.cs() == "bibliography")
4362                                         output = false;
4363                                 else if (t2.cs() == "phantomsection") {
4364                                         output = false;
4365                                         continue;
4366                                 }
4367                                 else if (t2.cs() == "addcontentsline") {
4368                                         // get the 3 arguments of \addcontentsline
4369                                         p.getArg('{', '}');
4370                                         p.getArg('{', '}');
4371                                         contentslineContent = p.getArg('{', '}');
4372                                         // if the last argument is not \refname we must output
4373                                         if (contentslineContent == "\\refname")
4374                                                 output = false;
4375                                 }
4376                                 break;
4377                         }
4378                         p.popPosition();
4379                         if (output) {
4380                                 output_ert_inset(os,
4381                                         "\\bibliographystyle{" + bibliographystyle + '}',
4382                                         context);
4383                         }
4384                 }
4385
4386                 else if (t.cs() == "phantomsection") {
4387                         // we only support this if it occurs between
4388                         // \bibliographystyle and \bibliography
4389                         if (bibliographystyle.empty())
4390                                 output_ert_inset(os, "\\phantomsection", context);
4391                 }
4392
4393                 else if (t.cs() == "addcontentsline") {
4394                         context.check_layout(os);
4395                         // get the 3 arguments of \addcontentsline
4396                         string const one = p.getArg('{', '}');
4397                         string const two = p.getArg('{', '}');
4398                         string const three = p.getArg('{', '}');
4399                         // only if it is a \refname, we support if for the bibtex inset
4400                         if (contentslineContent != "\\refname") {
4401                                 output_ert_inset(os,
4402                                         "\\addcontentsline{" + one + "}{" + two + "}{"+ three + '}',
4403                                         context);
4404                         }
4405                 }
4406
4407                 else if (t.cs() == "bibliography") {
4408                         context.check_layout(os);
4409                         string BibOpts;
4410                         begin_command_inset(os, "bibtex", "bibtex");
4411                         if (!btprint.empty()) {
4412                                 os << "btprint " << '"' << "btPrintAll" << '"' << "\n";
4413                                 // clear the string because the next BibTeX inset can be without the
4414                                 // \nocite{*} option
4415                                 btprint.clear();
4416                         }
4417                         os << "bibfiles " << '"' << p.verbatim_item() << '"' << "\n";
4418                         // Do we have addcontentsline?
4419                         if (contentslineContent == "\\refname") {
4420                                 BibOpts = "bibtotoc";
4421                                 // clear string because next BibTeX inset can be without addcontentsline
4422                                 contentslineContent.clear();
4423                         }
4424                         // Do we have a bibliographystyle set?
4425                         if (!bibliographystyle.empty()) {
4426                                 if (BibOpts.empty())
4427                                         BibOpts = bibliographystyle;
4428                                 else
4429                                         BibOpts = BibOpts + ',' + bibliographystyle;
4430                                 // clear it because each bibtex entry has its style
4431                                 // and we need an empty string to handle \phantomsection
4432                                 bibliographystyle.clear();
4433                         }
4434                         os << "options " << '"' << BibOpts << '"' << "\n";
4435                         end_inset(os);
4436                 }
4437
4438                 else if (t.cs() == "parbox") {
4439                         // Test whether this is an outer box of a shaded box
4440                         p.pushPosition();
4441                         // swallow arguments
4442                         while (p.hasOpt()) {
4443                                 p.getArg('[', ']');
4444                                 p.skip_spaces(true);
4445                         }
4446                         p.getArg('{', '}');
4447                         p.skip_spaces(true);
4448                         // eat the '{'
4449                         if (p.next_token().cat() == catBegin)
4450                                 p.get_token();
4451                         p.skip_spaces(true);
4452                         Token to = p.get_token();
4453                         bool shaded = false;
4454                         if (to.asInput() == "\\begin") {
4455                                 p.skip_spaces(true);
4456                                 if (p.getArg('{', '}') == "shaded")
4457                                         shaded = true;
4458                         }
4459                         p.popPosition();
4460                         if (shaded) {
4461                                 parse_outer_box(p, os, FLAG_ITEM, outer,
4462                                                 context, "parbox", "shaded");
4463                         } else
4464                                 parse_box(p, os, 0, FLAG_ITEM, outer, context,
4465                                           "", "", t.cs(), "", "");
4466                 }
4467
4468                 else if (t.cs() == "fbox" || t.cs() == "mbox" ||
4469                              t.cs() == "ovalbox" || t.cs() == "Ovalbox" ||
4470                          t.cs() == "shadowbox" || t.cs() == "doublebox")
4471                         parse_outer_box(p, os, FLAG_ITEM, outer, context, t.cs(), "");
4472
4473                 else if (t.cs() == "fcolorbox" || t.cs() == "colorbox") {
4474                         string backgroundcolor;
4475                         preamble.registerAutomaticallyLoadedPackage("xcolor");
4476                         if (t.cs() == "fcolorbox") {
4477                                 string const framecolor = p.getArg('{', '}');
4478                                 backgroundcolor = p.getArg('{', '}');
4479                                 parse_box(p, os, 0, 0, outer, context, "", "", "", framecolor, backgroundcolor);
4480                         } else {
4481                                 backgroundcolor = p.getArg('{', '}');
4482                                 parse_box(p, os, 0, 0, outer, context, "", "", "", "", backgroundcolor);
4483                         }
4484                 }
4485
4486                 // FIXME: due to the compiler limit of "if" nestings
4487                 // the code for the alignment was put here
4488                 // put them in their own if if this is fixed
4489                 else if (t.cs() == "fboxrule" || t.cs() == "fboxsep"
4490                              || t.cs() == "shadowsize"
4491                                  || t.cs() == "raggedleft" || t.cs() == "centering"
4492                          || t.cs() == "raggedright") {
4493                         if (t.cs() == "fboxrule")
4494                                 fboxrule = "";
4495                         if (t.cs() == "fboxsep")
4496                                 fboxsep = "";
4497                         if (t.cs() == "shadowsize")
4498                                 shadow_size = "";
4499                         if (t.cs() != "raggedleft" && t.cs() != "centering"
4500                          && t.cs() != "raggedright") {
4501                                 p.skip_spaces(true);
4502                                 while (p.good() && p.next_token().cat() != catSpace
4503                                        && p.next_token().cat() != catNewline
4504                                        && p.next_token().cat() != catEscape) {
4505                                         if (t.cs() == "fboxrule")
4506                                                 fboxrule = fboxrule + p.get_token().asInput();
4507                                         if (t.cs() == "fboxsep")
4508                                                 fboxsep = fboxsep + p.get_token().asInput();
4509                                         if (t.cs() == "shadowsize")
4510                                                 shadow_size = shadow_size + p.get_token().asInput();
4511                                 }
4512                         } else {
4513                                 output_ert_inset(os, t.asInput(), context);
4514                         }
4515                 }
4516
4517                 //\framebox() is part of the picture environment and different from \framebox{}
4518                 //\framebox{} will be parsed by parse_outer_box
4519                 else if (t.cs() == "framebox") {
4520                         if (p.next_token().character() == '(') {
4521                                 //the syntax is: \framebox(x,y)[position]{content}
4522                                 string arg = t.asInput();
4523                                 arg += p.getFullParentheseArg();
4524                                 arg += p.getFullOpt();
4525                                 eat_whitespace(p, os, context, false);
4526                                 output_ert_inset(os, arg + '{', context);
4527                                 parse_text(p, os, FLAG_ITEM, outer, context);
4528                                 output_ert_inset(os, "}", context);
4529                         } else {
4530                                 //the syntax is: \framebox[width][position]{content}
4531                                 string special = p.getFullOpt();
4532                                 special += p.getOpt();
4533                                 parse_outer_box(p, os, FLAG_ITEM, outer,
4534                                                     context, t.cs(), special);
4535                         }
4536                 }
4537
4538                 //\makebox() is part of the picture environment and different from \makebox{}
4539                 //\makebox{} will be parsed by parse_box
4540                 else if (t.cs() == "makebox") {
4541                         if (p.next_token().character() == '(') {
4542                                 //the syntax is: \makebox(x,y)[position]{content}
4543                                 string arg = t.asInput();
4544                                 arg += p.getFullParentheseArg();
4545                                 arg += p.getFullOpt();
4546                                 eat_whitespace(p, os, context, false);
4547                                 output_ert_inset(os, arg + '{', context);
4548                                 parse_text(p, os, FLAG_ITEM, outer, context);
4549                                 output_ert_inset(os, "}", context);
4550                         } else
4551                                 //the syntax is: \makebox[width][position]{content}
4552                                 parse_box(p, os, 0, FLAG_ITEM, outer, context,
4553                                           "", "", t.cs(), "", "");
4554                 }
4555
4556                 else if (t.cs() == "smallskip" ||
4557                          t.cs() == "medskip" ||
4558                          t.cs() == "bigskip" ||
4559                          t.cs() == "vfill") {
4560                         context.check_layout(os);
4561                         begin_inset(os, "VSpace ");
4562                         os << t.cs();
4563                         end_inset(os);
4564                         skip_spaces_braces(p);
4565                 }
4566
4567                 else if ((where = is_known(t.cs(), known_spaces))) {
4568                         context.check_layout(os);
4569                         begin_inset(os, "space ");
4570                         os << '\\' << known_coded_spaces[where - known_spaces]
4571                            << '\n';
4572                         end_inset(os);
4573                         // LaTeX swallows whitespace after all spaces except
4574                         // "\\,". We have to do that here, too, because LyX
4575                         // adds "{}" which would make the spaces significant.
4576                         if (t.cs() !=  ",")
4577                                 eat_whitespace(p, os, context, false);
4578                         // LyX adds "{}" after all spaces except "\\ " and
4579                         // "\\,", so we have to remove "{}".
4580                         // "\\,{}" is equivalent to "\\," in LaTeX, so we
4581                         // remove the braces after "\\,", too.
4582                         if (t.cs() != " ")
4583                                 skip_braces(p);
4584                 }
4585
4586                 else if (t.cs() == "newpage" ||
4587                          (t.cs() == "pagebreak" && !p.hasOpt()) ||
4588                          t.cs() == "clearpage" ||
4589                          t.cs() == "cleardoublepage") {
4590                         context.check_layout(os);
4591                         begin_inset(os, "Newpage ");
4592                         os << t.cs();
4593                         end_inset(os);
4594                         skip_spaces_braces(p);
4595                 }
4596
4597                 else if (t.cs() == "DeclareRobustCommand" ||
4598                          t.cs() == "DeclareRobustCommandx" ||
4599                          t.cs() == "newcommand" ||
4600                          t.cs() == "newcommandx" ||
4601                          t.cs() == "providecommand" ||
4602                          t.cs() == "providecommandx" ||
4603                          t.cs() == "renewcommand" ||
4604                          t.cs() == "renewcommandx") {
4605                         // DeclareRobustCommand, DeclareRobustCommandx,
4606                         // providecommand and providecommandx could be handled
4607                         // by parse_command(), but we need to call
4608                         // add_known_command() here.
4609                         string name = t.asInput();
4610                         if (p.next_token().asInput() == "*") {
4611                                 // Starred form. Eat '*'
4612                                 p.get_token();
4613                                 name += '*';
4614                         }
4615                         string const command = p.verbatim_item();
4616                         string const opt1 = p.getFullOpt();
4617                         string const opt2 = p.getFullOpt();
4618                         add_known_command(command, opt1, !opt2.empty());
4619                         string const ert = name + '{' + command + '}' +
4620                                            opt1 + opt2 +
4621                                            '{' + p.verbatim_item() + '}';
4622
4623                         if (t.cs() == "DeclareRobustCommand" ||
4624                             t.cs() == "DeclareRobustCommandx" ||
4625                             t.cs() == "providecommand" ||
4626                             t.cs() == "providecommandx" ||
4627                             name[name.length()-1] == '*')
4628                                 output_ert_inset(os, ert, context);
4629                         else {
4630                                 context.check_layout(os);
4631                                 begin_inset(os, "FormulaMacro");
4632                                 os << "\n" << ert;
4633                                 end_inset(os);
4634                         }
4635                 }
4636
4637                 else if (t.cs() == "let" && p.next_token().asInput() != "*") {
4638                         // let could be handled by parse_command(),
4639                         // but we need to call add_known_command() here.
4640                         string ert = t.asInput();
4641                         string name;
4642                         p.skip_spaces();
4643                         if (p.next_token().cat() == catBegin) {
4644                                 name = p.verbatim_item();
4645                                 ert += '{' + name + '}';
4646                         } else {
4647                                 name = p.verbatim_item();
4648                                 ert += name;
4649                         }
4650                         string command;
4651                         p.skip_spaces();
4652                         if (p.next_token().cat() == catBegin) {
4653                                 command = p.verbatim_item();
4654                                 ert += '{' + command + '}';
4655                         } else {
4656                                 command = p.verbatim_item();
4657                                 ert += command;
4658                         }
4659                         // If command is known, make name known too, to parse
4660                         // its arguments correctly. For this reason we also
4661                         // have commands in syntax.default that are hardcoded.
4662                         CommandMap::iterator it = known_commands.find(command);
4663                         if (it != known_commands.end())
4664                                 known_commands[t.asInput()] = it->second;
4665                         output_ert_inset(os, ert, context);
4666                 }
4667
4668                 else if (t.cs() == "hspace" || t.cs() == "vspace") {
4669                         if (starred)
4670                                 p.get_token();
4671                         string name = t.asInput();
4672                         string const length = p.verbatim_item();
4673                         string unit;
4674                         string valstring;
4675                         bool valid = splitLatexLength(length, valstring, unit);
4676                         bool known_hspace = false;
4677                         bool known_vspace = false;
4678                         bool known_unit = false;
4679                         double value;
4680                         if (valid) {
4681                                 istringstream iss(valstring);
4682                                 iss >> value;
4683                                 if (value == 1.0) {
4684                                         if (t.cs()[0] == 'h') {
4685                                                 if (unit == "\\fill") {
4686                                                         if (!starred) {
4687                                                                 unit = "";
4688                                                                 name = "\\hfill";
4689                                                         }
4690                                                         known_hspace = true;
4691                                                 }
4692                                         } else {
4693                                                 if (unit == "\\smallskipamount") {
4694                                                         unit = "smallskip";
4695                                                         known_vspace = true;
4696                                                 } else if (unit == "\\medskipamount") {
4697                                                         unit = "medskip";
4698                                                         known_vspace = true;
4699                                                 } else if (unit == "\\bigskipamount") {
4700                                                         unit = "bigskip";
4701                                                         known_vspace = true;
4702                                                 } else if (unit == "\\fill") {
4703                                                         unit = "vfill";
4704                                                         known_vspace = true;
4705                                                 }
4706                                         }
4707                                 }
4708                                 if (!known_hspace && !known_vspace) {
4709                                         switch (unitFromString(unit)) {
4710                                         case Length::SP:
4711                                         case Length::PT:
4712                                         case Length::BP:
4713                                         case Length::DD:
4714                                         case Length::MM:
4715                                         case Length::PC:
4716                                         case Length::CC:
4717                                         case Length::CM:
4718                                         case Length::IN:
4719                                         case Length::EX:
4720                                         case Length::EM:
4721                                         case Length::MU:
4722                                                 known_unit = true;
4723                                                 break;
4724                                         default: {
4725                                                 //unitFromString(unit) fails for relative units like Length::PCW
4726                                                 // therefore handle them separately
4727                                                 if (unit == "\\paperwidth" || unit == "\\columnwidth"
4728                                                         || unit == "\\textwidth" || unit == "\\linewidth"
4729                                                         || unit == "\\textheight" || unit == "\\paperheight"
4730                                                         || unit == "\\baselineskip")
4731                                                         known_unit = true;
4732                                                 break;
4733                                                          }
4734                                         }
4735                                 }
4736                         }
4737
4738                         // check for glue lengths
4739                         bool is_gluelength = false;
4740                         string gluelength = length;
4741                         string::size_type i = length.find(" minus");
4742                         if (i == string::npos) {
4743                                 i = length.find(" plus");
4744                                 if (i != string::npos)
4745                                         is_gluelength = true;
4746                         } else
4747                                 is_gluelength = true;
4748                         // if yes transform "9xx minus 8yy plus 7zz"
4749                         // to "9xx-8yy+7zz"
4750                         if (is_gluelength) {
4751                                 i = gluelength.find(" minus");
4752                                 if (i != string::npos)
4753                                         gluelength.replace(i, 7, "-");
4754                                 i = gluelength.find(" plus");
4755                                 if (i != string::npos)
4756                                         gluelength.replace(i, 6, "+");
4757                         }
4758
4759                         if (t.cs()[0] == 'h' && (known_unit || known_hspace || is_gluelength)) {
4760                                 // Literal horizontal length or known variable
4761                                 context.check_layout(os);
4762                                 begin_inset(os, "space ");
4763                                 os << name;
4764                                 if (starred)
4765                                         os << '*';
4766                                 os << '{';
4767                                 if (known_hspace)
4768                                         os << unit;
4769                                 os << "}";
4770                                 if (known_unit && !known_hspace)
4771                                         os << "\n\\length " << translate_len(length);
4772                                 if (is_gluelength)
4773                                         os << "\n\\length " << gluelength;
4774                                 end_inset(os);
4775                         } else if (known_unit || known_vspace || is_gluelength) {
4776                                 // Literal vertical length or known variable
4777                                 context.check_layout(os);
4778                                 begin_inset(os, "VSpace ");
4779                                 if (known_vspace)
4780                                         os << unit;
4781                                 if (known_unit && !known_vspace)
4782                                         os << translate_len(length);
4783                                 if (is_gluelength)
4784                                         os << gluelength;
4785                                 if (starred)
4786                                         os << '*';
4787                                 end_inset(os);
4788                         } else {
4789                                 // LyX can't handle other length variables in Inset VSpace/space
4790                                 if (starred)
4791                                         name += '*';
4792                                 if (valid) {
4793                                         if (value == 1.0)
4794                                                 output_ert_inset(os, name + '{' + unit + '}', context);
4795                                         else if (value == -1.0)
4796                                                 output_ert_inset(os, name + "{-" + unit + '}', context);
4797                                         else
4798                                                 output_ert_inset(os, name + '{' + valstring + unit + '}', context);
4799                                 } else
4800                                         output_ert_inset(os, name + '{' + length + '}', context);
4801                         }
4802                 }
4803
4804                 // The single '=' is meant here.
4805                 else if ((newinsetlayout = findInsetLayout(context.textclass, starredname, true))) {
4806                         if (starred)
4807                                 p.get_token();
4808                         p.skip_spaces();
4809                         context.check_layout(os);
4810                         docstring name = newinsetlayout->name();
4811                         bool const caption = name.find(from_ascii("Caption:")) == 0;
4812                         if (caption) {
4813                                 // Already done for floating minted listings.
4814                                 if (minted_float.empty()) {
4815                                         begin_inset(os, "Caption ");
4816                                         os << to_utf8(name.substr(8)) << '\n';
4817                                 }
4818                         } else {
4819                                 // FIXME: what do we do if the prefix is not Flex: ?
4820                                 if (prefixIs(name, from_ascii("Flex:")))
4821                                         name.erase(0, 5);
4822                                 begin_inset(os, "Flex ");
4823                                 os << to_utf8(name) << '\n'
4824                                    << "status collapsed\n";
4825                         }
4826                         if (!minted_float.empty()) {
4827                                 parse_text_snippet(p, os, FLAG_ITEM, false, context);
4828                         } else if (newinsetlayout->isPassThru()) {
4829                                 // set catcodes to verbatim early, just in case.
4830                                 p.setCatcodes(VERBATIM_CATCODES);
4831                                 string delim = p.get_token().asInput();
4832                                 if (delim != "{")
4833                                         cerr << "Warning: bad delimiter for command " << t.asInput() << endl;
4834                                 //FIXME: handle error condition
4835                                 string const arg = p.verbatimStuff("}").second;
4836                                 Context newcontext(true, context.textclass);
4837                                 if (newinsetlayout->forcePlainLayout())
4838                                         newcontext.layout = &context.textclass.plainLayout();
4839                                 output_ert(os, arg, newcontext);
4840                         } else
4841                                 parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout);
4842                         if (caption)
4843                                 p.skip_spaces();
4844                         // Minted caption insets are not closed here because
4845                         // we collect everything into the caption.
4846                         if (minted_float.empty())
4847                                 end_inset(os);
4848                 }
4849
4850                 else if (t.cs() == "includepdf") {
4851                         p.skip_spaces();
4852                         string const arg = p.getArg('[', ']');
4853                         map<string, string> opts;
4854                         vector<string> keys;
4855                         split_map(arg, opts, keys);
4856                         string name = normalize_filename(p.verbatim_item());
4857                         string const path = getMasterFilePath(true);
4858                         // We want to preserve relative / absolute filenames,
4859                         // therefore path is only used for testing
4860                         if (!makeAbsPath(name, path).exists()) {
4861                                 // The file extension is probably missing.
4862                                 // Now try to find it out.
4863                                 char const * const pdfpages_format[] = {"pdf", 0};
4864                                 string const pdftex_name =
4865                                         find_file(name, path, pdfpages_format);
4866                                 if (!pdftex_name.empty()) {
4867                                         name = pdftex_name;
4868                                         pdflatex = true;
4869                                 }
4870                         }
4871                         FileName const absname = makeAbsPath(name, path);
4872                         if (absname.exists())
4873                         {
4874                                 fix_child_filename(name);
4875                                 copy_file(absname, name);
4876                         } else
4877                                 cerr << "Warning: Could not find file '"
4878                                      << name << "'." << endl;
4879                         // write output
4880                         context.check_layout(os);
4881                         begin_inset(os, "External\n\ttemplate ");
4882                         os << "PDFPages\n\tfilename "
4883                            << name << "\n";
4884                         // parse the options
4885                         if (opts.find("pages") != opts.end())
4886                                 os << "\textra LaTeX \"pages="
4887                                    << opts["pages"] << "\"\n";
4888                         if (opts.find("angle") != opts.end())
4889                                 os << "\trotateAngle "
4890                                    << opts["angle"] << '\n';
4891                         if (opts.find("origin") != opts.end()) {
4892                                 ostringstream ss;
4893                                 string const opt = opts["origin"];
4894                                 if (opt == "tl") ss << "topleft";
4895                                 if (opt == "bl") ss << "bottomleft";
4896                                 if (opt == "Bl") ss << "baselineleft";
4897                                 if (opt == "c") ss << "center";
4898                                 if (opt == "tc") ss << "topcenter";
4899                                 if (opt == "bc") ss << "bottomcenter";
4900                                 if (opt == "Bc") ss << "baselinecenter";
4901                                 if (opt == "tr") ss << "topright";
4902                                 if (opt == "br") ss << "bottomright";
4903                                 if (opt == "Br") ss << "baselineright";
4904                                 if (!ss.str().empty())
4905                                         os << "\trotateOrigin " << ss.str() << '\n';
4906                                 else
4907                                         cerr << "Warning: Ignoring unknown includegraphics origin argument '" << opt << "'\n";
4908                         }
4909                         if (opts.find("width") != opts.end())
4910                                 os << "\twidth "
4911                                    << translate_len(opts["width"]) << '\n';
4912                         if (opts.find("height") != opts.end())
4913                                 os << "\theight "
4914                                    << translate_len(opts["height"]) << '\n';
4915                         if (opts.find("keepaspectratio") != opts.end())
4916                                 os << "\tkeepAspectRatio\n";
4917                         end_inset(os);
4918                         context.check_layout(os);
4919                         registerExternalTemplatePackages("PDFPages");
4920                 }
4921
4922                 else if (t.cs() == "loadgame") {
4923                         p.skip_spaces();
4924                         string name = normalize_filename(p.verbatim_item());
4925                         string const path = getMasterFilePath(true);
4926                         // We want to preserve relative / absolute filenames,
4927                         // therefore path is only used for testing
4928                         if (!makeAbsPath(name, path).exists()) {
4929                                 // The file extension is probably missing.
4930                                 // Now try to find it out.
4931                                 char const * const lyxskak_format[] = {"fen", 0};
4932                                 string const lyxskak_name =
4933                                         find_file(name, path, lyxskak_format);
4934                                 if (!lyxskak_name.empty())
4935                                         name = lyxskak_name;
4936                         }
4937                         FileName const absname = makeAbsPath(name, path);
4938                         if (absname.exists())
4939                         {
4940                                 fix_child_filename(name);
4941                                 copy_file(absname, name);
4942                         } else
4943                                 cerr << "Warning: Could not find file '"
4944                                      << name << "'." << endl;
4945                         context.check_layout(os);
4946                         begin_inset(os, "External\n\ttemplate ");
4947                         os << "ChessDiagram\n\tfilename "
4948                            << name << "\n";
4949                         end_inset(os);
4950                         context.check_layout(os);
4951                         // after a \loadgame follows a \showboard
4952                         if (p.get_token().asInput() == "showboard")
4953                                 p.get_token();
4954                         registerExternalTemplatePackages("ChessDiagram");
4955                 }
4956
4957                 else {
4958                         // try to see whether the string is in unicodesymbols
4959                         // Only use text mode commands, since we are in text mode here,
4960                         // and math commands may be invalid (bug 6797)
4961                         string name = t.asInput();
4962                         // handle the dingbats, cyrillic and greek
4963                         if (name == "\\ding" || name == "\\textcyr" ||
4964                             (name == "\\textgreek" && !preamble.usePolyglossia()))
4965                                 name = name + '{' + p.getArg('{', '}') + '}';
4966                         // handle the ifsym characters
4967                         else if (name == "\\textifsymbol") {
4968                                 string const optif = p.getFullOpt();
4969                                 string const argif = p.getArg('{', '}');
4970                                 name = name + optif + '{' + argif + '}';
4971                         }
4972                         // handle the \ascii characters
4973                         // the case of \ascii within braces, as LyX outputs it, is already
4974                         // handled for t.cat() == catBegin
4975                         else if (name == "\\ascii") {
4976                                 // the code is "\asci\xxx"
4977                                 name = "{" + name + p.get_token().asInput() + "}";
4978                                 skip_braces(p);
4979                         }
4980                         // handle some TIPA special characters
4981                         else if (preamble.isPackageUsed("tipa")) {
4982                                 if (name == "\\s") {
4983                                         // fromLaTeXCommand() does not yet
4984                                         // recognize tipa short cuts
4985                                         name = "\\textsyllabic";
4986                                 } else if (name == "\\=" &&
4987                                            p.next_token().asInput() == "*") {
4988                                         // fromLaTeXCommand() does not yet
4989                                         // recognize tipa short cuts
4990                                         p.get_token();
4991                                         name = "\\textsubbar";
4992                                 } else if (name == "\\textdoublevertline") {
4993                                         // FIXME: This is not correct,
4994                                         // \textvertline is higher than \textbardbl
4995                                         name = "\\textbardbl";
4996                                         skip_braces(p);
4997                                 } else if (name == "\\!" ) {
4998                                         if (p.next_token().asInput() == "b") {
4999                                                 p.get_token();  // eat 'b'
5000                                                 name = "\\texthtb";
5001                                                 skip_braces(p);
5002                                         } else if (p.next_token().asInput() == "d") {
5003                                                 p.get_token();
5004                                                 name = "\\texthtd";
5005                                                 skip_braces(p);
5006                                         } else if (p.next_token().asInput() == "g") {
5007                                                 p.get_token();
5008                                                 name = "\\texthtg";
5009                                                 skip_braces(p);
5010                                         } else if (p.next_token().asInput() == "G") {
5011                                                 p.get_token();
5012                                                 name = "\\texthtscg";
5013                                                 skip_braces(p);
5014                                         } else if (p.next_token().asInput() == "j") {
5015                                                 p.get_token();
5016                                                 name = "\\texthtbardotlessj";
5017                                                 skip_braces(p);
5018                                         } else if (p.next_token().asInput() == "o") {
5019                                                 p.get_token();
5020                                                 name = "\\textbullseye";
5021                                                 skip_braces(p);
5022                                         }
5023                                 } else if (name == "\\*" ) {
5024                                         if (p.next_token().asInput() == "k") {
5025                                                 p.get_token();
5026                                                 name = "\\textturnk";
5027                                                 skip_braces(p);
5028                                         } else if (p.next_token().asInput() == "r") {
5029                                                 p.get_token();  // eat 'b'
5030                                                 name = "\\textturnr";
5031                                                 skip_braces(p);
5032                                         } else if (p.next_token().asInput() == "t") {
5033                                                 p.get_token();
5034                                                 name = "\\textturnt";
5035                                                 skip_braces(p);
5036                                         } else if (p.next_token().asInput() == "w") {
5037                                                 p.get_token();
5038                                                 name = "\\textturnw";
5039                                                 skip_braces(p);
5040                                         }
5041                                 }
5042                         }
5043                         if ((name.size() == 2 &&
5044                              contains("\"'.=^`bcdHkrtuv~", name[1]) &&
5045                              p.next_token().asInput() != "*") ||
5046                             is_known(name.substr(1), known_tipa_marks)) {
5047                                 // name is a command that corresponds to a
5048                                 // combining character in unicodesymbols.
5049                                 // Append the argument, fromLaTeXCommand()
5050                                 // will either convert it to a single
5051                                 // character or a combining sequence.
5052                                 name += '{' + p.verbatim_item() + '}';
5053                         }
5054                         // now get the character from unicodesymbols
5055                         bool termination;
5056                         docstring rem;
5057                         set<string> req;
5058                         docstring s = normalize_c(encodings.fromLaTeXCommand(from_utf8(name),
5059                                         Encodings::TEXT_CMD, termination, rem, &req));
5060                         if (!s.empty()) {
5061                                 context.check_layout(os);
5062                                 os << to_utf8(s);
5063                                 if (!rem.empty())
5064                                         output_ert_inset(os, to_utf8(rem), context);
5065                                 if (termination)
5066                                         skip_spaces_braces(p);
5067                                 for (set<string>::const_iterator it = req.begin(); it != req.end(); ++it)
5068                                         preamble.registerAutomaticallyLoadedPackage(*it);
5069                         }
5070                         //cerr << "#: " << t << " mode: " << mode << endl;
5071                         // heuristic: read up to next non-nested space
5072                         /*
5073                         string s = t.asInput();
5074                         string z = p.verbatim_item();
5075                         while (p.good() && z != " " && !z.empty()) {
5076                                 //cerr << "read: " << z << endl;
5077                                 s += z;
5078                                 z = p.verbatim_item();
5079                         }
5080                         cerr << "found ERT: " << s << endl;
5081                         output_ert_inset(os, s + ' ', context);
5082                         */
5083                         else {
5084                                 if (t.asInput() == name &&
5085                                     p.next_token().asInput() == "*") {
5086                                         // Starred commands like \vspace*{}
5087                                         p.get_token();  // Eat '*'
5088                                         name += '*';
5089                                 }
5090                                 if (!parse_command(name, p, os, outer, context))
5091                                         output_ert_inset(os, name, context);
5092                         }
5093                 }
5094
5095                 if (flags & FLAG_LEAVE) {
5096                         flags &= ~FLAG_LEAVE;
5097                         break;
5098                 }
5099         }
5100 }
5101
5102
5103 string guessLanguage(Parser & p, string const & lang)
5104 {
5105         typedef std::map<std::string, size_t> LangMap;
5106         // map from language names to number of characters
5107         LangMap used;
5108         used[lang] = 0;
5109         for (char const * const * i = supported_CJK_languages; *i; i++)
5110                 used[string(*i)] = 0;
5111
5112         while (p.good()) {
5113                 Token const t = p.get_token();
5114                 // comments are not counted for any language
5115                 if (t.cat() == catComment)
5116                         continue;
5117                 // commands are not counted as well, but we need to detect
5118                 // \begin{CJK} and switch encoding if needed
5119                 if (t.cat() == catEscape) {
5120                         if (t.cs() == "inputencoding") {
5121                                 string const enc = subst(p.verbatim_item(), "\n", " ");
5122                                 p.setEncoding(enc, Encoding::inputenc);
5123                                 continue;
5124                         }
5125                         if (t.cs() != "begin")
5126                                 continue;
5127                 } else {
5128                         // Non-CJK content is counted for lang.
5129                         // We do not care about the real language here:
5130                         // If we have more non-CJK contents than CJK contents,
5131                         // we simply use the language that was specified as
5132                         // babel main language.
5133                         used[lang] += t.asInput().length();
5134                         continue;
5135                 }
5136                 // Now we are starting an environment
5137                 p.pushPosition();
5138                 string const name = p.getArg('{', '}');
5139                 if (name != "CJK") {
5140                         p.popPosition();
5141                         continue;
5142                 }
5143                 // It is a CJK environment
5144                 p.popPosition();
5145                 /* name = */ p.getArg('{', '}');
5146                 string const encoding = p.getArg('{', '}');
5147                 /* mapping = */ p.getArg('{', '}');
5148                 string const encoding_old = p.getEncoding();
5149                 char const * const * const where =
5150                         is_known(encoding, supported_CJK_encodings);
5151                 if (where)
5152                         p.setEncoding(encoding, Encoding::CJK);
5153                 else
5154                         p.setEncoding("UTF-8");
5155                 string const text = p.ertEnvironment("CJK");
5156                 p.setEncoding(encoding_old);
5157                 p.skip_spaces();
5158                 if (!where) {
5159                         // ignore contents in unknown CJK encoding
5160                         continue;
5161                 }
5162                 // the language of the text
5163                 string const cjk =
5164                         supported_CJK_languages[where - supported_CJK_encodings];
5165                 used[cjk] += text.length();
5166         }
5167         LangMap::const_iterator use = used.begin();
5168         for (LangMap::const_iterator it = used.begin(); it != used.end(); ++it) {
5169                 if (it->second > use->second)
5170                         use = it;
5171         }
5172         return use->first;
5173 }
5174
5175 // }])
5176
5177
5178 } // namespace lyx