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